@alicloud/rds20140815 2.6.0 → 2.7.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/src/client.ts CHANGED
@@ -4773,6 +4773,90 @@ export class CreateTempDBInstanceResponse extends $tea.Model {
4773
4773
  }
4774
4774
  }
4775
4775
 
4776
+ export class CreateYouhuiForOrderRequest extends $tea.Model {
4777
+ activityId?: number;
4778
+ ownerId?: string;
4779
+ promotionId?: number;
4780
+ regionId?: string;
4781
+ resourceOwnerAccount?: string;
4782
+ resourceOwnerId?: string;
4783
+ static names(): { [key: string]: string } {
4784
+ return {
4785
+ activityId: 'ActivityId',
4786
+ ownerId: 'OwnerId',
4787
+ promotionId: 'PromotionId',
4788
+ regionId: 'RegionId',
4789
+ resourceOwnerAccount: 'ResourceOwnerAccount',
4790
+ resourceOwnerId: 'ResourceOwnerId',
4791
+ };
4792
+ }
4793
+
4794
+ static types(): { [key: string]: any } {
4795
+ return {
4796
+ activityId: 'number',
4797
+ ownerId: 'string',
4798
+ promotionId: 'number',
4799
+ regionId: 'string',
4800
+ resourceOwnerAccount: 'string',
4801
+ resourceOwnerId: 'string',
4802
+ };
4803
+ }
4804
+
4805
+ constructor(map?: { [key: string]: any }) {
4806
+ super(map);
4807
+ }
4808
+ }
4809
+
4810
+ export class CreateYouhuiForOrderResponseBody extends $tea.Model {
4811
+ message?: string;
4812
+ requestId?: string;
4813
+ youhuiId?: string;
4814
+ static names(): { [key: string]: string } {
4815
+ return {
4816
+ message: 'Message',
4817
+ requestId: 'RequestId',
4818
+ youhuiId: 'YouhuiId',
4819
+ };
4820
+ }
4821
+
4822
+ static types(): { [key: string]: any } {
4823
+ return {
4824
+ message: 'string',
4825
+ requestId: 'string',
4826
+ youhuiId: 'string',
4827
+ };
4828
+ }
4829
+
4830
+ constructor(map?: { [key: string]: any }) {
4831
+ super(map);
4832
+ }
4833
+ }
4834
+
4835
+ export class CreateYouhuiForOrderResponse extends $tea.Model {
4836
+ headers: { [key: string]: string };
4837
+ statusCode: number;
4838
+ body: CreateYouhuiForOrderResponseBody;
4839
+ static names(): { [key: string]: string } {
4840
+ return {
4841
+ headers: 'headers',
4842
+ statusCode: 'statusCode',
4843
+ body: 'body',
4844
+ };
4845
+ }
4846
+
4847
+ static types(): { [key: string]: any } {
4848
+ return {
4849
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
4850
+ statusCode: 'number',
4851
+ body: CreateYouhuiForOrderResponseBody,
4852
+ };
4853
+ }
4854
+
4855
+ constructor(map?: { [key: string]: any }) {
4856
+ super(map);
4857
+ }
4858
+ }
4859
+
4776
4860
  export class DeleteADSettingRequest extends $tea.Model {
4777
4861
  clientToken?: string;
4778
4862
  DBInstanceId?: string;
@@ -8668,6 +8752,168 @@ export class DescribeCrossRegionLogBackupFilesResponse extends $tea.Model {
8668
8752
  }
8669
8753
  }
8670
8754
 
8755
+ export class DescribeCurrentModifyOrderRequest extends $tea.Model {
8756
+ clientToken?: string;
8757
+ dbInstanceId?: string;
8758
+ ownerId?: number;
8759
+ regionId?: string;
8760
+ resourceGroupId?: string;
8761
+ resourceOwnerAccount?: string;
8762
+ resourceOwnerId?: number;
8763
+ static names(): { [key: string]: string } {
8764
+ return {
8765
+ clientToken: 'ClientToken',
8766
+ dbInstanceId: 'DbInstanceId',
8767
+ ownerId: 'OwnerId',
8768
+ regionId: 'RegionId',
8769
+ resourceGroupId: 'ResourceGroupId',
8770
+ resourceOwnerAccount: 'ResourceOwnerAccount',
8771
+ resourceOwnerId: 'ResourceOwnerId',
8772
+ };
8773
+ }
8774
+
8775
+ static types(): { [key: string]: any } {
8776
+ return {
8777
+ clientToken: 'string',
8778
+ dbInstanceId: 'string',
8779
+ ownerId: 'number',
8780
+ regionId: 'string',
8781
+ resourceGroupId: 'string',
8782
+ resourceOwnerAccount: 'string',
8783
+ resourceOwnerId: 'number',
8784
+ };
8785
+ }
8786
+
8787
+ constructor(map?: { [key: string]: any }) {
8788
+ super(map);
8789
+ }
8790
+ }
8791
+
8792
+ export class DescribeCurrentModifyOrderResponseBody extends $tea.Model {
8793
+ modifyOrder?: DescribeCurrentModifyOrderResponseBodyModifyOrder[];
8794
+ requestId?: string;
8795
+ static names(): { [key: string]: string } {
8796
+ return {
8797
+ modifyOrder: 'ModifyOrder',
8798
+ requestId: 'RequestId',
8799
+ };
8800
+ }
8801
+
8802
+ static types(): { [key: string]: any } {
8803
+ return {
8804
+ modifyOrder: { 'type': 'array', 'itemType': DescribeCurrentModifyOrderResponseBodyModifyOrder },
8805
+ requestId: 'string',
8806
+ };
8807
+ }
8808
+
8809
+ constructor(map?: { [key: string]: any }) {
8810
+ super(map);
8811
+ }
8812
+ }
8813
+
8814
+ export class DescribeCurrentModifyOrderResponse extends $tea.Model {
8815
+ headers: { [key: string]: string };
8816
+ statusCode: number;
8817
+ body: DescribeCurrentModifyOrderResponseBody;
8818
+ static names(): { [key: string]: string } {
8819
+ return {
8820
+ headers: 'headers',
8821
+ statusCode: 'statusCode',
8822
+ body: 'body',
8823
+ };
8824
+ }
8825
+
8826
+ static types(): { [key: string]: any } {
8827
+ return {
8828
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
8829
+ statusCode: 'number',
8830
+ body: DescribeCurrentModifyOrderResponseBody,
8831
+ };
8832
+ }
8833
+
8834
+ constructor(map?: { [key: string]: any }) {
8835
+ super(map);
8836
+ }
8837
+ }
8838
+
8839
+ export class DescribeCustinsResourceInfoRequest extends $tea.Model {
8840
+ DBInstanceIds?: string;
8841
+ ownerId?: number;
8842
+ resourceGroupId?: string;
8843
+ resourceOwnerAccount?: string;
8844
+ resourceOwnerId?: number;
8845
+ static names(): { [key: string]: string } {
8846
+ return {
8847
+ DBInstanceIds: 'DBInstanceIds',
8848
+ ownerId: 'OwnerId',
8849
+ resourceGroupId: 'ResourceGroupId',
8850
+ resourceOwnerAccount: 'ResourceOwnerAccount',
8851
+ resourceOwnerId: 'ResourceOwnerId',
8852
+ };
8853
+ }
8854
+
8855
+ static types(): { [key: string]: any } {
8856
+ return {
8857
+ DBInstanceIds: 'string',
8858
+ ownerId: 'number',
8859
+ resourceGroupId: 'string',
8860
+ resourceOwnerAccount: 'string',
8861
+ resourceOwnerId: 'number',
8862
+ };
8863
+ }
8864
+
8865
+ constructor(map?: { [key: string]: any }) {
8866
+ super(map);
8867
+ }
8868
+ }
8869
+
8870
+ export class DescribeCustinsResourceInfoResponseBody extends $tea.Model {
8871
+ data?: DescribeCustinsResourceInfoResponseBodyData[];
8872
+ requestId?: string;
8873
+ static names(): { [key: string]: string } {
8874
+ return {
8875
+ data: 'Data',
8876
+ requestId: 'RequestId',
8877
+ };
8878
+ }
8879
+
8880
+ static types(): { [key: string]: any } {
8881
+ return {
8882
+ data: { 'type': 'array', 'itemType': DescribeCustinsResourceInfoResponseBodyData },
8883
+ requestId: 'string',
8884
+ };
8885
+ }
8886
+
8887
+ constructor(map?: { [key: string]: any }) {
8888
+ super(map);
8889
+ }
8890
+ }
8891
+
8892
+ export class DescribeCustinsResourceInfoResponse extends $tea.Model {
8893
+ headers: { [key: string]: string };
8894
+ statusCode: number;
8895
+ body: DescribeCustinsResourceInfoResponseBody;
8896
+ static names(): { [key: string]: string } {
8897
+ return {
8898
+ headers: 'headers',
8899
+ statusCode: 'statusCode',
8900
+ body: 'body',
8901
+ };
8902
+ }
8903
+
8904
+ static types(): { [key: string]: any } {
8905
+ return {
8906
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
8907
+ statusCode: 'number',
8908
+ body: DescribeCustinsResourceInfoResponseBody,
8909
+ };
8910
+ }
8911
+
8912
+ constructor(map?: { [key: string]: any }) {
8913
+ super(map);
8914
+ }
8915
+ }
8916
+
8671
8917
  export class DescribeDBInstanceAttributeRequest extends $tea.Model {
8672
8918
  DBInstanceId?: string;
8673
8919
  expired?: string;
@@ -8842,6 +9088,102 @@ export class DescribeDBInstanceByTagsResponse extends $tea.Model {
8842
9088
  }
8843
9089
  }
8844
9090
 
9091
+ export class DescribeDBInstanceConnectivityRequest extends $tea.Model {
9092
+ dbInstanceName?: string;
9093
+ ownerAccount?: string;
9094
+ ownerId?: number;
9095
+ resourceGroupId?: string;
9096
+ resourceOwnerAccount?: string;
9097
+ resourceOwnerId?: number;
9098
+ securityToken?: string;
9099
+ sourceIpAddress?: string;
9100
+ static names(): { [key: string]: string } {
9101
+ return {
9102
+ dbInstanceName: 'DbInstanceName',
9103
+ ownerAccount: 'OwnerAccount',
9104
+ ownerId: 'OwnerId',
9105
+ resourceGroupId: 'ResourceGroupId',
9106
+ resourceOwnerAccount: 'ResourceOwnerAccount',
9107
+ resourceOwnerId: 'ResourceOwnerId',
9108
+ securityToken: 'SecurityToken',
9109
+ sourceIpAddress: 'SourceIpAddress',
9110
+ };
9111
+ }
9112
+
9113
+ static types(): { [key: string]: any } {
9114
+ return {
9115
+ dbInstanceName: 'string',
9116
+ ownerAccount: 'string',
9117
+ ownerId: 'number',
9118
+ resourceGroupId: 'string',
9119
+ resourceOwnerAccount: 'string',
9120
+ resourceOwnerId: 'number',
9121
+ securityToken: 'string',
9122
+ sourceIpAddress: 'string',
9123
+ };
9124
+ }
9125
+
9126
+ constructor(map?: { [key: string]: any }) {
9127
+ super(map);
9128
+ }
9129
+ }
9130
+
9131
+ export class DescribeDBInstanceConnectivityResponseBody extends $tea.Model {
9132
+ connCheckErrorCode?: string;
9133
+ connCheckErrorMessage?: string;
9134
+ connCheckResult?: string;
9135
+ dbInstanceName?: string;
9136
+ requestId?: string;
9137
+ static names(): { [key: string]: string } {
9138
+ return {
9139
+ connCheckErrorCode: 'ConnCheckErrorCode',
9140
+ connCheckErrorMessage: 'ConnCheckErrorMessage',
9141
+ connCheckResult: 'ConnCheckResult',
9142
+ dbInstanceName: 'DbInstanceName',
9143
+ requestId: 'RequestId',
9144
+ };
9145
+ }
9146
+
9147
+ static types(): { [key: string]: any } {
9148
+ return {
9149
+ connCheckErrorCode: 'string',
9150
+ connCheckErrorMessage: 'string',
9151
+ connCheckResult: 'string',
9152
+ dbInstanceName: 'string',
9153
+ requestId: 'string',
9154
+ };
9155
+ }
9156
+
9157
+ constructor(map?: { [key: string]: any }) {
9158
+ super(map);
9159
+ }
9160
+ }
9161
+
9162
+ export class DescribeDBInstanceConnectivityResponse extends $tea.Model {
9163
+ headers: { [key: string]: string };
9164
+ statusCode: number;
9165
+ body: DescribeDBInstanceConnectivityResponseBody;
9166
+ static names(): { [key: string]: string } {
9167
+ return {
9168
+ headers: 'headers',
9169
+ statusCode: 'statusCode',
9170
+ body: 'body',
9171
+ };
9172
+ }
9173
+
9174
+ static types(): { [key: string]: any } {
9175
+ return {
9176
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
9177
+ statusCode: 'number',
9178
+ body: DescribeDBInstanceConnectivityResponseBody,
9179
+ };
9180
+ }
9181
+
9182
+ constructor(map?: { [key: string]: any }) {
9183
+ super(map);
9184
+ }
9185
+ }
9186
+
8845
9187
  export class DescribeDBInstanceDetailRequest extends $tea.Model {
8846
9188
  clientToken?: string;
8847
9189
  DBInstanceId?: string;
@@ -12373,6 +12715,93 @@ export class DescribeHistoryTasksResponse extends $tea.Model {
12373
12715
  }
12374
12716
  }
12375
12717
 
12718
+ export class DescribeHostGroupElasticStrategyParametersRequest extends $tea.Model {
12719
+ dedicatedHostGroupName?: string;
12720
+ regionId?: string;
12721
+ resourceGroupId?: string;
12722
+ resourceOwnerId?: number;
12723
+ static names(): { [key: string]: string } {
12724
+ return {
12725
+ dedicatedHostGroupName: 'DedicatedHostGroupName',
12726
+ regionId: 'RegionId',
12727
+ resourceGroupId: 'ResourceGroupId',
12728
+ resourceOwnerId: 'ResourceOwnerId',
12729
+ };
12730
+ }
12731
+
12732
+ static types(): { [key: string]: any } {
12733
+ return {
12734
+ dedicatedHostGroupName: 'string',
12735
+ regionId: 'string',
12736
+ resourceGroupId: 'string',
12737
+ resourceOwnerId: 'number',
12738
+ };
12739
+ }
12740
+
12741
+ constructor(map?: { [key: string]: any }) {
12742
+ super(map);
12743
+ }
12744
+ }
12745
+
12746
+ export class DescribeHostGroupElasticStrategyParametersResponseBody extends $tea.Model {
12747
+ cpuShar?: number;
12748
+ cpuZoom?: number;
12749
+ iopsZoom?: number;
12750
+ maxConnZoom?: number;
12751
+ memoryZoom?: number;
12752
+ requestId?: string;
12753
+ static names(): { [key: string]: string } {
12754
+ return {
12755
+ cpuShar: 'CpuShar',
12756
+ cpuZoom: 'CpuZoom',
12757
+ iopsZoom: 'IopsZoom',
12758
+ maxConnZoom: 'MaxConnZoom',
12759
+ memoryZoom: 'MemoryZoom',
12760
+ requestId: 'RequestId',
12761
+ };
12762
+ }
12763
+
12764
+ static types(): { [key: string]: any } {
12765
+ return {
12766
+ cpuShar: 'number',
12767
+ cpuZoom: 'number',
12768
+ iopsZoom: 'number',
12769
+ maxConnZoom: 'number',
12770
+ memoryZoom: 'number',
12771
+ requestId: 'string',
12772
+ };
12773
+ }
12774
+
12775
+ constructor(map?: { [key: string]: any }) {
12776
+ super(map);
12777
+ }
12778
+ }
12779
+
12780
+ export class DescribeHostGroupElasticStrategyParametersResponse extends $tea.Model {
12781
+ headers: { [key: string]: string };
12782
+ statusCode: number;
12783
+ body: DescribeHostGroupElasticStrategyParametersResponseBody;
12784
+ static names(): { [key: string]: string } {
12785
+ return {
12786
+ headers: 'headers',
12787
+ statusCode: 'statusCode',
12788
+ body: 'body',
12789
+ };
12790
+ }
12791
+
12792
+ static types(): { [key: string]: any } {
12793
+ return {
12794
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
12795
+ statusCode: 'number',
12796
+ body: DescribeHostGroupElasticStrategyParametersResponseBody,
12797
+ };
12798
+ }
12799
+
12800
+ constructor(map?: { [key: string]: any }) {
12801
+ super(map);
12802
+ }
12803
+ }
12804
+
12376
12805
  export class DescribeHostWebShellRequest extends $tea.Model {
12377
12806
  accountName?: string;
12378
12807
  accountPassword?: string;
@@ -13039,6 +13468,105 @@ export class DescribeLogBackupFilesResponse extends $tea.Model {
13039
13468
  }
13040
13469
  }
13041
13470
 
13471
+ export class DescribeMarketingActivityRequest extends $tea.Model {
13472
+ aliUid?: number;
13473
+ bid?: string;
13474
+ clientToken?: string;
13475
+ ownerId?: number;
13476
+ regionId?: string;
13477
+ resourceGroupId?: string;
13478
+ resourceOwnerAccount?: string;
13479
+ resourceOwnerId?: number;
13480
+ upgradeCode?: string;
13481
+ static names(): { [key: string]: string } {
13482
+ return {
13483
+ aliUid: 'AliUid',
13484
+ bid: 'Bid',
13485
+ clientToken: 'ClientToken',
13486
+ ownerId: 'OwnerId',
13487
+ regionId: 'RegionId',
13488
+ resourceGroupId: 'ResourceGroupId',
13489
+ resourceOwnerAccount: 'ResourceOwnerAccount',
13490
+ resourceOwnerId: 'ResourceOwnerId',
13491
+ upgradeCode: 'UpgradeCode',
13492
+ };
13493
+ }
13494
+
13495
+ static types(): { [key: string]: any } {
13496
+ return {
13497
+ aliUid: 'number',
13498
+ bid: 'string',
13499
+ clientToken: 'string',
13500
+ ownerId: 'number',
13501
+ regionId: 'string',
13502
+ resourceGroupId: 'string',
13503
+ resourceOwnerAccount: 'string',
13504
+ resourceOwnerId: 'number',
13505
+ upgradeCode: 'string',
13506
+ };
13507
+ }
13508
+
13509
+ constructor(map?: { [key: string]: any }) {
13510
+ super(map);
13511
+ }
13512
+ }
13513
+
13514
+ export class DescribeMarketingActivityResponseBody extends $tea.Model {
13515
+ aliUid?: number;
13516
+ bid?: string;
13517
+ items?: DescribeMarketingActivityResponseBodyItems[];
13518
+ regionId?: string;
13519
+ requestId?: string;
13520
+ static names(): { [key: string]: string } {
13521
+ return {
13522
+ aliUid: 'AliUid',
13523
+ bid: 'Bid',
13524
+ items: 'Items',
13525
+ regionId: 'RegionId',
13526
+ requestId: 'RequestId',
13527
+ };
13528
+ }
13529
+
13530
+ static types(): { [key: string]: any } {
13531
+ return {
13532
+ aliUid: 'number',
13533
+ bid: 'string',
13534
+ items: { 'type': 'array', 'itemType': DescribeMarketingActivityResponseBodyItems },
13535
+ regionId: 'string',
13536
+ requestId: 'string',
13537
+ };
13538
+ }
13539
+
13540
+ constructor(map?: { [key: string]: any }) {
13541
+ super(map);
13542
+ }
13543
+ }
13544
+
13545
+ export class DescribeMarketingActivityResponse extends $tea.Model {
13546
+ headers: { [key: string]: string };
13547
+ statusCode: number;
13548
+ body: DescribeMarketingActivityResponseBody;
13549
+ static names(): { [key: string]: string } {
13550
+ return {
13551
+ headers: 'headers',
13552
+ statusCode: 'statusCode',
13553
+ body: 'body',
13554
+ };
13555
+ }
13556
+
13557
+ static types(): { [key: string]: any } {
13558
+ return {
13559
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
13560
+ statusCode: 'number',
13561
+ body: DescribeMarketingActivityResponseBody,
13562
+ };
13563
+ }
13564
+
13565
+ constructor(map?: { [key: string]: any }) {
13566
+ super(map);
13567
+ }
13568
+ }
13569
+
13042
13570
  export class DescribeMetaListRequest extends $tea.Model {
13043
13571
  backupSetID?: number;
13044
13572
  clientToken?: string;
@@ -14426,6 +14954,81 @@ export class DescribePriceResponse extends $tea.Model {
14426
14954
  }
14427
14955
  }
14428
14956
 
14957
+ export class DescribeQuickSaleConfigRequest extends $tea.Model {
14958
+ commodity?: string;
14959
+ engine?: string;
14960
+ regionId?: string;
14961
+ static names(): { [key: string]: string } {
14962
+ return {
14963
+ commodity: 'Commodity',
14964
+ engine: 'Engine',
14965
+ regionId: 'RegionId',
14966
+ };
14967
+ }
14968
+
14969
+ static types(): { [key: string]: any } {
14970
+ return {
14971
+ commodity: 'string',
14972
+ engine: 'string',
14973
+ regionId: 'string',
14974
+ };
14975
+ }
14976
+
14977
+ constructor(map?: { [key: string]: any }) {
14978
+ super(map);
14979
+ }
14980
+ }
14981
+
14982
+ export class DescribeQuickSaleConfigResponseBody extends $tea.Model {
14983
+ commodity?: string;
14984
+ items?: { [key: string]: any };
14985
+ requestId?: string;
14986
+ static names(): { [key: string]: string } {
14987
+ return {
14988
+ commodity: 'Commodity',
14989
+ items: 'Items',
14990
+ requestId: 'RequestId',
14991
+ };
14992
+ }
14993
+
14994
+ static types(): { [key: string]: any } {
14995
+ return {
14996
+ commodity: 'string',
14997
+ items: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
14998
+ requestId: 'string',
14999
+ };
15000
+ }
15001
+
15002
+ constructor(map?: { [key: string]: any }) {
15003
+ super(map);
15004
+ }
15005
+ }
15006
+
15007
+ export class DescribeQuickSaleConfigResponse extends $tea.Model {
15008
+ headers: { [key: string]: string };
15009
+ statusCode: number;
15010
+ body: DescribeQuickSaleConfigResponseBody;
15011
+ static names(): { [key: string]: string } {
15012
+ return {
15013
+ headers: 'headers',
15014
+ statusCode: 'statusCode',
15015
+ body: 'body',
15016
+ };
15017
+ }
15018
+
15019
+ static types(): { [key: string]: any } {
15020
+ return {
15021
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
15022
+ statusCode: 'number',
15023
+ body: DescribeQuickSaleConfigResponseBody,
15024
+ };
15025
+ }
15026
+
15027
+ constructor(map?: { [key: string]: any }) {
15028
+ super(map);
15029
+ }
15030
+ }
15031
+
14429
15032
  export class DescribeRdsResourceSettingsRequest extends $tea.Model {
14430
15033
  ownerId?: number;
14431
15034
  resourceNiche?: string;
@@ -14855,6 +15458,126 @@ export class DescribeRenewalPriceResponse extends $tea.Model {
14855
15458
  }
14856
15459
  }
14857
15460
 
15461
+ export class DescribeResourceDetailsRequest extends $tea.Model {
15462
+ clientToken?: string;
15463
+ DBInstanceId?: string;
15464
+ ownerId?: number;
15465
+ regionId?: string;
15466
+ resourceGroupId?: string;
15467
+ resourceOwnerAccount?: string;
15468
+ resourceOwnerId?: number;
15469
+ static names(): { [key: string]: string } {
15470
+ return {
15471
+ clientToken: 'ClientToken',
15472
+ DBInstanceId: 'DBInstanceId',
15473
+ ownerId: 'OwnerId',
15474
+ regionId: 'RegionId',
15475
+ resourceGroupId: 'ResourceGroupId',
15476
+ resourceOwnerAccount: 'ResourceOwnerAccount',
15477
+ resourceOwnerId: 'ResourceOwnerId',
15478
+ };
15479
+ }
15480
+
15481
+ static types(): { [key: string]: any } {
15482
+ return {
15483
+ clientToken: 'string',
15484
+ DBInstanceId: 'string',
15485
+ ownerId: 'number',
15486
+ regionId: 'string',
15487
+ resourceGroupId: 'string',
15488
+ resourceOwnerAccount: 'string',
15489
+ resourceOwnerId: 'number',
15490
+ };
15491
+ }
15492
+
15493
+ constructor(map?: { [key: string]: any }) {
15494
+ super(map);
15495
+ }
15496
+ }
15497
+
15498
+ export class DescribeResourceDetailsResponseBody extends $tea.Model {
15499
+ backupDataSize?: number;
15500
+ backupLogSize?: number;
15501
+ backupSize?: number;
15502
+ dbInstanceStorage?: number;
15503
+ dbProxyInstanceName?: string;
15504
+ diskUsed?: number;
15505
+ instanceStorageType?: string;
15506
+ rdsEcsSecurityGroupRel?: DescribeResourceDetailsResponseBodyRdsEcsSecurityGroupRel[];
15507
+ region?: string;
15508
+ requestId?: string;
15509
+ resourceGroupId?: string;
15510
+ securityIPList?: string;
15511
+ vSwitchId?: string;
15512
+ vpcId?: string;
15513
+ static names(): { [key: string]: string } {
15514
+ return {
15515
+ backupDataSize: 'BackupDataSize',
15516
+ backupLogSize: 'BackupLogSize',
15517
+ backupSize: 'BackupSize',
15518
+ dbInstanceStorage: 'DbInstanceStorage',
15519
+ dbProxyInstanceName: 'DbProxyInstanceName',
15520
+ diskUsed: 'DiskUsed',
15521
+ instanceStorageType: 'InstanceStorageType',
15522
+ rdsEcsSecurityGroupRel: 'RdsEcsSecurityGroupRel',
15523
+ region: 'Region',
15524
+ requestId: 'RequestId',
15525
+ resourceGroupId: 'ResourceGroupId',
15526
+ securityIPList: 'SecurityIPList',
15527
+ vSwitchId: 'VSwitchId',
15528
+ vpcId: 'VpcId',
15529
+ };
15530
+ }
15531
+
15532
+ static types(): { [key: string]: any } {
15533
+ return {
15534
+ backupDataSize: 'number',
15535
+ backupLogSize: 'number',
15536
+ backupSize: 'number',
15537
+ dbInstanceStorage: 'number',
15538
+ dbProxyInstanceName: 'string',
15539
+ diskUsed: 'number',
15540
+ instanceStorageType: 'string',
15541
+ rdsEcsSecurityGroupRel: { 'type': 'array', 'itemType': DescribeResourceDetailsResponseBodyRdsEcsSecurityGroupRel },
15542
+ region: 'string',
15543
+ requestId: 'string',
15544
+ resourceGroupId: 'string',
15545
+ securityIPList: 'string',
15546
+ vSwitchId: 'string',
15547
+ vpcId: 'string',
15548
+ };
15549
+ }
15550
+
15551
+ constructor(map?: { [key: string]: any }) {
15552
+ super(map);
15553
+ }
15554
+ }
15555
+
15556
+ export class DescribeResourceDetailsResponse extends $tea.Model {
15557
+ headers: { [key: string]: string };
15558
+ statusCode: number;
15559
+ body: DescribeResourceDetailsResponseBody;
15560
+ static names(): { [key: string]: string } {
15561
+ return {
15562
+ headers: 'headers',
15563
+ statusCode: 'statusCode',
15564
+ body: 'body',
15565
+ };
15566
+ }
15567
+
15568
+ static types(): { [key: string]: any } {
15569
+ return {
15570
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
15571
+ statusCode: 'number',
15572
+ body: DescribeResourceDetailsResponseBody,
15573
+ };
15574
+ }
15575
+
15576
+ constructor(map?: { [key: string]: any }) {
15577
+ super(map);
15578
+ }
15579
+ }
15580
+
14858
15581
  export class DescribeResourceUsageRequest extends $tea.Model {
14859
15582
  DBInstanceId?: string;
14860
15583
  ownerAccount?: string;
@@ -16949,6 +17672,99 @@ export class DetachWhitelistTemplateToInstanceResponse extends $tea.Model {
16949
17672
  }
16950
17673
  }
16951
17674
 
