@alicloud/rds20140815 9.2.0 → 10.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +389 -189
- package/dist/client.js +257 -169
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +519 -266
package/dist/client.d.ts
CHANGED
|
@@ -481,8 +481,31 @@ export declare class AllocateReadWriteSplittingConnectionResponse extends $tea.M
|
|
|
481
481
|
});
|
|
482
482
|
}
|
|
483
483
|
export declare class AssociateEipAddressWithRCInstanceRequest extends $tea.Model {
|
|
484
|
+
/**
|
|
485
|
+
* @remarks
|
|
486
|
+
* The EIP ID.
|
|
487
|
+
*
|
|
488
|
+
* > If no EIP is available, create an EIP. For more information, see [Create an EIP](https://help.aliyun.com/document_detail/292841.html).
|
|
489
|
+
*
|
|
490
|
+
* @example
|
|
491
|
+
* eip-bp166out2x4bpcf******
|
|
492
|
+
*/
|
|
484
493
|
allocationId?: string;
|
|
494
|
+
/**
|
|
495
|
+
* @remarks
|
|
496
|
+
* The instance ID.
|
|
497
|
+
*
|
|
498
|
+
* @example
|
|
499
|
+
* rc-i322y2t562oh7o******
|
|
500
|
+
*/
|
|
485
501
|
instanceId?: string;
|
|
502
|
+
/**
|
|
503
|
+
* @remarks
|
|
504
|
+
* The region ID. You can call the DescribeRegions operation to query the most recent region list.
|
|
505
|
+
*
|
|
506
|
+
* @example
|
|
507
|
+
* cn-hangzhou
|
|
508
|
+
*/
|
|
486
509
|
regionId?: string;
|
|
487
510
|
static names(): {
|
|
488
511
|
[key: string]: string;
|
|
@@ -495,6 +518,13 @@ export declare class AssociateEipAddressWithRCInstanceRequest extends $tea.Model
|
|
|
495
518
|
});
|
|
496
519
|
}
|
|
497
520
|
export declare class AssociateEipAddressWithRCInstanceResponseBody extends $tea.Model {
|
|
521
|
+
/**
|
|
522
|
+
* @remarks
|
|
523
|
+
* The request ID.
|
|
524
|
+
*
|
|
525
|
+
* @example
|
|
526
|
+
* EFFC7565-B3CF-5CFA-9E1F-164DD1E1F498
|
|
527
|
+
*/
|
|
498
528
|
requestId?: string;
|
|
499
529
|
static names(): {
|
|
500
530
|
[key: string]: string;
|
|
@@ -533,6 +563,8 @@ export declare class AttachRCDiskRequest extends $tea.Model {
|
|
|
533
563
|
deleteWithInstance?: boolean;
|
|
534
564
|
/**
|
|
535
565
|
* @remarks
|
|
566
|
+
* The disk ID.
|
|
567
|
+
*
|
|
536
568
|
* This parameter is required.
|
|
537
569
|
*
|
|
538
570
|
* @example
|
|
@@ -541,6 +573,8 @@ export declare class AttachRCDiskRequest extends $tea.Model {
|
|
|
541
573
|
diskId?: string;
|
|
542
574
|
/**
|
|
543
575
|
* @remarks
|
|
576
|
+
* The instance ID.
|
|
577
|
+
*
|
|
544
578
|
* This parameter is required.
|
|
545
579
|
*
|
|
546
580
|
* @example
|
|
@@ -549,6 +583,8 @@ export declare class AttachRCDiskRequest extends $tea.Model {
|
|
|
549
583
|
instanceId?: string;
|
|
550
584
|
/**
|
|
551
585
|
* @remarks
|
|
586
|
+
* The region ID
|
|
587
|
+
*
|
|
552
588
|
* This parameter is required.
|
|
553
589
|
*
|
|
554
590
|
* @example
|
|
@@ -567,6 +603,9 @@ export declare class AttachRCDiskRequest extends $tea.Model {
|
|
|
567
603
|
}
|
|
568
604
|
export declare class AttachRCDiskResponseBody extends $tea.Model {
|
|
569
605
|
/**
|
|
606
|
+
* @remarks
|
|
607
|
+
* The request ID.
|
|
608
|
+
*
|
|
570
609
|
* @example
|
|
571
610
|
* C19D1668-70CB-5421-AA91-D6D8EE3AB664
|
|
572
611
|
*/
|
|
@@ -3730,9 +3769,13 @@ export declare class CreateDBInstanceRequest extends $tea.Model {
|
|
|
3730
3769
|
* * **VPC**: a virtual private cloud (VPC)
|
|
3731
3770
|
* * **Classic**: the classic network
|
|
3732
3771
|
*
|
|
3733
|
-
* >
|
|
3734
|
-
*
|
|
3735
|
-
*
|
|
3772
|
+
* >
|
|
3773
|
+
*
|
|
3774
|
+
* * If the instance runs MySQL and uses cloud disks, you must set this parameter to **VPC**.
|
|
3775
|
+
*
|
|
3776
|
+
* * If the instance runs PostgreSQL or MariaDB, you must set this parameter to **VPC**.
|
|
3777
|
+
*
|
|
3778
|
+
* * If the instance runs SQL Server Basic or SQL Server Web, you can set this parameter to VPC or Classic. If the instance runs other database engine, you must set this parameter to **VPC**.
|
|
3736
3779
|
*
|
|
3737
3780
|
* @example
|
|
3738
3781
|
* Classic
|
|
@@ -3753,7 +3796,7 @@ export declare class CreateDBInstanceRequest extends $tea.Model {
|
|
|
3753
3796
|
ioAccelerationEnabled?: string;
|
|
3754
3797
|
/**
|
|
3755
3798
|
* @remarks
|
|
3756
|
-
* Specifies whether to enable the write optimization feature.
|
|
3799
|
+
* Specifies whether to enable the write optimization feature. Valid values:
|
|
3757
3800
|
*
|
|
3758
3801
|
* * **optimized**: enables the feature.
|
|
3759
3802
|
* * **none**: disables the feature.
|
|
@@ -4489,9 +4532,13 @@ export declare class CreateDBInstanceShrinkRequest extends $tea.Model {
|
|
|
4489
4532
|
* * **VPC**: a virtual private cloud (VPC)
|
|
4490
4533
|
* * **Classic**: the classic network
|
|
4491
4534
|
*
|
|
4492
|
-
* >
|
|
4493
|
-
*
|
|
4494
|
-
*
|
|
4535
|
+
* >
|
|
4536
|
+
*
|
|
4537
|
+
* * If the instance runs MySQL and uses cloud disks, you must set this parameter to **VPC**.
|
|
4538
|
+
*
|
|
4539
|
+
* * If the instance runs PostgreSQL or MariaDB, you must set this parameter to **VPC**.
|
|
4540
|
+
*
|
|
4541
|
+
* * If the instance runs SQL Server Basic or SQL Server Web, you can set this parameter to VPC or Classic. If the instance runs other database engine, you must set this parameter to **VPC**.
|
|
4495
4542
|
*
|
|
4496
4543
|
* @example
|
|
4497
4544
|
* Classic
|
|
@@ -4512,7 +4559,7 @@ export declare class CreateDBInstanceShrinkRequest extends $tea.Model {
|
|
|
4512
4559
|
ioAccelerationEnabled?: string;
|
|
4513
4560
|
/**
|
|
4514
4561
|
* @remarks
|
|
4515
|
-
* Specifies whether to enable the write optimization feature.
|
|
4562
|
+
* Specifies whether to enable the write optimization feature. Valid values:
|
|
4516
4563
|
*
|
|
4517
4564
|
* * **optimized**: enables the feature.
|
|
4518
4565
|
* * **none**: disables the feature.
|
|
@@ -8200,6 +8247,7 @@ export declare class CreateRCNodePoolRequest extends $tea.Model {
|
|
|
8200
8247
|
securityEnhancementStrategy?: string;
|
|
8201
8248
|
securityGroupId?: string;
|
|
8202
8249
|
spotStrategy?: string;
|
|
8250
|
+
supportCase?: string;
|
|
8203
8251
|
systemDisk?: CreateRCNodePoolRequestSystemDisk;
|
|
8204
8252
|
tag?: CreateRCNodePoolRequestTag[];
|
|
8205
8253
|
/**
|
|
@@ -8259,6 +8307,7 @@ export declare class CreateRCNodePoolShrinkRequest extends $tea.Model {
|
|
|
8259
8307
|
securityEnhancementStrategy?: string;
|
|
8260
8308
|
securityGroupId?: string;
|
|
8261
8309
|
spotStrategy?: string;
|
|
8310
|
+
supportCase?: string;
|
|
8262
8311
|
systemDiskShrink?: string;
|
|
8263
8312
|
tag?: CreateRCNodePoolShrinkRequestTag[];
|
|
8264
8313
|
/**
|
|
@@ -20439,83 +20488,6 @@ export declare class DescribeDetachedBackupsResponse extends $tea.Model {
|
|
|
20439
20488
|
[key: string]: any;
|
|
20440
20489
|
});
|
|
20441
20490
|
}
|
|
20442
|
-
export declare class DescribeDiagnosticReportListRequest extends $tea.Model {
|
|
20443
|
-
/**
|
|
20444
|
-
* @remarks
|
|
20445
|
-
* The ID of the instance. You can call the [DescribeDBInstances](https://help.aliyun.com/document_detail/610396.html) operation to query the ID of the instance.
|
|
20446
|
-
*
|
|
20447
|
-
* This parameter is required.
|
|
20448
|
-
*
|
|
20449
|
-
* @example
|
|
20450
|
-
* rm-uf6wjk5xxxxxxx
|
|
20451
|
-
*/
|
|
20452
|
-
DBInstanceId?: string;
|
|
20453
|
-
/**
|
|
20454
|
-
* @remarks
|
|
20455
|
-
* The resource group ID.
|
|
20456
|
-
*
|
|
20457
|
-
* @example
|
|
20458
|
-
* rg-acfmy*****
|
|
20459
|
-
*/
|
|
20460
|
-
resourceGroupId?: string;
|
|
20461
|
-
static names(): {
|
|
20462
|
-
[key: string]: string;
|
|
20463
|
-
};
|
|
20464
|
-
static types(): {
|
|
20465
|
-
[key: string]: any;
|
|
20466
|
-
};
|
|
20467
|
-
constructor(map?: {
|
|
20468
|
-
[key: string]: any;
|
|
20469
|
-
});
|
|
20470
|
-
}
|
|
20471
|
-
export declare class DescribeDiagnosticReportListResponseBody extends $tea.Model {
|
|
20472
|
-
/**
|
|
20473
|
-
* @remarks
|
|
20474
|
-
* The ID of the instance.
|
|
20475
|
-
*
|
|
20476
|
-
* @example
|
|
20477
|
-
* rm-uf6wjk5*****
|
|
20478
|
-
*/
|
|
20479
|
-
DBInstanceId?: string;
|
|
20480
|
-
/**
|
|
20481
|
-
* @remarks
|
|
20482
|
-
* The details of a diagnostic report.
|
|
20483
|
-
*/
|
|
20484
|
-
reportList?: DescribeDiagnosticReportListResponseBodyReportList[];
|
|
20485
|
-
/**
|
|
20486
|
-
* @remarks
|
|
20487
|
-
* The ID of the request.
|
|
20488
|
-
*
|
|
20489
|
-
* @example
|
|
20490
|
-
* B7E9A79C-DE1B-4398-845F-D654FC0958BD
|
|
20491
|
-
*/
|
|
20492
|
-
requestId?: string;
|
|
20493
|
-
static names(): {
|
|
20494
|
-
[key: string]: string;
|
|
20495
|
-
};
|
|
20496
|
-
static types(): {
|
|
20497
|
-
[key: string]: any;
|
|
20498
|
-
};
|
|
20499
|
-
constructor(map?: {
|
|
20500
|
-
[key: string]: any;
|
|
20501
|
-
});
|
|
20502
|
-
}
|
|
20503
|
-
export declare class DescribeDiagnosticReportListResponse extends $tea.Model {
|
|
20504
|
-
headers?: {
|
|
20505
|
-
[key: string]: string;
|
|
20506
|
-
};
|
|
20507
|
-
statusCode?: number;
|
|
20508
|
-
body?: DescribeDiagnosticReportListResponseBody;
|
|
20509
|
-
static names(): {
|
|
20510
|
-
[key: string]: string;
|
|
20511
|
-
};
|
|
20512
|
-
static types(): {
|
|
20513
|
-
[key: string]: any;
|
|
20514
|
-
};
|
|
20515
|
-
constructor(map?: {
|
|
20516
|
-
[key: string]: any;
|
|
20517
|
-
});
|
|
20518
|
-
}
|
|
20519
20491
|
export declare class DescribeErrorLogsRequest extends $tea.Model {
|
|
20520
20492
|
/**
|
|
20521
20493
|
* @remarks
|
|
@@ -25636,6 +25608,7 @@ export declare class DescribeRCImageListRequest extends $tea.Model {
|
|
|
25636
25608
|
architecture?: string;
|
|
25637
25609
|
imageId?: string;
|
|
25638
25610
|
imageName?: string;
|
|
25611
|
+
instanceType?: string;
|
|
25639
25612
|
/**
|
|
25640
25613
|
* @remarks
|
|
25641
25614
|
* The page number.
|
|
@@ -26076,6 +26049,7 @@ export declare class DescribeRCInstanceAttributeResponseBody extends $tea.Model
|
|
|
26076
26049
|
* Not-applicable
|
|
26077
26050
|
*/
|
|
26078
26051
|
stoppedMode?: string;
|
|
26052
|
+
systemDisk?: DescribeRCInstanceAttributeResponseBodySystemDisk;
|
|
26079
26053
|
tags?: DescribeRCInstanceAttributeResponseBodyTags;
|
|
26080
26054
|
/**
|
|
26081
26055
|
* @remarks
|
|
@@ -27505,6 +27479,7 @@ export declare class DescribeResourceUsageResponseBody extends $tea.Model {
|
|
|
27505
27479
|
* 94324736
|
|
27506
27480
|
*/
|
|
27507
27481
|
backupDataSize?: number;
|
|
27482
|
+
backupEcsSnapshotSize?: string;
|
|
27508
27483
|
/**
|
|
27509
27484
|
* @remarks
|
|
27510
27485
|
* The storage that is occupied by log backup files, excluding archived backup files, on the instance. Unit: bytes.
|
|
@@ -29128,7 +29103,7 @@ export declare class DescribeTasksRequest extends $tea.Model {
|
|
|
29128
29103
|
ownerId?: number;
|
|
29129
29104
|
/**
|
|
29130
29105
|
* @remarks
|
|
29131
|
-
* The page number.
|
|
29106
|
+
* The page number. Pages start from page 1. Default value: **1**.
|
|
29132
29107
|
*
|
|
29133
29108
|
* @example
|
|
29134
29109
|
* 1
|
|
@@ -34738,6 +34713,91 @@ export declare class ModifyDBInstancePayTypeResponse extends $tea.Model {
|
|
|
34738
34713
|
[key: string]: any;
|
|
34739
34714
|
});
|
|
34740
34715
|
}
|
|
34716
|
+
export declare class ModifyDBInstanceReplicationSwitchRequest extends $tea.Model {
|
|
34717
|
+
/**
|
|
34718
|
+
* @remarks
|
|
34719
|
+
* The instance ID. You can call the DescribeDBInstances operation to query the instance ID.
|
|
34720
|
+
*
|
|
34721
|
+
* This parameter is required.
|
|
34722
|
+
*
|
|
34723
|
+
* @example
|
|
34724
|
+
* rm-bp*****
|
|
34725
|
+
*/
|
|
34726
|
+
DBInstanceId?: string;
|
|
34727
|
+
/**
|
|
34728
|
+
* @remarks
|
|
34729
|
+
* Specifies whether to enable native replication mode. Valid values: ON and OFF.
|
|
34730
|
+
*
|
|
34731
|
+
* This parameter is required.
|
|
34732
|
+
*
|
|
34733
|
+
* @example
|
|
34734
|
+
* ON
|
|
34735
|
+
*/
|
|
34736
|
+
externalReplication?: string;
|
|
34737
|
+
/**
|
|
34738
|
+
* @remarks
|
|
34739
|
+
* The region ID of the instance. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/26243.html) operation to query the most recent region list.
|
|
34740
|
+
*
|
|
34741
|
+
* This parameter is required.
|
|
34742
|
+
*
|
|
34743
|
+
* @example
|
|
34744
|
+
* cn-hangzhou
|
|
34745
|
+
*/
|
|
34746
|
+
regionId?: string;
|
|
34747
|
+
/**
|
|
34748
|
+
* @remarks
|
|
34749
|
+
* The resource group ID. You can leave this parameter empty.
|
|
34750
|
+
*
|
|
34751
|
+
* @example
|
|
34752
|
+
* rg-acfmy****
|
|
34753
|
+
*/
|
|
34754
|
+
resourceGroupId?: string;
|
|
34755
|
+
resourceOwnerId?: number;
|
|
34756
|
+
static names(): {
|
|
34757
|
+
[key: string]: string;
|
|
34758
|
+
};
|
|
34759
|
+
static types(): {
|
|
34760
|
+
[key: string]: any;
|
|
34761
|
+
};
|
|
34762
|
+
constructor(map?: {
|
|
34763
|
+
[key: string]: any;
|
|
34764
|
+
});
|
|
34765
|
+
}
|
|
34766
|
+
export declare class ModifyDBInstanceReplicationSwitchResponseBody extends $tea.Model {
|
|
34767
|
+
/**
|
|
34768
|
+
* @remarks
|
|
34769
|
+
* Id of the request
|
|
34770
|
+
*
|
|
34771
|
+
* @example
|
|
34772
|
+
* 9F8C06AD-3F37-57A0-ABBF-ABD7824F55CE
|
|
34773
|
+
*/
|
|
34774
|
+
requestId?: string;
|
|
34775
|
+
static names(): {
|
|
34776
|
+
[key: string]: string;
|
|
34777
|
+
};
|
|
34778
|
+
static types(): {
|
|
34779
|
+
[key: string]: any;
|
|
34780
|
+
};
|
|
34781
|
+
constructor(map?: {
|
|
34782
|
+
[key: string]: any;
|
|
34783
|
+
});
|
|
34784
|
+
}
|
|
34785
|
+
export declare class ModifyDBInstanceReplicationSwitchResponse extends $tea.Model {
|
|
34786
|
+
headers?: {
|
|
34787
|
+
[key: string]: string;
|
|
34788
|
+
};
|
|
34789
|
+
statusCode?: number;
|
|
34790
|
+
body?: ModifyDBInstanceReplicationSwitchResponseBody;
|
|
34791
|
+
static names(): {
|
|
34792
|
+
[key: string]: string;
|
|
34793
|
+
};
|
|
34794
|
+
static types(): {
|
|
34795
|
+
[key: string]: any;
|
|
34796
|
+
};
|
|
34797
|
+
constructor(map?: {
|
|
34798
|
+
[key: string]: any;
|
|
34799
|
+
});
|
|
34800
|
+
}
|
|
34741
34801
|
export declare class ModifyDBInstanceSSLRequest extends $tea.Model {
|
|
34742
34802
|
/**
|
|
34743
34803
|
* @remarks
|
|
@@ -35145,6 +35205,15 @@ export declare class ModifyDBInstanceSpecRequest extends $tea.Model {
|
|
|
35145
35205
|
* true
|
|
35146
35206
|
*/
|
|
35147
35207
|
coldDataEnabled?: boolean;
|
|
35208
|
+
/**
|
|
35209
|
+
* @remarks
|
|
35210
|
+
* Whether to enable storage compression.
|
|
35211
|
+
* - on: Enable
|
|
35212
|
+
* - off: Disable
|
|
35213
|
+
*
|
|
35214
|
+
* @example
|
|
35215
|
+
* on
|
|
35216
|
+
*/
|
|
35148
35217
|
compressionMode?: string;
|
|
35149
35218
|
/**
|
|
35150
35219
|
* @remarks
|
|
@@ -35472,6 +35541,15 @@ export declare class ModifyDBInstanceSpecShrinkRequest extends $tea.Model {
|
|
|
35472
35541
|
* true
|
|
35473
35542
|
*/
|
|
35474
35543
|
coldDataEnabled?: boolean;
|
|
35544
|
+
/**
|
|
35545
|
+
* @remarks
|
|
35546
|
+
* Whether to enable storage compression.
|
|
35547
|
+
* - on: Enable
|
|
35548
|
+
* - off: Disable
|
|
35549
|
+
*
|
|
35550
|
+
* @example
|
|
35551
|
+
* on
|
|
35552
|
+
*/
|
|
35475
35553
|
compressionMode?: string;
|
|
35476
35554
|
/**
|
|
35477
35555
|
* @remarks
|
|
@@ -41634,31 +41712,52 @@ export declare class RenewInstanceResponse extends $tea.Model {
|
|
|
41634
41712
|
}
|
|
41635
41713
|
export declare class ReplaceRCInstanceSystemDiskRequest extends $tea.Model {
|
|
41636
41714
|
/**
|
|
41715
|
+
* @remarks
|
|
41716
|
+
* The image ID that is used when you reinstall the OS.
|
|
41717
|
+
*
|
|
41637
41718
|
* @example
|
|
41638
41719
|
* m-2zec4lvlhcdkyd13****
|
|
41639
41720
|
*/
|
|
41640
41721
|
imageId?: string;
|
|
41641
41722
|
/**
|
|
41723
|
+
* @remarks
|
|
41724
|
+
* The instance ID.
|
|
41725
|
+
*
|
|
41642
41726
|
* @example
|
|
41643
41727
|
* rc-m5ei7b1w38w2l91x****
|
|
41644
41728
|
*/
|
|
41645
41729
|
instanceId?: string;
|
|
41646
41730
|
/**
|
|
41731
|
+
* @remarks
|
|
41732
|
+
* The reserved parameter. This parameter is not supported.
|
|
41733
|
+
*
|
|
41647
41734
|
* @example
|
|
41648
41735
|
* None
|
|
41649
41736
|
*/
|
|
41650
41737
|
isLocalDisk?: boolean;
|
|
41651
41738
|
/**
|
|
41739
|
+
* @remarks
|
|
41740
|
+
* The name of the new key pair. If you do not specify this parameter, you must reset the key pair after the OS is reinstalled.
|
|
41741
|
+
*
|
|
41652
41742
|
* @example
|
|
41653
41743
|
* testKeyPairName
|
|
41654
41744
|
*/
|
|
41655
41745
|
keyPairName?: string;
|
|
41656
41746
|
/**
|
|
41747
|
+
* @remarks
|
|
41748
|
+
* The new logon password of the RDS Custom instance. If you do not specify this parameter, you must reset the logon password after the OS is reinstalled.
|
|
41749
|
+
*
|
|
41750
|
+
* * The value must be 8 to 30 characters in length.
|
|
41751
|
+
* * The value must contain at least three of the following character types: uppercase letters, lowercase letters, digits, and special characters. Supported special characters include: ( ) \\` ~ ! @ # $ % ^ & \\* - _ + =
|
|
41752
|
+
*
|
|
41657
41753
|
* @example
|
|
41658
41754
|
* testPassword
|
|
41659
41755
|
*/
|
|
41660
41756
|
password?: string;
|
|
41661
41757
|
/**
|
|
41758
|
+
* @remarks
|
|
41759
|
+
* The region ID.
|
|
41760
|
+
*
|
|
41662
41761
|
* @example
|
|
41663
41762
|
* cn-beijing
|
|
41664
41763
|
*/
|
|
@@ -41675,6 +41774,9 @@ export declare class ReplaceRCInstanceSystemDiskRequest extends $tea.Model {
|
|
|
41675
41774
|
}
|
|
41676
41775
|
export declare class ReplaceRCInstanceSystemDiskResponseBody extends $tea.Model {
|
|
41677
41776
|
/**
|
|
41777
|
+
* @remarks
|
|
41778
|
+
* The request ID.
|
|
41779
|
+
*
|
|
41678
41780
|
* @example
|
|
41679
41781
|
* 8B993DA9-5272-5414-94E3-4CA8BA0146C2
|
|
41680
41782
|
*/
|
|
@@ -42522,6 +42624,7 @@ export declare class RunRCInstancesRequest extends $tea.Model {
|
|
|
42522
42624
|
* ETnLKlblzczshOTUbOCz****
|
|
42523
42625
|
*/
|
|
42524
42626
|
clientToken?: string;
|
|
42627
|
+
createAckEdgeParam?: RunRCInstancesRequestCreateAckEdgeParam;
|
|
42525
42628
|
createExtraParam?: string;
|
|
42526
42629
|
createMode?: string;
|
|
42527
42630
|
/**
|
|
@@ -42764,6 +42867,7 @@ export declare class RunRCInstancesShrinkRequest extends $tea.Model {
|
|
|
42764
42867
|
* ETnLKlblzczshOTUbOCz****
|
|
42765
42868
|
*/
|
|
42766
42869
|
clientToken?: string;
|
|
42870
|
+
createAckEdgeParamShrink?: string;
|
|
42767
42871
|
createExtraParam?: string;
|
|
42768
42872
|
createMode?: string;
|
|
42769
42873
|
/**
|
|
@@ -43783,8 +43887,29 @@ export declare class SyncRCKeyPairResponse extends $tea.Model {
|
|
|
43783
43887
|
});
|
|
43784
43888
|
}
|
|
43785
43889
|
export declare class SyncRCSecurityGroupRequest extends $tea.Model {
|
|
43890
|
+
/**
|
|
43891
|
+
* @remarks
|
|
43892
|
+
* The instance ID.
|
|
43893
|
+
*
|
|
43894
|
+
* @example
|
|
43895
|
+
* rc-i322y2t562oh7o******
|
|
43896
|
+
*/
|
|
43786
43897
|
instanceId?: string;
|
|
43898
|
+
/**
|
|
43899
|
+
* @remarks
|
|
43900
|
+
* The region ID. You can call the DescribeRegions operation to query the most recent region list.
|
|
43901
|
+
*
|
|
43902
|
+
* @example
|
|
43903
|
+
* cn-hangzhou
|
|
43904
|
+
*/
|
|
43787
43905
|
regionId?: string;
|
|
43906
|
+
/**
|
|
43907
|
+
* @remarks
|
|
43908
|
+
* The security group ID.
|
|
43909
|
+
*
|
|
43910
|
+
* @example
|
|
43911
|
+
* sg-bp196e4d2ndjgy******
|
|
43912
|
+
*/
|
|
43788
43913
|
securityGroupId?: string;
|
|
43789
43914
|
static names(): {
|
|
43790
43915
|
[key: string]: string;
|
|
@@ -43797,6 +43922,13 @@ export declare class SyncRCSecurityGroupRequest extends $tea.Model {
|
|
|
43797
43922
|
});
|
|
43798
43923
|
}
|
|
43799
43924
|
export declare class SyncRCSecurityGroupResponseBody extends $tea.Model {
|
|
43925
|
+
/**
|
|
43926
|
+
* @remarks
|
|
43927
|
+
* The request ID.
|
|
43928
|
+
*
|
|
43929
|
+
* @example
|
|
43930
|
+
* 300333A0-68E5-59CE-94AD-75153D17639E
|
|
43931
|
+
*/
|
|
43800
43932
|
requestId?: string;
|
|
43801
43933
|
static names(): {
|
|
43802
43934
|
[key: string]: string;
|
|
@@ -44163,8 +44295,29 @@ export declare class TransformDBInstancePayTypeResponse extends $tea.Model {
|
|
|
44163
44295
|
});
|
|
44164
44296
|
}
|
|
44165
44297
|
export declare class UnassociateEipAddressWithRCInstanceRequest extends $tea.Model {
|
|
44298
|
+
/**
|
|
44299
|
+
* @remarks
|
|
44300
|
+
* The EIP ID.
|
|
44301
|
+
*
|
|
44302
|
+
* @example
|
|
44303
|
+
* eip-bp166out2x4bpcf******
|
|
44304
|
+
*/
|
|
44166
44305
|
allocationId?: string;
|
|
44306
|
+
/**
|
|
44307
|
+
* @remarks
|
|
44308
|
+
* The instance ID.
|
|
44309
|
+
*
|
|
44310
|
+
* @example
|
|
44311
|
+
* rc-i322y2t562oh7o******
|
|
44312
|
+
*/
|
|
44167
44313
|
instanceId?: string;
|
|
44314
|
+
/**
|
|
44315
|
+
* @remarks
|
|
44316
|
+
* The region ID. You can call the DescribeRegions operation to query the most recent region list.
|
|
44317
|
+
*
|
|
44318
|
+
* @example
|
|
44319
|
+
* cn-hangzhou
|
|
44320
|
+
*/
|
|
44168
44321
|
regionId?: string;
|
|
44169
44322
|
static names(): {
|
|
44170
44323
|
[key: string]: string;
|
|
@@ -44177,6 +44330,13 @@ export declare class UnassociateEipAddressWithRCInstanceRequest extends $tea.Mod
|
|
|
44177
44330
|
});
|
|
44178
44331
|
}
|
|
44179
44332
|
export declare class UnassociateEipAddressWithRCInstanceResponseBody extends $tea.Model {
|
|
44333
|
+
/**
|
|
44334
|
+
* @remarks
|
|
44335
|
+
* The request ID.
|
|
44336
|
+
*
|
|
44337
|
+
* @example
|
|
44338
|
+
* CDEAC7BF-D64B-54A1-9051-BE9AC0990E68
|
|
44339
|
+
*/
|
|
44180
44340
|
requestId?: string;
|
|
44181
44341
|
static names(): {
|
|
44182
44342
|
[key: string]: string;
|
|
@@ -45579,8 +45739,11 @@ export declare class CreateDBInstanceRequestServerlessConfig extends $tea.Model
|
|
|
45579
45739
|
* * **true**
|
|
45580
45740
|
* * **false** (default)
|
|
45581
45741
|
*
|
|
45582
|
-
* >
|
|
45583
|
-
*
|
|
45742
|
+
* >
|
|
45743
|
+
*
|
|
45744
|
+
* * This parameter is required only for serverless instances that run MySQL and PostgreSQL. If you set this parameter to true, a service interruption that lasts approximately 30 to 120 seconds occurs during forced scaling. Process with caution.
|
|
45745
|
+
*
|
|
45746
|
+
* * The RCU scaling for a serverless instance immediately takes effect. In some cases, such as the execution of large transactions, the scaling does not immediately take effect. In this case, you can enable this feature to forcefully scale the RCUs of the instance.
|
|
45584
45747
|
*
|
|
45585
45748
|
* @example
|
|
45586
45749
|
* false
|
|
@@ -46318,6 +46481,7 @@ export declare class CreateRCNodePoolRequestDataDisk extends $tea.Model {
|
|
|
46318
46481
|
}
|
|
46319
46482
|
export declare class CreateRCNodePoolRequestSystemDisk extends $tea.Model {
|
|
46320
46483
|
category?: string;
|
|
46484
|
+
performanceLevel?: string;
|
|
46321
46485
|
size?: number;
|
|
46322
46486
|
static names(): {
|
|
46323
46487
|
[key: string]: string;
|
|
@@ -49438,7 +49602,21 @@ export declare class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttri
|
|
|
49438
49602
|
* Chinese_PRC_CI_AS
|
|
49439
49603
|
*/
|
|
49440
49604
|
collation?: string;
|
|
49605
|
+
/**
|
|
49606
|
+
* @remarks
|
|
49607
|
+
* The storage compression mode.
|
|
49608
|
+
*
|
|
49609
|
+
* @example
|
|
49610
|
+
* on, off
|
|
49611
|
+
*/
|
|
49441
49612
|
compressionMode?: string;
|
|
49613
|
+
/**
|
|
49614
|
+
* @remarks
|
|
49615
|
+
* The storage compression ratio.
|
|
49616
|
+
*
|
|
49617
|
+
* @example
|
|
49618
|
+
* 1.25
|
|
49619
|
+
*/
|
|
49442
49620
|
compressionRatio?: string;
|
|
49443
49621
|
/**
|
|
49444
49622
|
* @remarks
|
|
@@ -49960,6 +50138,13 @@ export declare class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttri
|
|
|
49960
50138
|
* Disabled
|
|
49961
50139
|
*/
|
|
49962
50140
|
superPermissionMode?: string;
|
|
50141
|
+
/**
|
|
50142
|
+
* @remarks
|
|
50143
|
+
* Indicates whether the storage compression mode can be enabled for the instance.
|
|
50144
|
+
*
|
|
50145
|
+
* @example
|
|
50146
|
+
* true, false
|
|
50147
|
+
*/
|
|
49963
50148
|
supportCompression?: boolean;
|
|
49964
50149
|
/**
|
|
49965
50150
|
* @remarks
|
|
@@ -54371,57 +54556,6 @@ export declare class DescribeDetachedBackupsResponseBodyItems extends $tea.Model
|
|
|
54371
54556
|
[key: string]: any;
|
|
54372
54557
|
});
|
|
54373
54558
|
}
|
|
54374
|
-
export declare class DescribeDiagnosticReportListResponseBodyReportList extends $tea.Model {
|
|
54375
|
-
/**
|
|
54376
|
-
* @remarks
|
|
54377
|
-
* The time when the diagnosis was performed.
|
|
54378
|
-
*
|
|
54379
|
-
* @example
|
|
54380
|
-
* 2018-01-17T12:46:09Z
|
|
54381
|
-
*/
|
|
54382
|
-
diagnosticTime?: string;
|
|
54383
|
-
/**
|
|
54384
|
-
* @remarks
|
|
54385
|
-
* The URL that is used to download the backup set over the Internet. If the backup set cannot be downloaded, an empty string is returned.
|
|
54386
|
-
*
|
|
54387
|
-
* @example
|
|
54388
|
-
* http://rdsreport-hz-v3.oss-cn-hangzhou.aliyuncs.com/xxxxx
|
|
54389
|
-
*/
|
|
54390
|
-
downloadURL?: string;
|
|
54391
|
-
/**
|
|
54392
|
-
* @remarks
|
|
54393
|
-
* The end time of the monitoring data.
|
|
54394
|
-
*
|
|
54395
|
-
* @example
|
|
54396
|
-
* 2018-01-10T15:31:00Z
|
|
54397
|
-
*/
|
|
54398
|
-
endTime?: string;
|
|
54399
|
-
/**
|
|
54400
|
-
* @remarks
|
|
54401
|
-
* The diagnostic score.
|
|
54402
|
-
*
|
|
54403
|
-
* @example
|
|
54404
|
-
* 100
|
|
54405
|
-
*/
|
|
54406
|
-
score?: number;
|
|
54407
|
-
/**
|
|
54408
|
-
* @remarks
|
|
54409
|
-
* The start time of the monitoring data.
|
|
54410
|
-
*
|
|
54411
|
-
* @example
|
|
54412
|
-
* 2018-01-10T15:30:00Z
|
|
54413
|
-
*/
|
|
54414
|
-
startTime?: string;
|
|
54415
|
-
static names(): {
|
|
54416
|
-
[key: string]: string;
|
|
54417
|
-
};
|
|
54418
|
-
static types(): {
|
|
54419
|
-
[key: string]: any;
|
|
54420
|
-
};
|
|
54421
|
-
constructor(map?: {
|
|
54422
|
-
[key: string]: any;
|
|
54423
|
-
});
|
|
54424
|
-
}
|
|
54425
54559
|
export declare class DescribeErrorLogsResponseBodyItemsErrorLog extends $tea.Model {
|
|
54426
54560
|
/**
|
|
54427
54561
|
* @remarks
|
|
@@ -58172,7 +58306,7 @@ export declare class DescribeRCDisksResponseBodyDisks extends $tea.Model {
|
|
|
58172
58306
|
* @remarks
|
|
58173
58307
|
* The billing method of the disk.
|
|
58174
58308
|
*
|
|
58175
|
-
* PostPaid
|
|
58309
|
+
* Only **PostPaid** (pay-as-you-go) is supported.
|
|
58176
58310
|
*
|
|
58177
58311
|
* @example
|
|
58178
58312
|
* PostPaid
|
|
@@ -58215,7 +58349,7 @@ export declare class DescribeRCDisksResponseBodyDisks extends $tea.Model {
|
|
|
58215
58349
|
expiredTime?: string;
|
|
58216
58350
|
/**
|
|
58217
58351
|
* @remarks
|
|
58218
|
-
* The provisioned read/write IOPS of the ESSD AutoPL disk. Valid values: 0 to min{50,000, 1,000 ×
|
|
58352
|
+
* The provisioned read/write IOPS of the ESSD AutoPL disk. Valid values: 0 to min{50,000, 1,000 × *Capacity - Baseline performance}. Baseline performance = min{1,800 + 50 × *Capacity, 50,000}
|
|
58219
58353
|
*
|
|
58220
58354
|
* This parameter is available only when the `Category` parameter is set to `cloud_auto`.
|
|
58221
58355
|
*
|
|
@@ -58442,6 +58576,7 @@ export declare class DescribeRCImageListResponseBodyImages extends $tea.Model {
|
|
|
58442
58576
|
* linux
|
|
58443
58577
|
*/
|
|
58444
58578
|
OSType?: string;
|
|
58579
|
+
platform?: string;
|
|
58445
58580
|
/**
|
|
58446
58581
|
* @remarks
|
|
58447
58582
|
* The image size. Unit: GiB.
|
|
@@ -58701,6 +58836,22 @@ export declare class DescribeRCInstanceAttributeResponseBodySecurityGroupIds ext
|
|
|
58701
58836
|
[key: string]: any;
|
|
58702
58837
|
});
|
|
58703
58838
|
}
|
|
58839
|
+
export declare class DescribeRCInstanceAttributeResponseBodySystemDisk extends $tea.Model {
|
|
58840
|
+
deleteWithInstance?: boolean;
|
|
58841
|
+
encrypted?: string;
|
|
58842
|
+
systemDiskCategory?: string;
|
|
58843
|
+
systemDiskPerformanceLevel?: string;
|
|
58844
|
+
systemDiskSize?: number;
|
|
58845
|
+
static names(): {
|
|
58846
|
+
[key: string]: string;
|
|
58847
|
+
};
|
|
58848
|
+
static types(): {
|
|
58849
|
+
[key: string]: any;
|
|
58850
|
+
};
|
|
58851
|
+
constructor(map?: {
|
|
58852
|
+
[key: string]: any;
|
|
58853
|
+
});
|
|
58854
|
+
}
|
|
58704
58855
|
export declare class DescribeRCInstanceAttributeResponseBodyTagsTag extends $tea.Model {
|
|
58705
58856
|
resourceId?: string;
|
|
58706
58857
|
resourceType?: string;
|
|
@@ -58933,6 +59084,7 @@ export declare class DescribeRCNodePoolResponseBodyNodePoolListDataDisk extends
|
|
|
58933
59084
|
}
|
|
58934
59085
|
export declare class DescribeRCNodePoolResponseBodyNodePoolListSystemDisk extends $tea.Model {
|
|
58935
59086
|
category?: string;
|
|
59087
|
+
performanceLevel?: string;
|
|
58936
59088
|
size?: number;
|
|
58937
59089
|
static names(): {
|
|
58938
59090
|
[key: string]: string;
|
|
@@ -59084,6 +59236,9 @@ export declare class DescribeRCSnapshotsResponseBodySnapshots extends $tea.Model
|
|
|
59084
59236
|
/**
|
|
59085
59237
|
* @remarks
|
|
59086
59238
|
* The snapshot name.
|
|
59239
|
+
*
|
|
59240
|
+
* @example
|
|
59241
|
+
* s-2ze8klip00xcogcwer76
|
|
59087
59242
|
*/
|
|
59088
59243
|
snapshotName?: string;
|
|
59089
59244
|
/**
|
|
@@ -59127,7 +59282,7 @@ export declare class DescribeRCSnapshotsResponseBodySnapshots extends $tea.Model
|
|
|
59127
59282
|
sourceDiskType?: string;
|
|
59128
59283
|
/**
|
|
59129
59284
|
* @remarks
|
|
59130
|
-
* The type of the
|
|
59285
|
+
* The type of the source disk.
|
|
59131
59286
|
*
|
|
59132
59287
|
* > This parameter will be removed in the future. To ensure future compatibility, we recommend that you use other parameters.
|
|
59133
59288
|
*
|
|
@@ -63003,6 +63158,19 @@ export declare class RemoveTagsFromResourceRequestTag extends $tea.Model {
|
|
|
63003
63158
|
[key: string]: any;
|
|
63004
63159
|
});
|
|
63005
63160
|
}
|
|
63161
|
+
export declare class RunRCInstancesRequestCreateAckEdgeParam extends $tea.Model {
|
|
63162
|
+
clusterId?: string;
|
|
63163
|
+
nodePoolId?: string;
|
|
63164
|
+
static names(): {
|
|
63165
|
+
[key: string]: string;
|
|
63166
|
+
};
|
|
63167
|
+
static types(): {
|
|
63168
|
+
[key: string]: any;
|
|
63169
|
+
};
|
|
63170
|
+
constructor(map?: {
|
|
63171
|
+
[key: string]: any;
|
|
63172
|
+
});
|
|
63173
|
+
}
|
|
63006
63174
|
export declare class RunRCInstancesRequestDataDisk extends $tea.Model {
|
|
63007
63175
|
/**
|
|
63008
63176
|
* @remarks
|
|
@@ -63340,7 +63508,15 @@ export default class Client extends OpenApi {
|
|
|
63340
63508
|
*/
|
|
63341
63509
|
allocateReadWriteSplittingConnection(request: AllocateReadWriteSplittingConnectionRequest): Promise<AllocateReadWriteSplittingConnectionResponse>;
|
|
63342
63510
|
/**
|
|
63343
|
-
*
|
|
63511
|
+
* Associates an elastic IP address (EIP) with an RDS Custom for SQL Server instance.
|
|
63512
|
+
*
|
|
63513
|
+
* @remarks
|
|
63514
|
+
* ### [](#)Supported database engine
|
|
63515
|
+
* SQL Server
|
|
63516
|
+
* ### [](#)References
|
|
63517
|
+
* [Introduction to ApsaraDB RDS Custom](https://help.aliyun.com/document_detail/2864363.html)
|
|
63518
|
+
* ### [](#)Precautions
|
|
63519
|
+
* If the RDS Custom instance uses a public IP address, the public IP address is automatically released after you associate an EIP with the instance.
|
|
63344
63520
|
*
|
|
63345
63521
|
* @param request - AssociateEipAddressWithRCInstanceRequest
|
|
63346
63522
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -63348,14 +63524,22 @@ export default class Client extends OpenApi {
|
|
|
63348
63524
|
*/
|
|
63349
63525
|
associateEipAddressWithRCInstanceWithOptions(request: AssociateEipAddressWithRCInstanceRequest, runtime: $Util.RuntimeOptions): Promise<AssociateEipAddressWithRCInstanceResponse>;
|
|
63350
63526
|
/**
|
|
63351
|
-
*
|
|
63527
|
+
* Associates an elastic IP address (EIP) with an RDS Custom for SQL Server instance.
|
|
63528
|
+
*
|
|
63529
|
+
* @remarks
|
|
63530
|
+
* ### [](#)Supported database engine
|
|
63531
|
+
* SQL Server
|
|
63532
|
+
* ### [](#)References
|
|
63533
|
+
* [Introduction to ApsaraDB RDS Custom](https://help.aliyun.com/document_detail/2864363.html)
|
|
63534
|
+
* ### [](#)Precautions
|
|
63535
|
+
* If the RDS Custom instance uses a public IP address, the public IP address is automatically released after you associate an EIP with the instance.
|
|
63352
63536
|
*
|
|
63353
63537
|
* @param request - AssociateEipAddressWithRCInstanceRequest
|
|
63354
63538
|
* @returns AssociateEipAddressWithRCInstanceResponse
|
|
63355
63539
|
*/
|
|
63356
63540
|
associateEipAddressWithRCInstance(request: AssociateEipAddressWithRCInstanceRequest): Promise<AssociateEipAddressWithRCInstanceResponse>;
|
|
63357
63541
|
/**
|
|
63358
|
-
*
|
|
63542
|
+
* Attaches a pay-as-you-go data disk or a system disk to an RDS Custom instance. The instance and the disk must reside in the same zone.
|
|
63359
63543
|
*
|
|
63360
63544
|
* @param request - AttachRCDiskRequest
|
|
63361
63545
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -63363,7 +63547,7 @@ export default class Client extends OpenApi {
|
|
|
63363
63547
|
*/
|
|
63364
63548
|
attachRCDiskWithOptions(request: AttachRCDiskRequest, runtime: $Util.RuntimeOptions): Promise<AttachRCDiskResponse>;
|
|
63365
63549
|
/**
|
|
63366
|
-
*
|
|
63550
|
+
* Attaches a pay-as-you-go data disk or a system disk to an RDS Custom instance. The instance and the disk must reside in the same zone.
|
|
63367
63551
|
*
|
|
63368
63552
|
* @param request - AttachRCDiskRequest
|
|
63369
63553
|
* @returns AttachRCDiskResponse
|
|
@@ -67159,31 +67343,6 @@ export default class Client extends OpenApi {
|
|
|
67159
67343
|
* @returns DescribeDetachedBackupsResponse
|
|
67160
67344
|
*/
|
|
67161
67345
|
describeDetachedBackups(request: DescribeDetachedBackupsRequest): Promise<DescribeDetachedBackupsResponse>;
|
|
67162
|
-
/**
|
|
67163
|
-
* Queries the information about diagnostics reports.
|
|
67164
|
-
*
|
|
67165
|
-
* @remarks
|
|
67166
|
-
* > This operation is phased out.
|
|
67167
|
-
*
|
|
67168
|
-
* @deprecated OpenAPI DescribeDiagnosticReportList is deprecated
|
|
67169
|
-
*
|
|
67170
|
-
* @param request - DescribeDiagnosticReportListRequest
|
|
67171
|
-
* @param runtime - runtime options for this request RuntimeOptions
|
|
67172
|
-
* @returns DescribeDiagnosticReportListResponse
|
|
67173
|
-
*/
|
|
67174
|
-
describeDiagnosticReportListWithOptions(request: DescribeDiagnosticReportListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiagnosticReportListResponse>;
|
|
67175
|
-
/**
|
|
67176
|
-
* Queries the information about diagnostics reports.
|
|
67177
|
-
*
|
|
67178
|
-
* @remarks
|
|
67179
|
-
* > This operation is phased out.
|
|
67180
|
-
*
|
|
67181
|
-
* @deprecated OpenAPI DescribeDiagnosticReportList is deprecated
|
|
67182
|
-
*
|
|
67183
|
-
* @param request - DescribeDiagnosticReportListRequest
|
|
67184
|
-
* @returns DescribeDiagnosticReportListResponse
|
|
67185
|
-
*/
|
|
67186
|
-
describeDiagnosticReportList(request: DescribeDiagnosticReportListRequest): Promise<DescribeDiagnosticReportListResponse>;
|
|
67187
67346
|
/**
|
|
67188
67347
|
* Queries the error logs of an instance over a specific time range.
|
|
67189
67348
|
*
|
|
@@ -70306,6 +70465,21 @@ export default class Client extends OpenApi {
|
|
|
70306
70465
|
* @returns ModifyDBInstancePayTypeResponse
|
|
70307
70466
|
*/
|
|
70308
70467
|
modifyDBInstancePayType(request: ModifyDBInstancePayTypeRequest): Promise<ModifyDBInstancePayTypeResponse>;
|
|
70468
|
+
/**
|
|
70469
|
+
* Enables or disables native replication mode for ApsaraDB RDS.
|
|
70470
|
+
*
|
|
70471
|
+
* @param request - ModifyDBInstanceReplicationSwitchRequest
|
|
70472
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
70473
|
+
* @returns ModifyDBInstanceReplicationSwitchResponse
|
|
70474
|
+
*/
|
|
70475
|
+
modifyDBInstanceReplicationSwitchWithOptions(request: ModifyDBInstanceReplicationSwitchRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceReplicationSwitchResponse>;
|
|
70476
|
+
/**
|
|
70477
|
+
* Enables or disables native replication mode for ApsaraDB RDS.
|
|
70478
|
+
*
|
|
70479
|
+
* @param request - ModifyDBInstanceReplicationSwitchRequest
|
|
70480
|
+
* @returns ModifyDBInstanceReplicationSwitchResponse
|
|
70481
|
+
*/
|
|
70482
|
+
modifyDBInstanceReplicationSwitch(request: ModifyDBInstanceReplicationSwitchRequest): Promise<ModifyDBInstanceReplicationSwitchResponse>;
|
|
70309
70483
|
/**
|
|
70310
70484
|
* Modifies the SSL encryption settings of an instance.
|
|
70311
70485
|
*
|
|
@@ -71216,13 +71390,10 @@ export default class Client extends OpenApi {
|
|
|
71216
71390
|
* Enables or disables the SQL Explorer (SQL Audit) feature for an instance.
|
|
71217
71391
|
*
|
|
71218
71392
|
* @remarks
|
|
71219
|
-
* ### [](#)
|
|
71220
|
-
*
|
|
71221
|
-
* * PostgreSQL
|
|
71222
|
-
* * SQL Server
|
|
71223
|
-
* > If DAS Enterprise Edition is supported in the region in which the instance resides, the most recent version of DAS Enterprise Edition is enabled when you call the operation to enable the SQL Audit feature for the instance. For more information about the database engines and regions supported by each version of DAS Enterprise Edition, see [Supported databases and regions](https://help.aliyun.com/document_detail/156204.html).
|
|
71393
|
+
* ### [](#)Note:
|
|
71394
|
+
* This operation is no longer maintained. We recommend that you enable or configure Database Autonomy Service (DAS) Enterprise Edition. For more information, see [Enable or configure DAS Enterprise Edition](https://help.aliyun.com/document_detail/2778835.html).
|
|
71224
71395
|
* ### [](#)References
|
|
71225
|
-
* > Before you call this operation,
|
|
71396
|
+
* > Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
71226
71397
|
* * [Use the SQL Explorer and Audit feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/476574.html)
|
|
71227
71398
|
* * [Use the SQL Audit feature for an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/96766.html)
|
|
71228
71399
|
* * [Use the SQL Audit feature for an ApsaraDB RDS for SQL Server instance](https://help.aliyun.com/document_detail/95712.html)
|
|
@@ -71236,13 +71407,10 @@ export default class Client extends OpenApi {
|
|
|
71236
71407
|
* Enables or disables the SQL Explorer (SQL Audit) feature for an instance.
|
|
71237
71408
|
*
|
|
71238
71409
|
* @remarks
|
|
71239
|
-
* ### [](#)
|
|
71240
|
-
*
|
|
71241
|
-
* * PostgreSQL
|
|
71242
|
-
* * SQL Server
|
|
71243
|
-
* > If DAS Enterprise Edition is supported in the region in which the instance resides, the most recent version of DAS Enterprise Edition is enabled when you call the operation to enable the SQL Audit feature for the instance. For more information about the database engines and regions supported by each version of DAS Enterprise Edition, see [Supported databases and regions](https://help.aliyun.com/document_detail/156204.html).
|
|
71410
|
+
* ### [](#)Note:
|
|
71411
|
+
* This operation is no longer maintained. We recommend that you enable or configure Database Autonomy Service (DAS) Enterprise Edition. For more information, see [Enable or configure DAS Enterprise Edition](https://help.aliyun.com/document_detail/2778835.html).
|
|
71244
71412
|
* ### [](#)References
|
|
71245
|
-
* > Before you call this operation,
|
|
71413
|
+
* > Before you call this operation, read the following topics and make sure that you fully understand the prerequisites and impacts of this operation.
|
|
71246
71414
|
* * [Use the SQL Explorer and Audit feature for an ApsaraDB RDS for MySQL instance](https://help.aliyun.com/document_detail/476574.html)
|
|
71247
71415
|
* * [Use the SQL Audit feature for an ApsaraDB RDS for PostgreSQL instance](https://help.aliyun.com/document_detail/96766.html)
|
|
71248
71416
|
* * [Use the SQL Audit feature for an ApsaraDB RDS for SQL Server instance](https://help.aliyun.com/document_detail/95712.html)
|
|
@@ -71817,7 +71985,11 @@ export default class Client extends OpenApi {
|
|
|
71817
71985
|
*/
|
|
71818
71986
|
renewInstance(request: RenewInstanceRequest): Promise<RenewInstanceResponse>;
|
|
71819
71987
|
/**
|
|
71820
|
-
*
|
|
71988
|
+
* Reinstalls the operating system (OS) of an RDS Custom instance.
|
|
71989
|
+
*
|
|
71990
|
+
* @remarks
|
|
71991
|
+
* The instance must be in the Stopped state.
|
|
71992
|
+
* * If you reinstall the system, the data on the original system disk is lost. Exercise caution when you perform this operation.
|
|
71821
71993
|
*
|
|
71822
71994
|
* @param request - ReplaceRCInstanceSystemDiskRequest
|
|
71823
71995
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -71825,7 +71997,11 @@ export default class Client extends OpenApi {
|
|
|
71825
71997
|
*/
|
|
71826
71998
|
replaceRCInstanceSystemDiskWithOptions(request: ReplaceRCInstanceSystemDiskRequest, runtime: $Util.RuntimeOptions): Promise<ReplaceRCInstanceSystemDiskResponse>;
|
|
71827
71999
|
/**
|
|
71828
|
-
*
|
|
72000
|
+
* Reinstalls the operating system (OS) of an RDS Custom instance.
|
|
72001
|
+
*
|
|
72002
|
+
* @remarks
|
|
72003
|
+
* The instance must be in the Stopped state.
|
|
72004
|
+
* * If you reinstall the system, the data on the original system disk is lost. Exercise caution when you perform this operation.
|
|
71829
72005
|
*
|
|
71830
72006
|
* @param request - ReplaceRCInstanceSystemDiskRequest
|
|
71831
72007
|
* @returns ReplaceRCInstanceSystemDiskResponse
|
|
@@ -72353,7 +72529,13 @@ export default class Client extends OpenApi {
|
|
|
72353
72529
|
*/
|
|
72354
72530
|
syncRCKeyPair(request: SyncRCKeyPairRequest): Promise<SyncRCKeyPairResponse>;
|
|
72355
72531
|
/**
|
|
72356
|
-
*
|
|
72532
|
+
* Adds security group rules to an RDS Custom for SQL Server instance.
|
|
72533
|
+
*
|
|
72534
|
+
* @remarks
|
|
72535
|
+
* ### [](#)Supported database engine
|
|
72536
|
+
* SQL Server
|
|
72537
|
+
* ### [](#)References
|
|
72538
|
+
* [Introduction to ApsaraDB RDS Custom](https://help.aliyun.com/document_detail/2864363.html)
|
|
72357
72539
|
*
|
|
72358
72540
|
* @param request - SyncRCSecurityGroupRequest
|
|
72359
72541
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -72361,7 +72543,13 @@ export default class Client extends OpenApi {
|
|
|
72361
72543
|
*/
|
|
72362
72544
|
syncRCSecurityGroupWithOptions(request: SyncRCSecurityGroupRequest, runtime: $Util.RuntimeOptions): Promise<SyncRCSecurityGroupResponse>;
|
|
72363
72545
|
/**
|
|
72364
|
-
*
|
|
72546
|
+
* Adds security group rules to an RDS Custom for SQL Server instance.
|
|
72547
|
+
*
|
|
72548
|
+
* @remarks
|
|
72549
|
+
* ### [](#)Supported database engine
|
|
72550
|
+
* SQL Server
|
|
72551
|
+
* ### [](#)References
|
|
72552
|
+
* [Introduction to ApsaraDB RDS Custom](https://help.aliyun.com/document_detail/2864363.html)
|
|
72365
72553
|
*
|
|
72366
72554
|
* @param request - SyncRCSecurityGroupRequest
|
|
72367
72555
|
* @returns SyncRCSecurityGroupResponse
|
|
@@ -72473,7 +72661,13 @@ export default class Client extends OpenApi {
|
|
|
72473
72661
|
*/
|
|
72474
72662
|
transformDBInstancePayType(request: TransformDBInstancePayTypeRequest): Promise<TransformDBInstancePayTypeResponse>;
|
|
72475
72663
|
/**
|
|
72476
|
-
*
|
|
72664
|
+
* Unbinds a elastic IP address (EIP) from an RDS Custom for SQL Server instance.
|
|
72665
|
+
*
|
|
72666
|
+
* @remarks
|
|
72667
|
+
* ### [](#)Supported database engine
|
|
72668
|
+
* SQL Server
|
|
72669
|
+
* ### [](#)References
|
|
72670
|
+
* [Introduction to ApsaraDB RDS Custom](https://help.aliyun.com/document_detail/2864363.html)
|
|
72477
72671
|
*
|
|
72478
72672
|
* @param request - UnassociateEipAddressWithRCInstanceRequest
|
|
72479
72673
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -72481,7 +72675,13 @@ export default class Client extends OpenApi {
|
|
|
72481
72675
|
*/
|
|
72482
72676
|
unassociateEipAddressWithRCInstanceWithOptions(request: UnassociateEipAddressWithRCInstanceRequest, runtime: $Util.RuntimeOptions): Promise<UnassociateEipAddressWithRCInstanceResponse>;
|
|
72483
72677
|
/**
|
|
72484
|
-
*
|
|
72678
|
+
* Unbinds a elastic IP address (EIP) from an RDS Custom for SQL Server instance.
|
|
72679
|
+
*
|
|
72680
|
+
* @remarks
|
|
72681
|
+
* ### [](#)Supported database engine
|
|
72682
|
+
* SQL Server
|
|
72683
|
+
* ### [](#)References
|
|
72684
|
+
* [Introduction to ApsaraDB RDS Custom](https://help.aliyun.com/document_detail/2864363.html)
|
|
72485
72685
|
*
|
|
72486
72686
|
* @param request - UnassociateEipAddressWithRCInstanceRequest
|
|
72487
72687
|
* @returns UnassociateEipAddressWithRCInstanceResponse
|