@alicloud/rds20140815 2.7.5 → 2.8.0
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 +554 -74
- package/dist/client.js +975 -74
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +1194 -74
package/dist/client.d.ts
CHANGED
|
@@ -5963,6 +5963,7 @@ export declare class DescribeDBProxyResponseBody extends $tea.Model {
|
|
|
5963
5963
|
DBProxyInstanceSize?: string;
|
|
5964
5964
|
DBProxyInstanceStatus?: string;
|
|
5965
5965
|
DBProxyInstanceType?: string;
|
|
5966
|
+
DBProxyPersistentConnectionSupport?: string;
|
|
5966
5967
|
DBProxyServiceStatus?: string;
|
|
5967
5968
|
dbProxyEndpointItems?: DescribeDBProxyResponseBodyDbProxyEndpointItems;
|
|
5968
5969
|
requestId?: string;
|
|
@@ -6638,6 +6639,110 @@ export declare class DescribeHASwitchConfigResponse extends $tea.Model {
|
|
|
6638
6639
|
[key: string]: any;
|
|
6639
6640
|
});
|
|
6640
6641
|
}
|
|
6642
|
+
export declare class DescribeHistoryEventsRequest extends $tea.Model {
|
|
6643
|
+
archiveStatus?: string;
|
|
6644
|
+
eventCategory?: string;
|
|
6645
|
+
eventId?: string;
|
|
6646
|
+
eventLevel?: string;
|
|
6647
|
+
eventStatus?: string;
|
|
6648
|
+
eventType?: string;
|
|
6649
|
+
fromStartTime?: string;
|
|
6650
|
+
instanceId?: string;
|
|
6651
|
+
pageNumber?: number;
|
|
6652
|
+
pageSize?: number;
|
|
6653
|
+
regionId?: string;
|
|
6654
|
+
resourceGroupId?: string;
|
|
6655
|
+
resourceType?: string;
|
|
6656
|
+
securityToken?: string;
|
|
6657
|
+
taskId?: string;
|
|
6658
|
+
toStartTime?: string;
|
|
6659
|
+
static names(): {
|
|
6660
|
+
[key: string]: string;
|
|
6661
|
+
};
|
|
6662
|
+
static types(): {
|
|
6663
|
+
[key: string]: any;
|
|
6664
|
+
};
|
|
6665
|
+
constructor(map?: {
|
|
6666
|
+
[key: string]: any;
|
|
6667
|
+
});
|
|
6668
|
+
}
|
|
6669
|
+
export declare class DescribeHistoryEventsResponseBody extends $tea.Model {
|
|
6670
|
+
items?: DescribeHistoryEventsResponseBodyItems[];
|
|
6671
|
+
pageNumber?: number;
|
|
6672
|
+
pageSize?: number;
|
|
6673
|
+
requestId?: string;
|
|
6674
|
+
totalCount?: number;
|
|
6675
|
+
static names(): {
|
|
6676
|
+
[key: string]: string;
|
|
6677
|
+
};
|
|
6678
|
+
static types(): {
|
|
6679
|
+
[key: string]: any;
|
|
6680
|
+
};
|
|
6681
|
+
constructor(map?: {
|
|
6682
|
+
[key: string]: any;
|
|
6683
|
+
});
|
|
6684
|
+
}
|
|
6685
|
+
export declare class DescribeHistoryEventsResponse extends $tea.Model {
|
|
6686
|
+
headers: {
|
|
6687
|
+
[key: string]: string;
|
|
6688
|
+
};
|
|
6689
|
+
statusCode: number;
|
|
6690
|
+
body: DescribeHistoryEventsResponseBody;
|
|
6691
|
+
static names(): {
|
|
6692
|
+
[key: string]: string;
|
|
6693
|
+
};
|
|
6694
|
+
static types(): {
|
|
6695
|
+
[key: string]: any;
|
|
6696
|
+
};
|
|
6697
|
+
constructor(map?: {
|
|
6698
|
+
[key: string]: any;
|
|
6699
|
+
});
|
|
6700
|
+
}
|
|
6701
|
+
export declare class DescribeHistoryEventsStatRequest extends $tea.Model {
|
|
6702
|
+
archiveStatus?: string;
|
|
6703
|
+
fromStartTime?: string;
|
|
6704
|
+
regionId?: string;
|
|
6705
|
+
securityToken?: string;
|
|
6706
|
+
toStartTime?: string;
|
|
6707
|
+
static names(): {
|
|
6708
|
+
[key: string]: string;
|
|
6709
|
+
};
|
|
6710
|
+
static types(): {
|
|
6711
|
+
[key: string]: any;
|
|
6712
|
+
};
|
|
6713
|
+
constructor(map?: {
|
|
6714
|
+
[key: string]: any;
|
|
6715
|
+
});
|
|
6716
|
+
}
|
|
6717
|
+
export declare class DescribeHistoryEventsStatResponseBody extends $tea.Model {
|
|
6718
|
+
items?: DescribeHistoryEventsStatResponseBodyItems[];
|
|
6719
|
+
requestId?: string;
|
|
6720
|
+
static names(): {
|
|
6721
|
+
[key: string]: string;
|
|
6722
|
+
};
|
|
6723
|
+
static types(): {
|
|
6724
|
+
[key: string]: any;
|
|
6725
|
+
};
|
|
6726
|
+
constructor(map?: {
|
|
6727
|
+
[key: string]: any;
|
|
6728
|
+
});
|
|
6729
|
+
}
|
|
6730
|
+
export declare class DescribeHistoryEventsStatResponse extends $tea.Model {
|
|
6731
|
+
headers: {
|
|
6732
|
+
[key: string]: string;
|
|
6733
|
+
};
|
|
6734
|
+
statusCode: number;
|
|
6735
|
+
body: DescribeHistoryEventsStatResponseBody;
|
|
6736
|
+
static names(): {
|
|
6737
|
+
[key: string]: string;
|
|
6738
|
+
};
|
|
6739
|
+
static types(): {
|
|
6740
|
+
[key: string]: any;
|
|
6741
|
+
};
|
|
6742
|
+
constructor(map?: {
|
|
6743
|
+
[key: string]: any;
|
|
6744
|
+
});
|
|
6745
|
+
}
|
|
6641
6746
|
export declare class DescribeHistoryTasksRequest extends $tea.Model {
|
|
6642
6747
|
fromExecTime?: number;
|
|
6643
6748
|
fromStartTime?: string;
|
|
@@ -6698,6 +6803,60 @@ export declare class DescribeHistoryTasksResponse extends $tea.Model {
|
|
|
6698
6803
|
[key: string]: any;
|
|
6699
6804
|
});
|
|
6700
6805
|
}
|
|
6806
|
+
export declare class DescribeHistoryTasksStatRequest extends $tea.Model {
|
|
6807
|
+
fromExecTime?: number;
|
|
6808
|
+
fromStartTime?: string;
|
|
6809
|
+
instanceId?: string;
|
|
6810
|
+
ownerId?: number;
|
|
6811
|
+
regionId?: string;
|
|
6812
|
+
resourceGroupId?: string;
|
|
6813
|
+
resourceOwnerAccount?: number;
|
|
6814
|
+
resourceOwnerId?: number;
|
|
6815
|
+
securityToken?: string;
|
|
6816
|
+
status?: string;
|
|
6817
|
+
taskId?: string;
|
|
6818
|
+
taskType?: string;
|
|
6819
|
+
toExecTime?: number;
|
|
6820
|
+
toStartTime?: string;
|
|
6821
|
+
static names(): {
|
|
6822
|
+
[key: string]: string;
|
|
6823
|
+
};
|
|
6824
|
+
static types(): {
|
|
6825
|
+
[key: string]: any;
|
|
6826
|
+
};
|
|
6827
|
+
constructor(map?: {
|
|
6828
|
+
[key: string]: any;
|
|
6829
|
+
});
|
|
6830
|
+
}
|
|
6831
|
+
export declare class DescribeHistoryTasksStatResponseBody extends $tea.Model {
|
|
6832
|
+
items?: DescribeHistoryTasksStatResponseBodyItems[];
|
|
6833
|
+
requestId?: string;
|
|
6834
|
+
static names(): {
|
|
6835
|
+
[key: string]: string;
|
|
6836
|
+
};
|
|
6837
|
+
static types(): {
|
|
6838
|
+
[key: string]: any;
|
|
6839
|
+
};
|
|
6840
|
+
constructor(map?: {
|
|
6841
|
+
[key: string]: any;
|
|
6842
|
+
});
|
|
6843
|
+
}
|
|
6844
|
+
export declare class DescribeHistoryTasksStatResponse extends $tea.Model {
|
|
6845
|
+
headers: {
|
|
6846
|
+
[key: string]: string;
|
|
6847
|
+
};
|
|
6848
|
+
statusCode: number;
|
|
6849
|
+
body: DescribeHistoryTasksStatResponseBody;
|
|
6850
|
+
static names(): {
|
|
6851
|
+
[key: string]: string;
|
|
6852
|
+
};
|
|
6853
|
+
static types(): {
|
|
6854
|
+
[key: string]: any;
|
|
6855
|
+
};
|
|
6856
|
+
constructor(map?: {
|
|
6857
|
+
[key: string]: any;
|
|
6858
|
+
});
|
|
6859
|
+
}
|
|
6701
6860
|
export declare class DescribeHostGroupElasticStrategyParametersRequest extends $tea.Model {
|
|
6702
6861
|
dedicatedHostGroupName?: string;
|
|
6703
6862
|
regionId?: string;
|
|
@@ -11554,6 +11713,7 @@ export declare class ModifyDBProxyRequest extends $tea.Model {
|
|
|
11554
11713
|
DBInstanceId?: string;
|
|
11555
11714
|
DBProxyEngineType?: string;
|
|
11556
11715
|
DBProxyInstanceNum?: string;
|
|
11716
|
+
DBProxyInstanceType?: string;
|
|
11557
11717
|
instanceNetworkType?: string;
|
|
11558
11718
|
ownerId?: number;
|
|
11559
11719
|
regionId?: string;
|
|
@@ -11943,6 +12103,54 @@ export declare class ModifyDbProxyInstanceSslResponse extends $tea.Model {
|
|
|
11943
12103
|
[key: string]: any;
|
|
11944
12104
|
});
|
|
11945
12105
|
}
|
|
12106
|
+
export declare class ModifyEventInfoRequest extends $tea.Model {
|
|
12107
|
+
actionParams?: string;
|
|
12108
|
+
eventAction?: string;
|
|
12109
|
+
eventId?: string;
|
|
12110
|
+
regionId?: string;
|
|
12111
|
+
securityToken?: string;
|
|
12112
|
+
static names(): {
|
|
12113
|
+
[key: string]: string;
|
|
12114
|
+
};
|
|
12115
|
+
static types(): {
|
|
12116
|
+
[key: string]: any;
|
|
12117
|
+
};
|
|
12118
|
+
constructor(map?: {
|
|
12119
|
+
[key: string]: any;
|
|
12120
|
+
});
|
|
12121
|
+
}
|
|
12122
|
+
export declare class ModifyEventInfoResponseBody extends $tea.Model {
|
|
12123
|
+
errorCode?: string;
|
|
12124
|
+
errorEventId?: string;
|
|
12125
|
+
requestId?: string;
|
|
12126
|
+
successCount?: number;
|
|
12127
|
+
successEventId?: string;
|
|
12128
|
+
static names(): {
|
|
12129
|
+
[key: string]: string;
|
|
12130
|
+
};
|
|
12131
|
+
static types(): {
|
|
12132
|
+
[key: string]: any;
|
|
12133
|
+
};
|
|
12134
|
+
constructor(map?: {
|
|
12135
|
+
[key: string]: any;
|
|
12136
|
+
});
|
|
12137
|
+
}
|
|
12138
|
+
export declare class ModifyEventInfoResponse extends $tea.Model {
|
|
12139
|
+
headers: {
|
|
12140
|
+
[key: string]: string;
|
|
12141
|
+
};
|
|
12142
|
+
statusCode: number;
|
|
12143
|
+
body: ModifyEventInfoResponseBody;
|
|
12144
|
+
static names(): {
|
|
12145
|
+
[key: string]: string;
|
|
12146
|
+
};
|
|
12147
|
+
static types(): {
|
|
12148
|
+
[key: string]: any;
|
|
12149
|
+
};
|
|
12150
|
+
constructor(map?: {
|
|
12151
|
+
[key: string]: any;
|
|
12152
|
+
});
|
|
12153
|
+
}
|
|
11946
12154
|
export declare class ModifyHADiagnoseConfigRequest extends $tea.Model {
|
|
11947
12155
|
DBInstanceId?: string;
|
|
11948
12156
|
ownerId?: number;
|
|
@@ -12618,6 +12826,56 @@ export declare class ModifySecurityIpsResponse extends $tea.Model {
|
|
|
12618
12826
|
[key: string]: any;
|
|
12619
12827
|
});
|
|
12620
12828
|
}
|
|
12829
|
+
export declare class ModifyTaskInfoRequest extends $tea.Model {
|
|
12830
|
+
actionParams?: string;
|
|
12831
|
+
regionId?: string;
|
|
12832
|
+
resourceOwnerAccount?: number;
|
|
12833
|
+
resourceOwnerId?: number;
|
|
12834
|
+
securityToken?: string;
|
|
12835
|
+
stepName?: string;
|
|
12836
|
+
taskAction?: string;
|
|
12837
|
+
taskId?: string;
|
|
12838
|
+
static names(): {
|
|
12839
|
+
[key: string]: string;
|
|
12840
|
+
};
|
|
12841
|
+
static types(): {
|
|
12842
|
+
[key: string]: any;
|
|
12843
|
+
};
|
|
12844
|
+
constructor(map?: {
|
|
12845
|
+
[key: string]: any;
|
|
12846
|
+
});
|
|
12847
|
+
}
|
|
12848
|
+
export declare class ModifyTaskInfoResponseBody extends $tea.Model {
|
|
12849
|
+
errorCode?: string;
|
|
12850
|
+
errorTaskId?: string;
|
|
12851
|
+
requestId?: string;
|
|
12852
|
+
successCount?: string;
|
|
12853
|
+
static names(): {
|
|
12854
|
+
[key: string]: string;
|
|
12855
|
+
};
|
|
12856
|
+
static types(): {
|
|
12857
|
+
[key: string]: any;
|
|
12858
|
+
};
|
|
12859
|
+
constructor(map?: {
|
|
12860
|
+
[key: string]: any;
|
|
12861
|
+
});
|
|
12862
|
+
}
|
|
12863
|
+
export declare class ModifyTaskInfoResponse extends $tea.Model {
|
|
12864
|
+
headers: {
|
|
12865
|
+
[key: string]: string;
|
|
12866
|
+
};
|
|
12867
|
+
statusCode: number;
|
|
12868
|
+
body: ModifyTaskInfoResponseBody;
|
|
12869
|
+
static names(): {
|
|
12870
|
+
[key: string]: string;
|
|
12871
|
+
};
|
|
12872
|
+
static types(): {
|
|
12873
|
+
[key: string]: any;
|
|
12874
|
+
};
|
|
12875
|
+
constructor(map?: {
|
|
12876
|
+
[key: string]: any;
|
|
12877
|
+
});
|
|
12878
|
+
}
|
|
12621
12879
|
export declare class ModifyWhitelistTemplateRequest extends $tea.Model {
|
|
12622
12880
|
ipWhitelist?: string;
|
|
12623
12881
|
resourceGroupId?: string;
|
|
@@ -17199,6 +17457,76 @@ export declare class DescribeGadInstancesResponseBodyGadInstances extends $tea.M
|
|
|
17199
17457
|
[key: string]: any;
|
|
17200
17458
|
});
|
|
17201
17459
|
}
|
|
17460
|
+
export declare class DescribeHistoryEventsResponseBodyItemsData extends $tea.Model {
|
|
17461
|
+
cmsProduct?: string;
|
|
17462
|
+
dbType?: string;
|
|
17463
|
+
detailImpact?: string;
|
|
17464
|
+
detailReason?: string;
|
|
17465
|
+
endTime?: string;
|
|
17466
|
+
eventCategory?: string;
|
|
17467
|
+
eventCode?: string;
|
|
17468
|
+
eventDetail?: string;
|
|
17469
|
+
eventId?: string;
|
|
17470
|
+
eventImpact?: string;
|
|
17471
|
+
eventLevel?: string;
|
|
17472
|
+
eventReason?: string;
|
|
17473
|
+
eventStatus?: string;
|
|
17474
|
+
eventType?: string;
|
|
17475
|
+
gmtCreated?: string;
|
|
17476
|
+
gmtModified?: string;
|
|
17477
|
+
handleStatus?: string;
|
|
17478
|
+
hasLifeCycle?: number;
|
|
17479
|
+
instanceId?: string;
|
|
17480
|
+
instanceName?: string;
|
|
17481
|
+
isClosed?: number;
|
|
17482
|
+
product?: string;
|
|
17483
|
+
regionId?: string;
|
|
17484
|
+
resourceType?: string;
|
|
17485
|
+
sourceType?: string;
|
|
17486
|
+
startTime?: string;
|
|
17487
|
+
uid?: string;
|
|
17488
|
+
static names(): {
|
|
17489
|
+
[key: string]: string;
|
|
17490
|
+
};
|
|
17491
|
+
static types(): {
|
|
17492
|
+
[key: string]: any;
|
|
17493
|
+
};
|
|
17494
|
+
constructor(map?: {
|
|
17495
|
+
[key: string]: any;
|
|
17496
|
+
});
|
|
17497
|
+
}
|
|
17498
|
+
export declare class DescribeHistoryEventsResponseBodyItems extends $tea.Model {
|
|
17499
|
+
data?: DescribeHistoryEventsResponseBodyItemsData;
|
|
17500
|
+
id?: string;
|
|
17501
|
+
region?: string;
|
|
17502
|
+
source?: string;
|
|
17503
|
+
specversion?: string;
|
|
17504
|
+
subject?: string;
|
|
17505
|
+
time?: string;
|
|
17506
|
+
type?: string;
|
|
17507
|
+
static names(): {
|
|
17508
|
+
[key: string]: string;
|
|
17509
|
+
};
|
|
17510
|
+
static types(): {
|
|
17511
|
+
[key: string]: any;
|
|
17512
|
+
};
|
|
17513
|
+
constructor(map?: {
|
|
17514
|
+
[key: string]: any;
|
|
17515
|
+
});
|
|
17516
|
+
}
|
|
17517
|
+
export declare class DescribeHistoryEventsStatResponseBodyItems extends $tea.Model {
|
|
17518
|
+
eventCategory?: string;
|
|
17519
|
+
totalCount?: number;
|
|
17520
|
+
static names(): {
|
|
17521
|
+
[key: string]: string;
|
|
17522
|
+
};
|
|
17523
|
+
static types(): {
|
|
17524
|
+
[key: string]: any;
|
|
17525
|
+
};
|
|
17526
|
+
constructor(map?: {
|
|
17527
|
+
[key: string]: any;
|
|
17528
|
+
});
|
|
17529
|
+
}
|
|
17202
17530
|
export declare class DescribeHistoryTasksResponseBodyItems extends $tea.Model {
|
|
17203
17531
|
actionInfo?: string;
|
|
17204
17532
|
callerSource?: string;
|
|
@@ -17230,6 +17558,19 @@ export declare class DescribeHistoryTasksResponseBodyItems extends $tea.Model {
|
|
|
17230
17558
|
[key: string]: any;
|
|
17231
17559
|
});
|
|
17232
17560
|
}
|
|
17561
|
+
export declare class DescribeHistoryTasksStatResponseBodyItems extends $tea.Model {
|
|
17562
|
+
status?: string;
|
|
17563
|
+
totalCount?: number;
|
|
17564
|
+
static names(): {
|
|
17565
|
+
[key: string]: string;
|
|
17566
|
+
};
|
|
17567
|
+
static types(): {
|
|
17568
|
+
[key: string]: any;
|
|
17569
|
+
};
|
|
17570
|
+
constructor(map?: {
|
|
17571
|
+
[key: string]: any;
|
|
17572
|
+
});
|
|
17573
|
+
}
|
|
17233
17574
|
export declare class DescribeInstanceAutoRenewalAttributeResponseBodyItemsItem extends $tea.Model {
|
|
17234
17575
|
autoRenew?: string;
|
|
17235
17576
|
DBInstanceId?: string;
|
|
@@ -19391,8 +19732,12 @@ export default class Client extends OpenApi {
|
|
|
19391
19732
|
*/
|
|
19392
19733
|
calculateDBInstanceWeight(request: CalculateDBInstanceWeightRequest): Promise<CalculateDBInstanceWeightResponse>;
|
|
19393
19734
|
/**
|
|
19394
|
-
*
|
|
19395
|
-
*
|
|
19735
|
+
* ### [](#)Supported database engine
|
|
19736
|
+
* * SQL Server
|
|
19737
|
+
* ### [](#)Usage notes
|
|
19738
|
+
* This operation is supported for instances that run SQL Server and belong to the dedicated or dedicated host instance family. For more information about how to start a migration task, see [ImportDatabaseBetweenInstances](~~610592~~).
|
|
19739
|
+
* ### [](#)Precautions
|
|
19740
|
+
* This operation is not supported for instances that run SQL Server 2017 on RDS Cluster Edition.
|
|
19396
19741
|
*
|
|
19397
19742
|
* @param request CancelImportRequest
|
|
19398
19743
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -19400,14 +19745,39 @@ export default class Client extends OpenApi {
|
|
|
19400
19745
|
*/
|
|
19401
19746
|
cancelImportWithOptions(request: CancelImportRequest, runtime: $Util.RuntimeOptions): Promise<CancelImportResponse>;
|
|
19402
19747
|
/**
|
|
19403
|
-
*
|
|
19404
|
-
*
|
|
19748
|
+
* ### [](#)Supported database engine
|
|
19749
|
+
* * SQL Server
|
|
19750
|
+
* ### [](#)Usage notes
|
|
19751
|
+
* This operation is supported for instances that run SQL Server and belong to the dedicated or dedicated host instance family. For more information about how to start a migration task, see [ImportDatabaseBetweenInstances](~~610592~~).
|
|
19752
|
+
* ### [](#)Precautions
|
|
19753
|
+
* This operation is not supported for instances that run SQL Server 2017 on RDS Cluster Edition.
|
|
19405
19754
|
*
|
|
19406
19755
|
* @param request CancelImportRequest
|
|
19407
19756
|
* @return CancelImportResponse
|
|
19408
19757
|
*/
|
|
19409
19758
|
cancelImport(request: CancelImportRequest): Promise<CancelImportResponse>;
|
|
19759
|
+
/**
|
|
19760
|
+
* ### [](#)Supported database engines
|
|
19761
|
+
* * MySQL
|
|
19762
|
+
* * PostgreSQL
|
|
19763
|
+
* * SQL Server
|
|
19764
|
+
* * MariaDB
|
|
19765
|
+
*
|
|
19766
|
+
* @param request CheckAccountNameAvailableRequest
|
|
19767
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19768
|
+
* @return CheckAccountNameAvailableResponse
|
|
19769
|
+
*/
|
|
19410
19770
|
checkAccountNameAvailableWithOptions(request: CheckAccountNameAvailableRequest, runtime: $Util.RuntimeOptions): Promise<CheckAccountNameAvailableResponse>;
|
|
19771
|
+
/**
|
|
19772
|
+
* ### [](#)Supported database engines
|
|
19773
|
+
* * MySQL
|
|
19774
|
+
* * PostgreSQL
|
|
19775
|
+
* * SQL Server
|
|
19776
|
+
* * MariaDB
|
|
19777
|
+
*
|
|
19778
|
+
* @param request CheckAccountNameAvailableRequest
|
|
19779
|
+
* @return CheckAccountNameAvailableResponse
|
|
19780
|
+
*/
|
|
19411
19781
|
checkAccountNameAvailable(request: CheckAccountNameAvailableRequest): Promise<CheckAccountNameAvailableResponse>;
|
|
19412
19782
|
/**
|
|
19413
19783
|
* ### [](#)Supported database engines
|
|
@@ -19699,7 +20069,7 @@ export default class Client extends OpenApi {
|
|
|
19699
20069
|
* * PostgreSQL
|
|
19700
20070
|
* ### [](#)References
|
|
19701
20071
|
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
19702
|
-
*
|
|
20072
|
+
* [Use the cloud migration feature](~~365562~~)
|
|
19703
20073
|
*
|
|
19704
20074
|
* @param request CreateCloudMigrationPrecheckTaskRequest
|
|
19705
20075
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -19711,7 +20081,7 @@ export default class Client extends OpenApi {
|
|
|
19711
20081
|
* * PostgreSQL
|
|
19712
20082
|
* ### [](#)References
|
|
19713
20083
|
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
19714
|
-
*
|
|
20084
|
+
* [Use the cloud migration feature](~~365562~~)
|
|
19715
20085
|
*
|
|
19716
20086
|
* @param request CreateCloudMigrationPrecheckTaskRequest
|
|
19717
20087
|
* @return CreateCloudMigrationPrecheckTaskResponse
|
|
@@ -19983,7 +20353,7 @@ export default class Client extends OpenApi {
|
|
|
19983
20353
|
*/
|
|
19984
20354
|
createDdrInstance(request: CreateDdrInstanceRequest): Promise<CreateDdrInstanceResponse>;
|
|
19985
20355
|
/**
|
|
19986
|
-
* >
|
|
20356
|
+
* > This operation is no longer maintained. You can use the CreateDiagnosticReport operation of Database Autonomy Service (DAS) to create a diagnostic report.
|
|
19987
20357
|
* After you call this operation to create a diagnostic report, you can call the DescribeDiagnosticReportList operation to download the diagnostic report.
|
|
19988
20358
|
*
|
|
19989
20359
|
* @param request CreateDiagnosticReportRequest
|
|
@@ -19992,7 +20362,7 @@ export default class Client extends OpenApi {
|
|
|
19992
20362
|
*/
|
|
19993
20363
|
createDiagnosticReportWithOptions(request: CreateDiagnosticReportRequest, runtime: $Util.RuntimeOptions): Promise<CreateDiagnosticReportResponse>;
|
|
19994
20364
|
/**
|
|
19995
|
-
* >
|
|
20365
|
+
* > This operation is no longer maintained. You can use the CreateDiagnosticReport operation of Database Autonomy Service (DAS) to create a diagnostic report.
|
|
19996
20366
|
* After you call this operation to create a diagnostic report, you can call the DescribeDiagnosticReportList operation to download the diagnostic report.
|
|
19997
20367
|
*
|
|
19998
20368
|
* @param request CreateDiagnosticReportRequest
|
|
@@ -20271,13 +20641,9 @@ export default class Client extends OpenApi {
|
|
|
20271
20641
|
/**
|
|
20272
20642
|
* ### [](#)Supported database engines
|
|
20273
20643
|
* Your RDS instance runs SQL Server 2008 R2 with local disks.
|
|
20274
|
-
* ### [](#)
|
|
20275
|
-
*
|
|
20276
|
-
*
|
|
20277
|
-
* * Your instance is in the Running state.
|
|
20278
|
-
* * Your instance does not have ongoing migration tasks.
|
|
20279
|
-
* * The last creation of a backup file is complete.
|
|
20280
|
-
* > After a temporary instance is created, the temporary instance inherits the accounts and databases in the backup set.
|
|
20644
|
+
* ### [](#)References
|
|
20645
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
20646
|
+
* [Restore the data of an ApsaraDB RDS for SQL Server instance by using a temporary RDS instance](~~95724~~)
|
|
20281
20647
|
*
|
|
20282
20648
|
* @param request CreateTempDBInstanceRequest
|
|
20283
20649
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -20287,13 +20653,9 @@ export default class Client extends OpenApi {
|
|
|
20287
20653
|
/**
|
|
20288
20654
|
* ### [](#)Supported database engines
|
|
20289
20655
|
* Your RDS instance runs SQL Server 2008 R2 with local disks.
|
|
20290
|
-
* ### [](#)
|
|
20291
|
-
*
|
|
20292
|
-
*
|
|
20293
|
-
* * Your instance is in the Running state.
|
|
20294
|
-
* * Your instance does not have ongoing migration tasks.
|
|
20295
|
-
* * The last creation of a backup file is complete.
|
|
20296
|
-
* > After a temporary instance is created, the temporary instance inherits the accounts and databases in the backup set.
|
|
20656
|
+
* ### [](#)References
|
|
20657
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
20658
|
+
* [Restore the data of an ApsaraDB RDS for SQL Server instance by using a temporary RDS instance](~~95724~~)
|
|
20297
20659
|
*
|
|
20298
20660
|
* @param request CreateTempDBInstanceRequest
|
|
20299
20661
|
* @return CreateTempDBInstanceResponse
|
|
@@ -21104,7 +21466,28 @@ export default class Client extends OpenApi {
|
|
|
21104
21466
|
* @return DescribeCharacterSetNameResponse
|
|
21105
21467
|
*/
|
|
21106
21468
|
describeCharacterSetName(request: DescribeCharacterSetNameRequest): Promise<DescribeCharacterSetNameResponse>;
|
|
21469
|
+
/**
|
|
21470
|
+
* ### [](#)Supported database engines
|
|
21471
|
+
* * MySQL
|
|
21472
|
+
* * PostgreSQL
|
|
21473
|
+
* * SQL Server
|
|
21474
|
+
* * MariaDB
|
|
21475
|
+
*
|
|
21476
|
+
* @param request DescribeClassDetailsRequest
|
|
21477
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
21478
|
+
* @return DescribeClassDetailsResponse
|
|
21479
|
+
*/
|
|
21107
21480
|
describeClassDetailsWithOptions(request: DescribeClassDetailsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeClassDetailsResponse>;
|
|
21481
|
+
/**
|
|
21482
|
+
* ### [](#)Supported database engines
|
|
21483
|
+
* * MySQL
|
|
21484
|
+
* * PostgreSQL
|
|
21485
|
+
* * SQL Server
|
|
21486
|
+
* * MariaDB
|
|
21487
|
+
*
|
|
21488
|
+
* @param request DescribeClassDetailsRequest
|
|
21489
|
+
* @return DescribeClassDetailsResponse
|
|
21490
|
+
*/
|
|
21108
21491
|
describeClassDetails(request: DescribeClassDetailsRequest): Promise<DescribeClassDetailsResponse>;
|
|
21109
21492
|
/**
|
|
21110
21493
|
* ### [](#)Supported database engines
|
|
@@ -21238,7 +21621,8 @@ export default class Client extends OpenApi {
|
|
|
21238
21621
|
* * PostgreSQL
|
|
21239
21622
|
* * SQL Server
|
|
21240
21623
|
* ### [](#)References
|
|
21241
|
-
*
|
|
21624
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
21625
|
+
* * [Use the cross-region backup feature for an ApsaraDB RDS for MySQL instance](~~120824~~)
|
|
21242
21626
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for SQL Server instance](~~187923~~)
|
|
21243
21627
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for PostgreSQL instance](~~206671~~)
|
|
21244
21628
|
* > For more information about how to query cross-region data backup files, see [DescribeCrossRegionBackups](~~121733~~).
|
|
@@ -21254,7 +21638,8 @@ export default class Client extends OpenApi {
|
|
|
21254
21638
|
* * PostgreSQL
|
|
21255
21639
|
* * SQL Server
|
|
21256
21640
|
* ### [](#)References
|
|
21257
|
-
*
|
|
21641
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
21642
|
+
* * [Use the cross-region backup feature for an ApsaraDB RDS for MySQL instance](~~120824~~)
|
|
21258
21643
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for SQL Server instance](~~187923~~)
|
|
21259
21644
|
* * [Use the cross-region backup feature for an ApsaraDB RDS for PostgreSQL instance](~~206671~~)
|
|
21260
21645
|
* > For more information about how to query cross-region data backup files, see [DescribeCrossRegionBackups](~~121733~~).
|
|
@@ -22045,6 +22430,10 @@ export default class Client extends OpenApi {
|
|
|
22045
22430
|
* @return DescribeHASwitchConfigResponse
|
|
22046
22431
|
*/
|
|
22047
22432
|
describeHASwitchConfig(request: DescribeHASwitchConfigRequest): Promise<DescribeHASwitchConfigResponse>;
|
|
22433
|
+
describeHistoryEventsWithOptions(request: DescribeHistoryEventsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeHistoryEventsResponse>;
|
|
22434
|
+
describeHistoryEvents(request: DescribeHistoryEventsRequest): Promise<DescribeHistoryEventsResponse>;
|
|
22435
|
+
describeHistoryEventsStatWithOptions(request: DescribeHistoryEventsStatRequest, runtime: $Util.RuntimeOptions): Promise<DescribeHistoryEventsStatResponse>;
|
|
22436
|
+
describeHistoryEventsStat(request: DescribeHistoryEventsStatRequest): Promise<DescribeHistoryEventsStatResponse>;
|
|
22048
22437
|
/**
|
|
22049
22438
|
* ### [](#)Supported database engines
|
|
22050
22439
|
* * MySQL
|
|
@@ -22076,6 +22465,8 @@ export default class Client extends OpenApi {
|
|
|
22076
22465
|
* @return DescribeHistoryTasksResponse
|
|
22077
22466
|
*/
|
|
22078
22467
|
describeHistoryTasks(request: DescribeHistoryTasksRequest): Promise<DescribeHistoryTasksResponse>;
|
|
22468
|
+
describeHistoryTasksStatWithOptions(request: DescribeHistoryTasksStatRequest, runtime: $Util.RuntimeOptions): Promise<DescribeHistoryTasksStatResponse>;
|
|
22469
|
+
describeHistoryTasksStat(request: DescribeHistoryTasksStatRequest): Promise<DescribeHistoryTasksStatResponse>;
|
|
22079
22470
|
describeHostGroupElasticStrategyParametersWithOptions(request: DescribeHostGroupElasticStrategyParametersRequest, runtime: $Util.RuntimeOptions): Promise<DescribeHostGroupElasticStrategyParametersResponse>;
|
|
22080
22471
|
describeHostGroupElasticStrategyParameters(request: DescribeHostGroupElasticStrategyParametersRequest): Promise<DescribeHostGroupElasticStrategyParametersResponse>;
|
|
22081
22472
|
/**
|
|
@@ -22269,8 +22660,11 @@ export default class Client extends OpenApi {
|
|
|
22269
22660
|
*/
|
|
22270
22661
|
describeMigrateTaskById(request: DescribeMigrateTaskByIdRequest): Promise<DescribeMigrateTaskByIdResponse>;
|
|
22271
22662
|
/**
|
|
22663
|
+
* ### [](#)Supported database engine
|
|
22664
|
+
* * SQL Server
|
|
22665
|
+
* ### [](#)Usage notes
|
|
22272
22666
|
* This operation allows you to query the migration tasks that are created for the instance over the last week.
|
|
22273
|
-
*
|
|
22667
|
+
* ### [](#)Precautions
|
|
22274
22668
|
* * This operation is supported only for migration tasks that are created to migrate full backup files.
|
|
22275
22669
|
* * This operation is not supported for instances that run SQL Server 2017 on RDS Cluster Edition.
|
|
22276
22670
|
*
|
|
@@ -22280,8 +22674,11 @@ export default class Client extends OpenApi {
|
|
|
22280
22674
|
*/
|
|
22281
22675
|
describeMigrateTasksWithOptions(request: DescribeMigrateTasksRequest, runtime: $Util.RuntimeOptions): Promise<DescribeMigrateTasksResponse>;
|
|
22282
22676
|
/**
|
|
22677
|
+
* ### [](#)Supported database engine
|
|
22678
|
+
* * SQL Server
|
|
22679
|
+
* ### [](#)Usage notes
|
|
22283
22680
|
* This operation allows you to query the migration tasks that are created for the instance over the last week.
|
|
22284
|
-
*
|
|
22681
|
+
* ### [](#)Precautions
|
|
22285
22682
|
* * This operation is supported only for migration tasks that are created to migrate full backup files.
|
|
22286
22683
|
* * This operation is not supported for instances that run SQL Server 2017 on RDS Cluster Edition.
|
|
22287
22684
|
*
|
|
@@ -22398,8 +22795,6 @@ export default class Client extends OpenApi {
|
|
|
22398
22795
|
* ### [](#)Supported database engines
|
|
22399
22796
|
* * MySQL
|
|
22400
22797
|
* * PostgreSQL
|
|
22401
|
-
* * SQL Server
|
|
22402
|
-
* * MariaDB
|
|
22403
22798
|
* ### [](#)References
|
|
22404
22799
|
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
22405
22800
|
* * [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~)
|
|
@@ -22414,8 +22809,6 @@ export default class Client extends OpenApi {
|
|
|
22414
22809
|
* ### [](#)Supported database engines
|
|
22415
22810
|
* * MySQL
|
|
22416
22811
|
* * PostgreSQL
|
|
22417
|
-
* * SQL Server
|
|
22418
|
-
* * MariaDB
|
|
22419
22812
|
* ### [](#)References
|
|
22420
22813
|
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
22421
22814
|
* * [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~)
|
|
@@ -22663,8 +23056,10 @@ export default class Client extends OpenApi {
|
|
|
22663
23056
|
*/
|
|
22664
23057
|
describeSQLCollectorPolicy(request: DescribeSQLCollectorPolicyRequest): Promise<DescribeSQLCollectorPolicyResponse>;
|
|
22665
23058
|
/**
|
|
22666
|
-
*
|
|
22667
|
-
*
|
|
23059
|
+
* ### [](#)Supported database engines
|
|
23060
|
+
* * MySQL
|
|
23061
|
+
* * PostgreSQL
|
|
23062
|
+
* * SQL Server
|
|
22668
23063
|
*
|
|
22669
23064
|
* @param request DescribeSQLCollectorRetentionRequest
|
|
22670
23065
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -22672,8 +23067,10 @@ export default class Client extends OpenApi {
|
|
|
22672
23067
|
*/
|
|
22673
23068
|
describeSQLCollectorRetentionWithOptions(request: DescribeSQLCollectorRetentionRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSQLCollectorRetentionResponse>;
|
|
22674
23069
|
/**
|
|
22675
|
-
*
|
|
22676
|
-
*
|
|
23070
|
+
* ### [](#)Supported database engines
|
|
23071
|
+
* * MySQL
|
|
23072
|
+
* * PostgreSQL
|
|
23073
|
+
* * SQL Server
|
|
22677
23074
|
*
|
|
22678
23075
|
* @param request DescribeSQLCollectorRetentionRequest
|
|
22679
23076
|
* @return DescribeSQLCollectorRetentionResponse
|
|
@@ -22707,11 +23104,11 @@ export default class Client extends OpenApi {
|
|
|
22707
23104
|
*/
|
|
22708
23105
|
describeSQLLogFiles(request: DescribeSQLLogFilesRequest): Promise<DescribeSQLLogFilesResponse>;
|
|
22709
23106
|
/**
|
|
22710
|
-
*
|
|
23107
|
+
* ### [](#)Supported database engines
|
|
22711
23108
|
* * MySQL
|
|
22712
|
-
* * SQL Server
|
|
22713
23109
|
* * PostgreSQL
|
|
22714
|
-
*
|
|
23110
|
+
* * SQL Server
|
|
23111
|
+
* ### [Usage notes](#)
|
|
22715
23112
|
* * You can call this operation up to 1,000 times per minute per account. The calls initiated by using both your Alibaba Cloud account and RAM users within your Alibaba Cloud account are counted.
|
|
22716
23113
|
* * This operation cannot be used to query the logs that are generated by SQL Explorer Trial Edition for an ApsaraDB RDS for MySQL instance.
|
|
22717
23114
|
* * When you call this operation and set the **Form** parameter to **File** to generate an audit file, a maximum of 1 million log entries can be recorded in the audit file, and you cannot filter log entries by keyword.
|
|
@@ -22722,11 +23119,11 @@ export default class Client extends OpenApi {
|
|
|
22722
23119
|
*/
|
|
22723
23120
|
describeSQLLogRecordsWithOptions(request: DescribeSQLLogRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSQLLogRecordsResponse>;
|
|
22724
23121
|
/**
|
|
22725
|
-
*
|
|
23122
|
+
* ### [](#)Supported database engines
|
|
22726
23123
|
* * MySQL
|
|
22727
|
-
* * SQL Server
|
|
22728
23124
|
* * PostgreSQL
|
|
22729
|
-
*
|
|
23125
|
+
* * SQL Server
|
|
23126
|
+
* ### [Usage notes](#)
|
|
22730
23127
|
* * You can call this operation up to 1,000 times per minute per account. The calls initiated by using both your Alibaba Cloud account and RAM users within your Alibaba Cloud account are counted.
|
|
22731
23128
|
* * This operation cannot be used to query the logs that are generated by SQL Explorer Trial Edition for an ApsaraDB RDS for MySQL instance.
|
|
22732
23129
|
* * When you call this operation and set the **Form** parameter to **File** to generate an audit file, a maximum of 1 million log entries can be recorded in the audit file, and you cannot filter log entries by keyword.
|
|
@@ -22755,7 +23152,15 @@ export default class Client extends OpenApi {
|
|
|
22755
23152
|
*/
|
|
22756
23153
|
describeSecrets(request: DescribeSecretsRequest): Promise<DescribeSecretsResponse>;
|
|
22757
23154
|
/**
|
|
22758
|
-
*
|
|
23155
|
+
* ### [](#)Supported database engines
|
|
23156
|
+
* * MySQL
|
|
23157
|
+
* * PostgreSQL
|
|
23158
|
+
* * SQL Server
|
|
23159
|
+
* ### [](#)References
|
|
23160
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
23161
|
+
* * [Configure a security group for an ApsaraDB RDS for MySQL instance](~~201042~~)
|
|
23162
|
+
* * [Configure a security group for an ApsaraDB RDS for PostgreSQL instance](~~206310~~)
|
|
23163
|
+
* * [Configure a security group for an ApsaraDB RDS for SQL Server instance](~~2392322~~)
|
|
22759
23164
|
*
|
|
22760
23165
|
* @param request DescribeSecurityGroupConfigurationRequest
|
|
22761
23166
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -22763,7 +23168,15 @@ export default class Client extends OpenApi {
|
|
|
22763
23168
|
*/
|
|
22764
23169
|
describeSecurityGroupConfigurationWithOptions(request: DescribeSecurityGroupConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSecurityGroupConfigurationResponse>;
|
|
22765
23170
|
/**
|
|
22766
|
-
*
|
|
23171
|
+
* ### [](#)Supported database engines
|
|
23172
|
+
* * MySQL
|
|
23173
|
+
* * PostgreSQL
|
|
23174
|
+
* * SQL Server
|
|
23175
|
+
* ### [](#)References
|
|
23176
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
23177
|
+
* * [Configure a security group for an ApsaraDB RDS for MySQL instance](~~201042~~)
|
|
23178
|
+
* * [Configure a security group for an ApsaraDB RDS for PostgreSQL instance](~~206310~~)
|
|
23179
|
+
* * [Configure a security group for an ApsaraDB RDS for SQL Server instance](~~2392322~~)
|
|
22767
23180
|
*
|
|
22768
23181
|
* @param request DescribeSecurityGroupConfigurationRequest
|
|
22769
23182
|
* @return DescribeSecurityGroupConfigurationResponse
|
|
@@ -23295,7 +23708,11 @@ export default class Client extends OpenApi {
|
|
|
23295
23708
|
*/
|
|
23296
23709
|
listUserBackupFiles(request: ListUserBackupFilesRequest): Promise<ListUserBackupFilesResponse>;
|
|
23297
23710
|
/**
|
|
23298
|
-
*
|
|
23711
|
+
* ### [](#)Supported database engines
|
|
23712
|
+
* PostgreSQL
|
|
23713
|
+
* ### [](#)References
|
|
23714
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
23715
|
+
* [Lock an account of an ApsaraDB RDS for PostgreSQL instance](~~147649~~)
|
|
23299
23716
|
*
|
|
23300
23717
|
* @param request LockAccountRequest
|
|
23301
23718
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -23303,7 +23720,11 @@ export default class Client extends OpenApi {
|
|
|
23303
23720
|
*/
|
|
23304
23721
|
lockAccountWithOptions(request: LockAccountRequest, runtime: $Util.RuntimeOptions): Promise<LockAccountResponse>;
|
|
23305
23722
|
/**
|
|
23306
|
-
*
|
|
23723
|
+
* ### [](#)Supported database engines
|
|
23724
|
+
* PostgreSQL
|
|
23725
|
+
* ### [](#)References
|
|
23726
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
23727
|
+
* [Lock an account of an ApsaraDB RDS for PostgreSQL instance](~~147649~~)
|
|
23307
23728
|
*
|
|
23308
23729
|
* @param request LockAccountRequest
|
|
23309
23730
|
* @return LockAccountResponse
|
|
@@ -23356,11 +23777,13 @@ export default class Client extends OpenApi {
|
|
|
23356
23777
|
*/
|
|
23357
23778
|
migrateDBInstance(request: MigrateDBInstanceRequest): Promise<MigrateDBInstanceResponse>;
|
|
23358
23779
|
/**
|
|
23359
|
-
*
|
|
23360
|
-
* *
|
|
23361
|
-
*
|
|
23362
|
-
*
|
|
23363
|
-
*
|
|
23780
|
+
* ### [](#)Supported database engines
|
|
23781
|
+
* * MySQL
|
|
23782
|
+
* * PostgreSQL
|
|
23783
|
+
* ### [](#)References
|
|
23784
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
23785
|
+
* * [Change the whitelist mode of an ApsaraDB RDS for MySQL instance to the enhanced whitelist mode](~~96117~~)
|
|
23786
|
+
* * [Change the whitelist mode of an ApsaraDB RDS for PostgreSQL instance to the enhanced whitelist mode](~~96767~~)
|
|
23364
23787
|
*
|
|
23365
23788
|
* @param request MigrateSecurityIPModeRequest
|
|
23366
23789
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -23368,11 +23791,13 @@ export default class Client extends OpenApi {
|
|
|
23368
23791
|
*/
|
|
23369
23792
|
migrateSecurityIPModeWithOptions(request: MigrateSecurityIPModeRequest, runtime: $Util.RuntimeOptions): Promise<MigrateSecurityIPModeResponse>;
|
|
23370
23793
|
/**
|
|
23371
|
-
*
|
|
23372
|
-
* *
|
|
23373
|
-
*
|
|
23374
|
-
*
|
|
23375
|
-
*
|
|
23794
|
+
* ### [](#)Supported database engines
|
|
23795
|
+
* * MySQL
|
|
23796
|
+
* * PostgreSQL
|
|
23797
|
+
* ### [](#)References
|
|
23798
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
23799
|
+
* * [Change the whitelist mode of an ApsaraDB RDS for MySQL instance to the enhanced whitelist mode](~~96117~~)
|
|
23800
|
+
* * [Change the whitelist mode of an ApsaraDB RDS for PostgreSQL instance to the enhanced whitelist mode](~~96767~~)
|
|
23376
23801
|
*
|
|
23377
23802
|
* @param request MigrateSecurityIPModeRequest
|
|
23378
23803
|
* @return MigrateSecurityIPModeResponse
|
|
@@ -24279,6 +24704,8 @@ export default class Client extends OpenApi {
|
|
|
24279
24704
|
* @return ModifyDbProxyInstanceSslResponse
|
|
24280
24705
|
*/
|
|
24281
24706
|
modifyDbProxyInstanceSsl(request: ModifyDbProxyInstanceSslRequest): Promise<ModifyDbProxyInstanceSslResponse>;
|
|
24707
|
+
modifyEventInfoWithOptions(request: ModifyEventInfoRequest, runtime: $Util.RuntimeOptions): Promise<ModifyEventInfoResponse>;
|
|
24708
|
+
modifyEventInfo(request: ModifyEventInfoRequest): Promise<ModifyEventInfoResponse>;
|
|
24282
24709
|
/**
|
|
24283
24710
|
* ### [](#)Supported database engines
|
|
24284
24711
|
* * MySQL
|
|
@@ -24415,8 +24842,17 @@ export default class Client extends OpenApi {
|
|
|
24415
24842
|
*/
|
|
24416
24843
|
modifyPGHbaConfig(request: ModifyPGHbaConfigRequest): Promise<ModifyPGHbaConfigResponse>;
|
|
24417
24844
|
/**
|
|
24418
|
-
*
|
|
24419
|
-
*
|
|
24845
|
+
* ### [](#)Supported database engines
|
|
24846
|
+
* * MySQL
|
|
24847
|
+
* * PostgreSQL
|
|
24848
|
+
* * SQL Server
|
|
24849
|
+
* * MariaDB
|
|
24850
|
+
* ### [](#)References
|
|
24851
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
24852
|
+
* * [Modify the parameters of an ApsaraDB RDS for MySQL instance](~~96063~~)
|
|
24853
|
+
* * [Modify the parameters of an ApsaraDB RDS for PostgreSQL instance](~~96751~~)
|
|
24854
|
+
* * [Modify the parameters of an ApsaraDB RDS for SQL Server instance](~~95667~~)
|
|
24855
|
+
* * [Modify the parameters of an ApsaraDB RDS for MariaDB instance](~~97130~~)
|
|
24420
24856
|
*
|
|
24421
24857
|
* @param request ModifyParameterRequest
|
|
24422
24858
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -24424,8 +24860,17 @@ export default class Client extends OpenApi {
|
|
|
24424
24860
|
*/
|
|
24425
24861
|
modifyParameterWithOptions(request: ModifyParameterRequest, runtime: $Util.RuntimeOptions): Promise<ModifyParameterResponse>;
|
|
24426
24862
|
/**
|
|
24427
|
-
*
|
|
24428
|
-
*
|
|
24863
|
+
* ### [](#)Supported database engines
|
|
24864
|
+
* * MySQL
|
|
24865
|
+
* * PostgreSQL
|
|
24866
|
+
* * SQL Server
|
|
24867
|
+
* * MariaDB
|
|
24868
|
+
* ### [](#)References
|
|
24869
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
24870
|
+
* * [Modify the parameters of an ApsaraDB RDS for MySQL instance](~~96063~~)
|
|
24871
|
+
* * [Modify the parameters of an ApsaraDB RDS for PostgreSQL instance](~~96751~~)
|
|
24872
|
+
* * [Modify the parameters of an ApsaraDB RDS for SQL Server instance](~~95667~~)
|
|
24873
|
+
* * [Modify the parameters of an ApsaraDB RDS for MariaDB instance](~~97130~~)
|
|
24429
24874
|
*
|
|
24430
24875
|
* @param request ModifyParameterRequest
|
|
24431
24876
|
* @return ModifyParameterResponse
|
|
@@ -24604,7 +25049,15 @@ export default class Client extends OpenApi {
|
|
|
24604
25049
|
*/
|
|
24605
25050
|
modifySQLCollectorRetention(request: ModifySQLCollectorRetentionRequest): Promise<ModifySQLCollectorRetentionResponse>;
|
|
24606
25051
|
/**
|
|
24607
|
-
*
|
|
25052
|
+
* ### [](#)Supported database engines
|
|
25053
|
+
* * MySQL
|
|
25054
|
+
* * PostgreSQL
|
|
25055
|
+
* * SQL Server
|
|
25056
|
+
* ### [](#)References
|
|
25057
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
25058
|
+
* * [Configure a security group for an ApsaraDB RDS for MySQL instance](~~201042~~)
|
|
25059
|
+
* * [Configure a security group for an ApsaraDB RDS for PostgreSQL instance](~~206310~~)
|
|
25060
|
+
* * [Configure a security group for an ApsaraDB RDS for SQL Server instance](~~2392322~~)
|
|
24608
25061
|
*
|
|
24609
25062
|
* @param request ModifySecurityGroupConfigurationRequest
|
|
24610
25063
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -24612,7 +25065,15 @@ export default class Client extends OpenApi {
|
|
|
24612
25065
|
*/
|
|
24613
25066
|
modifySecurityGroupConfigurationWithOptions(request: ModifySecurityGroupConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<ModifySecurityGroupConfigurationResponse>;
|
|
24614
25067
|
/**
|
|
24615
|
-
*
|
|
25068
|
+
* ### [](#)Supported database engines
|
|
25069
|
+
* * MySQL
|
|
25070
|
+
* * PostgreSQL
|
|
25071
|
+
* * SQL Server
|
|
25072
|
+
* ### [](#)References
|
|
25073
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
25074
|
+
* * [Configure a security group for an ApsaraDB RDS for MySQL instance](~~201042~~)
|
|
25075
|
+
* * [Configure a security group for an ApsaraDB RDS for PostgreSQL instance](~~206310~~)
|
|
25076
|
+
* * [Configure a security group for an ApsaraDB RDS for SQL Server instance](~~2392322~~)
|
|
24616
25077
|
*
|
|
24617
25078
|
* @param request ModifySecurityGroupConfigurationRequest
|
|
24618
25079
|
* @return ModifySecurityGroupConfigurationResponse
|
|
@@ -24653,6 +25114,8 @@ export default class Client extends OpenApi {
|
|
|
24653
25114
|
* @return ModifySecurityIpsResponse
|
|
24654
25115
|
*/
|
|
24655
25116
|
modifySecurityIps(request: ModifySecurityIpsRequest): Promise<ModifySecurityIpsResponse>;
|
|
25117
|
+
modifyTaskInfoWithOptions(request: ModifyTaskInfoRequest, runtime: $Util.RuntimeOptions): Promise<ModifyTaskInfoResponse>;
|
|
25118
|
+
modifyTaskInfo(request: ModifyTaskInfoRequest): Promise<ModifyTaskInfoResponse>;
|
|
24656
25119
|
/**
|
|
24657
25120
|
* ### Supported database engines
|
|
24658
25121
|
* * RDS MySQL
|
|
@@ -25041,18 +25504,39 @@ export default class Client extends OpenApi {
|
|
|
25041
25504
|
* @return RestartDBInstanceResponse
|
|
25042
25505
|
*/
|
|
25043
25506
|
restartDBInstance(request: RestartDBInstanceRequest): Promise<RestartDBInstanceResponse>;
|
|
25507
|
+
/**
|
|
25508
|
+
* > Before restoration, you can call the [CheckCreateDdrDBInstance](~~121721~~) operation to check whether a cross-region backup set can be used for cross-region restoration.
|
|
25509
|
+
* ### [](#)Supported database engine
|
|
25510
|
+
* MySQL
|
|
25511
|
+
* ### [](#)References
|
|
25512
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
25513
|
+
* * [Back up an ApsaraDB RDS for MySQL instance across regions](~~120824~~)
|
|
25514
|
+
* * [Restore the data of an ApsaraDB RDS for MySQL instance across regions](~~120875~~)
|
|
25515
|
+
*
|
|
25516
|
+
* @param request RestoreDdrTableRequest
|
|
25517
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
25518
|
+
* @return RestoreDdrTableResponse
|
|
25519
|
+
*/
|
|
25044
25520
|
restoreDdrTableWithOptions(request: RestoreDdrTableRequest, runtime: $Util.RuntimeOptions): Promise<RestoreDdrTableResponse>;
|
|
25521
|
+
/**
|
|
25522
|
+
* > Before restoration, you can call the [CheckCreateDdrDBInstance](~~121721~~) operation to check whether a cross-region backup set can be used for cross-region restoration.
|
|
25523
|
+
* ### [](#)Supported database engine
|
|
25524
|
+
* MySQL
|
|
25525
|
+
* ### [](#)References
|
|
25526
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
25527
|
+
* * [Back up an ApsaraDB RDS for MySQL instance across regions](~~120824~~)
|
|
25528
|
+
* * [Restore the data of an ApsaraDB RDS for MySQL instance across regions](~~120875~~)
|
|
25529
|
+
*
|
|
25530
|
+
* @param request RestoreDdrTableRequest
|
|
25531
|
+
* @return RestoreDdrTableResponse
|
|
25532
|
+
*/
|
|
25045
25533
|
restoreDdrTable(request: RestoreDdrTableRequest): Promise<RestoreDdrTableResponse>;
|
|
25046
25534
|
/**
|
|
25047
25535
|
* ### [](#)Supported database engines
|
|
25048
25536
|
* MySQL
|
|
25049
|
-
* ### [](#)
|
|
25050
|
-
*
|
|
25051
|
-
*
|
|
25052
|
-
* * The instance does not have ongoing migration tasks.
|
|
25053
|
-
* * If you want to restore data to a specific point in time, make sure that the log backup feature is enabled for the instance. For more information, see [Back up an ApsaraDB RDS for MySQL instance](~~98818~~).
|
|
25054
|
-
* * The restoration of individual databases or tables is enabled, and new backups are created. For more information, see [Restore individual databases and tables of an ApsaraDB RDS for MySQL instance](~~103175~~).
|
|
25055
|
-
* * The names that you want to use for the restored tables do not exist in the instance.
|
|
25537
|
+
* ### [](#)References
|
|
25538
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
25539
|
+
* [Restore individual databases and tables](~~103175~~)
|
|
25056
25540
|
*
|
|
25057
25541
|
* @param request RestoreTableRequest
|
|
25058
25542
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -25062,13 +25546,9 @@ export default class Client extends OpenApi {
|
|
|
25062
25546
|
/**
|
|
25063
25547
|
* ### [](#)Supported database engines
|
|
25064
25548
|
* MySQL
|
|
25065
|
-
* ### [](#)
|
|
25066
|
-
*
|
|
25067
|
-
*
|
|
25068
|
-
* * The instance does not have ongoing migration tasks.
|
|
25069
|
-
* * If you want to restore data to a specific point in time, make sure that the log backup feature is enabled for the instance. For more information, see [Back up an ApsaraDB RDS for MySQL instance](~~98818~~).
|
|
25070
|
-
* * The restoration of individual databases or tables is enabled, and new backups are created. For more information, see [Restore individual databases and tables of an ApsaraDB RDS for MySQL instance](~~103175~~).
|
|
25071
|
-
* * The names that you want to use for the restored tables do not exist in the instance.
|
|
25549
|
+
* ### [](#)References
|
|
25550
|
+
* > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
|
|
25551
|
+
* [Restore individual databases and tables](~~103175~~)
|
|
25072
25552
|
*
|
|
25073
25553
|
* @param request RestoreTableRequest
|
|
25074
25554
|
* @return RestoreTableResponse
|