17675
+ export class EvaluateLocalExtendDiskRequest extends $tea.Model {
17676
+ DBInstanceName?: string;
17677
+ ownerId?: number;
17678
+ regionId?: string;
17679
+ resourceGroupId?: string;
17680
+ resourceOwnerAccount?: string;
17681
+ resourceOwnerId?: number;
17682
+ storage?: number;
17683
+ static names(): { [key: string]: string } {
17684
+ return {
17685
+ DBInstanceName: 'DBInstanceName',
17686
+ ownerId: 'OwnerId',
17687
+ regionId: 'RegionId',
17688
+ resourceGroupId: 'ResourceGroupId',
17689
+ resourceOwnerAccount: 'ResourceOwnerAccount',
17690
+ resourceOwnerId: 'ResourceOwnerId',
17691
+ storage: 'Storage',
17692
+ };
17693
+ }
17694
+
17695
+ static types(): { [key: string]: any } {
17696
+ return {
17697
+ DBInstanceName: 'string',
17698
+ ownerId: 'number',
17699
+ regionId: 'string',
17700
+ resourceGroupId: 'string',
17701
+ resourceOwnerAccount: 'string',
17702
+ resourceOwnerId: 'number',
17703
+ storage: 'number',
17704
+ };
17705
+ }
17706
+
17707
+ constructor(map?: { [key: string]: any }) {
17708
+ super(map);
17709
+ }
17710
+ }
17711
+
17712
+ export class EvaluateLocalExtendDiskResponseBody extends $tea.Model {
17713
+ available?: string;
17714
+ DBInstanceId?: string;
17715
+ DBInstanceTransType?: string;
17716
+ localUpgradeDiskLimit?: number;
17717
+ requestId?: string;
17718
+ static names(): { [key: string]: string } {
17719
+ return {
17720
+ available: 'Available',
17721
+ DBInstanceId: 'DBInstanceId',
17722
+ DBInstanceTransType: 'DBInstanceTransType',
17723
+ localUpgradeDiskLimit: 'LocalUpgradeDiskLimit',
17724
+ requestId: 'RequestId',
17725
+ };
17726
+ }
17727
+
17728
+ static types(): { [key: string]: any } {
17729
+ return {
17730
+ available: 'string',
17731
+ DBInstanceId: 'string',
17732
+ DBInstanceTransType: 'string',
17733
+ localUpgradeDiskLimit: 'number',
17734
+ requestId: 'string',
17735
+ };
17736
+ }
17737
+
17738
+ constructor(map?: { [key: string]: any }) {
17739
+ super(map);
17740
+ }
17741
+ }
17742
+
17743
+ export class EvaluateLocalExtendDiskResponse extends $tea.Model {
17744
+ headers: { [key: string]: string };
17745
+ statusCode: number;
17746
+ body: EvaluateLocalExtendDiskResponseBody;
17747
+ static names(): { [key: string]: string } {
17748
+ return {
17749
+ headers: 'headers',
17750
+ statusCode: 'statusCode',
17751
+ body: 'body',
17752
+ };
17753
+ }
17754
+
17755
+ static types(): { [key: string]: any } {
17756
+ return {
17757
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
17758
+ statusCode: 'number',
17759
+ body: EvaluateLocalExtendDiskResponseBody,
17760
+ };
17761
+ }
17762
+
17763
+ constructor(map?: { [key: string]: any }) {
17764
+ super(map);
17765
+ }
17766
+ }
17767
+
16952
17768
  export class GetDBInstanceTopologyRequest extends $tea.Model {
16953
17769
  DBInstanceId?: string;
16954
17770
  ownerId?: number;
@@ -18755,6 +19571,90 @@ export class ModifyCollationTimeZoneResponse extends $tea.Model {
18755
19571
  }
18756
19572
  }
18757
19573
 
19574
+ export class ModifyCustinsResourceRequest extends $tea.Model {
19575
+ adjustDeadline?: string;
19576
+ DBInstanceId?: string;
19577
+ increaseRatio?: string;
19578
+ resourceOwnerId?: number;
19579
+ resourceType?: string;
19580
+ restoreOriginalSpecification?: string;
19581
+ targetValue?: number;
19582
+ static names(): { [key: string]: string } {
19583
+ return {
19584
+ adjustDeadline: 'AdjustDeadline',
19585
+ DBInstanceId: 'DBInstanceId',
19586
+ increaseRatio: 'IncreaseRatio',
19587
+ resourceOwnerId: 'ResourceOwnerId',
19588
+ resourceType: 'ResourceType',
19589
+ restoreOriginalSpecification: 'RestoreOriginalSpecification',
19590
+ targetValue: 'TargetValue',
19591
+ };
19592
+ }
19593
+
19594
+ static types(): { [key: string]: any } {
19595
+ return {
19596
+ adjustDeadline: 'string',
19597
+ DBInstanceId: 'string',
19598
+ increaseRatio: 'string',
19599
+ resourceOwnerId: 'number',
19600
+ resourceType: 'string',
19601
+ restoreOriginalSpecification: 'string',
19602
+ targetValue: 'number',
19603
+ };
19604
+ }
19605
+
19606
+ constructor(map?: { [key: string]: any }) {
19607
+ super(map);
19608
+ }
19609
+ }
19610
+
19611
+ export class ModifyCustinsResourceResponseBody extends $tea.Model {
19612
+ requestId?: string;
19613
+ taskId?: number;
19614
+ static names(): { [key: string]: string } {
19615
+ return {
19616
+ requestId: 'RequestId',
19617
+ taskId: 'TaskId',
19618
+ };
19619
+ }
19620
+
19621
+ static types(): { [key: string]: any } {
19622
+ return {
19623
+ requestId: 'string',
19624
+ taskId: 'number',
19625
+ };
19626
+ }
19627
+
19628
+ constructor(map?: { [key: string]: any }) {
19629
+ super(map);
19630
+ }
19631
+ }
19632
+
19633
+ export class ModifyCustinsResourceResponse extends $tea.Model {
19634
+ headers: { [key: string]: string };
19635
+ statusCode: number;
19636
+ body: ModifyCustinsResourceResponseBody;
19637
+ static names(): { [key: string]: string } {
19638
+ return {
19639
+ headers: 'headers',
19640
+ statusCode: 'statusCode',
19641
+ body: 'body',
19642
+ };
19643
+ }
19644
+
19645
+ static types(): { [key: string]: any } {
19646
+ return {
19647
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
19648
+ statusCode: 'number',
19649
+ body: ModifyCustinsResourceResponseBody,
19650
+ };
19651
+ }
19652
+
19653
+ constructor(map?: { [key: string]: any }) {
19654
+ super(map);
19655
+ }
19656
+ }
19657
+
18758
19658
  export class ModifyDBDescriptionRequest extends $tea.Model {
18759
19659
  DBDescription?: string;
18760
19660
  DBInstanceId?: string;
@@ -22913,6 +23813,350 @@ export class ModifyWhitelistTemplateResponse extends $tea.Model {
22913
23813
  }
22914
23814
  }
22915
23815
 
23816
+ export class PreCheckCreateOrderForCreateDBNodesRequest extends $tea.Model {
23817
+ autoPay?: boolean;
23818
+ businessInfo?: string;
23819
+ clientToken?: string;
23820
+ commodityCode?: string;
23821
+ DBInstanceId?: string;
23822
+ DBNode?: PreCheckCreateOrderForCreateDBNodesRequestDBNode[];
23823
+ engineVersion?: string;
23824
+ nodeType?: string;
23825
+ ownerId?: number;
23826
+ promotionCode?: string;
23827
+ regionId?: string;
23828
+ resource?: string;
23829
+ resourceOwnerAccount?: string;
23830
+ resourceOwnerId?: number;
23831
+ zoneId?: string;
23832
+ static names(): { [key: string]: string } {
23833
+ return {
23834
+ autoPay: 'AutoPay',
23835
+ businessInfo: 'BusinessInfo',
23836
+ clientToken: 'ClientToken',
23837
+ commodityCode: 'CommodityCode',
23838
+ DBInstanceId: 'DBInstanceId',
23839
+ DBNode: 'DBNode',
23840
+ engineVersion: 'EngineVersion',
23841
+ nodeType: 'NodeType',
23842
+ ownerId: 'OwnerId',
23843
+ promotionCode: 'PromotionCode',
23844
+ regionId: 'RegionId',
23845
+ resource: 'Resource',
23846
+ resourceOwnerAccount: 'ResourceOwnerAccount',
23847
+ resourceOwnerId: 'ResourceOwnerId',
23848
+ zoneId: 'ZoneId',
23849
+ };
23850
+ }
23851
+
23852
+ static types(): { [key: string]: any } {
23853
+ return {
23854
+ autoPay: 'boolean',
23855
+ businessInfo: 'string',
23856
+ clientToken: 'string',
23857
+ commodityCode: 'string',
23858
+ DBInstanceId: 'string',
23859
+ DBNode: { 'type': 'array', 'itemType': PreCheckCreateOrderForCreateDBNodesRequestDBNode },
23860
+ engineVersion: 'string',
23861
+ nodeType: 'string',
23862
+ ownerId: 'number',
23863
+ promotionCode: 'string',
23864
+ regionId: 'string',
23865
+ resource: 'string',
23866
+ resourceOwnerAccount: 'string',
23867
+ resourceOwnerId: 'number',
23868
+ zoneId: 'string',
23869
+ };
23870
+ }
23871
+
23872
+ constructor(map?: { [key: string]: any }) {
23873
+ super(map);
23874
+ }
23875
+ }
23876
+
23877
+ export class PreCheckCreateOrderForCreateDBNodesShrinkRequest extends $tea.Model {
23878
+ autoPay?: boolean;
23879
+ businessInfo?: string;
23880
+ clientToken?: string;
23881
+ commodityCode?: string;
23882
+ DBInstanceId?: string;
23883
+ DBNodeShrink?: string;
23884
+ engineVersion?: string;
23885
+ nodeType?: string;
23886
+ ownerId?: number;
23887
+ promotionCode?: string;
23888
+ regionId?: string;
23889
+ resource?: string;
23890
+ resourceOwnerAccount?: string;
23891
+ resourceOwnerId?: number;
23892
+ zoneId?: string;
23893
+ static names(): { [key: string]: string } {
23894
+ return {
23895
+ autoPay: 'AutoPay',
23896
+ businessInfo: 'BusinessInfo',
23897
+ clientToken: 'ClientToken',
23898
+ commodityCode: 'CommodityCode',
23899
+ DBInstanceId: 'DBInstanceId',
23900
+ DBNodeShrink: 'DBNode',
23901
+ engineVersion: 'EngineVersion',
23902
+ nodeType: 'NodeType',
23903
+ ownerId: 'OwnerId',
23904
+ promotionCode: 'PromotionCode',
23905
+ regionId: 'RegionId',
23906
+ resource: 'Resource',
23907
+ resourceOwnerAccount: 'ResourceOwnerAccount',
23908
+ resourceOwnerId: 'ResourceOwnerId',
23909
+ zoneId: 'ZoneId',
23910
+ };
23911
+ }
23912
+
23913
+ static types(): { [key: string]: any } {
23914
+ return {
23915
+ autoPay: 'boolean',
23916
+ businessInfo: 'string',
23917
+ clientToken: 'string',
23918
+ commodityCode: 'string',
23919
+ DBInstanceId: 'string',
23920
+ DBNodeShrink: 'string',
23921
+ engineVersion: 'string',
23922
+ nodeType: 'string',
23923
+ ownerId: 'number',
23924
+ promotionCode: 'string',
23925
+ regionId: 'string',
23926
+ resource: 'string',
23927
+ resourceOwnerAccount: 'string',
23928
+ resourceOwnerId: 'number',
23929
+ zoneId: 'string',
23930
+ };
23931
+ }
23932
+
23933
+ constructor(map?: { [key: string]: any }) {
23934
+ super(map);
23935
+ }
23936
+ }
23937
+
23938
+ export class PreCheckCreateOrderForCreateDBNodesResponseBody extends $tea.Model {
23939
+ failures?: PreCheckCreateOrderForCreateDBNodesResponseBodyFailures;
23940
+ preCheckResult?: boolean;
23941
+ requestId?: string;
23942
+ static names(): { [key: string]: string } {
23943
+ return {
23944
+ failures: 'Failures',
23945
+ preCheckResult: 'PreCheckResult',
23946
+ requestId: 'RequestId',
23947
+ };
23948
+ }
23949
+
23950
+ static types(): { [key: string]: any } {
23951
+ return {
23952
+ failures: PreCheckCreateOrderForCreateDBNodesResponseBodyFailures,
23953
+ preCheckResult: 'boolean',
23954
+ requestId: 'string',
23955
+ };
23956
+ }
23957
+
23958
+ constructor(map?: { [key: string]: any }) {
23959
+ super(map);
23960
+ }
23961
+ }
23962
+
23963
+ export class PreCheckCreateOrderForCreateDBNodesResponse extends $tea.Model {
23964
+ headers: { [key: string]: string };
23965
+ statusCode: number;
23966
+ body: PreCheckCreateOrderForCreateDBNodesResponseBody;
23967
+ static names(): { [key: string]: string } {
23968
+ return {
23969
+ headers: 'headers',
23970
+ statusCode: 'statusCode',
23971
+ body: 'body',
23972
+ };
23973
+ }
23974
+
23975
+ static types(): { [key: string]: any } {
23976
+ return {
23977
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
23978
+ statusCode: 'number',
23979
+ body: PreCheckCreateOrderForCreateDBNodesResponseBody,
23980
+ };
23981
+ }
23982
+
23983
+ constructor(map?: { [key: string]: any }) {
23984
+ super(map);
23985
+ }
23986
+ }
23987
+
23988
+ export class PreCheckCreateOrderForDeleteDBNodesRequest extends $tea.Model {
23989
+ autoPay?: boolean;
23990
+ businessInfo?: string;
23991
+ clientToken?: string;
23992
+ commodityCode?: string;
23993
+ DBInstanceId?: string;
23994
+ DBNodeId?: string[];
23995
+ engineVersion?: string;
23996
+ nodeType?: string;
23997
+ ownerId?: number;
23998
+ promotionCode?: string;
23999
+ regionId?: string;
24000
+ resource?: string;
24001
+ resourceOwnerAccount?: string;
24002
+ resourceOwnerId?: number;
24003
+ zoneId?: string;
24004
+ static names(): { [key: string]: string } {
24005
+ return {
24006
+ autoPay: 'AutoPay',
24007
+ businessInfo: 'BusinessInfo',
24008
+ clientToken: 'ClientToken',
24009
+ commodityCode: 'CommodityCode',
24010
+ DBInstanceId: 'DBInstanceId',
24011
+ DBNodeId: 'DBNodeId',
24012
+ engineVersion: 'EngineVersion',
24013
+ nodeType: 'NodeType',
24014
+ ownerId: 'OwnerId',
24015
+ promotionCode: 'PromotionCode',
24016
+ regionId: 'RegionId',
24017
+ resource: 'Resource',
24018
+ resourceOwnerAccount: 'ResourceOwnerAccount',
24019
+ resourceOwnerId: 'ResourceOwnerId',
24020
+ zoneId: 'ZoneId',
24021
+ };
24022
+ }
24023
+
24024
+ static types(): { [key: string]: any } {
24025
+ return {
24026
+ autoPay: 'boolean',
24027
+ businessInfo: 'string',
24028
+ clientToken: 'string',
24029
+ commodityCode: 'string',
24030
+ DBInstanceId: 'string',
24031
+ DBNodeId: { 'type': 'array', 'itemType': 'string' },
24032
+ engineVersion: 'string',
24033
+ nodeType: 'string',
24034
+ ownerId: 'number',
24035
+ promotionCode: 'string',
24036
+ regionId: 'string',
24037
+ resource: 'string',
24038
+ resourceOwnerAccount: 'string',
24039
+ resourceOwnerId: 'number',
24040
+ zoneId: 'string',
24041
+ };
24042
+ }
24043
+
24044
+ constructor(map?: { [key: string]: any }) {
24045
+ super(map);
24046
+ }
24047
+ }
24048
+
24049
+ export class PreCheckCreateOrderForDeleteDBNodesShrinkRequest extends $tea.Model {
24050
+ autoPay?: boolean;
24051
+ businessInfo?: string;
24052
+ clientToken?: string;
24053
+ commodityCode?: string;
24054
+ DBInstanceId?: string;
24055
+ DBNodeIdShrink?: string;
24056
+ engineVersion?: string;
24057
+ nodeType?: string;
24058
+ ownerId?: number;
24059
+ promotionCode?: string;
24060
+ regionId?: string;
24061
+ resource?: string;
24062
+ resourceOwnerAccount?: string;
24063
+ resourceOwnerId?: number;
24064
+ zoneId?: string;
24065
+ static names(): { [key: string]: string } {
24066
+ return {
24067
+ autoPay: 'AutoPay',
24068
+ businessInfo: 'BusinessInfo',
24069
+ clientToken: 'ClientToken',
24070
+ commodityCode: 'CommodityCode',
24071
+ DBInstanceId: 'DBInstanceId',
24072
+ DBNodeIdShrink: 'DBNodeId',
24073
+ engineVersion: 'EngineVersion',
24074
+ nodeType: 'NodeType',
24075
+ ownerId: 'OwnerId',
24076
+ promotionCode: 'PromotionCode',
24077
+ regionId: 'RegionId',
24078
+ resource: 'Resource',
24079
+ resourceOwnerAccount: 'ResourceOwnerAccount',
24080
+ resourceOwnerId: 'ResourceOwnerId',
24081
+ zoneId: 'ZoneId',
24082
+ };
24083
+ }
24084
+
24085
+ static types(): { [key: string]: any } {
24086
+ return {
24087
+ autoPay: 'boolean',
24088
+ businessInfo: 'string',
24089
+ clientToken: 'string',
24090
+ commodityCode: 'string',
24091
+ DBInstanceId: 'string',
24092
+ DBNodeIdShrink: 'string',
24093
+ engineVersion: 'string',
24094
+ nodeType: 'string',
24095
+ ownerId: 'number',
24096
+ promotionCode: 'string',
24097
+ regionId: 'string',
24098
+ resource: 'string',
24099
+ resourceOwnerAccount: 'string',
24100
+ resourceOwnerId: 'number',
24101
+ zoneId: 'string',
24102
+ };
24103
+ }
24104
+
24105
+ constructor(map?: { [key: string]: any }) {
24106
+ super(map);
24107
+ }
24108
+ }
24109
+
24110
+ export class PreCheckCreateOrderForDeleteDBNodesResponseBody extends $tea.Model {
24111
+ failures?: PreCheckCreateOrderForDeleteDBNodesResponseBodyFailures;
24112
+ preCheckResult?: boolean;
24113
+ requestId?: string;
24114
+ static names(): { [key: string]: string } {
24115
+ return {
24116
+ failures: 'Failures',
24117
+ preCheckResult: 'PreCheckResult',
24118
+ requestId: 'RequestId',
24119
+ };
24120
+ }
24121
+
24122
+ static types(): { [key: string]: any } {
24123
+ return {
24124
+ failures: PreCheckCreateOrderForDeleteDBNodesResponseBodyFailures,
24125
+ preCheckResult: 'boolean',
24126
+ requestId: 'string',
24127
+ };
24128
+ }
24129
+
24130
+ constructor(map?: { [key: string]: any }) {
24131
+ super(map);
24132
+ }
24133
+ }
24134
+
24135
+ export class PreCheckCreateOrderForDeleteDBNodesResponse extends $tea.Model {
24136
+ headers: { [key: string]: string };
24137
+ statusCode: number;
24138
+ body: PreCheckCreateOrderForDeleteDBNodesResponseBody;
24139
+ static names(): { [key: string]: string } {
24140
+ return {
24141
+ headers: 'headers',
24142
+ statusCode: 'statusCode',
24143
+ body: 'body',
24144
+ };
24145
+ }
24146
+
24147
+ static types(): { [key: string]: any } {
24148
+ return {
24149
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
24150
+ statusCode: 'number',
24151
+ body: PreCheckCreateOrderForDeleteDBNodesResponseBody,
24152
+ };
24153
+ }
24154
+
24155
+ constructor(map?: { [key: string]: any }) {
24156
+ super(map);
24157
+ }
24158
+ }
24159
+
22916
24160
  export class PurgeDBInstanceLogRequest extends $tea.Model {
22917
24161
  clientToken?: string;
22918
24162
  DBInstanceId?: string;
@@ -23069,6 +24313,87 @@ export class QueryNotifyResponse extends $tea.Model {
23069
24313
  }
23070
24314
  }
23071
24315
 
24316
+ export class QueryRecommendByCodeRequest extends $tea.Model {
24317
+ code?: string;
24318
+ ownerId?: string;
24319
+ resourceGroupId?: string;
24320
+ resourceOwnerAccount?: string;
24321
+ resourceOwnerId?: string;
24322
+ static names(): { [key: string]: string } {
24323
+ return {
24324
+ code: 'Code',
24325
+ ownerId: 'OwnerId',
24326
+ resourceGroupId: 'ResourceGroupId',
24327
+ resourceOwnerAccount: 'ResourceOwnerAccount',
24328
+ resourceOwnerId: 'ResourceOwnerId',
24329
+ };
24330
+ }
24331
+
24332
+ static types(): { [key: string]: any } {
24333
+ return {
24334
+ code: 'string',
24335
+ ownerId: 'string',
24336
+ resourceGroupId: 'string',
24337
+ resourceOwnerAccount: 'string',
24338
+ resourceOwnerId: 'string',
24339
+ };
24340
+ }
24341
+
24342
+ constructor(map?: { [key: string]: any }) {
24343
+ super(map);
24344
+ }
24345
+ }
24346
+
24347
+ export class QueryRecommendByCodeResponseBody extends $tea.Model {
24348
+ data?: string;
24349
+ requestId?: string;
24350
+ success?: boolean;
24351
+ static names(): { [key: string]: string } {
24352
+ return {
24353
+ data: 'Data',
24354
+ requestId: 'RequestId',
24355
+ success: 'Success',
24356
+ };
24357
+ }
24358
+
24359
+ static types(): { [key: string]: any } {
24360
+ return {
24361
+ data: 'string',
24362
+ requestId: 'string',
24363
+ success: 'boolean',
24364
+ };
24365
+ }
24366
+
24367
+ constructor(map?: { [key: string]: any }) {
24368
+ super(map);
24369
+ }
24370
+ }
24371
+
24372
+ export class QueryRecommendByCodeResponse extends $tea.Model {
24373
+ headers: { [key: string]: string };
24374
+ statusCode: number;
24375
+ body: QueryRecommendByCodeResponseBody;
24376
+ static names(): { [key: string]: string } {
24377
+ return {
24378
+ headers: 'headers',
24379
+ statusCode: 'statusCode',
24380
+ body: 'body',
24381
+ };
24382
+ }
24383
+
24384
+ static types(): { [key: string]: any } {
24385
+ return {
24386
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
24387
+ statusCode: 'number',
24388
+ body: QueryRecommendByCodeResponseBody,
24389
+ };
24390
+ }
24391
+
24392
+ constructor(map?: { [key: string]: any }) {
24393
+ super(map);
24394
+ }
24395
+ }
24396
+
23072
24397
  export class RebuildDBInstanceRequest extends $tea.Model {
23073
24398
  DBInstanceId?: string;
23074
24399
  dedicatedHostGroupId?: string;
@@ -27810,6 +29135,134 @@ export class DescribeCrossRegionLogBackupFilesResponseBodyItems extends $tea.Mod
27810
29135
  }
27811
29136
  }
27812
29137
 
29138
+ export class DescribeCurrentModifyOrderResponseBodyModifyOrder extends $tea.Model {
29139
+ classGroup?: string;
29140
+ cpu?: string;
29141
+ dbInstanceId?: string;
29142
+ effectiveTime?: string;
29143
+ mark?: string;
29144
+ memoryClass?: string;
29145
+ status?: string;
29146
+ storage?: string;
29147
+ targetDBInstanceClass?: string;
29148
+ static names(): { [key: string]: string } {
29149
+ return {
29150
+ classGroup: 'ClassGroup',
29151
+ cpu: 'Cpu',
29152
+ dbInstanceId: 'DbInstanceId',
29153
+ effectiveTime: 'EffectiveTime',
29154
+ mark: 'Mark',
29155
+ memoryClass: 'MemoryClass',
29156
+ status: 'Status',
29157
+ storage: 'Storage',
29158
+ targetDBInstanceClass: 'TargetDBInstanceClass',
29159
+ };
29160
+ }
29161
+
29162
+ static types(): { [key: string]: any } {
29163
+ return {
29164
+ classGroup: 'string',
29165
+ cpu: 'string',
29166
+ dbInstanceId: 'string',
29167
+ effectiveTime: 'string',
29168
+ mark: 'string',
29169
+ memoryClass: 'string',
29170
+ status: 'string',
29171
+ storage: 'string',
29172
+ targetDBInstanceClass: 'string',
29173
+ };
29174
+ }
29175
+
29176
+ constructor(map?: { [key: string]: any }) {
29177
+ super(map);
29178
+ }
29179
+ }
29180
+
29181
+ export class DescribeCustinsResourceInfoResponseBodyData extends $tea.Model {
29182
+ cpuAdjustDeadline?: string;
29183
+ cpuAdjustableMaxRatio?: string;
29184
+ cpuAdjustableMaxValue?: string;
29185
+ cpuIncreaseRatio?: string;
29186
+ cpuIncreaseRatioValue?: string;
29187
+ DBInstanceId?: string;
29188
+ iopsAdjustableMaxValue?: string;
29189
+ maxConnAdjustDeadline?: string;
29190
+ maxConnAdjustableMaxValue?: string;
29191
+ maxConnIncreaseRatio?: string;
29192
+ maxConnIncreaseRatioValue?: string;
29193
+ maxIopsAdjustDeadline?: string;
29194
+ maxIopsIncreaseRatio?: string;
29195
+ maxIopsIncreaseRatioValue?: string;
29196
+ memAdjustableMaxRatio?: string;
29197
+ memAdjustableMaxValue?: string;
29198
+ memoryAdjustDeadline?: string;
29199
+ memoryIncreaseRatio?: string;
29200
+ memoryIncreaseRatioValue?: string;
29201
+ originCpu?: string;
29202
+ originMaxConn?: string;
29203
+ originMaxIops?: string;
29204
+ originMemory?: string;
29205
+ static names(): { [key: string]: string } {
29206
+ return {
29207
+ cpuAdjustDeadline: 'CpuAdjustDeadline',
29208
+ cpuAdjustableMaxRatio: 'CpuAdjustableMaxRatio',
29209
+ cpuAdjustableMaxValue: 'CpuAdjustableMaxValue',
29210
+ cpuIncreaseRatio: 'CpuIncreaseRatio',
29211
+ cpuIncreaseRatioValue: 'CpuIncreaseRatioValue',
29212
+ DBInstanceId: 'DBInstanceId',
29213
+ iopsAdjustableMaxValue: 'IopsAdjustableMaxValue',
29214
+ maxConnAdjustDeadline: 'MaxConnAdjustDeadline',
29215
+ maxConnAdjustableMaxValue: 'MaxConnAdjustableMaxValue',
29216
+ maxConnIncreaseRatio: 'MaxConnIncreaseRatio',
29217
+ maxConnIncreaseRatioValue: 'MaxConnIncreaseRatioValue',
29218
+ maxIopsAdjustDeadline: 'MaxIopsAdjustDeadline',
29219
+ maxIopsIncreaseRatio: 'MaxIopsIncreaseRatio',
29220
+ maxIopsIncreaseRatioValue: 'MaxIopsIncreaseRatioValue',
29221
+ memAdjustableMaxRatio: 'MemAdjustableMaxRatio',
29222
+ memAdjustableMaxValue: 'MemAdjustableMaxValue',
29223
+ memoryAdjustDeadline: 'MemoryAdjustDeadline',
29224
+ memoryIncreaseRatio: 'MemoryIncreaseRatio',
29225
+ memoryIncreaseRatioValue: 'MemoryIncreaseRatioValue',
29226
+ originCpu: 'OriginCpu',
29227
+ originMaxConn: 'OriginMaxConn',
29228
+ originMaxIops: 'OriginMaxIops',
29229
+ originMemory: 'OriginMemory',
29230
+ };
29231
+ }
29232
+
29233
+ static types(): { [key: string]: any } {
29234
+ return {
29235
+ cpuAdjustDeadline: 'string',
29236
+ cpuAdjustableMaxRatio: 'string',
29237
+ cpuAdjustableMaxValue: 'string',
29238
+ cpuIncreaseRatio: 'string',
29239
+ cpuIncreaseRatioValue: 'string',
29240
+ DBInstanceId: 'string',
29241
+ iopsAdjustableMaxValue: 'string',
29242
+ maxConnAdjustDeadline: 'string',
29243
+ maxConnAdjustableMaxValue: 'string',
29244
+ maxConnIncreaseRatio: 'string',
29245
+ maxConnIncreaseRatioValue: 'string',
29246
+ maxIopsAdjustDeadline: 'string',
29247
+ maxIopsIncreaseRatio: 'string',
29248
+ maxIopsIncreaseRatioValue: 'string',
29249
+ memAdjustableMaxRatio: 'string',
29250
+ memAdjustableMaxValue: 'string',
29251
+ memoryAdjustDeadline: 'string',
29252
+ memoryIncreaseRatio: 'string',
29253
+ memoryIncreaseRatioValue: 'string',
29254
+ originCpu: 'string',
29255
+ originMaxConn: 'string',
29256
+ originMaxIops: 'string',
29257
+ originMemory: 'string',
29258
+ };
29259
+ }
29260
+
29261
+ constructor(map?: { [key: string]: any }) {
29262
+ super(map);
29263
+ }
29264
+ }
29265
+
27813
29266
  export class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttributeBabelfishConfig extends $tea.Model {
27814
29267
  babelfishEnabled?: string;
27815
29268
  migrationMode?: string;
@@ -31240,6 +32693,103 @@ export class DescribeLogBackupFilesResponseBodyItems extends $tea.Model {
31240
32693
  }
31241
32694
  }
31242
32695
 
32696
+ export class DescribeMarketingActivityResponseBodyItems extends $tea.Model {
32697
+ category?: string;
32698
+ chargeType?: string;
32699
+ classCode?: string;
32700
+ classGroup?: string;
32701
+ cpu?: string;
32702
+ diskSize?: number;
32703
+ engine?: string;
32704
+ engineVersion?: string;
32705
+ instanceId?: string;
32706
+ instanceName?: string;
32707
+ maxConnections?: number;
32708
+ maxIombps?: number;
32709
+ maxIops?: number;
32710
+ memory?: number;
32711
+ storageType?: string;
32712
+ upgradeCategory?: string;
32713
+ upgradeClassCode?: string;
32714
+ upgradeClassGroup?: string;
32715
+ upgradeCpu?: string;
32716
+ upgradeDescContent?: string;
32717
+ upgradeDiskSize?: number;
32718
+ upgradeMaxConnections?: number;
32719
+ upgradeMaxIombps?: number;
32720
+ upgradeMaxIops?: number;
32721
+ upgradeMemory?: number;
32722
+ upgradeReferencePrice?: string;
32723
+ upgradeStorageType?: string;
32724
+ static names(): { [key: string]: string } {
32725
+ return {
32726
+ category: 'Category',
32727
+ chargeType: 'ChargeType',
32728
+ classCode: 'ClassCode',
32729
+ classGroup: 'ClassGroup',
32730
+ cpu: 'Cpu',
32731
+ diskSize: 'DiskSize',
32732
+ engine: 'Engine',
32733
+ engineVersion: 'EngineVersion',
32734
+ instanceId: 'InstanceId',
32735
+ instanceName: 'InstanceName',
32736
+ maxConnections: 'MaxConnections',
32737
+ maxIombps: 'MaxIombps',
32738
+ maxIops: 'MaxIops',
32739
+ memory: 'Memory',
32740
+ storageType: 'StorageType',
32741
+ upgradeCategory: 'UpgradeCategory',
32742
+ upgradeClassCode: 'UpgradeClassCode',
32743
+ upgradeClassGroup: 'UpgradeClassGroup',
32744
+ upgradeCpu: 'UpgradeCpu',
32745
+ upgradeDescContent: 'UpgradeDescContent',
32746
+ upgradeDiskSize: 'UpgradeDiskSize',
32747
+ upgradeMaxConnections: 'UpgradeMaxConnections',
32748
+ upgradeMaxIombps: 'UpgradeMaxIombps',
32749
+ upgradeMaxIops: 'UpgradeMaxIops',
32750
+ upgradeMemory: 'UpgradeMemory',
32751
+ upgradeReferencePrice: 'UpgradeReferencePrice',
32752
+ upgradeStorageType: 'UpgradeStorageType',
32753
+ };
32754
+ }
32755
+
32756
+ static types(): { [key: string]: any } {
32757
+ return {
32758
+ category: 'string',
32759
+ chargeType: 'string',
32760
+ classCode: 'string',
32761
+ classGroup: 'string',
32762
+ cpu: 'string',
32763
+ diskSize: 'number',
32764
+ engine: 'string',
32765
+ engineVersion: 'string',
32766
+ instanceId: 'string',
32767
+ instanceName: 'string',
32768
+ maxConnections: 'number',
32769
+ maxIombps: 'number',
32770
+ maxIops: 'number',
32771
+ memory: 'number',
32772
+ storageType: 'string',
32773
+ upgradeCategory: 'string',
32774
+ upgradeClassCode: 'string',
32775
+ upgradeClassGroup: 'string',
32776
+ upgradeCpu: 'string',
32777
+ upgradeDescContent: 'string',
32778
+ upgradeDiskSize: 'number',
32779
+ upgradeMaxConnections: 'number',
32780
+ upgradeMaxIombps: 'number',
32781
+ upgradeMaxIops: 'number',
32782
+ upgradeMemory: 'number',
32783
+ upgradeReferencePrice: 'string',
32784
+ upgradeStorageType: 'string',
32785
+ };
32786
+ }
32787
+
32788
+ constructor(map?: { [key: string]: any }) {
32789
+ super(map);
32790
+ }
32791
+ }
32792
+
31243
32793
  export class DescribeMetaListResponseBodyItemsMeta extends $tea.Model {
31244
32794
  database?: string;
31245
32795
  size?: string;
@@ -32884,6 +34434,25 @@ export class DescribeRenewalPriceResponseBodyRules extends $tea.Model {
32884
34434
  }
32885
34435
  }
32886
34436
 
34437
+ export class DescribeResourceDetailsResponseBodyRdsEcsSecurityGroupRel extends $tea.Model {
34438
+ securityGroupName?: string;
34439
+ static names(): { [key: string]: string } {
34440
+ return {
34441
+ securityGroupName: 'SecurityGroupName',
34442
+ };
34443
+ }
34444
+
34445
+ static types(): { [key: string]: any } {
34446
+ return {
34447
+ securityGroupName: 'string',
34448
+ };
34449
+ }
34450
+
34451
+ constructor(map?: { [key: string]: any }) {
34452
+ super(map);
34453
+ }
34454
+ }
34455
+
32887
34456
  export class DescribeSQLLogFilesResponseBodyItemsLogFile extends $tea.Model {
32888
34457
  fileID?: string;
32889
34458
  logDownloadURL?: string;
@@ -34424,6 +35993,110 @@ export class ModifyWhitelistTemplateResponseBodyData extends $tea.Model {
34424
35993
  }
34425
35994
  }
34426
35995
 
35996
+ export class PreCheckCreateOrderForCreateDBNodesRequestDBNode extends $tea.Model {
35997
+ classCode?: string;
35998
+ zoneId?: string;
35999
+ static names(): { [key: string]: string } {
36000
+ return {
36001
+ classCode: 'classCode',
36002
+ zoneId: 'zoneId',
36003
+ };
36004
+ }
36005
+
36006
+ static types(): { [key: string]: any } {
36007
+ return {
36008
+ classCode: 'string',
36009
+ zoneId: 'string',
36010
+ };
36011
+ }
36012
+
36013
+ constructor(map?: { [key: string]: any }) {
36014
+ super(map);
36015
+ }
36016
+ }
36017
+
36018
+ export class PreCheckCreateOrderForCreateDBNodesResponseBodyFailuresFailures extends $tea.Model {
36019
+ code?: string;
36020
+ message?: string;
36021
+ static names(): { [key: string]: string } {
36022
+ return {
36023
+ code: 'Code',
36024
+ message: 'Message',
36025
+ };
36026
+ }
36027
+
36028
+ static types(): { [key: string]: any } {
36029
+ return {
36030
+ code: 'string',
36031
+ message: 'string',
36032
+ };
36033
+ }
36034
+
36035
+ constructor(map?: { [key: string]: any }) {
36036
+ super(map);
36037
+ }
36038
+ }
36039
+
36040
+ export class PreCheckCreateOrderForCreateDBNodesResponseBodyFailures extends $tea.Model {
36041
+ failures?: PreCheckCreateOrderForCreateDBNodesResponseBodyFailuresFailures[];
36042
+ static names(): { [key: string]: string } {
36043
+ return {
36044
+ failures: 'Failures',
36045
+ };
36046
+ }
36047
+
36048
+ static types(): { [key: string]: any } {
36049
+ return {
36050
+ failures: { 'type': 'array', 'itemType': PreCheckCreateOrderForCreateDBNodesResponseBodyFailuresFailures },
36051
+ };
36052
+ }
36053
+
36054
+ constructor(map?: { [key: string]: any }) {
36055
+ super(map);
36056
+ }
36057
+ }
36058
+
36059
+ export class PreCheckCreateOrderForDeleteDBNodesResponseBodyFailuresFailures extends $tea.Model {
36060
+ code?: string;
36061
+ message?: string;
36062
+ static names(): { [key: string]: string } {
36063
+ return {
36064
+ code: 'Code',
36065
+ message: 'Message',
36066
+ };
36067
+ }
36068
+
36069
+ static types(): { [key: string]: any } {
36070
+ return {
36071
+ code: 'string',
36072
+ message: 'string',
36073
+ };
36074
+ }
36075
+
36076
+ constructor(map?: { [key: string]: any }) {
36077
+ super(map);
36078
+ }
36079
+ }
36080
+
36081
+ export class PreCheckCreateOrderForDeleteDBNodesResponseBodyFailures extends $tea.Model {
36082
+ failures?: PreCheckCreateOrderForDeleteDBNodesResponseBodyFailuresFailures[];
36083
+ static names(): { [key: string]: string } {
36084
+ return {
36085
+ failures: 'Failures',
36086
+ };
36087
+ }
36088
+
36089
+ static types(): { [key: string]: any } {
36090
+ return {
36091
+ failures: { 'type': 'array', 'itemType': PreCheckCreateOrderForDeleteDBNodesResponseBodyFailuresFailures },
36092
+ };
36093
+ }
36094
+
36095
+ constructor(map?: { [key: string]: any }) {
36096
+ super(map);
36097
+ }
36098
+ }
36099
+
34427
36100
  export class QueryNotifyResponseBodyDataNotifyItemList extends $tea.Model {
34428
36101
  aliUid?: number;
34429
36102
  confirmFlag?: boolean;
@@ -34619,8 +36292,11 @@ export default class Client extends OpenApi {
34619
36292
  }
34620
36293
 
34621
36294
  /**
34622
- * ## Prerequisites
34623
- * Before you call the ActivateMigrationTargetInstance operation, make sure that a cloud migration task is created by calling the [CreateCloudMigrationTask](~~411690~~) operation. In addition, make sure that the value that is returned for the **MigrateStage** parameter from the call of the [DescribeCloudMigrationResult](~~412150~~) operation is **increment**.
36295
+ * ### [](#)Supported database engines
36296
+ * * PostgreSQL
36297
+ * ### [](#)References
36298
+ * > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
36299
+ * [Use the cloud migration feature](~~365562~~)
34624
36300
  *
34625
36301
  * @param request ActivateMigrationTargetInstanceRequest
34626
36302
  * @param runtime runtime options for this request RuntimeOptions
@@ -34667,8 +36343,11 @@ export default class Client extends OpenApi {
34667
36343
  }
34668
36344
 
34669
36345
  /**
34670
- * ## Prerequisites
34671
- * Before you call the ActivateMigrationTargetInstance operation, make sure that a cloud migration task is created by calling the [CreateCloudMigrationTask](~~411690~~) operation. In addition, make sure that the value that is returned for the **MigrateStage** parameter from the call of the [DescribeCloudMigrationResult](~~412150~~) operation is **increment**.
36346
+ * ### [](#)Supported database engines
36347
+ * * PostgreSQL
36348
+ * ### [](#)References
36349
+ * > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
36350
+ * [Use the cloud migration feature](~~365562~~)
34672
36351
  *
34673
36352
  * @param request ActivateMigrationTargetInstanceRequest
34674
36353
  * @return ActivateMigrationTargetInstanceResponse
@@ -34679,12 +36358,17 @@ export default class Client extends OpenApi {
34679
36358
  }
34680
36359
 
34681
36360
  /**
34682
- * This operation has the following limits:
34683
- * * Each tag consists of a TagKey and a TagValue. The TagKey is required, and the TagValue is optional.
34684
- * * The values of TagKey and TagValue cannot start with aliyun.
34685
- * * The values of TagKey and TagValue are not case-sensitive.
34686
- * * The maximum length of a TagKey is 64 characters, and the maximum length of a TagValue is 128 characters.
34687
- * * Each instance can be bound to a maximum of 10 tags. Each tag that is bound to the same instance must have a unique TagKey. If you bind a new tag to the instance and the TagKey of the new tag is the same as that of an existing tag, the new tag overwrites the existing tag.
36361
+ * ### [](#)Supported database engines
36362
+ * * MySQL
36363
+ * * PostgreSQL
36364
+ * * SQL Server
36365
+ * * MariaDB
36366
+ * ### [](#)Usage notes
36367
+ * * Each tag consists of a tag key and a tag value. The tag key is required, and the tag value is optional.
36368
+ * * The tag key and tag value cannot start with aliyun.
36369
+ * * The tag key and tag value are not case-sensitive.
36370
+ * * The maximum length of a tag key is 64 characters, and the maximum length of a tag value is 128 characters.
36371
+ * * A maximum of 10 tags can be added to each instance. Each tag that is added to the same instance must have a unique tag key. If you add a new tag to the instance and the key of the new tag is the same as that of an existing tag, the new tag overwrites the existing tag.
34688
36372
  *
34689
36373
  * @param request AddTagsToResourceRequest
34690
36374
  * @param runtime runtime options for this request RuntimeOptions
@@ -34755,12 +36439,17 @@ export default class Client extends OpenApi {
34755
36439
  }
34756
36440
 
34757
36441
  /**
34758
- * This operation has the following limits:
34759
- * * Each tag consists of a TagKey and a TagValue. The TagKey is required, and the TagValue is optional.
34760
- * * The values of TagKey and TagValue cannot start with aliyun.
34761
- * * The values of TagKey and TagValue are not case-sensitive.
34762
- * * The maximum length of a TagKey is 64 characters, and the maximum length of a TagValue is 128 characters.
34763
- * * Each instance can be bound to a maximum of 10 tags. Each tag that is bound to the same instance must have a unique TagKey. If you bind a new tag to the instance and the TagKey of the new tag is the same as that of an existing tag, the new tag overwrites the existing tag.
36442
+ * ### [](#)Supported database engines
36443
+ * * MySQL
36444
+ * * PostgreSQL
36445
+ * * SQL Server
36446
+ * * MariaDB
36447
+ * ### [](#)Usage notes
36448
+ * * Each tag consists of a tag key and a tag value. The tag key is required, and the tag value is optional.
36449
+ * * The tag key and tag value cannot start with aliyun.
36450
+ * * The tag key and tag value are not case-sensitive.
36451
+ * * The maximum length of a tag key is 64 characters, and the maximum length of a tag value is 128 characters.
36452
+ * * A maximum of 10 tags can be added to each instance. Each tag that is added to the same instance must have a unique tag key. If you add a new tag to the instance and the key of the new tag is the same as that of an existing tag, the new tag overwrites the existing tag.
34764
36453
  *
34765
36454
  * @param request AddTagsToResourceRequest
34766
36455
  * @return AddTagsToResourceResponse
@@ -35102,7 +36791,7 @@ export default class Client extends OpenApi {
35102
36791
 
35103
36792
  /**
35104
36793
  * 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](~~26301~~).
35105
- * > This operation is not supported for instances that run SQL Server 2017 on RDS Cluster Edition.
36794
+ * > This operation is not supported for instances that run SQL Server 2017 on RDS Cluster Edition.
35106
36795
  *
35107
36796
  * @param request CancelImportRequest
35108
36797
  * @param runtime runtime options for this request RuntimeOptions
@@ -35158,7 +36847,7 @@ export default class Client extends OpenApi {
35158
36847
 
35159
36848
  /**
35160
36849
  * 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](~~26301~~).
35161
- * > This operation is not supported for instances that run SQL Server 2017 on RDS Cluster Edition.
36850
+ * > This operation is not supported for instances that run SQL Server 2017 on RDS Cluster Edition.
35162
36851
  *
35163
36852
  * @param request CancelImportRequest
35164
36853
  * @return CancelImportResponse
@@ -35545,15 +37234,17 @@ export default class Client extends OpenApi {
35545
37234
  }
35546
37235
 
35547
37236
  /**
35548
- * Before you call this operation, make sure that the following requirements are met:
35549
- * * The original instance is in the Running state.
35550
- * * The original instance does not have ongoing migration tasks.
35551
- * * The log backup feature is enabled for the original instance to support point-in-time recovery.
35552
- * * If you want to clone the original instance by using backup sets, the original instance must have at least one backup set.
35553
- * > ApsaraDB RDS allows you to create a cloned instance by using the credentials of your RAM user. Make sure that your RAM user is granted the permissions that are required to clone an instance. For more information, see [Use RAM to manage ApsaraDB RDS permissions](~~58932~~).
35554
- * Take note of the following information:
35555
- * * The new instance has the same IP address whitelist, SQL Explorer (SQL Audit), alert threshold, backup, and parameter settings as the original instance.
35556
- * * The data and account information of the new instance is the same as that indicated by the backup set or point in time used for restoration of the original instance.
37237
+ * ### [](#)Supported database engines
37238
+ * * MySQL
37239
+ * * PostgreSQL
37240
+ * * SQL Server
37241
+ * * MariaDB
37242
+ * ### [](#)References
37243
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
37244
+ * * [Restore data of an ApsaraDB RDS for MySQL instance](~~96147~~)
37245
+ * * [Restore data of an ApsaraDB RDS for PostgreSQL instance](~~96776~~)
37246
+ * * [Restore data of an ApsaraDB RDS for SQL Server instance](~~95722~~)
37247
+ * * [Restore data of an ApsaraDB RDS for MariaDB instance](~~97151~~)
35557
37248
  *
35558
37249
  * @param tmpReq CloneDBInstanceRequest
35559
37250
  * @param runtime runtime options for this request RuntimeOptions
@@ -35702,15 +37393,17 @@ export default class Client extends OpenApi {
35702
37393
  }
35703
37394
 
35704
37395
  /**
35705
- * Before you call this operation, make sure that the following requirements are met:
35706
- * * The original instance is in the Running state.
35707
- * * The original instance does not have ongoing migration tasks.
35708
- * * The log backup feature is enabled for the original instance to support point-in-time recovery.
35709
- * * If you want to clone the original instance by using backup sets, the original instance must have at least one backup set.
35710
- * > ApsaraDB RDS allows you to create a cloned instance by using the credentials of your RAM user. Make sure that your RAM user is granted the permissions that are required to clone an instance. For more information, see [Use RAM to manage ApsaraDB RDS permissions](~~58932~~).
35711
- * Take note of the following information:
35712
- * * The new instance has the same IP address whitelist, SQL Explorer (SQL Audit), alert threshold, backup, and parameter settings as the original instance.
35713
- * * The data and account information of the new instance is the same as that indicated by the backup set or point in time used for restoration of the original instance.
37396
+ * ### [](#)Supported database engines
37397
+ * * MySQL
37398
+ * * PostgreSQL
37399
+ * * SQL Server
37400
+ * * MariaDB
37401
+ * ### [](#)References
37402
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
37403
+ * * [Restore data of an ApsaraDB RDS for MySQL instance](~~96147~~)
37404
+ * * [Restore data of an ApsaraDB RDS for PostgreSQL instance](~~96776~~)
37405
+ * * [Restore data of an ApsaraDB RDS for SQL Server instance](~~95722~~)
37406
+ * * [Restore data of an ApsaraDB RDS for MariaDB instance](~~97151~~)
35714
37407
  *
35715
37408
  * @param request CloneDBInstanceRequest
35716
37409
  * @return CloneDBInstanceResponse
@@ -35721,8 +37414,13 @@ export default class Client extends OpenApi {
35721
37414
  }
35722
37415
 
35723
37416
  /**
35724
- * You can configure a number of parameters at a time by using a parameter template and then apply the parameter template to an instance. For more information, see [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~) or [Use a parameter template to configure the parameters of ApsaraDB RDS for PostgreSQL instances](~~457176~~).
35725
- * > This operation is supported only when your instance runs MySQL or PostgreSQL.
37417
+ * ### [](#)Supported database engines
37418
+ * * MySQL
37419
+ * * PostgreSQL
37420
+ * ### [](#)References
37421
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
37422
+ * * [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~)
37423
+ * * [Use a parameter template to configure the parameters of ApsaraDB RDS for PostgreSQL instances](~~457176~~)
35726
37424
  *
35727
37425
  * @param request CloneParameterGroupRequest
35728
37426
  * @param runtime runtime options for this request RuntimeOptions
@@ -35785,8 +37483,13 @@ export default class Client extends OpenApi {
35785
37483
  }
35786
37484
 
35787
37485
  /**
35788
- * You can configure a number of parameters at a time by using a parameter template and then apply the parameter template to an instance. For more information, see [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~) or [Use a parameter template to configure the parameters of ApsaraDB RDS for PostgreSQL instances](~~457176~~).
35789
- * > This operation is supported only when your instance runs MySQL or PostgreSQL.
37486
+ * ### [](#)Supported database engines
37487
+ * * MySQL
37488
+ * * PostgreSQL
37489
+ * ### [](#)References
37490
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
37491
+ * * [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~)
37492
+ * * [Use a parameter template to configure the parameters of ApsaraDB RDS for PostgreSQL instances](~~457176~~)
35790
37493
  *
35791
37494
  * @param request CloneParameterGroupRequest
35792
37495
  * @return CloneParameterGroupResponse
@@ -36072,17 +37775,22 @@ export default class Client extends OpenApi {
36072
37775
 
36073
37776
  /**
36074
37777
  * ### [](#)Supported database engines
36075
- * * RDS MySQL
36076
- * * RDS PostgreSQL
36077
- * * RDS SQL Server
36078
- * * RDS MariaDB
36079
- * ### [](#)Feature description:
37778
+ * * MySQL
37779
+ * * PostgreSQL
37780
+ * * SQL Server
37781
+ * * MariaDB
37782
+ * ### [](#)Usage notes
36080
37783
  * This operation uses the backup feature of ApsaraDB RDS to create a backup set. You can also use an operation of Database Backup (DBS) to create a backup set. For more information, see [List of operations by function of DBS](~~437245~~).
36081
37784
  * ### [](#)Precautions
36082
37785
  * Before you call this operation, make sure that the following requirements are met:
36083
- * * The instance is in the running state.
37786
+ * * The instance is in the Running state.
36084
37787
  * * The instance does not have ongoing backup tasks.
36085
37788
  * * The number of backup files that are created per day for an instance cannot exceed 20.
37789
+ * ### [](#)References
37790
+ * * [Use the data backup feature for an ApsaraDB RDS for MySQL instance](~~378074~~)
37791
+ * * [Use the data backup feature for an ApsaraDB RDS for PostgreSQL instance](~~96772~~)
37792
+ * * [Use the data backup feature for an ApsaraDB RDS for SQL Server instance](~~95717~~)
37793
+ * * [Use the data backup feature for an ApsaraDB RDS for MariaDB instance](~~97147~~)
36086
37794
  *
36087
37795
  * @param request CreateBackupRequest
36088
37796
  * @param runtime runtime options for this request RuntimeOptions
@@ -36138,17 +37846,22 @@ export default class Client extends OpenApi {
36138
37846
 
36139
37847
  /**
36140
37848
  * ### [](#)Supported database engines
36141
- * * RDS MySQL
36142
- * * RDS PostgreSQL
36143
- * * RDS SQL Server
36144
- * * RDS MariaDB
36145
- * ### [](#)Feature description:
37849
+ * * MySQL
37850
+ * * PostgreSQL
37851
+ * * SQL Server
37852
+ * * MariaDB
37853
+ * ### [](#)Usage notes
36146
37854
  * This operation uses the backup feature of ApsaraDB RDS to create a backup set. You can also use an operation of Database Backup (DBS) to create a backup set. For more information, see [List of operations by function of DBS](~~437245~~).
36147
37855
  * ### [](#)Precautions
36148
37856
  * Before you call this operation, make sure that the following requirements are met:
36149
- * * The instance is in the running state.
37857
+ * * The instance is in the Running state.
36150
37858
  * * The instance does not have ongoing backup tasks.
36151
37859
  * * The number of backup files that are created per day for an instance cannot exceed 20.
37860
+ * ### [](#)References
37861
+ * * [Use the data backup feature for an ApsaraDB RDS for MySQL instance](~~378074~~)
37862
+ * * [Use the data backup feature for an ApsaraDB RDS for PostgreSQL instance](~~96772~~)
37863
+ * * [Use the data backup feature for an ApsaraDB RDS for SQL Server instance](~~95717~~)
37864
+ * * [Use the data backup feature for an ApsaraDB RDS for MariaDB instance](~~97147~~)
36152
37865
  *
36153
37866
  * @param request CreateBackupRequest
36154
37867
  * @return CreateBackupResponse
@@ -36159,23 +37872,11 @@ export default class Client extends OpenApi {
36159
37872
  }
36160
37873
 
36161
37874
  /**
36162
- * ## Prerequisites
36163
- * The RDS instance meets the following requirements:
36164
- * * The RDS instance and the self-managed PostgreSQL instance run the same PostgreSQL version, which can be PostgreSQL 10, PostgreSQL 11, PostgreSQL 12, PostgreSQL 13, PostgreSQL 14, or PostgreSQL 15.
36165
- * * The RDS instance is a primary instance. Read-only RDS instances do not support cloud migration.
36166
- * * The RDS instance uses cloud disks.
36167
- * * The RDS instance is empty. The available storage of the RDS instance is greater than or equal to the size of the data in the self-managed PostgreSQL instance.
36168
- * The self-managed PostgreSQL instance meets the following requirements:
36169
- * * Network configurations
36170
- * |Migration source|Network configuration|
36171
- * |:---|---|
36172
- * |Self-managed ECS-based PostgreSQL Database|If the self-managed PostgreSQL instance resides on an Elastic Compute Service (ECS) instance, the ECS instance and the RDS instance must reside in the same virtual private cloud (VPC). If the ECS instance and the RDS instance reside in different VPCs, use Cloud Enterprise Network (CEN) to connect the VPCs. For more information, see [What is CEN?](~~181681~~)|
36173
- * |Self-managed PostgreSQL database in a data center (within the same VPC as the destination database)|The data center is able to communicate with the VPC to which the destination RDS instance belongs. For more information, see [Connect a data center to a VPC](~~97768~~).|
36174
- * * If the self-managed PostgreSQL instance resides on an ECS instance, an ECS security group is configured. For more information, see [(Optional) Configure an ECS security group on a self-managed PostgreSQL instance](~~369726~~).
36175
- * * The configurations that are described in [Configure a self-managed PostgreSQL instance to listen to remote connections](~~369727~~) are complete.
36176
- * * The configurations that are described in [Create an account for cloud migration on a self-managed PostgreSQL instance](~~369500~~) are complete.
36177
- * * The configurations that are described in [Update the pg\\_hba.conf file of a self-managed PostgreSQL instance](~~369728~~) are complete.
36178
- * * The configurations that are described in [Configure the firewall of the server on which a self-managed PostgreSQL instance resides](~~369729~~) are complete.
37875
+ * ### [](#)Supported database engines
37876
+ * * PostgreSQL
37877
+ * ### [](#)References
37878
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
37879
+ * * [Use the cloud migration feature](~~365562~~)
36179
37880
  *
36180
37881
  * @param request CreateCloudMigrationPrecheckTaskRequest
36181
37882
  * @param runtime runtime options for this request RuntimeOptions
@@ -36234,23 +37935,11 @@ export default class Client extends OpenApi {
36234
37935
  }
36235
37936
 
36236
37937
  /**
36237
- * ## Prerequisites
36238
- * The RDS instance meets the following requirements:
36239
- * * The RDS instance and the self-managed PostgreSQL instance run the same PostgreSQL version, which can be PostgreSQL 10, PostgreSQL 11, PostgreSQL 12, PostgreSQL 13, PostgreSQL 14, or PostgreSQL 15.
36240
- * * The RDS instance is a primary instance. Read-only RDS instances do not support cloud migration.
36241
- * * The RDS instance uses cloud disks.
36242
- * * The RDS instance is empty. The available storage of the RDS instance is greater than or equal to the size of the data in the self-managed PostgreSQL instance.
36243
- * The self-managed PostgreSQL instance meets the following requirements:
36244
- * * Network configurations
36245
- * |Migration source|Network configuration|
36246
- * |:---|---|
36247
- * |Self-managed ECS-based PostgreSQL Database|If the self-managed PostgreSQL instance resides on an Elastic Compute Service (ECS) instance, the ECS instance and the RDS instance must reside in the same virtual private cloud (VPC). If the ECS instance and the RDS instance reside in different VPCs, use Cloud Enterprise Network (CEN) to connect the VPCs. For more information, see [What is CEN?](~~181681~~)|
36248
- * |Self-managed PostgreSQL database in a data center (within the same VPC as the destination database)|The data center is able to communicate with the VPC to which the destination RDS instance belongs. For more information, see [Connect a data center to a VPC](~~97768~~).|
36249
- * * If the self-managed PostgreSQL instance resides on an ECS instance, an ECS security group is configured. For more information, see [(Optional) Configure an ECS security group on a self-managed PostgreSQL instance](~~369726~~).
36250
- * * The configurations that are described in [Configure a self-managed PostgreSQL instance to listen to remote connections](~~369727~~) are complete.
36251
- * * The configurations that are described in [Create an account for cloud migration on a self-managed PostgreSQL instance](~~369500~~) are complete.
36252
- * * The configurations that are described in [Update the pg\\_hba.conf file of a self-managed PostgreSQL instance](~~369728~~) are complete.
36253
- * * The configurations that are described in [Configure the firewall of the server on which a self-managed PostgreSQL instance resides](~~369729~~) are complete.
37938
+ * ### [](#)Supported database engines
37939
+ * * PostgreSQL
37940
+ * ### [](#)References
37941
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
37942
+ * * [Use the cloud migration feature](~~365562~~)
36254
37943
  *
36255
37944
  * @param request CreateCloudMigrationPrecheckTaskRequest
36256
37945
  * @return CreateCloudMigrationPrecheckTaskResponse
@@ -36261,8 +37950,11 @@ export default class Client extends OpenApi {
36261
37950
  }
36262
37951
 
36263
37952
  /**
36264
- * ## Prerequisites
36265
- * Before you call this operation, make sure that the ApsaraDB RDS for PostgreSQL instance passes the cloud migration assessment.
37953
+ * ### [](#)Supported database engines
37954
+ * * PostgreSQL
37955
+ * ### [](#)References
37956
+ * > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
37957
+ * [Use the cloud migration feature](~~365562~~)
36266
37958
  *
36267
37959
  * @param request CreateCloudMigrationTaskRequest
36268
37960
  * @param runtime runtime options for this request RuntimeOptions
@@ -36321,8 +38013,11 @@ export default class Client extends OpenApi {
36321
38013
  }
36322
38014
 
36323
38015
  /**
36324
- * ## Prerequisites
36325
- * Before you call this operation, make sure that the ApsaraDB RDS for PostgreSQL instance passes the cloud migration assessment.
38016
+ * ### [](#)Supported database engines
38017
+ * * PostgreSQL
38018
+ * ### [](#)References
38019
+ * > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
38020
+ * [Use the cloud migration feature](~~365562~~)
36326
38021
  *
36327
38022
  * @param request CreateCloudMigrationTaskRequest
36328
38023
  * @return CreateCloudMigrationTaskResponse
@@ -37521,7 +39216,7 @@ export default class Client extends OpenApi {
37521
39216
  }
37522
39217
 
37523
39218
  /**
37524
- * ## Prerequisites
39219
+ * ## [](#)Prerequisites
37525
39220
  * An ApsaraDB RDS global active database cluster is created. You can call the [CreateGADInstance](~~336893~~) operation to create a global active database cluster.
37526
39221
  * For more information, see [Add unit nodes to or move unit nodes from an ApsaraDB RDS global active database cluster](~~331851~~).
37527
39222
  *
@@ -37578,7 +39273,7 @@ export default class Client extends OpenApi {
37578
39273
  }
37579
39274
 
37580
39275
  /**
37581
- * ## Prerequisites
39276
+ * ## [](#)Prerequisites
37582
39277
  * An ApsaraDB RDS global active database cluster is created. You can call the [CreateGADInstance](~~336893~~) operation to create a global active database cluster.
37583
39278
  * For more information, see [Add unit nodes to or move unit nodes from an ApsaraDB RDS global active database cluster](~~331851~~).
37584
39279
  *
@@ -37590,6 +39285,17 @@ export default class Client extends OpenApi {
37590
39285
  return await this.createGadInstanceMemberWithOptions(request, runtime);
37591
39286
  }
37592
39287
 
39288
+ /**
39289
+ * ### [](#)Supported database engines
39290
+ * SQL Server
39291
+ * ### [](#)References
39292
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
39293
+ * [Migrate data from a self-managed SQL Server instance to an ApsaraDB RDS for SQL Server instance](~~100019~~)
39294
+ *
39295
+ * @param request CreateMigrateTaskRequest
39296
+ * @param runtime runtime options for this request RuntimeOptions
39297
+ * @return CreateMigrateTaskResponse
39298
+ */
37593
39299
  async createMigrateTaskWithOptions(request: CreateMigrateTaskRequest, runtime: $Util.RuntimeOptions): Promise<CreateMigrateTaskResponse> {
37594
39300
  Util.validateModel(request);
37595
39301
  let query = { };
@@ -37654,13 +39360,30 @@ export default class Client extends OpenApi {
37654
39360
  return $tea.cast<CreateMigrateTaskResponse>(await this.callApi(params, req, runtime), new CreateMigrateTaskResponse({}));
37655
39361
  }
37656
39362
 
39363
+ /**
39364
+ * ### [](#)Supported database engines
39365
+ * SQL Server
39366
+ * ### [](#)References
39367
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
39368
+ * [Migrate data from a self-managed SQL Server instance to an ApsaraDB RDS for SQL Server instance](~~100019~~)
39369
+ *
39370
+ * @param request CreateMigrateTaskRequest
39371
+ * @return CreateMigrateTaskResponse
39372
+ */
37657
39373
  async createMigrateTask(request: CreateMigrateTaskRequest): Promise<CreateMigrateTaskResponse> {
37658
39374
  let runtime = new $Util.RuntimeOptions({ });
37659
39375
  return await this.createMigrateTaskWithOptions(request, runtime);
37660
39376
  }
37661
39377
 
37662
39378
  /**
37663
- * This operation is used to migrate backup data to the cloud. Before you call this operation, make sure that you understand the descriptions in [Migrate the full backup data of a self-managed SQL Server database to an ApsaraDB RDS instance that runs SQL Server 2008 R2](~~95737~~), [Migrate the full backup data of a self-managed SQL Server database to an ApsaraDB RDS instance that runs SQL Server 2012, SQL Server 2014, SQL Server 2016, SQL Server 2017, or SQL Server 2019](~~95738~~), and [Migrate the incremental backup data of a self-managed SQL Server database to an ApsaraDB RDS instance that runs SQL Server 2012, SQL Server 2014, SQL Server 2016, SQL Server 2017, or SQL Server 2019](~~95736~~).
39379
+ * ### [](#)Supported database engines
39380
+ * * SQL Server
39381
+ * ### [](#)References
39382
+ * > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
39383
+ * This operation is used to migrate backup data to the cloud. Before you call this operation, make sure that you understand the descriptions in the following topics:
39384
+ * * [Migrate the full backup data of a self-managed SQL Server database to an ApsaraDB RDS instance that runs SQL Server 2008 R2](~~95737~~)
39385
+ * * [Migrate full backup data of SQL Server 2012, 2014, 2016, 2017, or 2019 databases](~~95738~~)
39386
+ * * [Migrate incremental backup data to ApsaraDB RDS for SQL Server 2012, 2014, 2016, 2017, or 2019](~~95736~~)
37664
39387
  *
37665
39388
  * @param request CreateOnlineDatabaseTaskRequest
37666
39389
  * @param runtime runtime options for this request RuntimeOptions
@@ -37723,7 +39446,14 @@ export default class Client extends OpenApi {
37723
39446
  }
37724
39447
 
37725
39448
  /**
37726
- * This operation is used to migrate backup data to the cloud. Before you call this operation, make sure that you understand the descriptions in [Migrate the full backup data of a self-managed SQL Server database to an ApsaraDB RDS instance that runs SQL Server 2008 R2](~~95737~~), [Migrate the full backup data of a self-managed SQL Server database to an ApsaraDB RDS instance that runs SQL Server 2012, SQL Server 2014, SQL Server 2016, SQL Server 2017, or SQL Server 2019](~~95738~~), and [Migrate the incremental backup data of a self-managed SQL Server database to an ApsaraDB RDS instance that runs SQL Server 2012, SQL Server 2014, SQL Server 2016, SQL Server 2017, or SQL Server 2019](~~95736~~).
39449
+ * ### [](#)Supported database engines
39450
+ * * SQL Server
39451
+ * ### [](#)References
39452
+ * > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
39453
+ * This operation is used to migrate backup data to the cloud. Before you call this operation, make sure that you understand the descriptions in the following topics:
39454
+ * * [Migrate the full backup data of a self-managed SQL Server database to an ApsaraDB RDS instance that runs SQL Server 2008 R2](~~95737~~)
39455
+ * * [Migrate full backup data of SQL Server 2012, 2014, 2016, 2017, or 2019 databases](~~95738~~)
39456
+ * * [Migrate incremental backup data to ApsaraDB RDS for SQL Server 2012, 2014, 2016, 2017, or 2019](~~95736~~)
37727
39457
  *
37728
39458
  * @param request CreateOnlineDatabaseTaskRequest
37729
39459
  * @return CreateOnlineDatabaseTaskResponse
@@ -37733,6 +39463,17 @@ export default class Client extends OpenApi {
37733
39463
  return await this.createOnlineDatabaseTaskWithOptions(request, runtime);
37734
39464
  }
37735
39465
 
39466
+ /**
39467
+ * ### [](#)Supported database engines
39468
+ * MySQL
39469
+ * ### [](#)References
39470
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
39471
+ * [Add a node to an ApsaraDB RDS for MySQL cluster](~~464129~~)
39472
+ *
39473
+ * @param tmpReq CreateOrderForCreateDBNodesRequest
39474
+ * @param runtime runtime options for this request RuntimeOptions
39475
+ * @return CreateOrderForCreateDBNodesResponse
39476
+ */
37736
39477
  async createOrderForCreateDBNodesWithOptions(tmpReq: CreateOrderForCreateDBNodesRequest, runtime: $Util.RuntimeOptions): Promise<CreateOrderForCreateDBNodesResponse> {
37737
39478
  Util.validateModel(tmpReq);
37738
39479
  let request = new CreateOrderForCreateDBNodesShrinkRequest({ });
@@ -37823,11 +39564,32 @@ export default class Client extends OpenApi {
37823
39564
  return $tea.cast<CreateOrderForCreateDBNodesResponse>(await this.callApi(params, req, runtime), new CreateOrderForCreateDBNodesResponse({}));
37824
39565
  }
37825
39566
 
39567
+ /**
39568
+ * ### [](#)Supported database engines
39569
+ * MySQL
39570
+ * ### [](#)References
39571
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
39572
+ * [Add a node to an ApsaraDB RDS for MySQL cluster](~~464129~~)
39573
+ *
39574
+ * @param request CreateOrderForCreateDBNodesRequest
39575
+ * @return CreateOrderForCreateDBNodesResponse
39576
+ */
37826
39577
  async createOrderForCreateDBNodes(request: CreateOrderForCreateDBNodesRequest): Promise<CreateOrderForCreateDBNodesResponse> {
37827
39578
  let runtime = new $Util.RuntimeOptions({ });
37828
39579
  return await this.createOrderForCreateDBNodesWithOptions(request, runtime);
37829
39580
  }
37830
39581
 
39582
+ /**
39583
+ * ### [](#)Supported database engines
39584
+ * MySQL
39585
+ * ### [](#)References
39586
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
39587
+ * [Delete a node from an ApsaraDB RDS for MySQL instance that runs RDS Cluster Edition](~~464130~~)
39588
+ *
39589
+ * @param tmpReq CreateOrderForDeleteDBNodesRequest
39590
+ * @param runtime runtime options for this request RuntimeOptions
39591
+ * @return CreateOrderForDeleteDBNodesResponse
39592
+ */
37831
39593
  async createOrderForDeleteDBNodesWithOptions(tmpReq: CreateOrderForDeleteDBNodesRequest, runtime: $Util.RuntimeOptions): Promise<CreateOrderForDeleteDBNodesResponse> {
37832
39594
  Util.validateModel(tmpReq);
37833
39595
  let request = new CreateOrderForDeleteDBNodesShrinkRequest({ });
@@ -37918,14 +39680,29 @@ export default class Client extends OpenApi {
37918
39680
  return $tea.cast<CreateOrderForDeleteDBNodesResponse>(await this.callApi(params, req, runtime), new CreateOrderForDeleteDBNodesResponse({}));
37919
39681
  }
37920
39682
 
39683
+ /**
39684
+ * ### [](#)Supported database engines
39685
+ * MySQL
39686
+ * ### [](#)References
39687
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
39688
+ * [Delete a node from an ApsaraDB RDS for MySQL instance that runs RDS Cluster Edition](~~464130~~)
39689
+ *
39690
+ * @param request CreateOrderForDeleteDBNodesRequest
39691
+ * @return CreateOrderForDeleteDBNodesResponse
39692
+ */
37921
39693
  async createOrderForDeleteDBNodes(request: CreateOrderForDeleteDBNodesRequest): Promise<CreateOrderForDeleteDBNodesResponse> {
37922
39694
  let runtime = new $Util.RuntimeOptions({ });
37923
39695
  return await this.createOrderForDeleteDBNodesWithOptions(request, runtime);
37924
39696
  }
37925
39697
 
37926
39698
  /**
37927
- * You can configure a number of parameters at a time by using a parameter template and then apply the parameter template to an instance. For more information, see [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~) and [Use a parameter template to configure the parameters of ApsaraDB RDS for PostgreSQL instances](~~457176~~).
37928
- * > This operation is supported only when your instance runs MySQL or PostgreSQL.
39699
+ * ### [](#)Supported database engines
39700
+ * * MySQL
39701
+ * * PostgreSQL
39702
+ * ### [](#)References
39703
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
39704
+ * * [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~)
39705
+ * * [Use a parameter template to configure the parameters of ApsaraDB RDS for PostgreSQL instances](~~457176~~)
37929
39706
  *
37930
39707
  * @param request CreateParameterGroupRequest
37931
39708
  * @param runtime runtime options for this request RuntimeOptions
@@ -37992,8 +39769,13 @@ export default class Client extends OpenApi {
37992
39769
  }
37993
39770
 
37994
39771
  /**
37995
- * You can configure a number of parameters at a time by using a parameter template and then apply the parameter template to an instance. For more information, see [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~) and [Use a parameter template to configure the parameters of ApsaraDB RDS for PostgreSQL instances](~~457176~~).
37996
- * > This operation is supported only when your instance runs MySQL or PostgreSQL.
39772
+ * ### [](#)Supported database engines
39773
+ * * MySQL
39774
+ * * PostgreSQL
39775
+ * ### [](#)References
39776
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
39777
+ * * [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~)
39778
+ * * [Use a parameter template to configure the parameters of ApsaraDB RDS for PostgreSQL instances](~~457176~~)
37997
39779
  *
37998
39780
  * @param request CreateParameterGroupRequest
37999
39781
  * @return CreateParameterGroupResponse
@@ -38435,13 +40217,15 @@ export default class Client extends OpenApi {
38435
40217
  }
38436
40218
 
38437
40219
  /**
38438
- * You can create a temporary instance based on a backup file or a point in time within the past seven days.
38439
- * Before you call this operation, make sure that the following requirements are met:
38440
- * * Your instance runs SQL Server 2008 R2.
40220
+ * ### [](#)Supported database engines
40221
+ * Your RDS instance runs SQL Server 2008 R2 with local disks.
40222
+ * ### [](#)Description
40223
+ * You can create a temporary instance based on a backup set or a point in time within the past seven days. Before you call this operation, make sure that the following requirements are met:
40224
+ * * Your instance runs SQL Server 2008 R2 with local disks.
38441
40225
  * * Your instance is in the Running state.
38442
40226
  * * Your instance does not have ongoing migration tasks.
38443
- * * The last creation of a backup file is completed.
38444
- * > After a temporary instance is created, the temporary instance inherits the data in the backup file.
40227
+ * * The last creation of a backup file is complete.
40228
+ * > After a temporary instance is created, the temporary instance inherits the accounts and databases in the backup set.
38445
40229
  *
38446
40230
  * @param request CreateTempDBInstanceRequest
38447
40231
  * @param runtime runtime options for this request RuntimeOptions
@@ -38500,13 +40284,15 @@ export default class Client extends OpenApi {
38500
40284
  }
38501
40285
 
38502
40286
  /**
38503
- * You can create a temporary instance based on a backup file or a point in time within the past seven days.
38504
- * Before you call this operation, make sure that the following requirements are met:
38505
- * * Your instance runs SQL Server 2008 R2.
40287
+ * ### [](#)Supported database engines
40288
+ * Your RDS instance runs SQL Server 2008 R2 with local disks.
40289
+ * ### [](#)Description
40290
+ * You can create a temporary instance based on a backup set or a point in time within the past seven days. Before you call this operation, make sure that the following requirements are met:
40291
+ * * Your instance runs SQL Server 2008 R2 with local disks.
38506
40292
  * * Your instance is in the Running state.
38507
40293
  * * Your instance does not have ongoing migration tasks.
38508
- * * The last creation of a backup file is completed.
38509
- * > After a temporary instance is created, the temporary instance inherits the data in the backup file.
40294
+ * * The last creation of a backup file is complete.
40295
+ * > After a temporary instance is created, the temporary instance inherits the accounts and databases in the backup set.
38510
40296
  *
38511
40297
  * @param request CreateTempDBInstanceRequest
38512
40298
  * @return CreateTempDBInstanceResponse
@@ -38516,8 +40302,58 @@ export default class Client extends OpenApi {
38516
40302
  return await this.createTempDBInstanceWithOptions(request, runtime);
38517
40303
  }
38518
40304
 
40305
+ async createYouhuiForOrderWithOptions(request: CreateYouhuiForOrderRequest, runtime: $Util.RuntimeOptions): Promise<CreateYouhuiForOrderResponse> {
40306
+ Util.validateModel(request);
40307
+ let query = { };
40308
+ if (!Util.isUnset(request.activityId)) {
40309
+ query["ActivityId"] = request.activityId;
40310
+ }
40311
+
40312
+ if (!Util.isUnset(request.ownerId)) {
40313
+ query["OwnerId"] = request.ownerId;
40314
+ }
40315
+
40316
+ if (!Util.isUnset(request.promotionId)) {
40317
+ query["PromotionId"] = request.promotionId;
40318
+ }
40319
+
40320
+ if (!Util.isUnset(request.regionId)) {
40321
+ query["RegionId"] = request.regionId;
40322
+ }
40323
+
40324
+ if (!Util.isUnset(request.resourceOwnerAccount)) {
40325
+ query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
40326
+ }
40327
+
40328
+ if (!Util.isUnset(request.resourceOwnerId)) {
40329
+ query["ResourceOwnerId"] = request.resourceOwnerId;
40330
+ }
40331
+
40332
+ let req = new $OpenApi.OpenApiRequest({
40333
+ query: OpenApiUtil.query(query),
40334
+ });
40335
+ let params = new $OpenApi.Params({
40336
+ action: "CreateYouhuiForOrder",
40337
+ version: "2014-08-15",
40338
+ protocol: "HTTPS",
40339
+ pathname: "/",
40340
+ method: "POST",
40341
+ authType: "AK",
40342
+ style: "RPC",
40343
+ reqBodyType: "formData",
40344
+ bodyType: "json",
40345
+ });
40346
+ return $tea.cast<CreateYouhuiForOrderResponse>(await this.callApi(params, req, runtime), new CreateYouhuiForOrderResponse({}));
40347
+ }
40348
+
40349
+ async createYouhuiForOrder(request: CreateYouhuiForOrderRequest): Promise<CreateYouhuiForOrderResponse> {
40350
+ let runtime = new $Util.RuntimeOptions({ });
40351
+ return await this.createYouhuiForOrderWithOptions(request, runtime);
40352
+ }
40353
+
38519
40354
  /**
38520
- * This operation is available only for ApsaraDB RDS for SQL Server instances.
40355
+ * ### [](#)Supported database engines
40356
+ * * SQL Server
38521
40357
  *
38522
40358
  * @param request DeleteADSettingRequest
38523
40359
  * @param runtime runtime options for this request RuntimeOptions
@@ -38568,7 +40404,8 @@ export default class Client extends OpenApi {
38568
40404
  }
38569
40405
 
38570
40406
  /**
38571
- * This operation is available only for ApsaraDB RDS for SQL Server instances.
40407
+ * ### [](#)Supported database engines
40408
+ * * SQL Server
38572
40409
  *
38573
40410
  * @param request DeleteADSettingRequest
38574
40411
  * @return DeleteADSettingResponse
@@ -39257,8 +41094,10 @@ export default class Client extends OpenApi {
39257
41094
  }
39258
41095
 
39259
41096
  /**
39260
- * ## Precautions
39261
- * * A global active database cluster cannot be restored after it is deleted. Proceed with caution when you delete a global active database cluster.
41097
+ * ### [](#)Supported database engines
41098
+ * * MySQL
41099
+ * ### [Usage notes](#)
41100
+ * * A global active database cluster cannot be restored after it is deleted. Proceed with caution.
39262
41101
  * * If you delete a global active database cluster, the system removes all nodes and Data Transmission Service (DTS) synchronization tasks from the cluster. However, the system does not release the ApsaraDB RDS for MySQL instances that run as nodes in the cluster. If you no longer need the ApsaraDB RDS for MySQL instances, you can call the [DeleteDBInstance](~~26229~~) to release the instances one after another.
39263
41102
  *
39264
41103
  * @param request DeleteGadInstanceRequest
@@ -39298,8 +41137,10 @@ export default class Client extends OpenApi {
39298
41137
  }
39299
41138
 
39300
41139
  /**
39301
- * ## Precautions
39302
- * * A global active database cluster cannot be restored after it is deleted. Proceed with caution when you delete a global active database cluster.
41140
+ * ### [](#)Supported database engines
41141
+ * * MySQL
41142
+ * ### [Usage notes](#)
41143
+ * * A global active database cluster cannot be restored after it is deleted. Proceed with caution.
39303
41144
  * * If you delete a global active database cluster, the system removes all nodes and Data Transmission Service (DTS) synchronization tasks from the cluster. However, the system does not release the ApsaraDB RDS for MySQL instances that run as nodes in the cluster. If you no longer need the ApsaraDB RDS for MySQL instances, you can call the [DeleteDBInstance](~~26229~~) to release the instances one after another.
39304
41145
  *
39305
41146
  * @param request DeleteGadInstanceRequest
@@ -39311,10 +41152,15 @@ export default class Client extends OpenApi {
39311
41152
  }
39312
41153
 
39313
41154
  /**
39314
- * You can apply a parameter template to an instance to manage a number of parameters at a time. For more information, see [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~) or [Use a parameter template to configure the parameters of ApsaraDB RDS for PostgreSQL instances](~~457176~~).
39315
- * >
39316
- * * If you delete a parameter template, the instances to which the parameter template is applied are not affected.
39317
- * * Before you can delete a parameter template in ApsaraDB RDS for PostgreSQL, you must apply another parameter template to the ApsaraDB RDS for PostgreSQL instances to which the parameter template is applied. You can call the [DescribeParameterGroup](~~144842~~) operation to query the instances to which a parameter template is applied.
41155
+ * ### [](#)Supported database engines
41156
+ * * MySQL
41157
+ * * PostgreSQL
41158
+ * * SQL Server
41159
+ * * MariaDB
41160
+ * ### [](#)References
41161
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
41162
+ * * [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~)
41163
+ * * [Use a parameter template to configure the parameters of ApsaraDB RDS for PostgreSQL instances](~~457176~~)
39318
41164
  *
39319
41165
  * @param request DeleteParameterGroupRequest
39320
41166
  * @param runtime runtime options for this request RuntimeOptions
@@ -39365,10 +41211,15 @@ export default class Client extends OpenApi {
39365
41211
  }
39366
41212
 
39367
41213
  /**
39368
- * You can apply a parameter template to an instance to manage a number of parameters at a time. For more information, see [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~) or [Use a parameter template to configure the parameters of ApsaraDB RDS for PostgreSQL instances](~~457176~~).
39369
- * >
39370
- * * If you delete a parameter template, the instances to which the parameter template is applied are not affected.
39371
- * * Before you can delete a parameter template in ApsaraDB RDS for PostgreSQL, you must apply another parameter template to the ApsaraDB RDS for PostgreSQL instances to which the parameter template is applied. You can call the [DescribeParameterGroup](~~144842~~) operation to query the instances to which a parameter template is applied.
41214
+ * ### [](#)Supported database engines
41215
+ * * MySQL
41216
+ * * PostgreSQL
41217
+ * * SQL Server
41218
+ * * MariaDB
41219
+ * ### [](#)References
41220
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
41221
+ * * [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~)
41222
+ * * [Use a parameter template to configure the parameters of ApsaraDB RDS for PostgreSQL instances](~~457176~~)
39372
41223
  *
39373
41224
  * @param request DeleteParameterGroupRequest
39374
41225
  * @return DeleteParameterGroupResponse
@@ -39526,8 +41377,10 @@ export default class Client extends OpenApi {
39526
41377
  }
39527
41378
 
39528
41379
  /**
39529
- * * This operation is available only for ApsaraDB RDS for PostgreSQL instances.
39530
- * * You can delete a replication slot only when the status of the slot is **INACTIVE**. You can call the DescribeSlots operation to query the status of a replication slot.
41380
+ * ### [](#)Supported database engine
41381
+ * * PostgreSQL
41382
+ * ### [](#)Precautions
41383
+ * You can delete a replication slot only when the status of the slot is **INACTIVE**. You can call the DescribeSlots operation to query the status of a replication slot.
39531
41384
  *
39532
41385
  * @param request DeleteSlotRequest
39533
41386
  * @param runtime runtime options for this request RuntimeOptions
@@ -39590,8 +41443,10 @@ export default class Client extends OpenApi {
39590
41443
  }
39591
41444
 
39592
41445
  /**
39593
- * * This operation is available only for ApsaraDB RDS for PostgreSQL instances.
39594
- * * You can delete a replication slot only when the status of the slot is **INACTIVE**. You can call the DescribeSlots operation to query the status of a replication slot.
41446
+ * ### [](#)Supported database engine
41447
+ * * PostgreSQL
41448
+ * ### [](#)Precautions
41449
+ * You can delete a replication slot only when the status of the slot is **INACTIVE**. You can call the DescribeSlots operation to query the status of a replication slot.
39595
41450
  *
39596
41451
  * @param request DeleteSlotRequest
39597
41452
  * @return DeleteSlotResponse
@@ -39602,9 +41457,11 @@ export default class Client extends OpenApi {
39602
41457
  }
39603
41458
 
39604
41459
  /**
39605
- * >
39606
- * * 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~~).
39607
- * * This operation deletes full backup files only from the ApsaraDB RDS console. This operation does not affect the full backup files that are stored as objects in Object Storage Service (OSS) buckets. After you call this operation to delete a full backup file, you can call the [ImportUserBackupFile](~~260266~~) operation to reimport the full backup file.
41460
+ * ### [](#)Supported database engines
41461
+ * * MySQL
41462
+ * ### [](#)Description
41463
+ * * A full backup file contains the data of a self-managed MySQL instance. You can restore the data of a self-managed MySQL instance 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~~).
41464
+ * * This operation deletes full backup files only from the ApsaraDB RDS console. This operation does not affect the full backup files that are stored as objects in Object Storage Service (OSS) buckets. After you call this operation to delete a full backup file, you can call the [ImportUserBackupFile](~~260266~~)operation to import the full backup file again.
39608
41465
  *
39609
41466
  * @param request DeleteUserBackupFileRequest
39610
41467
  * @param runtime runtime options for this request RuntimeOptions
@@ -39655,9 +41512,11 @@ export default class Client extends OpenApi {
39655
41512
  }
39656
41513
 
39657
41514
  /**
39658
- * >
39659
- * * 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~~).
39660
- * * This operation deletes full backup files only from the ApsaraDB RDS console. This operation does not affect the full backup files that are stored as objects in Object Storage Service (OSS) buckets. After you call this operation to delete a full backup file, you can call the [ImportUserBackupFile](~~260266~~) operation to reimport the full backup file.
41515
+ * ### [](#)Supported database engines
41516
+ * * MySQL
41517
+ * ### [](#)Description
41518
+ * * A full backup file contains the data of a self-managed MySQL instance. You can restore the data of a self-managed MySQL instance 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~~).
41519
+ * * This operation deletes full backup files only from the ApsaraDB RDS console. This operation does not affect the full backup files that are stored as objects in Object Storage Service (OSS) buckets. After you call this operation to delete a full backup file, you can call the [ImportUserBackupFile](~~260266~~)operation to import the full backup file again.
39661
41520
  *
39662
41521
  * @param request DeleteUserBackupFileRequest
39663
41522
  * @return DeleteUserBackupFileResponse
@@ -39668,7 +41527,10 @@ export default class Client extends OpenApi {
39668
41527
  }
39669
41528
 
39670
41529
  /**
39671
- * This operation is suitable only for the instances that run MySQL or SQL Server. For more information about how to run a migration task, see [ImportDatabaseBetweenInstances](~~26301~~).
41530
+ * ### [](#)Supported database engines
41531
+ * MySQL
41532
+ * ### [](#)References
41533
+ * [Migrate data between ApsaraDB RDS for MySQL instances](~~96154~~)
39672
41534
  *
39673
41535
  * @param request DescibeImportsFromDatabaseRequest
39674
41536
  * @param runtime runtime options for this request RuntimeOptions
@@ -39747,7 +41609,10 @@ export default class Client extends OpenApi {
39747
41609
  }
39748
41610
 
39749
41611
  /**
39750
- * This operation is suitable only for the instances that run MySQL or SQL Server. For more information about how to run a migration task, see [ImportDatabaseBetweenInstances](~~26301~~).
41612
+ * ### [](#)Supported database engines
41613
+ * MySQL
41614
+ * ### [](#)References
41615
+ * [Migrate data between ApsaraDB RDS for MySQL instances](~~96154~~)
39751
41616
  *
39752
41617
  * @param request DescibeImportsFromDatabaseRequest
39753
41618
  * @return DescibeImportsFromDatabaseResponse
@@ -39758,7 +41623,8 @@ export default class Client extends OpenApi {
39758
41623
  }
39759
41624
 
39760
41625
  /**
39761
- * This operation is available only for ApsaraDB RDS for SQL Server instances.
41626
+ * ### [](#)Supported database engines
41627
+ * * SQL Server
39762
41628
  *
39763
41629
  * @param request DescribeADInfoRequest
39764
41630
  * @param runtime runtime options for this request RuntimeOptions
@@ -39809,7 +41675,8 @@ export default class Client extends OpenApi {
39809
41675
  }
39810
41676
 
39811
41677
  /**
39812
- * This operation is available only for ApsaraDB RDS for SQL Server instances.
41678
+ * ### [](#)Supported database engines
41679
+ * * SQL Server
39813
41680
  *
39814
41681
  * @param request DescribeADInfoRequest
39815
41682
  * @return DescribeADInfoResponse
@@ -39956,7 +41823,11 @@ export default class Client extends OpenApi {
39956
41823
  }
39957
41824
 
39958
41825
  /**
39959
- * After you call this operation and obtain the information about a specific O\\&M task, you can call the [ModifyActiveOperationTask](~~611454~~) operation to modify the scheduled switching time of the O\\&M task. You can also view the task and modify the scheduled switching time on the Task Center page of the ApsaraDB RDS console.
41826
+ * ### [](#)Supported database engines
41827
+ * * MySQL
41828
+ * * PostgreSQL
41829
+ * * SQL Server
41830
+ * * MariaDB
39960
41831
  *
39961
41832
  * @param request DescribeActiveOperationTasksRequest
39962
41833
  * @param runtime runtime options for this request RuntimeOptions
@@ -40047,7 +41918,11 @@ export default class Client extends OpenApi {
40047
41918
  }
40048
41919
 
40049
41920
  /**
40050
- * After you call this operation and obtain the information about a specific O\\&M task, you can call the [ModifyActiveOperationTask](~~611454~~) operation to modify the scheduled switching time of the O\\&M task. You can also view the task and modify the scheduled switching time on the Task Center page of the ApsaraDB RDS console.
41921
+ * ### [](#)Supported database engines
41922
+ * * MySQL
41923
+ * * PostgreSQL
41924
+ * * SQL Server
41925
+ * * MariaDB
40051
41926
  *
40052
41927
  * @param request DescribeActiveOperationTasksRequest
40053
41928
  * @return DescribeActiveOperationTasksResponse
@@ -40314,9 +42189,11 @@ export default class Client extends OpenApi {
40314
42189
  }
40315
42190
 
40316
42191
  /**
40317
- * ### Prerequisites
40318
- * The instance runs PostgreSQL.
40319
- * For more information, see [View the Enhanced Monitoring metrics of an ApsaraDB RDS for PostgreSQL instance](~~299200~~).
42192
+ * ### [](#)Supported database engines
42193
+ * * PostgreSQL
42194
+ * ### [](#)References
42195
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
42196
+ * [View the Enhanced Monitoring metrics](~~299200~~)
40320
42197
  *
40321
42198
  * @param request DescribeAvailableMetricsRequest
40322
42199
  * @param runtime runtime options for this request RuntimeOptions
@@ -40355,9 +42232,11 @@ export default class Client extends OpenApi {
40355
42232
  }
40356
42233
 
40357
42234
  /**
40358
- * ### Prerequisites
40359
- * The instance runs PostgreSQL.
40360
- * For more information, see [View the Enhanced Monitoring metrics of an ApsaraDB RDS for PostgreSQL instance](~~299200~~).
42235
+ * ### [](#)Supported database engines
42236
+ * * PostgreSQL
42237
+ * ### [](#)References
42238
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
42239
+ * [View the Enhanced Monitoring metrics](~~299200~~)
40361
42240
  *
40362
42241
  * @param request DescribeAvailableMetricsRequest
40363
42242
  * @return DescribeAvailableMetricsResponse
@@ -41067,8 +42946,8 @@ export default class Client extends OpenApi {
41067
42946
  }
41068
42947
 
41069
42948
  /**
41070
- * ## Prerequisites
41071
- * Before you call the DescribeCloudMigrationPrecheckResult operation, make sure that the CreateCloudMigrationPrecheckTask operation is called to create a cloud migration assessment task for the ApsaraDB RDS for PostgreSQL instance.
42949
+ * ### [](#)Supported database engines
42950
+ * * PostgreSQL
41072
42951
  *
41073
42952
  * @param request DescribeCloudMigrationPrecheckResultRequest
41074
42953
  * @param runtime runtime options for this request RuntimeOptions
@@ -41127,8 +43006,8 @@ export default class Client extends OpenApi {
41127
43006
  }
41128
43007
 
41129
43008
  /**
41130
- * ## Prerequisites
41131
- * Before you call the DescribeCloudMigrationPrecheckResult operation, make sure that the CreateCloudMigrationPrecheckTask operation is called to create a cloud migration assessment task for the ApsaraDB RDS for PostgreSQL instance.
43009
+ * ### [](#)Supported database engines
43010
+ * * PostgreSQL
41132
43011
  *
41133
43012
  * @param request DescribeCloudMigrationPrecheckResultRequest
41134
43013
  * @return DescribeCloudMigrationPrecheckResultResponse
@@ -41139,8 +43018,8 @@ export default class Client extends OpenApi {
41139
43018
  }
41140
43019
 
41141
43020
  /**
41142
- * ## Prerequisites
41143
- * Before you call the DescribeCloudMigrationResult operation, make sure that cloud migration tasks are created by calling the [CreateCloudMigrationTask](~~411690~~) operation.
43021
+ * ### [](#)Supported database engines
43022
+ * * PostgreSQL
41144
43023
  *
41145
43024
  * @param request DescribeCloudMigrationResultRequest
41146
43025
  * @param runtime runtime options for this request RuntimeOptions
@@ -41199,8 +43078,8 @@ export default class Client extends OpenApi {
41199
43078
  }
41200
43079
 
41201
43080
  /**
41202
- * ## Prerequisites
41203
- * Before you call the DescribeCloudMigrationResult operation, make sure that cloud migration tasks are created by calling the [CreateCloudMigrationTask](~~411690~~) operation.
43081
+ * ### [](#)Supported database engines
43082
+ * * PostgreSQL
41204
43083
  *
41205
43084
  * @param request DescribeCloudMigrationResultRequest
41206
43085
  * @return DescribeCloudMigrationResultResponse
@@ -41620,6 +43499,104 @@ export default class Client extends OpenApi {
41620
43499
  return await this.describeCrossRegionLogBackupFilesWithOptions(request, runtime);
41621
43500
  }
41622
43501
 
43502
+ async describeCurrentModifyOrderWithOptions(request: DescribeCurrentModifyOrderRequest, runtime: $Util.RuntimeOptions): Promise<DescribeCurrentModifyOrderResponse> {
43503
+ Util.validateModel(request);
43504
+ let query = { };
43505
+ if (!Util.isUnset(request.clientToken)) {
43506
+ query["ClientToken"] = request.clientToken;
43507
+ }
43508
+
43509
+ if (!Util.isUnset(request.dbInstanceId)) {
43510
+ query["DbInstanceId"] = request.dbInstanceId;
43511
+ }
43512
+
43513
+ if (!Util.isUnset(request.ownerId)) {
43514
+ query["OwnerId"] = request.ownerId;
43515
+ }
43516
+
43517
+ if (!Util.isUnset(request.regionId)) {
43518
+ query["RegionId"] = request.regionId;
43519
+ }
43520
+
43521
+ if (!Util.isUnset(request.resourceGroupId)) {
43522
+ query["ResourceGroupId"] = request.resourceGroupId;
43523
+ }
43524
+
43525
+ if (!Util.isUnset(request.resourceOwnerAccount)) {
43526
+ query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
43527
+ }
43528
+
43529
+ if (!Util.isUnset(request.resourceOwnerId)) {
43530
+ query["ResourceOwnerId"] = request.resourceOwnerId;
43531
+ }
43532
+
43533
+ let req = new $OpenApi.OpenApiRequest({
43534
+ query: OpenApiUtil.query(query),
43535
+ });
43536
+ let params = new $OpenApi.Params({
43537
+ action: "DescribeCurrentModifyOrder",
43538
+ version: "2014-08-15",
43539
+ protocol: "HTTPS",
43540
+ pathname: "/",
43541
+ method: "POST",
43542
+ authType: "AK",
43543
+ style: "RPC",
43544
+ reqBodyType: "formData",
43545
+ bodyType: "json",
43546
+ });
43547
+ return $tea.cast<DescribeCurrentModifyOrderResponse>(await this.callApi(params, req, runtime), new DescribeCurrentModifyOrderResponse({}));
43548
+ }
43549
+
43550
+ async describeCurrentModifyOrder(request: DescribeCurrentModifyOrderRequest): Promise<DescribeCurrentModifyOrderResponse> {
43551
+ let runtime = new $Util.RuntimeOptions({ });
43552
+ return await this.describeCurrentModifyOrderWithOptions(request, runtime);
43553
+ }
43554
+
43555
+ async describeCustinsResourceInfoWithOptions(request: DescribeCustinsResourceInfoRequest, runtime: $Util.RuntimeOptions): Promise<DescribeCustinsResourceInfoResponse> {
43556
+ Util.validateModel(request);
43557
+ let query = { };
43558
+ if (!Util.isUnset(request.DBInstanceIds)) {
43559
+ query["DBInstanceIds"] = request.DBInstanceIds;
43560
+ }
43561
+
43562
+ if (!Util.isUnset(request.ownerId)) {
43563
+ query["OwnerId"] = request.ownerId;
43564
+ }
43565
+
43566
+ if (!Util.isUnset(request.resourceGroupId)) {
43567
+ query["ResourceGroupId"] = request.resourceGroupId;
43568
+ }
43569
+
43570
+ if (!Util.isUnset(request.resourceOwnerAccount)) {
43571
+ query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
43572
+ }
43573
+
43574
+ if (!Util.isUnset(request.resourceOwnerId)) {
43575
+ query["ResourceOwnerId"] = request.resourceOwnerId;
43576
+ }
43577
+
43578
+ let req = new $OpenApi.OpenApiRequest({
43579
+ query: OpenApiUtil.query(query),
43580
+ });
43581
+ let params = new $OpenApi.Params({
43582
+ action: "DescribeCustinsResourceInfo",
43583
+ version: "2014-08-15",
43584
+ protocol: "HTTPS",
43585
+ pathname: "/",
43586
+ method: "POST",
43587
+ authType: "AK",
43588
+ style: "RPC",
43589
+ reqBodyType: "formData",
43590
+ bodyType: "json",
43591
+ });
43592
+ return $tea.cast<DescribeCustinsResourceInfoResponse>(await this.callApi(params, req, runtime), new DescribeCustinsResourceInfoResponse({}));
43593
+ }
43594
+
43595
+ async describeCustinsResourceInfo(request: DescribeCustinsResourceInfoRequest): Promise<DescribeCustinsResourceInfoResponse> {
43596
+ let runtime = new $Util.RuntimeOptions({ });
43597
+ return await this.describeCustinsResourceInfoWithOptions(request, runtime);
43598
+ }
43599
+
41623
43600
  /**
41624
43601
  * ### [](#)Supported database engines
41625
43602
  * * RDS MySQL
@@ -41678,6 +43655,17 @@ export default class Client extends OpenApi {
41678
43655
  return await this.describeDBInstanceAttributeWithOptions(request, runtime);
41679
43656
  }
41680
43657
 
43658
+ /**
43659
+ * ### [](#)Supported database engines
43660
+ * * MySQL
43661
+ * * PostgreSQL
43662
+ * * SQL Server
43663
+ * * MariaDB
43664
+ *
43665
+ * @param request DescribeDBInstanceByTagsRequest
43666
+ * @param runtime runtime options for this request RuntimeOptions
43667
+ * @return DescribeDBInstanceByTagsResponse
43668
+ */
41681
43669
  async describeDBInstanceByTagsWithOptions(request: DescribeDBInstanceByTagsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceByTagsResponse> {
41682
43670
  Util.validateModel(request);
41683
43671
  let query = { };
@@ -41738,11 +43726,46 @@ export default class Client extends OpenApi {
41738
43726
  return $tea.cast<DescribeDBInstanceByTagsResponse>(await this.callApi(params, req, runtime), new DescribeDBInstanceByTagsResponse({}));
41739
43727
  }
41740
43728
 
43729
+ /**
43730
+ * ### [](#)Supported database engines
43731
+ * * MySQL
43732
+ * * PostgreSQL
43733
+ * * SQL Server
43734
+ * * MariaDB
43735
+ *
43736
+ * @param request DescribeDBInstanceByTagsRequest
43737
+ * @return DescribeDBInstanceByTagsResponse
43738
+ */
41741
43739
  async describeDBInstanceByTags(request: DescribeDBInstanceByTagsRequest): Promise<DescribeDBInstanceByTagsResponse> {
41742
43740
  let runtime = new $Util.RuntimeOptions({ });
41743
43741
  return await this.describeDBInstanceByTagsWithOptions(request, runtime);
41744
43742
  }
41745
43743
 
43744
+ async describeDBInstanceConnectivityWithOptions(request: DescribeDBInstanceConnectivityRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceConnectivityResponse> {
43745
+ Util.validateModel(request);
43746
+ let query = OpenApiUtil.query(Util.toMap(request));
43747
+ let req = new $OpenApi.OpenApiRequest({
43748
+ query: OpenApiUtil.query(query),
43749
+ });
43750
+ let params = new $OpenApi.Params({
43751
+ action: "DescribeDBInstanceConnectivity",
43752
+ version: "2014-08-15",
43753
+ protocol: "HTTPS",
43754
+ pathname: "/",
43755
+ method: "GET",
43756
+ authType: "AK",
43757
+ style: "RPC",
43758
+ reqBodyType: "formData",
43759
+ bodyType: "json",
43760
+ });
43761
+ return $tea.cast<DescribeDBInstanceConnectivityResponse>(await this.callApi(params, req, runtime), new DescribeDBInstanceConnectivityResponse({}));
43762
+ }
43763
+
43764
+ async describeDBInstanceConnectivity(request: DescribeDBInstanceConnectivityRequest): Promise<DescribeDBInstanceConnectivityResponse> {
43765
+ let runtime = new $Util.RuntimeOptions({ });
43766
+ return await this.describeDBInstanceConnectivityWithOptions(request, runtime);
43767
+ }
43768
+
41746
43769
  /**
41747
43770
  * This operation is phased out.
41748
43771
  *
@@ -42145,9 +44168,11 @@ export default class Client extends OpenApi {
42145
44168
  }
42146
44169
 
42147
44170
  /**
42148
- * ### Prerequisites
42149
- * The instance runs PostgreSQL.
42150
- * For more information, see [View the Enhanced Monitoring metrics of an ApsaraDB RDS for PostgreSQL instance](~~299200~~).
44171
+ * ### [](#)Supported database engines
44172
+ * * PostgreSQL
44173
+ * ### [](#)References
44174
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
44175
+ * [View the Enhanced Monitoring metrics](~~299200~~)
42151
44176
  *
42152
44177
  * @param request DescribeDBInstanceMetricsRequest
42153
44178
  * @param runtime runtime options for this request RuntimeOptions
@@ -42186,9 +44211,11 @@ export default class Client extends OpenApi {
42186
44211
  }
42187
44212
 
42188
44213
  /**
42189
- * ### Prerequisites
42190
- * The instance runs PostgreSQL.
42191
- * For more information, see [View the Enhanced Monitoring metrics of an ApsaraDB RDS for PostgreSQL instance](~~299200~~).
44214
+ * ### [](#)Supported database engines
44215
+ * * PostgreSQL
44216
+ * ### [](#)References
44217
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
44218
+ * [View the Enhanced Monitoring metrics](~~299200~~)
42192
44219
  *
42193
44220
  * @param request DescribeDBInstanceMetricsRequest
42194
44221
  * @return DescribeDBInstanceMetricsResponse
@@ -42199,7 +44226,10 @@ export default class Client extends OpenApi {
42199
44226
  }
42200
44227
 
42201
44228
  /**
42202
- * > This operation is not supported for RDS instances that run PostgreSQL. The monitoring frequency of such an instance varies based on the query time range. For more information, see [Query performance metrics](~~26280~~).
44229
+ * ### [](#)Supported database engines
44230
+ * * MySQL
44231
+ * * SQL Server
44232
+ * * MariaDB
42203
44233
  *
42204
44234
  * @param request DescribeDBInstanceMonitorRequest
42205
44235
  * @param runtime runtime options for this request RuntimeOptions
@@ -42250,7 +44280,10 @@ export default class Client extends OpenApi {
42250
44280
  }
42251
44281
 
42252
44282
  /**
42253
- * > This operation is not supported for RDS instances that run PostgreSQL. The monitoring frequency of such an instance varies based on the query time range. For more information, see [Query performance metrics](~~26280~~).
44283
+ * ### [](#)Supported database engines
44284
+ * * MySQL
44285
+ * * SQL Server
44286
+ * * MariaDB
42254
44287
  *
42255
44288
  * @param request DescribeDBInstanceMonitorRequest
42256
44289
  * @return DescribeDBInstanceMonitorResponse
@@ -42400,34 +44433,11 @@ export default class Client extends OpenApi {
42400
44433
  }
42401
44434
 
42402
44435
  /**
42403
- * You can query the performance of an instance over a specific time range based on its performance metrics. Performance metrics are generated by using one of the following methods based on the database engine and version, RDS edition, [monitoring frequency](~~26200~~) ([ModifyDBInstanceMonitor](~~26282~~)), and query time range:
42404
- * * For instances that do not run MySQL on RDS High-availability Edition with standard SSDs or enhanced SSDs (ESSDs) and those that do not run MariaDB TX:
42405
- * * 5-second monitoring frequency
42406
- * * If the query time range is greater than seven days, performance metrics are collected at 1-day intervals.
42407
- * * If the query time range is greater than one day but less than or equal to seven days, performance metrics are collected at 1-hour intervals.
42408
- * * If the query time range is greater than or equal to an hour but less than or equal to one day, performance metrics are collected at 1-minute intervals.
42409
- * * If the query time range is less than an hour, performance metrics are collected at 5-second intervals.
42410
- * * 60-second monitoring frequency
42411
- * * If the query time range is greater than 30 days, performance metrics are collected at 1-day intervals.
42412
- * * If the query time range is greater than seven days but less than or equal to 30 days, performance metrics are collected at 1-hour intervals.
42413
- * * If the query time range is less than or equal to seven days, performance metrics are collected at 1-minute intervals.
42414
- * * 300-second monitoring frequency
42415
- * * If the query time range is greater than 30 days, performance metrics are collected at 1-day intervals.
42416
- * * If the query time range is greater than seven days but less than or equal to 30 days, performance metrics are collected at 1-hour intervals.
42417
- * * If the query time range is less than or equal to seven days, performance metrics are collected at 5-minute intervals.
42418
- * * For instances that are running MySQL on RDS High-availability Edition with standard SSDs or ESSDs and those that are running MariaDB TX:
42419
- * * If the query time range is greater than 30 days, performance metrics are collected at 1-day intervals.
42420
- * * If the query time range is greater than seven days but less than or equal to 30 days, performance metrics are collected at 1-hour intervals.
42421
- * * If the query time range is less than or equal to seven days, performance metrics are collected at 1-minute intervals.
42422
- * * For instances that run PostgreSQL with local SSDs, standard SSDs, or ESSDs:
42423
- * * If the query time range is less than or equal to an hour, performance metrics are collected at 5-second intervals.
42424
- * * If the query time range is less than or equal to 2 hours, performance metrics are collected at 10-second intervals.
42425
- * * If the query time range is less than or equal to 6 hours, performance metrics are collected at 30-second intervals.
42426
- * * If the query time range is less than or equal to 12 hours, performance metrics are collected at 1-minute intervals.
42427
- * * If the query time range is less than or equal to one day, performance metrics are collected at 2-minute intervals.
42428
- * * If the query time range is less than or equal to five days, performance metrics are collected at 10-minute intervals.
42429
- * * If the query time range is less than or equal to 15 days, performance metrics are collected at 30-minute intervals.
42430
- * * If the query time range is less than or equal to 30 days, performance metrics are collected at 1-hour intervals.
44436
+ * ### [](#)Supported database engines
44437
+ * * MySQL
44438
+ * * PostgreSQL
44439
+ * * SQL Server
44440
+ * * MariaDB
42431
44441
  *
42432
44442
  * @param request DescribeDBInstancePerformanceRequest
42433
44443
  * @param runtime runtime options for this request RuntimeOptions
@@ -42478,34 +44488,11 @@ export default class Client extends OpenApi {
42478
44488
  }
42479
44489
 
42480
44490
  /**
42481
- * You can query the performance of an instance over a specific time range based on its performance metrics. Performance metrics are generated by using one of the following methods based on the database engine and version, RDS edition, [monitoring frequency](~~26200~~) ([ModifyDBInstanceMonitor](~~26282~~)), and query time range:
42482
- * * For instances that do not run MySQL on RDS High-availability Edition with standard SSDs or enhanced SSDs (ESSDs) and those that do not run MariaDB TX:
42483
- * * 5-second monitoring frequency
42484
- * * If the query time range is greater than seven days, performance metrics are collected at 1-day intervals.
42485
- * * If the query time range is greater than one day but less than or equal to seven days, performance metrics are collected at 1-hour intervals.
42486
- * * If the query time range is greater than or equal to an hour but less than or equal to one day, performance metrics are collected at 1-minute intervals.
42487
- * * If the query time range is less than an hour, performance metrics are collected at 5-second intervals.
42488
- * * 60-second monitoring frequency
42489
- * * If the query time range is greater than 30 days, performance metrics are collected at 1-day intervals.
42490
- * * If the query time range is greater than seven days but less than or equal to 30 days, performance metrics are collected at 1-hour intervals.
42491
- * * If the query time range is less than or equal to seven days, performance metrics are collected at 1-minute intervals.
42492
- * * 300-second monitoring frequency
42493
- * * If the query time range is greater than 30 days, performance metrics are collected at 1-day intervals.
42494
- * * If the query time range is greater than seven days but less than or equal to 30 days, performance metrics are collected at 1-hour intervals.
42495
- * * If the query time range is less than or equal to seven days, performance metrics are collected at 5-minute intervals.
42496
- * * For instances that are running MySQL on RDS High-availability Edition with standard SSDs or ESSDs and those that are running MariaDB TX:
42497
- * * If the query time range is greater than 30 days, performance metrics are collected at 1-day intervals.
42498
- * * If the query time range is greater than seven days but less than or equal to 30 days, performance metrics are collected at 1-hour intervals.
42499
- * * If the query time range is less than or equal to seven days, performance metrics are collected at 1-minute intervals.
42500
- * * For instances that run PostgreSQL with local SSDs, standard SSDs, or ESSDs:
42501
- * * If the query time range is less than or equal to an hour, performance metrics are collected at 5-second intervals.
42502
- * * If the query time range is less than or equal to 2 hours, performance metrics are collected at 10-second intervals.
42503
- * * If the query time range is less than or equal to 6 hours, performance metrics are collected at 30-second intervals.
42504
- * * If the query time range is less than or equal to 12 hours, performance metrics are collected at 1-minute intervals.
42505
- * * If the query time range is less than or equal to one day, performance metrics are collected at 2-minute intervals.
42506
- * * If the query time range is less than or equal to five days, performance metrics are collected at 10-minute intervals.
42507
- * * If the query time range is less than or equal to 15 days, performance metrics are collected at 30-minute intervals.
42508
- * * If the query time range is less than or equal to 30 days, performance metrics are collected at 1-hour intervals.
44491
+ * ### [](#)Supported database engines
44492
+ * * MySQL
44493
+ * * PostgreSQL
44494
+ * * SQL Server
44495
+ * * MariaDB
42509
44496
  *
42510
44497
  * @param request DescribeDBInstancePerformanceRequest
42511
44498
  * @return DescribeDBInstancePerformanceResponse
@@ -43582,9 +45569,14 @@ export default class Client extends OpenApi {
43582
45569
  }
43583
45570
 
43584
45571
  /**
43585
- * Before you call the DescribeDBProxyPerformance operation, make sure that the [ModifyDBProxy](~~141054~~) operation is called to enable the database proxy feature for the instance.
43586
- * * The dedicated proxy feature of ApsaraDB RDS for MySQL provides capabilities such as read/write splitting and short-lived connection optimization. For more information, see [What are database proxies?](~~138705~~)
43587
- * * The database proxy feature of ApsaraDB RDS for PostgreSQL supports read/write splitting. For more information, see [What are database proxies?](~~412194~~)
45572
+ * ### [](#)Supported database engines
45573
+ * * MySQL
45574
+ * * PostgreSQL
45575
+ * > Starting October 17, 2023, ApsaraDB RDS provides a dedicated proxy free of charge for each ApsaraDB RDS for MySQL instance on RDS Cluster Edition. For more information, see [\\[Special offers/Price changes\\] One proxy is provided free of charge for ApsaraDB RDS for MySQL instances on RDS Cluster Edition](~~2555466~~).
45576
+ * ### [](#)References
45577
+ * > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
45578
+ * * [View the monitoring data of an ApsaraDB RDS for MySQL instance](~~194241~~)
45579
+ * * [View the monitoring data of an ApsaraDB RDS for PostgreSQL instance](~~418275~~)
43588
45580
  *
43589
45581
  * @param request DescribeDBProxyPerformanceRequest
43590
45582
  * @param runtime runtime options for this request RuntimeOptions
@@ -43655,9 +45647,14 @@ export default class Client extends OpenApi {
43655
45647
  }
43656
45648
 
43657
45649
  /**
43658
- * Before you call the DescribeDBProxyPerformance operation, make sure that the [ModifyDBProxy](~~141054~~) operation is called to enable the database proxy feature for the instance.
43659
- * * The dedicated proxy feature of ApsaraDB RDS for MySQL provides capabilities such as read/write splitting and short-lived connection optimization. For more information, see [What are database proxies?](~~138705~~)
43660
- * * The database proxy feature of ApsaraDB RDS for PostgreSQL supports read/write splitting. For more information, see [What are database proxies?](~~412194~~)
45650
+ * ### [](#)Supported database engines
45651
+ * * MySQL
45652
+ * * PostgreSQL
45653
+ * > Starting October 17, 2023, ApsaraDB RDS provides a dedicated proxy free of charge for each ApsaraDB RDS for MySQL instance on RDS Cluster Edition. For more information, see [\\[Special offers/Price changes\\] One proxy is provided free of charge for ApsaraDB RDS for MySQL instances on RDS Cluster Edition](~~2555466~~).
45654
+ * ### [](#)References
45655
+ * > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
45656
+ * * [View the monitoring data of an ApsaraDB RDS for MySQL instance](~~194241~~)
45657
+ * * [View the monitoring data of an ApsaraDB RDS for PostgreSQL instance](~~418275~~)
43661
45658
  *
43662
45659
  * @param request DescribeDBProxyPerformanceRequest
43663
45660
  * @return DescribeDBProxyPerformanceResponse
@@ -43668,8 +45665,11 @@ export default class Client extends OpenApi {
43668
45665
  }
43669
45666
 
43670
45667
  /**
43671
- * For more information, see [Configure a distributed transaction whitelist](~~124321~~).
43672
- * This operation is applicable to instances that run one of the following SQL Server versions on RDS High-Availability Edition: SQL Server 2012 SE, SQL Server 2012 EE, SQL Server 2014 SE, SQL Server 2016 SE, SQL Server 2016 EE, and SQL Server 2017 SE.
45668
+ * ### [](#)Supported database engines
45669
+ * SQL Server
45670
+ * ### [](#)References
45671
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
45672
+ * [Configures a distributed transaction whitelist for an ApsaraDB RDS for SQL Server instance](~~124321~~)
43673
45673
  *
43674
45674
  * @param request DescribeDTCSecurityIpHostsForSQLServerRequest
43675
45675
  * @param runtime runtime options for this request RuntimeOptions
@@ -43728,8 +45728,11 @@ export default class Client extends OpenApi {
43728
45728
  }
43729
45729
 
43730
45730
  /**
43731
- * For more information, see [Configure a distributed transaction whitelist](~~124321~~).
43732
- * This operation is applicable to instances that run one of the following SQL Server versions on RDS High-Availability Edition: SQL Server 2012 SE, SQL Server 2012 EE, SQL Server 2014 SE, SQL Server 2016 SE, SQL Server 2016 EE, and SQL Server 2017 SE.
45731
+ * ### [](#)Supported database engines
45732
+ * SQL Server
45733
+ * ### [](#)References
45734
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
45735
+ * [Configures a distributed transaction whitelist for an ApsaraDB RDS for SQL Server instance](~~124321~~)
43733
45736
  *
43734
45737
  * @param request DescribeDTCSecurityIpHostsForSQLServerRequest
43735
45738
  * @return DescribeDTCSecurityIpHostsForSQLServerResponse
@@ -44257,6 +46260,14 @@ export default class Client extends OpenApi {
44257
46260
  return await this.describeEventsWithOptions(request, runtime);
44258
46261
  }
44259
46262
 
46263
+ /**
46264
+ * ### [](#)Supported database engines
46265
+ * * MySQL
46266
+ *
46267
+ * @param request DescribeGadInstancesRequest
46268
+ * @param runtime runtime options for this request RuntimeOptions
46269
+ * @return DescribeGadInstancesResponse
46270
+ */
44260
46271
  async describeGadInstancesWithOptions(request: DescribeGadInstancesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeGadInstancesResponse> {
44261
46272
  Util.validateModel(request);
44262
46273
  let query = { };
@@ -44289,6 +46300,13 @@ export default class Client extends OpenApi {
44289
46300
  return $tea.cast<DescribeGadInstancesResponse>(await this.callApi(params, req, runtime), new DescribeGadInstancesResponse({}));
44290
46301
  }
44291
46302
 
46303
+ /**
46304
+ * ### [](#)Supported database engines
46305
+ * * MySQL
46306
+ *
46307
+ * @param request DescribeGadInstancesRequest
46308
+ * @return DescribeGadInstancesResponse
46309
+ */
44292
46310
  async describeGadInstances(request: DescribeGadInstancesRequest): Promise<DescribeGadInstancesResponse> {
44293
46311
  let runtime = new $Util.RuntimeOptions({ });
44294
46312
  return await this.describeGadInstancesWithOptions(request, runtime);
@@ -44412,6 +46430,21 @@ export default class Client extends OpenApi {
44412
46430
  return await this.describeHASwitchConfigWithOptions(request, runtime);
44413
46431
  }
44414
46432
 
46433
+ /**
46434
+ * ### [](#)Supported database engines
46435
+ * * MySQL
46436
+ * * PostgreSQL
46437
+ * * SQL Server
46438
+ * ### [](#)References
46439
+ * > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
46440
+ * * [Tasks of an ApsaraDB RDS for MySQL instance](~~474275~~)
46441
+ * * [Tasks of an ApsaraDB RDS for PostrgreSQL instance](~~474537~~)
46442
+ * * [Tasks of an ApsaraDB RDS for SQL Server instance](~~614826~~)
46443
+ *
46444
+ * @param request DescribeHistoryTasksRequest
46445
+ * @param runtime runtime options for this request RuntimeOptions
46446
+ * @return DescribeHistoryTasksResponse
46447
+ */
44415
46448
  async describeHistoryTasksWithOptions(request: DescribeHistoryTasksRequest, runtime: $Util.RuntimeOptions): Promise<DescribeHistoryTasksResponse> {
44416
46449
  Util.validateModel(request);
44417
46450
  let query = { };
@@ -44500,20 +46533,75 @@ export default class Client extends OpenApi {
44500
46533
  return $tea.cast<DescribeHistoryTasksResponse>(await this.callApi(params, req, runtime), new DescribeHistoryTasksResponse({}));
44501
46534
  }
44502
46535
 
46536
+ /**
46537
+ * ### [](#)Supported database engines
46538
+ * * MySQL
46539
+ * * PostgreSQL
46540
+ * * SQL Server
46541
+ * ### [](#)References
46542
+ * > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
46543
+ * * [Tasks of an ApsaraDB RDS for MySQL instance](~~474275~~)
46544
+ * * [Tasks of an ApsaraDB RDS for PostrgreSQL instance](~~474537~~)
46545
+ * * [Tasks of an ApsaraDB RDS for SQL Server instance](~~614826~~)
46546
+ *
46547
+ * @param request DescribeHistoryTasksRequest
46548
+ * @return DescribeHistoryTasksResponse
46549
+ */
44503
46550
  async describeHistoryTasks(request: DescribeHistoryTasksRequest): Promise<DescribeHistoryTasksResponse> {
44504
46551
  let runtime = new $Util.RuntimeOptions({ });
44505
46552
  return await this.describeHistoryTasksWithOptions(request, runtime);
44506
46553
  }
44507
46554
 
46555
+ async describeHostGroupElasticStrategyParametersWithOptions(request: DescribeHostGroupElasticStrategyParametersRequest, runtime: $Util.RuntimeOptions): Promise<DescribeHostGroupElasticStrategyParametersResponse> {
46556
+ Util.validateModel(request);
46557
+ let query = { };
46558
+ if (!Util.isUnset(request.dedicatedHostGroupName)) {
46559
+ query["DedicatedHostGroupName"] = request.dedicatedHostGroupName;
46560
+ }
46561
+
46562
+ if (!Util.isUnset(request.regionId)) {
46563
+ query["RegionId"] = request.regionId;
46564
+ }
46565
+
46566
+ if (!Util.isUnset(request.resourceGroupId)) {
46567
+ query["ResourceGroupId"] = request.resourceGroupId;
46568
+ }
46569
+
46570
+ if (!Util.isUnset(request.resourceOwnerId)) {
46571
+ query["ResourceOwnerId"] = request.resourceOwnerId;
46572
+ }
46573
+
46574
+ let req = new $OpenApi.OpenApiRequest({
46575
+ query: OpenApiUtil.query(query),
46576
+ });
46577
+ let params = new $OpenApi.Params({
46578
+ action: "DescribeHostGroupElasticStrategyParameters",
46579
+ version: "2014-08-15",
46580
+ protocol: "HTTPS",
46581
+ pathname: "/",
46582
+ method: "POST",
46583
+ authType: "AK",
46584
+ style: "RPC",
46585
+ reqBodyType: "formData",
46586
+ bodyType: "json",
46587
+ });
46588
+ return $tea.cast<DescribeHostGroupElasticStrategyParametersResponse>(await this.callApi(params, req, runtime), new DescribeHostGroupElasticStrategyParametersResponse({}));
46589
+ }
46590
+
46591
+ async describeHostGroupElasticStrategyParameters(request: DescribeHostGroupElasticStrategyParametersRequest): Promise<DescribeHostGroupElasticStrategyParametersResponse> {
46592
+ let runtime = new $Util.RuntimeOptions({ });
46593
+ return await this.describeHostGroupElasticStrategyParametersWithOptions(request, runtime);
46594
+ }
46595
+
44508
46596
  /**
44509
- * > This operation supports only for ApsaraDB RDS for SQL Server instances and is available only to specific customers. If you want to call this operation, contact **Alibaba Cloud technical support**.
44510
- * ### Prerequisites
46597
+ * > This operation is available only for instances that run SQL Server. If you require this operation, contact **Alibaba Cloud technical support**.
46598
+ * ### [](#)Prerequisites
44511
46599
  * The instance meets the following requirements:
44512
46600
  * * The instance resides in a region other than the China (Zhangjiakou) region.
44513
- * * The instance runs RDS Basic Edition, runs SQL Server 2012 or later on RDS High-availability Edition, or runs RDS Cluster Edition.
46601
+ * * The instance runs RDS Basic Edition, RDS Cluster Edition, or RDS High-availability Edition. If your instance runs RDS High-availability Edition, make sure that the instance runs SQL Server 2012 or later.
44514
46602
  * * The instance belongs to the general-purpose or dedicated instance family. The shared instance family is not supported.
44515
- * * The instance resides in a virtual private cloud (VPC). For more information about how to change the network type of an instance, see [Change the network type of an ApsaraDB RDS for SQL Server instance](~~95707~~).
44516
- * * If the instance runs RDS High-availability Edition or RDS Cluster Edition, make sure that the instance is created on or after January 01, 2021. If the instance runs RDS Basic Edition, make sure that the instance is created on or after September 02, 2022. You can view the **Creation Time** parameter of an instance in the **Status** section of the **Basic Information** page in the ApsaraDB RDS console.
46603
+ * * The instance resides in a virtual private cloud (VPC). For more information about how to change the network type of an RDS instance, see [Change the network type](~~95707~~).
46604
+ * * If the instance runs RDS High-availability Edition or RDS Cluster Edition, the instance is created on or after January 1, 2021. If the instance runs RDS Basic Edition, the instance is created on or after September 02, 2022. You can view the **Creation Time** parameter of an instance in the **Status** section of the **Basic Information** page in the ApsaraDB RDS console.
44517
46605
  * Your **Alibaba Cloud account** is used for logons.
44518
46606
  *
44519
46607
  * @param request DescribeHostWebShellRequest
@@ -44573,14 +46661,14 @@ export default class Client extends OpenApi {
44573
46661
  }
44574
46662
 
44575
46663
  /**
44576
- * > This operation supports only for ApsaraDB RDS for SQL Server instances and is available only to specific customers. If you want to call this operation, contact **Alibaba Cloud technical support**.
44577
- * ### Prerequisites
46664
+ * > This operation is available only for instances that run SQL Server. If you require this operation, contact **Alibaba Cloud technical support**.
46665
+ * ### [](#)Prerequisites
44578
46666
  * The instance meets the following requirements:
44579
46667
  * * The instance resides in a region other than the China (Zhangjiakou) region.
44580
- * * The instance runs RDS Basic Edition, runs SQL Server 2012 or later on RDS High-availability Edition, or runs RDS Cluster Edition.
46668
+ * * The instance runs RDS Basic Edition, RDS Cluster Edition, or RDS High-availability Edition. If your instance runs RDS High-availability Edition, make sure that the instance runs SQL Server 2012 or later.
44581
46669
  * * The instance belongs to the general-purpose or dedicated instance family. The shared instance family is not supported.
44582
- * * The instance resides in a virtual private cloud (VPC). For more information about how to change the network type of an instance, see [Change the network type of an ApsaraDB RDS for SQL Server instance](~~95707~~).
44583
- * * If the instance runs RDS High-availability Edition or RDS Cluster Edition, make sure that the instance is created on or after January 01, 2021. If the instance runs RDS Basic Edition, make sure that the instance is created on or after September 02, 2022. You can view the **Creation Time** parameter of an instance in the **Status** section of the **Basic Information** page in the ApsaraDB RDS console.
46670
+ * * The instance resides in a virtual private cloud (VPC). For more information about how to change the network type of an RDS instance, see [Change the network type](~~95707~~).
46671
+ * * If the instance runs RDS High-availability Edition or RDS Cluster Edition, the instance is created on or after January 1, 2021. If the instance runs RDS Basic Edition, the instance is created on or after September 02, 2022. You can view the **Creation Time** parameter of an instance in the **Status** section of the **Basic Information** page in the ApsaraDB RDS console.
44584
46672
  * Your **Alibaba Cloud account** is used for logons.
44585
46673
  *
44586
46674
  * @param request DescribeHostWebShellRequest
@@ -44833,6 +46921,16 @@ export default class Client extends OpenApi {
44833
46921
  return await this.describeInstanceLinkedWhitelistTemplateWithOptions(request, runtime);
44834
46922
  }
44835
46923
 
46924
+ /**
46925
+ * ### [](#)Supported database engines
46926
+ * * MySQL
46927
+ * * PostgreSQL
46928
+ * * MariaDB
46929
+ *
46930
+ * @param request DescribeLocalAvailableRecoveryTimeRequest
46931
+ * @param runtime runtime options for this request RuntimeOptions
46932
+ * @return DescribeLocalAvailableRecoveryTimeResponse
46933
+ */
44836
46934
  async describeLocalAvailableRecoveryTimeWithOptions(request: DescribeLocalAvailableRecoveryTimeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLocalAvailableRecoveryTimeResponse> {
44837
46935
  Util.validateModel(request);
44838
46936
  let query = { };
@@ -44877,6 +46975,15 @@ export default class Client extends OpenApi {
44877
46975
  return $tea.cast<DescribeLocalAvailableRecoveryTimeResponse>(await this.callApi(params, req, runtime), new DescribeLocalAvailableRecoveryTimeResponse({}));
44878
46976
  }
44879
46977
 
46978
+ /**
46979
+ * ### [](#)Supported database engines
46980
+ * * MySQL
46981
+ * * PostgreSQL
46982
+ * * MariaDB
46983
+ *
46984
+ * @param request DescribeLocalAvailableRecoveryTimeRequest
46985
+ * @return DescribeLocalAvailableRecoveryTimeResponse
46986
+ */
44880
46987
  async describeLocalAvailableRecoveryTime(request: DescribeLocalAvailableRecoveryTimeRequest): Promise<DescribeLocalAvailableRecoveryTimeResponse> {
44881
46988
  let runtime = new $Util.RuntimeOptions({ });
44882
46989
  return await this.describeLocalAvailableRecoveryTimeWithOptions(request, runtime);
@@ -44960,6 +47067,67 @@ export default class Client extends OpenApi {
44960
47067
  return await this.describeLogBackupFilesWithOptions(request, runtime);
44961
47068
  }
44962
47069
 
47070
+ async describeMarketingActivityWithOptions(request: DescribeMarketingActivityRequest, runtime: $Util.RuntimeOptions): Promise<DescribeMarketingActivityResponse> {
47071
+ Util.validateModel(request);
47072
+ let query = { };
47073
+ if (!Util.isUnset(request.aliUid)) {
47074
+ query["AliUid"] = request.aliUid;
47075
+ }
47076
+
47077
+ if (!Util.isUnset(request.bid)) {
47078
+ query["Bid"] = request.bid;
47079
+ }
47080
+
47081
+ if (!Util.isUnset(request.clientToken)) {
47082
+ query["ClientToken"] = request.clientToken;
47083
+ }
47084
+
47085
+ if (!Util.isUnset(request.ownerId)) {
47086
+ query["OwnerId"] = request.ownerId;
47087
+ }
47088
+
47089
+ if (!Util.isUnset(request.regionId)) {
47090
+ query["RegionId"] = request.regionId;
47091
+ }
47092
+
47093
+ if (!Util.isUnset(request.resourceGroupId)) {
47094
+ query["ResourceGroupId"] = request.resourceGroupId;
47095
+ }
47096
+
47097
+ if (!Util.isUnset(request.resourceOwnerAccount)) {
47098
+ query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
47099
+ }
47100
+
47101
+ if (!Util.isUnset(request.resourceOwnerId)) {
47102
+ query["ResourceOwnerId"] = request.resourceOwnerId;
47103
+ }
47104
+
47105
+ if (!Util.isUnset(request.upgradeCode)) {
47106
+ query["UpgradeCode"] = request.upgradeCode;
47107
+ }
47108
+
47109
+ let req = new $OpenApi.OpenApiRequest({
47110
+ query: OpenApiUtil.query(query),
47111
+ });
47112
+ let params = new $OpenApi.Params({
47113
+ action: "DescribeMarketingActivity",
47114
+ version: "2014-08-15",
47115
+ protocol: "HTTPS",
47116
+ pathname: "/",
47117
+ method: "POST",
47118
+ authType: "AK",
47119
+ style: "RPC",
47120
+ reqBodyType: "formData",
47121
+ bodyType: "json",
47122
+ });
47123
+ return $tea.cast<DescribeMarketingActivityResponse>(await this.callApi(params, req, runtime), new DescribeMarketingActivityResponse({}));
47124
+ }
47125
+
47126
+ async describeMarketingActivity(request: DescribeMarketingActivityRequest): Promise<DescribeMarketingActivityResponse> {
47127
+ let runtime = new $Util.RuntimeOptions({ });
47128
+ return await this.describeMarketingActivityWithOptions(request, runtime);
47129
+ }
47130
+
44963
47131
  /**
44964
47132
  * ### [](#)Supported database engines
44965
47133
  * MySQL
@@ -45058,6 +47226,14 @@ export default class Client extends OpenApi {
45058
47226
  return await this.describeMetaListWithOptions(request, runtime);
45059
47227
  }
45060
47228
 
47229
+ /**
47230
+ * ### [](#)Supported database engines
47231
+ * * SQL Server
47232
+ *
47233
+ * @param request DescribeMigrateTaskByIdRequest
47234
+ * @param runtime runtime options for this request RuntimeOptions
47235
+ * @return DescribeMigrateTaskByIdResponse
47236
+ */
45061
47237
  async describeMigrateTaskByIdWithOptions(request: DescribeMigrateTaskByIdRequest, runtime: $Util.RuntimeOptions): Promise<DescribeMigrateTaskByIdResponse> {
45062
47238
  Util.validateModel(request);
45063
47239
  let query = { };
@@ -45102,6 +47278,13 @@ export default class Client extends OpenApi {
45102
47278
  return $tea.cast<DescribeMigrateTaskByIdResponse>(await this.callApi(params, req, runtime), new DescribeMigrateTaskByIdResponse({}));
45103
47279
  }
45104
47280
 
47281
+ /**
47282
+ * ### [](#)Supported database engines
47283
+ * * SQL Server
47284
+ *
47285
+ * @param request DescribeMigrateTaskByIdRequest
47286
+ * @return DescribeMigrateTaskByIdResponse
47287
+ */
45105
47288
  async describeMigrateTaskById(request: DescribeMigrateTaskByIdRequest): Promise<DescribeMigrateTaskByIdResponse> {
45106
47289
  let runtime = new $Util.RuntimeOptions({ });
45107
47290
  return await this.describeMigrateTaskByIdWithOptions(request, runtime);
@@ -45263,6 +47446,17 @@ export default class Client extends OpenApi {
45263
47446
  return await this.describeModifyPGHbaConfigLogWithOptions(request, runtime);
45264
47447
  }
45265
47448
 
47449
+ /**
47450
+ * ### [](#)Supported database engines
47451
+ * * MySQL
47452
+ * * PostgreSQL
47453
+ * * SQL Server
47454
+ * * MariaDB
47455
+ *
47456
+ * @param request DescribeModifyParameterLogRequest
47457
+ * @param runtime runtime options for this request RuntimeOptions
47458
+ * @return DescribeModifyParameterLogResponse
47459
+ */
45266
47460
  async describeModifyParameterLogWithOptions(request: DescribeModifyParameterLogRequest, runtime: $Util.RuntimeOptions): Promise<DescribeModifyParameterLogResponse> {
45267
47461
  Util.validateModel(request);
45268
47462
  let query = { };
@@ -45319,13 +47513,26 @@ export default class Client extends OpenApi {
45319
47513
  return $tea.cast<DescribeModifyParameterLogResponse>(await this.callApi(params, req, runtime), new DescribeModifyParameterLogResponse({}));
45320
47514
  }
45321
47515
 
47516
+ /**
47517
+ * ### [](#)Supported database engines
47518
+ * * MySQL
47519
+ * * PostgreSQL
47520
+ * * SQL Server
47521
+ * * MariaDB
47522
+ *
47523
+ * @param request DescribeModifyParameterLogRequest
47524
+ * @return DescribeModifyParameterLogResponse
47525
+ */
45322
47526
  async describeModifyParameterLog(request: DescribeModifyParameterLogRequest): Promise<DescribeModifyParameterLogResponse> {
45323
47527
  let runtime = new $Util.RuntimeOptions({ });
45324
47528
  return await this.describeModifyParameterLogWithOptions(request, runtime);
45325
47529
  }
45326
47530
 
45327
47531
  /**
45328
- * > This operation is not supported for instances that run SQL Server 2017 EE or SQL Server 2019 EE.
47532
+ * ### [](#)Supported database engines
47533
+ * * SQL Server
47534
+ * ### [Usage notes](#)
47535
+ * This operation is not supported for instances that run SQL Server 2017 EE or SQL Server 2019 EE.
45329
47536
  *
45330
47537
  * @param request DescribeOssDownloadsRequest
45331
47538
  * @param runtime runtime options for this request RuntimeOptions
@@ -45376,7 +47583,10 @@ export default class Client extends OpenApi {
45376
47583
  }
45377
47584
 
45378
47585
  /**
45379
- * > This operation is not supported for instances that run SQL Server 2017 EE or SQL Server 2019 EE.
47586
+ * ### [](#)Supported database engines
47587
+ * * SQL Server
47588
+ * ### [Usage notes](#)
47589
+ * This operation is not supported for instances that run SQL Server 2017 EE or SQL Server 2019 EE.
45380
47590
  *
45381
47591
  * @param request DescribeOssDownloadsRequest
45382
47592
  * @return DescribeOssDownloadsResponse
@@ -45455,8 +47665,13 @@ export default class Client extends OpenApi {
45455
47665
  }
45456
47666
 
45457
47667
  /**
45458
- * You can configure a number of parameters at a time by using a parameter template and then apply the parameter template to instances. For more information, see [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~) or [Use a parameter template to configure the parameters of ApsaraDB RDS for PostgreSQL instances](~~457176~~).
45459
- * > This operation is supported only when your instance runs MySQL or PostgreSQL.
47668
+ * ### [](#)Supported database engines
47669
+ * * MySQL
47670
+ * * PostgreSQL
47671
+ * ### [](#)References
47672
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
47673
+ * * [Use a parameter template for an ApsaraDB RDS for MySQL instance](~~130565~~)
47674
+ * * [Use a parameter template for an ApsaraDB RDS for PostgreSQL instance](~~457176~~)
45460
47675
  *
45461
47676
  * @param request DescribeParameterGroupRequest
45462
47677
  * @param runtime runtime options for this request RuntimeOptions
@@ -45503,8 +47718,13 @@ export default class Client extends OpenApi {
45503
47718
  }
45504
47719
 
45505
47720
  /**
45506
- * You can configure a number of parameters at a time by using a parameter template and then apply the parameter template to instances. For more information, see [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~) or [Use a parameter template to configure the parameters of ApsaraDB RDS for PostgreSQL instances](~~457176~~).
45507
- * > This operation is supported only when your instance runs MySQL or PostgreSQL.
47721
+ * ### [](#)Supported database engines
47722
+ * * MySQL
47723
+ * * PostgreSQL
47724
+ * ### [](#)References
47725
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
47726
+ * * [Use a parameter template for an ApsaraDB RDS for MySQL instance](~~130565~~)
47727
+ * * [Use a parameter template for an ApsaraDB RDS for PostgreSQL instance](~~457176~~)
45508
47728
  *
45509
47729
  * @param request DescribeParameterGroupRequest
45510
47730
  * @return DescribeParameterGroupResponse
@@ -45515,8 +47735,15 @@ export default class Client extends OpenApi {
45515
47735
  }
45516
47736
 
45517
47737
  /**
45518
- * You can configure a number of parameters at a time by using a parameter template and then apply the parameter template to an instance. For more information, see [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~) or [Use a parameter template to configure the parameters of ApsaraDB RDS for PostgreSQL instances](~~457176~~).
45519
- * > This operation is supported only when your instance runs MySQL or PostgreSQL.
47738
+ * ### [](#)Supported database engines
47739
+ * * MySQL
47740
+ * * PostgreSQL
47741
+ * * SQL Server
47742
+ * * MariaDB
47743
+ * ### [](#)References
47744
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
47745
+ * * [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~)
47746
+ * * [Use a parameter template to configure the parameters of ApsaraDB RDS for PostgreSQL instances](~~457176~~)
45520
47747
  *
45521
47748
  * @param request DescribeParameterGroupsRequest
45522
47749
  * @param runtime runtime options for this request RuntimeOptions
@@ -45563,8 +47790,15 @@ export default class Client extends OpenApi {
45563
47790
  }
45564
47791
 
45565
47792
  /**
45566
- * You can configure a number of parameters at a time by using a parameter template and then apply the parameter template to an instance. For more information, see [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~) or [Use a parameter template to configure the parameters of ApsaraDB RDS for PostgreSQL instances](~~457176~~).
45567
- * > This operation is supported only when your instance runs MySQL or PostgreSQL.
47793
+ * ### [](#)Supported database engines
47794
+ * * MySQL
47795
+ * * PostgreSQL
47796
+ * * SQL Server
47797
+ * * MariaDB
47798
+ * ### [](#)References
47799
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
47800
+ * * [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~)
47801
+ * * [Use a parameter template to configure the parameters of ApsaraDB RDS for PostgreSQL instances](~~457176~~)
45568
47802
  *
45569
47803
  * @param request DescribeParameterGroupsRequest
45570
47804
  * @return DescribeParameterGroupsResponse
@@ -45575,11 +47809,11 @@ export default class Client extends OpenApi {
45575
47809
  }
45576
47810
 
45577
47811
  /**
45578
- * Before you call this operation, make sure that the instance runs one of the following database engines:
45579
- * * MySQL 5.5, 5.6, 5.7, and 8.0
45580
- * * SQL Server 2008 R2
45581
- * * PostgreSQL 9.4, 10, 11, and 12
45582
- * * MariaDB 10.3
47812
+ * ### [](#)Supported database engines
47813
+ * * MySQL
47814
+ * * PostgreSQL
47815
+ * * SQL Server
47816
+ * * MariaDB
45583
47817
  *
45584
47818
  * @param request DescribeParameterTemplatesRequest
45585
47819
  * @param runtime runtime options for this request RuntimeOptions
@@ -45646,11 +47880,11 @@ export default class Client extends OpenApi {
45646
47880
  }
45647
47881
 
45648
47882
  /**
45649
- * Before you call this operation, make sure that the instance runs one of the following database engines:
45650
- * * MySQL 5.5, 5.6, 5.7, and 8.0
45651
- * * SQL Server 2008 R2
45652
- * * PostgreSQL 9.4, 10, 11, and 12
45653
- * * MariaDB 10.3
47883
+ * ### [](#)Supported database engines
47884
+ * * MySQL
47885
+ * * PostgreSQL
47886
+ * * SQL Server
47887
+ * * MariaDB
45654
47888
  *
45655
47889
  * @param request DescribeParameterTemplatesRequest
45656
47890
  * @return DescribeParameterTemplatesResponse
@@ -45952,6 +48186,43 @@ export default class Client extends OpenApi {
45952
48186
  return await this.describePriceWithOptions(request, runtime);
45953
48187
  }
45954
48188
 
48189
+ async describeQuickSaleConfigWithOptions(request: DescribeQuickSaleConfigRequest, runtime: $Util.RuntimeOptions): Promise<DescribeQuickSaleConfigResponse> {
48190
+ Util.validateModel(request);
48191
+ let query = { };
48192
+ if (!Util.isUnset(request.commodity)) {
48193
+ query["Commodity"] = request.commodity;
48194
+ }
48195
+
48196
+ if (!Util.isUnset(request.engine)) {
48197
+ query["Engine"] = request.engine;
48198
+ }
48199
+
48200
+ if (!Util.isUnset(request.regionId)) {
48201
+ query["RegionId"] = request.regionId;
48202
+ }
48203
+
48204
+ let req = new $OpenApi.OpenApiRequest({
48205
+ query: OpenApiUtil.query(query),
48206
+ });
48207
+ let params = new $OpenApi.Params({
48208
+ action: "DescribeQuickSaleConfig",
48209
+ version: "2014-08-15",
48210
+ protocol: "HTTPS",
48211
+ pathname: "/",
48212
+ method: "POST",
48213
+ authType: "AK",
48214
+ style: "RPC",
48215
+ reqBodyType: "formData",
48216
+ bodyType: "json",
48217
+ });
48218
+ return $tea.cast<DescribeQuickSaleConfigResponse>(await this.callApi(params, req, runtime), new DescribeQuickSaleConfigResponse({}));
48219
+ }
48220
+
48221
+ async describeQuickSaleConfig(request: DescribeQuickSaleConfigRequest): Promise<DescribeQuickSaleConfigResponse> {
48222
+ let runtime = new $Util.RuntimeOptions({ });
48223
+ return await this.describeQuickSaleConfigWithOptions(request, runtime);
48224
+ }
48225
+
45955
48226
  /**
45956
48227
  * @deprecated
45957
48228
  *
@@ -46281,6 +48552,70 @@ export default class Client extends OpenApi {
46281
48552
  return await this.describeRenewalPriceWithOptions(request, runtime);
46282
48553
  }
46283
48554
 
48555
+ async describeResourceDetailsWithOptions(request: DescribeResourceDetailsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeResourceDetailsResponse> {
48556
+ Util.validateModel(request);
48557
+ let query = { };
48558
+ if (!Util.isUnset(request.clientToken)) {
48559
+ query["ClientToken"] = request.clientToken;
48560
+ }
48561
+
48562
+ if (!Util.isUnset(request.DBInstanceId)) {
48563
+ query["DBInstanceId"] = request.DBInstanceId;
48564
+ }
48565
+
48566
+ if (!Util.isUnset(request.ownerId)) {
48567
+ query["OwnerId"] = request.ownerId;
48568
+ }
48569
+
48570
+ if (!Util.isUnset(request.regionId)) {
48571
+ query["RegionId"] = request.regionId;
48572
+ }
48573
+
48574
+ if (!Util.isUnset(request.resourceGroupId)) {
48575
+ query["ResourceGroupId"] = request.resourceGroupId;
48576
+ }
48577
+
48578
+ if (!Util.isUnset(request.resourceOwnerAccount)) {
48579
+ query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
48580
+ }
48581
+
48582
+ if (!Util.isUnset(request.resourceOwnerId)) {
48583
+ query["ResourceOwnerId"] = request.resourceOwnerId;
48584
+ }
48585
+
48586
+ let req = new $OpenApi.OpenApiRequest({
48587
+ query: OpenApiUtil.query(query),
48588
+ });
48589
+ let params = new $OpenApi.Params({
48590
+ action: "DescribeResourceDetails",
48591
+ version: "2014-08-15",
48592
+ protocol: "HTTPS",
48593
+ pathname: "/",
48594
+ method: "POST",
48595
+ authType: "AK",
48596
+ style: "RPC",
48597
+ reqBodyType: "formData",
48598
+ bodyType: "json",
48599
+ });
48600
+ return $tea.cast<DescribeResourceDetailsResponse>(await this.callApi(params, req, runtime), new DescribeResourceDetailsResponse({}));
48601
+ }
48602
+
48603
+ async describeResourceDetails(request: DescribeResourceDetailsRequest): Promise<DescribeResourceDetailsResponse> {
48604
+ let runtime = new $Util.RuntimeOptions({ });
48605
+ return await this.describeResourceDetailsWithOptions(request, runtime);
48606
+ }
48607
+
48608
+ /**
48609
+ * ### [](#)Supported database engines
48610
+ * * MySQL
48611
+ * * PostgreSQL
48612
+ * * SQL Server
48613
+ * * MariaDB
48614
+ *
48615
+ * @param request DescribeResourceUsageRequest
48616
+ * @param runtime runtime options for this request RuntimeOptions
48617
+ * @return DescribeResourceUsageResponse
48618
+ */
46284
48619
  async describeResourceUsageWithOptions(request: DescribeResourceUsageRequest, runtime: $Util.RuntimeOptions): Promise<DescribeResourceUsageResponse> {
46285
48620
  Util.validateModel(request);
46286
48621
  let query = { };
@@ -46325,6 +48660,16 @@ export default class Client extends OpenApi {
46325
48660
  return $tea.cast<DescribeResourceUsageResponse>(await this.callApi(params, req, runtime), new DescribeResourceUsageResponse({}));
46326
48661
  }
46327
48662
 
48663
+ /**
48664
+ * ### [](#)Supported database engines
48665
+ * * MySQL
48666
+ * * PostgreSQL
48667
+ * * SQL Server
48668
+ * * MariaDB
48669
+ *
48670
+ * @param request DescribeResourceUsageRequest
48671
+ * @return DescribeResourceUsageResponse
48672
+ */
46328
48673
  async describeResourceUsage(request: DescribeResourceUsageRequest): Promise<DescribeResourceUsageResponse> {
46329
48674
  let runtime = new $Util.RuntimeOptions({ });
46330
48675
  return await this.describeResourceUsageWithOptions(request, runtime);
@@ -46725,6 +49070,14 @@ export default class Client extends OpenApi {
46725
49070
  return await this.describeSQLLogReportListWithOptions(request, runtime);
46726
49071
  }
46727
49072
 
49073
+ /**
49074
+ * ### [](#)Supported database engine
49075
+ * * MySQL
49076
+ *
49077
+ * @param request DescribeSecretsRequest
49078
+ * @param runtime runtime options for this request RuntimeOptions
49079
+ * @return DescribeSecretsResponse
49080
+ */
46728
49081
  async describeSecretsWithOptions(request: DescribeSecretsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSecretsResponse> {
46729
49082
  Util.validateModel(request);
46730
49083
  let query = { };
@@ -46789,6 +49142,13 @@ export default class Client extends OpenApi {
46789
49142
  return $tea.cast<DescribeSecretsResponse>(await this.callApi(params, req, runtime), new DescribeSecretsResponse({}));
46790
49143
  }
46791
49144
 
49145
+ /**
49146
+ * ### [](#)Supported database engine
49147
+ * * MySQL
49148
+ *
49149
+ * @param request DescribeSecretsRequest
49150
+ * @return DescribeSecretsResponse
49151
+ */
46792
49152
  async describeSecrets(request: DescribeSecretsRequest): Promise<DescribeSecretsResponse> {
46793
49153
  let runtime = new $Util.RuntimeOptions({ });
46794
49154
  return await this.describeSecretsWithOptions(request, runtime);
@@ -47161,7 +49521,12 @@ export default class Client extends OpenApi {
47161
49521
  }
47162
49522
 
47163
49523
  /**
47164
- * Before you call this operation, make sure that the following requirements are met:
49524
+ * ### [](#)Supported database engines
49525
+ * * MySQL
49526
+ * * PostgreSQL
49527
+ * * SQL Server
49528
+ * * MariaDB
49529
+ * ### [Usage notes](#)
47165
49530
  * * If an instance ID is specified, all tags that are added to this instance are queried, and other filter conditions are invalid.
47166
49531
  * * If you specify only TagKey, the results that match the specified TagKey are returned. If you specify both TagKey and TagValue, the results that match both the specified TagKey and TagValue are returned.
47167
49532
  *
@@ -47230,7 +49595,12 @@ export default class Client extends OpenApi {
47230
49595
  }
47231
49596
 
47232
49597
  /**
47233
- * Before you call this operation, make sure that the following requirements are met:
49598
+ * ### [](#)Supported database engines
49599
+ * * MySQL
49600
+ * * PostgreSQL
49601
+ * * SQL Server
49602
+ * * MariaDB
49603
+ * ### [Usage notes](#)
47234
49604
  * * If an instance ID is specified, all tags that are added to this instance are queried, and other filter conditions are invalid.
47235
49605
  * * If you specify only TagKey, the results that match the specified TagKey are returned. If you specify both TagKey and TagValue, the results that match both the specified TagKey and TagValue are returned.
47236
49606
  *
@@ -47740,7 +50110,9 @@ export default class Client extends OpenApi {
47740
50110
  }
47741
50111
 
47742
50112
  /**
47743
- * ## Precautions
50113
+ * ### [](#)Supported database engines
50114
+ * * MySQL
50115
+ * ### [Usage notes](#)
47744
50116
  * This operation can be used to remove only unit nodes.
47745
50117
  *
47746
50118
  * @param request DetachGadInstanceMemberRequest
@@ -47784,7 +50156,9 @@ export default class Client extends OpenApi {
47784
50156
  }
47785
50157
 
47786
50158
  /**
47787
- * ## Precautions
50159
+ * ### [](#)Supported database engines
50160
+ * * MySQL
50161
+ * ### [Usage notes](#)
47788
50162
  * This operation can be used to remove only unit nodes.
47789
50163
  *
47790
50164
  * @param request DetachGadInstanceMemberRequest
@@ -47859,6 +50233,59 @@ export default class Client extends OpenApi {
47859
50233
  return await this.detachWhitelistTemplateToInstanceWithOptions(request, runtime);
47860
50234
  }
47861
50235
 
50236
+ async evaluateLocalExtendDiskWithOptions(request: EvaluateLocalExtendDiskRequest, runtime: $Util.RuntimeOptions): Promise<EvaluateLocalExtendDiskResponse> {
50237
+ Util.validateModel(request);
50238
+ let query = { };
50239
+ if (!Util.isUnset(request.DBInstanceName)) {
50240
+ query["DBInstanceName"] = request.DBInstanceName;
50241
+ }
50242
+
50243
+ if (!Util.isUnset(request.ownerId)) {
50244
+ query["OwnerId"] = request.ownerId;
50245
+ }
50246
+
50247
+ if (!Util.isUnset(request.regionId)) {
50248
+ query["RegionId"] = request.regionId;
50249
+ }
50250
+
50251
+ if (!Util.isUnset(request.resourceGroupId)) {
50252
+ query["ResourceGroupId"] = request.resourceGroupId;
50253
+ }
50254
+
50255
+ if (!Util.isUnset(request.resourceOwnerAccount)) {
50256
+ query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
50257
+ }
50258
+
50259
+ if (!Util.isUnset(request.resourceOwnerId)) {
50260
+ query["ResourceOwnerId"] = request.resourceOwnerId;
50261
+ }
50262
+
50263
+ if (!Util.isUnset(request.storage)) {
50264
+ query["Storage"] = request.storage;
50265
+ }
50266
+
50267
+ let req = new $OpenApi.OpenApiRequest({
50268
+ query: OpenApiUtil.query(query),
50269
+ });
50270
+ let params = new $OpenApi.Params({
50271
+ action: "EvaluateLocalExtendDisk",
50272
+ version: "2014-08-15",
50273
+ protocol: "HTTPS",
50274
+ pathname: "/",
50275
+ method: "POST",
50276
+ authType: "AK",
50277
+ style: "RPC",
50278
+ reqBodyType: "formData",
50279
+ bodyType: "json",
50280
+ });
50281
+ return $tea.cast<EvaluateLocalExtendDiskResponse>(await this.callApi(params, req, runtime), new EvaluateLocalExtendDiskResponse({}));
50282
+ }
50283
+
50284
+ async evaluateLocalExtendDisk(request: EvaluateLocalExtendDiskRequest): Promise<EvaluateLocalExtendDiskResponse> {
50285
+ let runtime = new $Util.RuntimeOptions({ });
50286
+ return await this.evaluateLocalExtendDiskWithOptions(request, runtime);
50287
+ }
50288
+
47862
50289
  /**
47863
50290
  * ### Supported database engines
47864
50291
  * * RDS MySQL
@@ -48198,11 +50625,15 @@ export default class Client extends OpenApi {
48198
50625
  }
48199
50626
 
48200
50627
  /**
48201
- * > 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.
50628
+ * ### [](#)Supported database engines
50629
+ * * MySQL
50630
+ * ### [](#)Description
50631
+ * A full backup file contains the data of a self-managed MySQL instance. You can restore the data of a self-managed MySQL instance from a full backup file to an ApsaraDB RDS for MySQL instance.
50632
+ * ### [](#)Usage notes
48202
50633
  * Before you call this operation, make sure that the following requirements are met:
48203
- * * The self-managed MySQL database runs MySQL 5.7 and is backed up by using XtraBackup. The name of the backup file ends with `_qp.xb`. For more information, see [Migrate the data of a self-managed MySQL 5.7 instance to the cloud](~~251779~~).
48204
- * * The full backup file of the self-managed MySQL database is uploaded to an Object Storage Service (OSS) bucket in the region of the ApsaraDB RDS for MySQL instance. For more information, see [Migrate the data of a self-managed MySQL 5.7 instance to the cloud](~~251779~~).
48205
- * > This operation is supported only for MySQL 5.7.
50634
+ * * The self-managed MySQL instance runs MySQL 5.7 and is backed up by using XtraBackup. The name of the backup file ends with `_qp.xb`. For more information, see [Migrate the data of a self-managed MySQL 5.7 instance to the cloud](~~251779~~).
50635
+ * * The full backup file of the self-managed MySQL instance is uploaded to an Object Storage Service (OSS) bucket in the region of the ApsaraDB RDS for MySQL instance. For more information, see [Migrate the data of a self-managed MySQL 5.7 instance to the cloud](~~251779~~).
50636
+ * > This operation is supported only for MySQL 5.7.
48206
50637
  *
48207
50638
  * @param request ImportUserBackupFileRequest
48208
50639
  * @param runtime runtime options for this request RuntimeOptions
@@ -48277,11 +50708,15 @@ export default class Client extends OpenApi {
48277
50708
  }
48278
50709
 
48279
50710
  /**
48280
- * > 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.
50711
+ * ### [](#)Supported database engines
50712
+ * * MySQL
50713
+ * ### [](#)Description
50714
+ * A full backup file contains the data of a self-managed MySQL instance. You can restore the data of a self-managed MySQL instance from a full backup file to an ApsaraDB RDS for MySQL instance.
50715
+ * ### [](#)Usage notes
48281
50716
  * Before you call this operation, make sure that the following requirements are met:
48282
- * * The self-managed MySQL database runs MySQL 5.7 and is backed up by using XtraBackup. The name of the backup file ends with `_qp.xb`. For more information, see [Migrate the data of a self-managed MySQL 5.7 instance to the cloud](~~251779~~).
48283
- * * The full backup file of the self-managed MySQL database is uploaded to an Object Storage Service (OSS) bucket in the region of the ApsaraDB RDS for MySQL instance. For more information, see [Migrate the data of a self-managed MySQL 5.7 instance to the cloud](~~251779~~).
48284
- * > This operation is supported only for MySQL 5.7.
50717
+ * * The self-managed MySQL instance runs MySQL 5.7 and is backed up by using XtraBackup. The name of the backup file ends with `_qp.xb`. For more information, see [Migrate the data of a self-managed MySQL 5.7 instance to the cloud](~~251779~~).
50718
+ * * The full backup file of the self-managed MySQL instance is uploaded to an Object Storage Service (OSS) bucket in the region of the ApsaraDB RDS for MySQL instance. For more information, see [Migrate the data of a self-managed MySQL 5.7 instance to the cloud](~~251779~~).
50719
+ * > This operation is supported only for MySQL 5.7.
48285
50720
  *
48286
50721
  * @param request ImportUserBackupFileRequest
48287
50722
  * @return ImportUserBackupFileResponse
@@ -48369,6 +50804,17 @@ export default class Client extends OpenApi {
48369
50804
  return await this.listClassesWithOptions(request, runtime);
48370
50805
  }
48371
50806
 
50807
+ /**
50808
+ * ### [](#)Supported database engines
50809
+ * * MySQL
50810
+ * * PostgreSQL
50811
+ * * SQL Server
50812
+ * * MariaDB
50813
+ *
50814
+ * @param request ListTagResourcesRequest
50815
+ * @param runtime runtime options for this request RuntimeOptions
50816
+ * @return ListTagResourcesResponse
50817
+ */
48372
50818
  async listTagResourcesWithOptions(request: ListTagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<ListTagResourcesResponse> {
48373
50819
  Util.validateModel(request);
48374
50820
  let query = { };
@@ -48421,6 +50867,16 @@ export default class Client extends OpenApi {
48421
50867
  return $tea.cast<ListTagResourcesResponse>(await this.callApi(params, req, runtime), new ListTagResourcesResponse({}));
48422
50868
  }
48423
50869
 
50870
+ /**
50871
+ * ### [](#)Supported database engines
50872
+ * * MySQL
50873
+ * * PostgreSQL
50874
+ * * SQL Server
50875
+ * * MariaDB
50876
+ *
50877
+ * @param request ListTagResourcesRequest
50878
+ * @return ListTagResourcesResponse
50879
+ */
48424
50880
  async listTagResources(request: ListTagResourcesRequest): Promise<ListTagResourcesResponse> {
48425
50881
  let runtime = new $Util.RuntimeOptions({ });
48426
50882
  return await this.listTagResourcesWithOptions(request, runtime);
@@ -48568,6 +51024,21 @@ export default class Client extends OpenApi {
48568
51024
  return await this.lockAccountWithOptions(request, runtime);
48569
51025
  }
48570
51026
 
51027
+ /**
51028
+ * ### [](#)Supported database engines
51029
+ * * MySQL
51030
+ * * PostgreSQL
51031
+ * * SQL Server
51032
+ * ### [](#)References
51033
+ * > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
51034
+ * * [Migrate an ApsaraDB RDS for MySQL instance across zones in the same region](~~96746~~)
51035
+ * * [Migrate an ApsaraDB RDS for PostgreSQL instance across zones in the same region](~~96746~~)
51036
+ * * [Migrate an ApsaraDB RDS for SQL Server instance across zones in the same region](~~95658~~)
51037
+ *
51038
+ * @param request MigrateConnectionToOtherZoneRequest
51039
+ * @param runtime runtime options for this request RuntimeOptions
51040
+ * @return MigrateConnectionToOtherZoneResponse
51041
+ */
48571
51042
  async migrateConnectionToOtherZoneWithOptions(request: MigrateConnectionToOtherZoneRequest, runtime: $Util.RuntimeOptions): Promise<MigrateConnectionToOtherZoneResponse> {
48572
51043
  Util.validateModel(request);
48573
51044
  let query = { };
@@ -48608,6 +51079,20 @@ export default class Client extends OpenApi {
48608
51079
  return $tea.cast<MigrateConnectionToOtherZoneResponse>(await this.callApi(params, req, runtime), new MigrateConnectionToOtherZoneResponse({}));
48609
51080
  }
48610
51081
 
51082
+ /**
51083
+ * ### [](#)Supported database engines
51084
+ * * MySQL
51085
+ * * PostgreSQL
51086
+ * * SQL Server
51087
+ * ### [](#)References
51088
+ * > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
51089
+ * * [Migrate an ApsaraDB RDS for MySQL instance across zones in the same region](~~96746~~)
51090
+ * * [Migrate an ApsaraDB RDS for PostgreSQL instance across zones in the same region](~~96746~~)
51091
+ * * [Migrate an ApsaraDB RDS for SQL Server instance across zones in the same region](~~95658~~)
51092
+ *
51093
+ * @param request MigrateConnectionToOtherZoneRequest
51094
+ * @return MigrateConnectionToOtherZoneResponse
51095
+ */
48611
51096
  async migrateConnectionToOtherZone(request: MigrateConnectionToOtherZoneRequest): Promise<MigrateConnectionToOtherZoneResponse> {
48612
51097
  let runtime = new $Util.RuntimeOptions({ });
48613
51098
  return await this.migrateConnectionToOtherZoneWithOptions(request, runtime);
@@ -48880,7 +51365,11 @@ export default class Client extends OpenApi {
48880
51365
  }
48881
51366
 
48882
51367
  /**
48883
- * This operation is available only for ApsaraDB RDS for SQL Server instances.
51368
+ * ### [](#)Supported database engine
51369
+ * * SQL Server
51370
+ * ### [](#)References
51371
+ * > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
51372
+ * * [Connect an RDS instance to a self-managed domain](~~170734~~)
48884
51373
  *
48885
51374
  * @param request ModifyADInfoRequest
48886
51375
  * @param runtime runtime options for this request RuntimeOptions
@@ -48947,7 +51436,11 @@ export default class Client extends OpenApi {
48947
51436
  }
48948
51437
 
48949
51438
  /**
48950
- * This operation is available only for ApsaraDB RDS for SQL Server instances.
51439
+ * ### [](#)Supported database engine
51440
+ * * SQL Server
51441
+ * ### [](#)References
51442
+ * > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
51443
+ * * [Connect an RDS instance to a self-managed domain](~~170734~~)
48951
51444
  *
48952
51445
  * @param request ModifyADInfoRequest
48953
51446
  * @return ModifyADInfoResponse
@@ -49090,7 +51583,17 @@ export default class Client extends OpenApi {
49090
51583
  }
49091
51584
 
49092
51585
  /**
49093
- * O\\&M tasks such as instance migration and version upgrades are notified by text message, phone call, email, internal message, or in the ApsaraDB RDS console. You can call this operation to change the scheduled switching time. You can also view the task and change the switching time on the Task Center page.
51586
+ * ### [](#)Supported database engines
51587
+ * * MySQL
51588
+ * * PostgreSQL
51589
+ * * SQL Server
51590
+ * * MariaDB
51591
+ * ### [](#)References
51592
+ * > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
51593
+ * * [Scheduled events for ApsaraDB RDS for MySQL instances](~~104183~~)
51594
+ * * [Scheduled events for ApsaraDB RDS for PostgreSQL instances](~~104452~~)
51595
+ * * [Scheduled events for ApsaraDB RDS for SQL Server instances](~~104451~~)
51596
+ * * [Scheduled events for ApsaraDB RDS for MariaDB instances](~~104454~~)
49094
51597
  *
49095
51598
  * @param request ModifyActiveOperationTasksRequest
49096
51599
  * @param runtime runtime options for this request RuntimeOptions
@@ -49149,7 +51652,17 @@ export default class Client extends OpenApi {
49149
51652
  }
49150
51653
 
49151
51654
  /**
49152
- * O\\&M tasks such as instance migration and version upgrades are notified by text message, phone call, email, internal message, or in the ApsaraDB RDS console. You can call this operation to change the scheduled switching time. You can also view the task and change the switching time on the Task Center page.
51655
+ * ### [](#)Supported database engines
51656
+ * * MySQL
51657
+ * * PostgreSQL
51658
+ * * SQL Server
51659
+ * * MariaDB
51660
+ * ### [](#)References
51661
+ * > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
51662
+ * * [Scheduled events for ApsaraDB RDS for MySQL instances](~~104183~~)
51663
+ * * [Scheduled events for ApsaraDB RDS for PostgreSQL instances](~~104452~~)
51664
+ * * [Scheduled events for ApsaraDB RDS for SQL Server instances](~~104451~~)
51665
+ * * [Scheduled events for ApsaraDB RDS for MariaDB instances](~~104454~~)
49153
51666
  *
49154
51667
  * @param request ModifyActiveOperationTasksRequest
49155
51668
  * @return ModifyActiveOperationTasksResponse
@@ -49387,6 +51900,59 @@ export default class Client extends OpenApi {
49387
51900
  return await this.modifyCollationTimeZoneWithOptions(request, runtime);
49388
51901
  }
49389
51902
 
51903
+ async modifyCustinsResourceWithOptions(request: ModifyCustinsResourceRequest, runtime: $Util.RuntimeOptions): Promise<ModifyCustinsResourceResponse> {
51904
+ Util.validateModel(request);
51905
+ let query = { };
51906
+ if (!Util.isUnset(request.adjustDeadline)) {
51907
+ query["AdjustDeadline"] = request.adjustDeadline;
51908
+ }
51909
+
51910
+ if (!Util.isUnset(request.DBInstanceId)) {
51911
+ query["DBInstanceId"] = request.DBInstanceId;
51912
+ }
51913
+
51914
+ if (!Util.isUnset(request.increaseRatio)) {
51915
+ query["IncreaseRatio"] = request.increaseRatio;
51916
+ }
51917
+
51918
+ if (!Util.isUnset(request.resourceOwnerId)) {
51919
+ query["ResourceOwnerId"] = request.resourceOwnerId;
51920
+ }
51921
+
51922
+ if (!Util.isUnset(request.resourceType)) {
51923
+ query["ResourceType"] = request.resourceType;
51924
+ }
51925
+
51926
+ if (!Util.isUnset(request.restoreOriginalSpecification)) {
51927
+ query["RestoreOriginalSpecification"] = request.restoreOriginalSpecification;
51928
+ }
51929
+
51930
+ if (!Util.isUnset(request.targetValue)) {
51931
+ query["TargetValue"] = request.targetValue;
51932
+ }
51933
+
51934
+ let req = new $OpenApi.OpenApiRequest({
51935
+ query: OpenApiUtil.query(query),
51936
+ });
51937
+ let params = new $OpenApi.Params({
51938
+ action: "ModifyCustinsResource",
51939
+ version: "2014-08-15",
51940
+ protocol: "HTTPS",
51941
+ pathname: "/",
51942
+ method: "POST",
51943
+ authType: "AK",
51944
+ style: "RPC",
51945
+ reqBodyType: "formData",
51946
+ bodyType: "json",
51947
+ });
51948
+ return $tea.cast<ModifyCustinsResourceResponse>(await this.callApi(params, req, runtime), new ModifyCustinsResourceResponse({}));
51949
+ }
51950
+
51951
+ async modifyCustinsResource(request: ModifyCustinsResourceRequest): Promise<ModifyCustinsResourceResponse> {
51952
+ let runtime = new $Util.RuntimeOptions({ });
51953
+ return await this.modifyCustinsResourceWithOptions(request, runtime);
51954
+ }
51955
+
49390
51956
  /**
49391
51957
  * ### [](#)Supported database engines
49392
51958
  * * RDS MySQL
@@ -50207,9 +52773,11 @@ export default class Client extends OpenApi {
50207
52773
  }
50208
52774
 
50209
52775
  /**
50210
- * ## Prerequisites
50211
- * Before you call this operation, make sure that the instance runs PostgreSQL.
50212
- * For more information, see [View the Enhanced Monitoring metrics of an ApsaraDB RDS for PostgreSQL instance](~~299200~~).
52776
+ * ### [](#)Supported database engines
52777
+ * * PostgreSQL
52778
+ * ### [](#)References
52779
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
52780
+ * [View the Enhanced Monitoring metrics](~~299200~~)
50213
52781
  *
50214
52782
  * @param request ModifyDBInstanceMetricsRequest
50215
52783
  * @param runtime runtime options for this request RuntimeOptions
@@ -50252,9 +52820,11 @@ export default class Client extends OpenApi {
50252
52820
  }
50253
52821
 
50254
52822
  /**
50255
- * ## Prerequisites
50256
- * Before you call this operation, make sure that the instance runs PostgreSQL.
50257
- * For more information, see [View the Enhanced Monitoring metrics of an ApsaraDB RDS for PostgreSQL instance](~~299200~~).
52823
+ * ### [](#)Supported database engines
52824
+ * * PostgreSQL
52825
+ * ### [](#)References
52826
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
52827
+ * [View the Enhanced Monitoring metrics](~~299200~~)
50258
52828
  *
50259
52829
  * @param request ModifyDBInstanceMetricsRequest
50260
52830
  * @return ModifyDBInstanceMetricsResponse
@@ -50265,10 +52835,15 @@ export default class Client extends OpenApi {
50265
52835
  }
50266
52836
 
50267
52837
  /**
50268
- * Before you call this operation, make sure that you understand the billing methods and pricing of ApsaraDB RDS. For more information, see [Billable items, billing methods, and pricing](~~45020~~).
50269
- * Alibaba Cloud provides different monitoring frequencies for different instances. For more information, see [Set monitoring frequencies](~~26200~~).
50270
- * > * If your want to set the monitoring frequency to every few seconds, you are charged additional fees. For more information, see [Billable items, billing methods, and pricing](~~45020~~).
50271
- * > * This operation is not supported for ApsaraDB RDS for PostgreSQL instances. The monitoring frequency of an ApsaraDB RDS for PostgreSQL instance varies based on the query time range. For more information, see [Query performance metrics](~~26280~~).
52838
+ * ### [](#)Supported database engines
52839
+ * * MySQL
52840
+ * * SQL Server
52841
+ * ### [](#)Usage notes
52842
+ * If you use the Every 5 Seconds monitoring frequency, you are charged additional fees. Before you call this operation, make sure that you understand the [billing methods and pricing](~~45020~~) of ApsaraDB RDS.
52843
+ * ### [](#)References
52844
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
52845
+ * * [Configure the monitoring frequency for an ApsaraDB RDS for MySQL instance](~~96112~~)
52846
+ * * [Configure the monitoring frequency for an ApsaraDB RDS for SQL Server instance](~~95710~~)
50272
52847
  *
50273
52848
  * @param request ModifyDBInstanceMonitorRequest
50274
52849
  * @param runtime runtime options for this request RuntimeOptions
@@ -50323,10 +52898,15 @@ export default class Client extends OpenApi {
50323
52898
  }
50324
52899
 
50325
52900
  /**
50326
- * Before you call this operation, make sure that you understand the billing methods and pricing of ApsaraDB RDS. For more information, see [Billable items, billing methods, and pricing](~~45020~~).
50327
- * Alibaba Cloud provides different monitoring frequencies for different instances. For more information, see [Set monitoring frequencies](~~26200~~).
50328
- * > * If your want to set the monitoring frequency to every few seconds, you are charged additional fees. For more information, see [Billable items, billing methods, and pricing](~~45020~~).
50329
- * > * This operation is not supported for ApsaraDB RDS for PostgreSQL instances. The monitoring frequency of an ApsaraDB RDS for PostgreSQL instance varies based on the query time range. For more information, see [Query performance metrics](~~26280~~).
52901
+ * ### [](#)Supported database engines
52902
+ * * MySQL
52903
+ * * SQL Server
52904
+ * ### [](#)Usage notes
52905
+ * If you use the Every 5 Seconds monitoring frequency, you are charged additional fees. Before you call this operation, make sure that you understand the [billing methods and pricing](~~45020~~) of ApsaraDB RDS.
52906
+ * ### [](#)References
52907
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
52908
+ * * [Configure the monitoring frequency for an ApsaraDB RDS for MySQL instance](~~96112~~)
52909
+ * * [Configure the monitoring frequency for an ApsaraDB RDS for SQL Server instance](~~95710~~)
50330
52910
  *
50331
52911
  * @param request ModifyDBInstanceMonitorRequest
50332
52912
  * @return ModifyDBInstanceMonitorResponse
@@ -51103,10 +53683,11 @@ export default class Client extends OpenApi {
51103
53683
 
51104
53684
  /**
51105
53685
  * ### [](#)Supported database engines
51106
- * * RDS MySQL
51107
- * * RDS PostgreSQL
53686
+ * * MySQL
53687
+ * * PostgreSQL
53688
+ * > Starting October 17, 2023, ApsaraDB RDS provides a dedicated proxy free of charge for each ApsaraDB RDS for MySQL instance on RDS Cluster Edition. For more information, see [\\[Special offers/Price changes\\] One proxy is provided free of charge for ApsaraDB RDS for MySQL instances on RDS Cluster Edition](~~2555466~~).
51108
53689
  * ### [](#)References
51109
- * > : Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
53690
+ * > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
51110
53691
  * * [Enable and configure the dedicated proxy feature for an ApsaraDB RDS for MySQL instance](~~197456~~)
51111
53692
  * * [Enable and configure the dedicated proxy feature for an ApsaraDB RDS for PostgreSQL instance](~~418272~~)
51112
53693
  *
@@ -51188,10 +53769,11 @@ export default class Client extends OpenApi {
51188
53769
 
51189
53770
  /**
51190
53771
  * ### [](#)Supported database engines
51191
- * * RDS MySQL
51192
- * * RDS PostgreSQL
53772
+ * * MySQL
53773
+ * * PostgreSQL
53774
+ * > Starting October 17, 2023, ApsaraDB RDS provides a dedicated proxy free of charge for each ApsaraDB RDS for MySQL instance on RDS Cluster Edition. For more information, see [\\[Special offers/Price changes\\] One proxy is provided free of charge for ApsaraDB RDS for MySQL instances on RDS Cluster Edition](~~2555466~~).
51193
53775
  * ### [](#)References
51194
- * > : Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
53776
+ * > Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
51195
53777
  * * [Enable and configure the dedicated proxy feature for an ApsaraDB RDS for MySQL instance](~~197456~~)
51196
53778
  * * [Enable and configure the dedicated proxy feature for an ApsaraDB RDS for PostgreSQL instance](~~418272~~)
51197
53779
  *
@@ -51570,8 +54152,13 @@ export default class Client extends OpenApi {
51570
54152
  }
51571
54153
 
51572
54154
  /**
51573
- * This operation is supported for ApsaraDB RDS for MySQL instances that run RDS High-availability Edition and use standard SSDs or enhanced SSDs (ESSDs) and ApsaraDB RDS for PostgreSQL instances that use standard SSDs or ESSDs. If the available storage reaches the specified threshold, ApsaraDB RDS increases the storage capacity of the instance to meet your storage requirements. In most cases, no transient connections occur during the expansion process. For more information, see [Configure automatic storage expansion for an ApsaraDB RDS for MySQL instance](~~173826~~) and [Configure automatic storage expansion for an ApsaraDB RDS for PostgreSQL instance](~~432496~~).
51574
- * > If an automatic storage expansion is triggered, ApsaraDB RDS increases the storage capacity based on the larger value between 15% of the purchased storage capacity and 5 GB.
54155
+ * ### [](#)Supported database engines
54156
+ * * MySQL
54157
+ * * PostgreSQL
54158
+ * ### [](#)References
54159
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
54160
+ * * [Configure automatic storage expansion for ApsaraDB RDS for MySQL](~~173826~~)
54161
+ * * [Configure automatic storage expansion for ApsaraDB RDS for PostgreSQL](~~432496~~)
51575
54162
  *
51576
54163
  * @param request ModifyDasInstanceConfigRequest
51577
54164
  * @param runtime runtime options for this request RuntimeOptions
@@ -51630,8 +54217,13 @@ export default class Client extends OpenApi {
51630
54217
  }
51631
54218
 
51632
54219
  /**
51633
- * This operation is supported for ApsaraDB RDS for MySQL instances that run RDS High-availability Edition and use standard SSDs or enhanced SSDs (ESSDs) and ApsaraDB RDS for PostgreSQL instances that use standard SSDs or ESSDs. If the available storage reaches the specified threshold, ApsaraDB RDS increases the storage capacity of the instance to meet your storage requirements. In most cases, no transient connections occur during the expansion process. For more information, see [Configure automatic storage expansion for an ApsaraDB RDS for MySQL instance](~~173826~~) and [Configure automatic storage expansion for an ApsaraDB RDS for PostgreSQL instance](~~432496~~).
51634
- * > If an automatic storage expansion is triggered, ApsaraDB RDS increases the storage capacity based on the larger value between 15% of the purchased storage capacity and 5 GB.
54220
+ * ### [](#)Supported database engines
54221
+ * * MySQL
54222
+ * * PostgreSQL
54223
+ * ### [](#)References
54224
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
54225
+ * * [Configure automatic storage expansion for ApsaraDB RDS for MySQL](~~173826~~)
54226
+ * * [Configure automatic storage expansion for ApsaraDB RDS for PostgreSQL](~~432496~~)
51635
54227
  *
51636
54228
  * @param request ModifyDasInstanceConfigRequest
51637
54229
  * @return ModifyDasInstanceConfigResponse
@@ -51644,9 +54236,6 @@ export default class Client extends OpenApi {
51644
54236
  /**
51645
54237
  * ### [](#)Supported database engine
51646
54238
  * * SQL Server
51647
- * ### [](#)References
51648
- * > : Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
51649
- * [Manage advanced features of an ApsaraDB RDS for SQL Server instance](~~2401398~~)
51650
54239
  *
51651
54240
  * @param request ModifyDatabaseConfigRequest
51652
54241
  * @param runtime runtime options for this request RuntimeOptions
@@ -51707,9 +54296,6 @@ export default class Client extends OpenApi {
51707
54296
  /**
51708
54297
  * ### [](#)Supported database engine
51709
54298
  * * SQL Server
51710
- * ### [](#)References
51711
- * > : Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of this operation.
51712
- * [Manage advanced features of an ApsaraDB RDS for SQL Server instance](~~2401398~~)
51713
54299
  *
51714
54300
  * @param request ModifyDatabaseConfigRequest
51715
54301
  * @return ModifyDatabaseConfigResponse
@@ -52276,8 +54862,13 @@ export default class Client extends OpenApi {
52276
54862
  }
52277
54863
 
52278
54864
  /**
52279
- * You can configure a number of parameters at a time by using a parameter template and then apply the parameter template to an instance. For more information, see [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~) or [Use a parameter template to configure the parameters of ApsaraDB RDS for PostgreSQL instances](~~457176~~).
52280
- * > This operation is supported only when your instance runs MySQL or PostgreSQL.
54865
+ * ### [](#)Supported database engines
54866
+ * * MySQL
54867
+ * * PostgreSQL
54868
+ * ### [](#)References
54869
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
54870
+ * * [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~)
54871
+ * * [Use a parameter template to configure the parameters of ApsaraDB RDS for PostgreSQL instances](~~457176~~)
52281
54872
  *
52282
54873
  * @param request ModifyParameterGroupRequest
52283
54874
  * @param runtime runtime options for this request RuntimeOptions
@@ -52344,8 +54935,13 @@ export default class Client extends OpenApi {
52344
54935
  }
52345
54936
 
52346
54937
  /**
52347
- * You can configure a number of parameters at a time by using a parameter template and then apply the parameter template to an instance. For more information, see [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~) or [Use a parameter template to configure the parameters of ApsaraDB RDS for PostgreSQL instances](~~457176~~).
52348
- * > This operation is supported only when your instance runs MySQL or PostgreSQL.
54938
+ * ### [](#)Supported database engines
54939
+ * * MySQL
54940
+ * * PostgreSQL
54941
+ * ### [](#)References
54942
+ * > Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
54943
+ * * [Use a parameter template to configure the parameters of ApsaraDB RDS for MySQL instances](~~130565~~)
54944
+ * * [Use a parameter template to configure the parameters of ApsaraDB RDS for PostgreSQL instances](~~457176~~)
52349
54945
  *
52350
54946
  * @param request ModifyParameterGroupRequest
52351
54947
  * @return ModifyParameterGroupResponse
@@ -52356,15 +54952,15 @@ export default class Client extends OpenApi {
52356
54952
  }
52357
54953
 
52358
54954
  /**
52359
- * ### Supported database engines
54955
+ * ### [](#)Supported database engines
52360
54956
  * * MySQL
52361
54957
  * * SQL Server
52362
- * ### Prerequisites
54958
+ * ### [](#)Prerequisites
52363
54959
  * Before you call this operation, make sure that the following requirements are met:
52364
54960
  * * The shared proxy feature is enabled for your ApsaraDB RDS for MySQL instance.
52365
54961
  * * The read/write splitting feature is enabled for your ApsaraDB RDS for MySQL instance.
52366
54962
  * * The instance must run one of the following database engine versions and RDS editions:
52367
- * * MySQL 5.7 on RDS High-availability Edition (with local disks)
54963
+ * * MySQL 5.7 on RDS High-availability Edition with local disks
52368
54964
  * * MySQL 5.6
52369
54965
  * * SQL Server on RDS Cluster Edition
52370
54966
  *
@@ -52433,15 +55029,15 @@ export default class Client extends OpenApi {
52433
55029
  }
52434
55030
 
52435
55031
  /**
52436
- * ### Supported database engines
55032
+ * ### [](#)Supported database engines
52437
55033
  * * MySQL
52438
55034
  * * SQL Server
52439
- * ### Prerequisites
55035
+ * ### [](#)Prerequisites
52440
55036
  * Before you call this operation, make sure that the following requirements are met:
52441
55037
  * * The shared proxy feature is enabled for your ApsaraDB RDS for MySQL instance.
52442
55038
  * * The read/write splitting feature is enabled for your ApsaraDB RDS for MySQL instance.
52443
55039
  * * The instance must run one of the following database engine versions and RDS editions:
52444
- * * MySQL 5.7 on RDS High-availability Edition (with local disks)
55040
+ * * MySQL 5.7 on RDS High-availability Edition with local disks
52445
55041
  * * MySQL 5.6
52446
55042
  * * SQL Server on RDS Cluster Edition
52447
55043
  *
@@ -52987,6 +55583,188 @@ export default class Client extends OpenApi {
52987
55583
  return await this.modifyWhitelistTemplateWithOptions(request, runtime);
52988
55584
  }
52989
55585
 
55586
+ async preCheckCreateOrderForCreateDBNodesWithOptions(tmpReq: PreCheckCreateOrderForCreateDBNodesRequest, runtime: $Util.RuntimeOptions): Promise<PreCheckCreateOrderForCreateDBNodesResponse> {
55587
+ Util.validateModel(tmpReq);
55588
+ let request = new PreCheckCreateOrderForCreateDBNodesShrinkRequest({ });
55589
+ OpenApiUtil.convert(tmpReq, request);
55590
+ if (!Util.isUnset(tmpReq.DBNode)) {
55591
+ request.DBNodeShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.DBNode, "DBNode", "json");
55592
+ }
55593
+
55594
+ let query = { };
55595
+ if (!Util.isUnset(request.autoPay)) {
55596
+ query["AutoPay"] = request.autoPay;
55597
+ }
55598
+
55599
+ if (!Util.isUnset(request.businessInfo)) {
55600
+ query["BusinessInfo"] = request.businessInfo;
55601
+ }
55602
+
55603
+ if (!Util.isUnset(request.clientToken)) {
55604
+ query["ClientToken"] = request.clientToken;
55605
+ }
55606
+
55607
+ if (!Util.isUnset(request.commodityCode)) {
55608
+ query["CommodityCode"] = request.commodityCode;
55609
+ }
55610
+
55611
+ if (!Util.isUnset(request.DBInstanceId)) {
55612
+ query["DBInstanceId"] = request.DBInstanceId;
55613
+ }
55614
+
55615
+ if (!Util.isUnset(request.DBNodeShrink)) {
55616
+ query["DBNode"] = request.DBNodeShrink;
55617
+ }
55618
+
55619
+ if (!Util.isUnset(request.engineVersion)) {
55620
+ query["EngineVersion"] = request.engineVersion;
55621
+ }
55622
+
55623
+ if (!Util.isUnset(request.nodeType)) {
55624
+ query["NodeType"] = request.nodeType;
55625
+ }
55626
+
55627
+ if (!Util.isUnset(request.ownerId)) {
55628
+ query["OwnerId"] = request.ownerId;
55629
+ }
55630
+
55631
+ if (!Util.isUnset(request.promotionCode)) {
55632
+ query["PromotionCode"] = request.promotionCode;
55633
+ }
55634
+
55635
+ if (!Util.isUnset(request.regionId)) {
55636
+ query["RegionId"] = request.regionId;
55637
+ }
55638
+
55639
+ if (!Util.isUnset(request.resource)) {
55640
+ query["Resource"] = request.resource;
55641
+ }
55642
+
55643
+ if (!Util.isUnset(request.resourceOwnerAccount)) {
55644
+ query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
55645
+ }
55646
+
55647
+ if (!Util.isUnset(request.resourceOwnerId)) {
55648
+ query["ResourceOwnerId"] = request.resourceOwnerId;
55649
+ }
55650
+
55651
+ if (!Util.isUnset(request.zoneId)) {
55652
+ query["ZoneId"] = request.zoneId;
55653
+ }
55654
+
55655
+ let req = new $OpenApi.OpenApiRequest({
55656
+ query: OpenApiUtil.query(query),
55657
+ });
55658
+ let params = new $OpenApi.Params({
55659
+ action: "PreCheckCreateOrderForCreateDBNodes",
55660
+ version: "2014-08-15",
55661
+ protocol: "HTTPS",
55662
+ pathname: "/",
55663
+ method: "POST",
55664
+ authType: "AK",
55665
+ style: "RPC",
55666
+ reqBodyType: "formData",
55667
+ bodyType: "json",
55668
+ });
55669
+ return $tea.cast<PreCheckCreateOrderForCreateDBNodesResponse>(await this.callApi(params, req, runtime), new PreCheckCreateOrderForCreateDBNodesResponse({}));
55670
+ }
55671
+
55672
+ async preCheckCreateOrderForCreateDBNodes(request: PreCheckCreateOrderForCreateDBNodesRequest): Promise<PreCheckCreateOrderForCreateDBNodesResponse> {
55673
+ let runtime = new $Util.RuntimeOptions({ });
55674
+ return await this.preCheckCreateOrderForCreateDBNodesWithOptions(request, runtime);
55675
+ }
55676
+
55677
+ async preCheckCreateOrderForDeleteDBNodesWithOptions(tmpReq: PreCheckCreateOrderForDeleteDBNodesRequest, runtime: $Util.RuntimeOptions): Promise<PreCheckCreateOrderForDeleteDBNodesResponse> {
55678
+ Util.validateModel(tmpReq);
55679
+ let request = new PreCheckCreateOrderForDeleteDBNodesShrinkRequest({ });
55680
+ OpenApiUtil.convert(tmpReq, request);
55681
+ if (!Util.isUnset(tmpReq.DBNodeId)) {
55682
+ request.DBNodeIdShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.DBNodeId, "DBNodeId", "json");
55683
+ }
55684
+
55685
+ let query = { };
55686
+ if (!Util.isUnset(request.autoPay)) {
55687
+ query["AutoPay"] = request.autoPay;
55688
+ }
55689
+
55690
+ if (!Util.isUnset(request.businessInfo)) {
55691
+ query["BusinessInfo"] = request.businessInfo;
55692
+ }
55693
+
55694
+ if (!Util.isUnset(request.clientToken)) {
55695
+ query["ClientToken"] = request.clientToken;
55696
+ }
55697
+
55698
+ if (!Util.isUnset(request.commodityCode)) {
55699
+ query["CommodityCode"] = request.commodityCode;
55700
+ }
55701
+
55702
+ if (!Util.isUnset(request.DBInstanceId)) {
55703
+ query["DBInstanceId"] = request.DBInstanceId;
55704
+ }
55705
+
55706
+ if (!Util.isUnset(request.DBNodeIdShrink)) {
55707
+ query["DBNodeId"] = request.DBNodeIdShrink;
55708
+ }
55709
+
55710
+ if (!Util.isUnset(request.engineVersion)) {
55711
+ query["EngineVersion"] = request.engineVersion;
55712
+ }
55713
+
55714
+ if (!Util.isUnset(request.nodeType)) {
55715
+ query["NodeType"] = request.nodeType;
55716
+ }
55717
+
55718
+ if (!Util.isUnset(request.ownerId)) {
55719
+ query["OwnerId"] = request.ownerId;
55720
+ }
55721
+
55722
+ if (!Util.isUnset(request.promotionCode)) {
55723
+ query["PromotionCode"] = request.promotionCode;
55724
+ }
55725
+
55726
+ if (!Util.isUnset(request.regionId)) {
55727
+ query["RegionId"] = request.regionId;
55728
+ }
55729
+
55730
+ if (!Util.isUnset(request.resource)) {
55731
+ query["Resource"] = request.resource;
55732
+ }
55733
+
55734
+ if (!Util.isUnset(request.resourceOwnerAccount)) {
55735
+ query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
55736
+ }
55737
+
55738
+ if (!Util.isUnset(request.resourceOwnerId)) {
55739
+ query["ResourceOwnerId"] = request.resourceOwnerId;
55740
+ }
55741
+
55742
+ if (!Util.isUnset(request.zoneId)) {
55743
+ query["ZoneId"] = request.zoneId;
55744
+ }
55745
+
55746
+ let req = new $OpenApi.OpenApiRequest({
55747
+ query: OpenApiUtil.query(query),
55748
+ });
55749
+ let params = new $OpenApi.Params({
55750
+ action: "PreCheckCreateOrderForDeleteDBNodes",
55751
+ version: "2014-08-15",
55752
+ protocol: "HTTPS",
55753
+ pathname: "/",
55754
+ method: "POST",
55755
+ authType: "AK",
55756
+ style: "RPC",
55757
+ reqBodyType: "formData",
55758
+ bodyType: "json",
55759
+ });
55760
+ return $tea.cast<PreCheckCreateOrderForDeleteDBNodesResponse>(await this.callApi(params, req, runtime), new PreCheckCreateOrderForDeleteDBNodesResponse({}));
55761
+ }
55762
+
55763
+ async preCheckCreateOrderForDeleteDBNodes(request: PreCheckCreateOrderForDeleteDBNodesRequest): Promise<PreCheckCreateOrderForDeleteDBNodesResponse> {
55764
+ let runtime = new $Util.RuntimeOptions({ });
55765
+ return await this.preCheckCreateOrderForDeleteDBNodesWithOptions(request, runtime);
55766
+ }
55767
+
52990
55768
  /**
52991
55769
  * ### Supported database engines
52992
55770
  * * MySQL
@@ -53137,6 +55915,51 @@ export default class Client extends OpenApi {
53137
55915
  return await this.queryNotifyWithOptions(request, runtime);
53138
55916
  }
53139
55917
 
55918
+ async queryRecommendByCodeWithOptions(request: QueryRecommendByCodeRequest, runtime: $Util.RuntimeOptions): Promise<QueryRecommendByCodeResponse> {
55919
+ Util.validateModel(request);
55920
+ let query = { };
55921
+ if (!Util.isUnset(request.code)) {
55922
+ query["Code"] = request.code;
55923
+ }
55924
+
55925
+ if (!Util.isUnset(request.ownerId)) {
55926
+ query["OwnerId"] = request.ownerId;
55927
+ }
55928
+
55929
+ if (!Util.isUnset(request.resourceGroupId)) {
55930
+ query["ResourceGroupId"] = request.resourceGroupId;
55931
+ }
55932
+
55933
+ if (!Util.isUnset(request.resourceOwnerAccount)) {
55934
+ query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
55935
+ }
55936
+
55937
+ if (!Util.isUnset(request.resourceOwnerId)) {
55938
+ query["ResourceOwnerId"] = request.resourceOwnerId;
55939
+ }
55940
+
55941
+ let req = new $OpenApi.OpenApiRequest({
55942
+ query: OpenApiUtil.query(query),
55943
+ });
55944
+ let params = new $OpenApi.Params({
55945
+ action: "QueryRecommendByCode",
55946
+ version: "2014-08-15",
55947
+ protocol: "HTTPS",
55948
+ pathname: "/",
55949
+ method: "POST",
55950
+ authType: "AK",
55951
+ style: "RPC",
55952
+ reqBodyType: "formData",
55953
+ bodyType: "json",
55954
+ });
55955
+ return $tea.cast<QueryRecommendByCodeResponse>(await this.callApi(params, req, runtime), new QueryRecommendByCodeResponse({}));
55956
+ }
55957
+
55958
+ async queryRecommendByCode(request: QueryRecommendByCodeRequest): Promise<QueryRecommendByCodeResponse> {
55959
+ let runtime = new $Util.RuntimeOptions({ });
55960
+ return await this.queryRecommendByCodeWithOptions(request, runtime);
55961
+ }
55962
+
53140
55963
  /**
53141
55964
  * Dedicated clusters allow you to manage a number of instances at a time. You can create multiple dedicated clusters in a single region. Each dedicated cluster consists of multiple hosts. You can create multiple instances on each host. For more information, see [What is ApsaraDB MyBase?](~~141455~~)
53142
55965
  *
@@ -53606,11 +56429,16 @@ export default class Client extends OpenApi {
53606
56429
  }
53607
56430
 
53608
56431
  /**
53609
- * The following list describes the limits:
53610
- * * Up to 10 tags can be unbound in a single request.
53611
- * * If a tag is unbound from all instances to which the tag has been bound, the tag is automatically deleted.
53612
- * * If you specify only a TagKey, all tags that match the TagKey condition are unbound.
53613
- * * You must specify at least a TagKey or a set of a TagKey and a TagValue.
56432
+ * ### [](#)Supported database engines
56433
+ * * MySQL
56434
+ * * PostgreSQL
56435
+ * * SQL Server
56436
+ * * MariaDB
56437
+ * ### [](#)Usage notes
56438
+ * * A maximum of 10 tags can be removed in a single request.
56439
+ * * If a tag is removed from all instances to which the tag is added, the tag is automatically deleted.
56440
+ * * If you specify only TagKey, all tags that match the TagKey condition are removed.
56441
+ * * You must specify at least TagKey or a pair of TagKey and TagValue.
53614
56442
  *
53615
56443
  * @param request RemoveTagsFromResourceRequest
53616
56444
  * @param runtime runtime options for this request RuntimeOptions
@@ -53681,11 +56509,16 @@ export default class Client extends OpenApi {
53681
56509
  }
53682
56510
 
53683
56511
  /**
53684
- * The following list describes the limits:
53685
- * * Up to 10 tags can be unbound in a single request.
53686
- * * If a tag is unbound from all instances to which the tag has been bound, the tag is automatically deleted.
53687
- * * If you specify only a TagKey, all tags that match the TagKey condition are unbound.
53688
- * * You must specify at least a TagKey or a set of a TagKey and a TagValue.
56512
+ * ### [](#)Supported database engines
56513
+ * * MySQL
56514
+ * * PostgreSQL
56515
+ * * SQL Server
56516
+ * * MariaDB
56517
+ * ### [](#)Usage notes
56518
+ * * A maximum of 10 tags can be removed in a single request.
56519
+ * * If a tag is removed from all instances to which the tag is added, the tag is automatically deleted.
56520
+ * * If you specify only TagKey, all tags that match the TagKey condition are removed.
56521
+ * * You must specify at least TagKey or a pair of TagKey and TagValue.
53689
56522
  *
53690
56523
  * @param request RemoveTagsFromResourceRequest
53691
56524
  * @return RemoveTagsFromResourceResponse
@@ -54197,16 +57030,16 @@ export default class Client extends OpenApi {
54197
57030
  }
54198
57031
 
54199
57032
  /**
54200
- * ### Supported database engines
57033
+ * ### [](#)Supported database engines
54201
57034
  * * MySQL
54202
57035
  * * SQL Server
54203
57036
  * * MariaDB
54204
- * ### Prerequisites
54205
- * * The RDS instance is in the Running state.
57037
+ * ### [](#)Prerequisites
57038
+ * * The instance is in the Running state.
54206
57039
  * * The database is in the Running state.
54207
- * ### Usage notes
57040
+ * ### [](#)Precautions
54208
57041
  * * The permissions that can be revoked include SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, REFERENCES, INDEX, ALTER, CREATE TEMPORARY TABLES, LOCK TABLES, EXECUTE, CREATE VIEW, SHOW VIEW, CREATE ROUTINE, ALTER ROUTINE, EVENT, and TRIGGER.
54209
- * * This operation is not supported for instances that run SQL Server 2017 on RDS Cluster Edition or run PostgreSQL.
57042
+ * * This operation is not supported for instances that run SQL Server 2017 on RDS Cluster Edition and run PostgreSQL.
54210
57043
  *
54211
57044
  * @param request RevokeAccountPrivilegeRequest
54212
57045
  * @param runtime runtime options for this request RuntimeOptions
@@ -54261,16 +57094,16 @@ export default class Client extends OpenApi {
54261
57094
  }
54262
57095
 
54263
57096
  /**
54264
- * ### Supported database engines
57097
+ * ### [](#)Supported database engines
54265
57098
  * * MySQL
54266
57099
  * * SQL Server
54267
57100
  * * MariaDB
54268
- * ### Prerequisites
54269
- * * The RDS instance is in the Running state.
57101
+ * ### [](#)Prerequisites
57102
+ * * The instance is in the Running state.
54270
57103
  * * The database is in the Running state.
54271
- * ### Usage notes
57104
+ * ### [](#)Precautions
54272
57105
  * * The permissions that can be revoked include SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, REFERENCES, INDEX, ALTER, CREATE TEMPORARY TABLES, LOCK TABLES, EXECUTE, CREATE VIEW, SHOW VIEW, CREATE ROUTINE, ALTER ROUTINE, EVENT, and TRIGGER.
54273
- * * This operation is not supported for instances that run SQL Server 2017 on RDS Cluster Edition or run PostgreSQL.
57106
+ * * This operation is not supported for instances that run SQL Server 2017 on RDS Cluster Edition and run PostgreSQL.
54274
57107
  *
54275
57108
  * @param request RevokeAccountPrivilegeRequest
54276
57109
  * @return RevokeAccountPrivilegeResponse
@@ -54856,12 +57689,17 @@ export default class Client extends OpenApi {
54856
57689
  }
54857
57690
 
54858
57691
  /**
54859
- * If you have a large number of instances, you can create multiple tags and add these tags to the instances. Then, you can query instances by tag.
54860
- * * A tag consists of a key and a value. Each key must be unique in a region for an Alibaba Cloud account. Different keys can be mapped to the same value.
54861
- * * If the tag that you specify does not exist, this tag is automatically created and added to the specified instance.
54862
- * * If the key of the specified tag is the same as that of an existing tag, the specified tag overwrites the existing tag.
54863
- * * You can add up to 20 tags to an instance.
54864
- * * You can add tags to up to 50 instances in each call.
57692
+ * ### [](#)Supported database engines
57693
+ * * MySQL
57694
+ * * PostgreSQL
57695
+ * * SQL Server
57696
+ * * MariaDB
57697
+ * ### [](#)References
57698
+ * > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
57699
+ * * [Create tags for an ApsaraDB RDS for MySQL instance](~~96149~~)
57700
+ * * [Create tags for an ApsaraDB RDS for PostgreSQL instance](~~96777~~)
57701
+ * * [Create tags for an ApsaraDB RDS for SQL Server instance](~~95726~~)
57702
+ * * [Create tags for an ApsaraDB RDS for MariaDB instance](~~97152~~)
54865
57703
  *
54866
57704
  * @param request TagResourcesRequest
54867
57705
  * @param runtime runtime options for this request RuntimeOptions
@@ -54916,12 +57754,17 @@ export default class Client extends OpenApi {
54916
57754
  }
54917
57755
 
54918
57756
  /**
54919
- * If you have a large number of instances, you can create multiple tags and add these tags to the instances. Then, you can query instances by tag.
54920
- * * A tag consists of a key and a value. Each key must be unique in a region for an Alibaba Cloud account. Different keys can be mapped to the same value.
54921
- * * If the tag that you specify does not exist, this tag is automatically created and added to the specified instance.
54922
- * * If the key of the specified tag is the same as that of an existing tag, the specified tag overwrites the existing tag.
54923
- * * You can add up to 20 tags to an instance.
54924
- * * You can add tags to up to 50 instances in each call.
57757
+ * ### [](#)Supported database engines
57758
+ * * MySQL
57759
+ * * PostgreSQL
57760
+ * * SQL Server
57761
+ * * MariaDB
57762
+ * ### [](#)References
57763
+ * > : Before you call this operation, carefully read the following documentation. Make sure that you fully understand the prerequisites and impacts for calling this operation.
57764
+ * * [Create tags for an ApsaraDB RDS for MySQL instance](~~96149~~)
57765
+ * * [Create tags for an ApsaraDB RDS for PostgreSQL instance](~~96777~~)
57766
+ * * [Create tags for an ApsaraDB RDS for SQL Server instance](~~95726~~)
57767
+ * * [Create tags for an ApsaraDB RDS for MariaDB instance](~~97152~~)
54925
57768
  *
54926
57769
  * @param request TagResourcesRequest
54927
57770
  * @return TagResourcesResponse
@@ -54931,6 +57774,14 @@ export default class Client extends OpenApi {
54931
57774
  return await this.tagResourcesWithOptions(request, runtime);
54932
57775
  }
54933
57776
 
57777
+ /**
57778
+ * ### [](#)Supported database engines
57779
+ * * SQL Server
57780
+ *
57781
+ * @param request TerminateMigrateTaskRequest
57782
+ * @param runtime runtime options for this request RuntimeOptions
57783
+ * @return TerminateMigrateTaskResponse
57784
+ */
54934
57785
  async terminateMigrateTaskWithOptions(request: TerminateMigrateTaskRequest, runtime: $Util.RuntimeOptions): Promise<TerminateMigrateTaskResponse> {
54935
57786
  Util.validateModel(request);
54936
57787
  let query = { };
@@ -54971,6 +57822,13 @@ export default class Client extends OpenApi {
54971
57822
  return $tea.cast<TerminateMigrateTaskResponse>(await this.callApi(params, req, runtime), new TerminateMigrateTaskResponse({}));
54972
57823
  }
54973
57824
 
57825
+ /**
57826
+ * ### [](#)Supported database engines
57827
+ * * SQL Server
57828
+ *
57829
+ * @param request TerminateMigrateTaskRequest
57830
+ * @return TerminateMigrateTaskResponse
57831
+ */
54974
57832
  async terminateMigrateTask(request: TerminateMigrateTaskRequest): Promise<TerminateMigrateTaskResponse> {
54975
57833
  let runtime = new $Util.RuntimeOptions({ });
54976
57834
  return await this.terminateMigrateTaskWithOptions(request, runtime);
@@ -55145,8 +58003,14 @@ export default class Client extends OpenApi {
55145
58003
  }
55146
58004
 
55147
58005
  /**
55148
- * > * You can remove up to 20 tags at a time.
55149
- * > * If a tag is removed from an instance and is not added to other instances, the tag is automatically deleted.
58006
+ * ### [](#)Supported database engines
58007
+ * * MySQL
58008
+ * * PostgreSQL
58009
+ * * SQL Server
58010
+ * * MariaDB
58011
+ * ### [](#)Usage notes
58012
+ * * You can remove up to 20 tags at a time.
58013
+ * * If a tag is removed from an instance and is not added to other instances, the tag is automatically deleted.
55150
58014
  *
55151
58015
  * @param request UntagResourcesRequest
55152
58016
  * @param runtime runtime options for this request RuntimeOptions
@@ -55205,8 +58069,14 @@ export default class Client extends OpenApi {
55205
58069
  }
55206
58070
 
55207
58071
  /**
55208
- * > * You can remove up to 20 tags at a time.
55209
- * > * If a tag is removed from an instance and is not added to other instances, the tag is automatically deleted.
58072
+ * ### [](#)Supported database engines
58073
+ * * MySQL
58074
+ * * PostgreSQL
58075
+ * * SQL Server
58076
+ * * MariaDB
58077
+ * ### [](#)Usage notes
58078
+ * * You can remove up to 20 tags at a time.
58079
+ * * If a tag is removed from an instance and is not added to other instances, the tag is automatically deleted.
55210
58080
  *
55211
58081
  * @param request UntagResourcesRequest
55212
58082
  * @return UntagResourcesResponse