@alicloud/dds20151201 5.0.6 → 5.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +553 -59
- package/dist/client.js +880 -78
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +1081 -71
package/src/client.ts
CHANGED
|
@@ -2500,6 +2500,7 @@ export class DescribeBackupPolicyResponseBody extends $tea.Model {
|
|
|
2500
2500
|
backupInterval?: number;
|
|
2501
2501
|
backupRetentionPeriod?: string;
|
|
2502
2502
|
enableBackupLog?: number;
|
|
2503
|
+
highFrequencyBackupRetention?: string;
|
|
2503
2504
|
logBackupRetentionPeriod?: number;
|
|
2504
2505
|
preferredBackupPeriod?: string;
|
|
2505
2506
|
preferredBackupTime?: string;
|
|
@@ -2510,6 +2511,7 @@ export class DescribeBackupPolicyResponseBody extends $tea.Model {
|
|
|
2510
2511
|
backupInterval: 'BackupInterval',
|
|
2511
2512
|
backupRetentionPeriod: 'BackupRetentionPeriod',
|
|
2512
2513
|
enableBackupLog: 'EnableBackupLog',
|
|
2514
|
+
highFrequencyBackupRetention: 'HighFrequencyBackupRetention',
|
|
2513
2515
|
logBackupRetentionPeriod: 'LogBackupRetentionPeriod',
|
|
2514
2516
|
preferredBackupPeriod: 'PreferredBackupPeriod',
|
|
2515
2517
|
preferredBackupTime: 'PreferredBackupTime',
|
|
@@ -2523,6 +2525,7 @@ export class DescribeBackupPolicyResponseBody extends $tea.Model {
|
|
|
2523
2525
|
backupInterval: 'number',
|
|
2524
2526
|
backupRetentionPeriod: 'string',
|
|
2525
2527
|
enableBackupLog: 'number',
|
|
2528
|
+
highFrequencyBackupRetention: 'string',
|
|
2526
2529
|
logBackupRetentionPeriod: 'number',
|
|
2527
2530
|
preferredBackupPeriod: 'string',
|
|
2528
2531
|
preferredBackupTime: 'string',
|
|
@@ -2561,6 +2564,180 @@ export class DescribeBackupPolicyResponse extends $tea.Model {
|
|
|
2561
2564
|
}
|
|
2562
2565
|
}
|
|
2563
2566
|
|
|
2567
|
+
export class DescribeBackupStorageRequest extends $tea.Model {
|
|
2568
|
+
DBInstanceId?: string;
|
|
2569
|
+
nodeId?: string;
|
|
2570
|
+
ownerAccount?: string;
|
|
2571
|
+
ownerId?: number;
|
|
2572
|
+
regionId?: string;
|
|
2573
|
+
resourceOwnerAccount?: string;
|
|
2574
|
+
resourceOwnerId?: number;
|
|
2575
|
+
static names(): { [key: string]: string } {
|
|
2576
|
+
return {
|
|
2577
|
+
DBInstanceId: 'DBInstanceId',
|
|
2578
|
+
nodeId: 'NodeId',
|
|
2579
|
+
ownerAccount: 'OwnerAccount',
|
|
2580
|
+
ownerId: 'OwnerId',
|
|
2581
|
+
regionId: 'RegionId',
|
|
2582
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
2583
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
2584
|
+
};
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2587
|
+
static types(): { [key: string]: any } {
|
|
2588
|
+
return {
|
|
2589
|
+
DBInstanceId: 'string',
|
|
2590
|
+
nodeId: 'string',
|
|
2591
|
+
ownerAccount: 'string',
|
|
2592
|
+
ownerId: 'number',
|
|
2593
|
+
regionId: 'string',
|
|
2594
|
+
resourceOwnerAccount: 'string',
|
|
2595
|
+
resourceOwnerId: 'number',
|
|
2596
|
+
};
|
|
2597
|
+
}
|
|
2598
|
+
|
|
2599
|
+
constructor(map?: { [key: string]: any }) {
|
|
2600
|
+
super(map);
|
|
2601
|
+
}
|
|
2602
|
+
}
|
|
2603
|
+
|
|
2604
|
+
export class DescribeBackupStorageResponseBody extends $tea.Model {
|
|
2605
|
+
freeSize?: number;
|
|
2606
|
+
fullStorageSize?: number;
|
|
2607
|
+
logStorageSize?: number;
|
|
2608
|
+
requestId?: string;
|
|
2609
|
+
static names(): { [key: string]: string } {
|
|
2610
|
+
return {
|
|
2611
|
+
freeSize: 'FreeSize',
|
|
2612
|
+
fullStorageSize: 'FullStorageSize',
|
|
2613
|
+
logStorageSize: 'LogStorageSize',
|
|
2614
|
+
requestId: 'RequestId',
|
|
2615
|
+
};
|
|
2616
|
+
}
|
|
2617
|
+
|
|
2618
|
+
static types(): { [key: string]: any } {
|
|
2619
|
+
return {
|
|
2620
|
+
freeSize: 'number',
|
|
2621
|
+
fullStorageSize: 'number',
|
|
2622
|
+
logStorageSize: 'number',
|
|
2623
|
+
requestId: 'string',
|
|
2624
|
+
};
|
|
2625
|
+
}
|
|
2626
|
+
|
|
2627
|
+
constructor(map?: { [key: string]: any }) {
|
|
2628
|
+
super(map);
|
|
2629
|
+
}
|
|
2630
|
+
}
|
|
2631
|
+
|
|
2632
|
+
export class DescribeBackupStorageResponse extends $tea.Model {
|
|
2633
|
+
headers?: { [key: string]: string };
|
|
2634
|
+
statusCode?: number;
|
|
2635
|
+
body?: DescribeBackupStorageResponseBody;
|
|
2636
|
+
static names(): { [key: string]: string } {
|
|
2637
|
+
return {
|
|
2638
|
+
headers: 'headers',
|
|
2639
|
+
statusCode: 'statusCode',
|
|
2640
|
+
body: 'body',
|
|
2641
|
+
};
|
|
2642
|
+
}
|
|
2643
|
+
|
|
2644
|
+
static types(): { [key: string]: any } {
|
|
2645
|
+
return {
|
|
2646
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2647
|
+
statusCode: 'number',
|
|
2648
|
+
body: DescribeBackupStorageResponseBody,
|
|
2649
|
+
};
|
|
2650
|
+
}
|
|
2651
|
+
|
|
2652
|
+
constructor(map?: { [key: string]: any }) {
|
|
2653
|
+
super(map);
|
|
2654
|
+
}
|
|
2655
|
+
}
|
|
2656
|
+
|
|
2657
|
+
export class DescribeBackupTasksRequest extends $tea.Model {
|
|
2658
|
+
backupJobId?: number;
|
|
2659
|
+
DBInstanceId?: string;
|
|
2660
|
+
ownerAccount?: string;
|
|
2661
|
+
ownerId?: number;
|
|
2662
|
+
resourceOwnerAccount?: string;
|
|
2663
|
+
resourceOwnerId?: number;
|
|
2664
|
+
securityToken?: string;
|
|
2665
|
+
static names(): { [key: string]: string } {
|
|
2666
|
+
return {
|
|
2667
|
+
backupJobId: 'BackupJobId',
|
|
2668
|
+
DBInstanceId: 'DBInstanceId',
|
|
2669
|
+
ownerAccount: 'OwnerAccount',
|
|
2670
|
+
ownerId: 'OwnerId',
|
|
2671
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
2672
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
2673
|
+
securityToken: 'SecurityToken',
|
|
2674
|
+
};
|
|
2675
|
+
}
|
|
2676
|
+
|
|
2677
|
+
static types(): { [key: string]: any } {
|
|
2678
|
+
return {
|
|
2679
|
+
backupJobId: 'number',
|
|
2680
|
+
DBInstanceId: 'string',
|
|
2681
|
+
ownerAccount: 'string',
|
|
2682
|
+
ownerId: 'number',
|
|
2683
|
+
resourceOwnerAccount: 'string',
|
|
2684
|
+
resourceOwnerId: 'number',
|
|
2685
|
+
securityToken: 'string',
|
|
2686
|
+
};
|
|
2687
|
+
}
|
|
2688
|
+
|
|
2689
|
+
constructor(map?: { [key: string]: any }) {
|
|
2690
|
+
super(map);
|
|
2691
|
+
}
|
|
2692
|
+
}
|
|
2693
|
+
|
|
2694
|
+
export class DescribeBackupTasksResponseBody extends $tea.Model {
|
|
2695
|
+
backupJobs?: DescribeBackupTasksResponseBodyBackupJobs[];
|
|
2696
|
+
requestId?: string;
|
|
2697
|
+
static names(): { [key: string]: string } {
|
|
2698
|
+
return {
|
|
2699
|
+
backupJobs: 'BackupJobs',
|
|
2700
|
+
requestId: 'RequestId',
|
|
2701
|
+
};
|
|
2702
|
+
}
|
|
2703
|
+
|
|
2704
|
+
static types(): { [key: string]: any } {
|
|
2705
|
+
return {
|
|
2706
|
+
backupJobs: { 'type': 'array', 'itemType': DescribeBackupTasksResponseBodyBackupJobs },
|
|
2707
|
+
requestId: 'string',
|
|
2708
|
+
};
|
|
2709
|
+
}
|
|
2710
|
+
|
|
2711
|
+
constructor(map?: { [key: string]: any }) {
|
|
2712
|
+
super(map);
|
|
2713
|
+
}
|
|
2714
|
+
}
|
|
2715
|
+
|
|
2716
|
+
export class DescribeBackupTasksResponse extends $tea.Model {
|
|
2717
|
+
headers?: { [key: string]: string };
|
|
2718
|
+
statusCode?: number;
|
|
2719
|
+
body?: DescribeBackupTasksResponseBody;
|
|
2720
|
+
static names(): { [key: string]: string } {
|
|
2721
|
+
return {
|
|
2722
|
+
headers: 'headers',
|
|
2723
|
+
statusCode: 'statusCode',
|
|
2724
|
+
body: 'body',
|
|
2725
|
+
};
|
|
2726
|
+
}
|
|
2727
|
+
|
|
2728
|
+
static types(): { [key: string]: any } {
|
|
2729
|
+
return {
|
|
2730
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2731
|
+
statusCode: 'number',
|
|
2732
|
+
body: DescribeBackupTasksResponseBody,
|
|
2733
|
+
};
|
|
2734
|
+
}
|
|
2735
|
+
|
|
2736
|
+
constructor(map?: { [key: string]: any }) {
|
|
2737
|
+
super(map);
|
|
2738
|
+
}
|
|
2739
|
+
}
|
|
2740
|
+
|
|
2564
2741
|
export class DescribeBackupsRequest extends $tea.Model {
|
|
2565
2742
|
backupId?: string;
|
|
2566
2743
|
DBInstanceId?: string;
|
|
@@ -4343,6 +4520,87 @@ export class DescribeInstanceAutoRenewalAttributeResponse extends $tea.Model {
|
|
|
4343
4520
|
}
|
|
4344
4521
|
}
|
|
4345
4522
|
|
|
4523
|
+
export class DescribeInstanceRecoverTimeRequest extends $tea.Model {
|
|
4524
|
+
DBInstanceId?: string;
|
|
4525
|
+
ownerAccount?: string;
|
|
4526
|
+
ownerId?: number;
|
|
4527
|
+
resourceOwnerAccount?: string;
|
|
4528
|
+
resourceOwnerId?: number;
|
|
4529
|
+
securityToken?: string;
|
|
4530
|
+
static names(): { [key: string]: string } {
|
|
4531
|
+
return {
|
|
4532
|
+
DBInstanceId: 'DBInstanceId',
|
|
4533
|
+
ownerAccount: 'OwnerAccount',
|
|
4534
|
+
ownerId: 'OwnerId',
|
|
4535
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
4536
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
4537
|
+
securityToken: 'SecurityToken',
|
|
4538
|
+
};
|
|
4539
|
+
}
|
|
4540
|
+
|
|
4541
|
+
static types(): { [key: string]: any } {
|
|
4542
|
+
return {
|
|
4543
|
+
DBInstanceId: 'string',
|
|
4544
|
+
ownerAccount: 'string',
|
|
4545
|
+
ownerId: 'number',
|
|
4546
|
+
resourceOwnerAccount: 'string',
|
|
4547
|
+
resourceOwnerId: 'number',
|
|
4548
|
+
securityToken: 'string',
|
|
4549
|
+
};
|
|
4550
|
+
}
|
|
4551
|
+
|
|
4552
|
+
constructor(map?: { [key: string]: any }) {
|
|
4553
|
+
super(map);
|
|
4554
|
+
}
|
|
4555
|
+
}
|
|
4556
|
+
|
|
4557
|
+
export class DescribeInstanceRecoverTimeResponseBody extends $tea.Model {
|
|
4558
|
+
requestId?: string;
|
|
4559
|
+
restoreRanges?: DescribeInstanceRecoverTimeResponseBodyRestoreRanges[];
|
|
4560
|
+
static names(): { [key: string]: string } {
|
|
4561
|
+
return {
|
|
4562
|
+
requestId: 'RequestId',
|
|
4563
|
+
restoreRanges: 'RestoreRanges',
|
|
4564
|
+
};
|
|
4565
|
+
}
|
|
4566
|
+
|
|
4567
|
+
static types(): { [key: string]: any } {
|
|
4568
|
+
return {
|
|
4569
|
+
requestId: 'string',
|
|
4570
|
+
restoreRanges: { 'type': 'array', 'itemType': DescribeInstanceRecoverTimeResponseBodyRestoreRanges },
|
|
4571
|
+
};
|
|
4572
|
+
}
|
|
4573
|
+
|
|
4574
|
+
constructor(map?: { [key: string]: any }) {
|
|
4575
|
+
super(map);
|
|
4576
|
+
}
|
|
4577
|
+
}
|
|
4578
|
+
|
|
4579
|
+
export class DescribeInstanceRecoverTimeResponse extends $tea.Model {
|
|
4580
|
+
headers?: { [key: string]: string };
|
|
4581
|
+
statusCode?: number;
|
|
4582
|
+
body?: DescribeInstanceRecoverTimeResponseBody;
|
|
4583
|
+
static names(): { [key: string]: string } {
|
|
4584
|
+
return {
|
|
4585
|
+
headers: 'headers',
|
|
4586
|
+
statusCode: 'statusCode',
|
|
4587
|
+
body: 'body',
|
|
4588
|
+
};
|
|
4589
|
+
}
|
|
4590
|
+
|
|
4591
|
+
static types(): { [key: string]: any } {
|
|
4592
|
+
return {
|
|
4593
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4594
|
+
statusCode: 'number',
|
|
4595
|
+
body: DescribeInstanceRecoverTimeResponseBody,
|
|
4596
|
+
};
|
|
4597
|
+
}
|
|
4598
|
+
|
|
4599
|
+
constructor(map?: { [key: string]: any }) {
|
|
4600
|
+
super(map);
|
|
4601
|
+
}
|
|
4602
|
+
}
|
|
4603
|
+
|
|
4346
4604
|
export class DescribeKernelReleaseNotesRequest extends $tea.Model {
|
|
4347
4605
|
kernelVersion?: string;
|
|
4348
4606
|
ownerAccount?: string;
|
|
@@ -6703,6 +6961,7 @@ export class ModifyBackupPolicyRequest extends $tea.Model {
|
|
|
6703
6961
|
backupRetentionPeriod?: number;
|
|
6704
6962
|
DBInstanceId?: string;
|
|
6705
6963
|
enableBackupLog?: number;
|
|
6964
|
+
highFrequencyBackupRetention?: number;
|
|
6706
6965
|
logBackupRetentionPeriod?: number;
|
|
6707
6966
|
ownerAccount?: string;
|
|
6708
6967
|
ownerId?: number;
|
|
@@ -6710,7 +6969,6 @@ export class ModifyBackupPolicyRequest extends $tea.Model {
|
|
|
6710
6969
|
preferredBackupTime?: string;
|
|
6711
6970
|
resourceOwnerAccount?: string;
|
|
6712
6971
|
resourceOwnerId?: number;
|
|
6713
|
-
securityToken?: string;
|
|
6714
6972
|
snapshotBackupType?: string;
|
|
6715
6973
|
static names(): { [key: string]: string } {
|
|
6716
6974
|
return {
|
|
@@ -6718,6 +6976,7 @@ export class ModifyBackupPolicyRequest extends $tea.Model {
|
|
|
6718
6976
|
backupRetentionPeriod: 'BackupRetentionPeriod',
|
|
6719
6977
|
DBInstanceId: 'DBInstanceId',
|
|
6720
6978
|
enableBackupLog: 'EnableBackupLog',
|
|
6979
|
+
highFrequencyBackupRetention: 'HighFrequencyBackupRetention',
|
|
6721
6980
|
logBackupRetentionPeriod: 'LogBackupRetentionPeriod',
|
|
6722
6981
|
ownerAccount: 'OwnerAccount',
|
|
6723
6982
|
ownerId: 'OwnerId',
|
|
@@ -6725,7 +6984,6 @@ export class ModifyBackupPolicyRequest extends $tea.Model {
|
|
|
6725
6984
|
preferredBackupTime: 'PreferredBackupTime',
|
|
6726
6985
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
6727
6986
|
resourceOwnerId: 'ResourceOwnerId',
|
|
6728
|
-
securityToken: 'SecurityToken',
|
|
6729
6987
|
snapshotBackupType: 'SnapshotBackupType',
|
|
6730
6988
|
};
|
|
6731
6989
|
}
|
|
@@ -6736,6 +6994,7 @@ export class ModifyBackupPolicyRequest extends $tea.Model {
|
|
|
6736
6994
|
backupRetentionPeriod: 'number',
|
|
6737
6995
|
DBInstanceId: 'string',
|
|
6738
6996
|
enableBackupLog: 'number',
|
|
6997
|
+
highFrequencyBackupRetention: 'number',
|
|
6739
6998
|
logBackupRetentionPeriod: 'number',
|
|
6740
6999
|
ownerAccount: 'string',
|
|
6741
7000
|
ownerId: 'number',
|
|
@@ -6743,7 +7002,6 @@ export class ModifyBackupPolicyRequest extends $tea.Model {
|
|
|
6743
7002
|
preferredBackupTime: 'string',
|
|
6744
7003
|
resourceOwnerAccount: 'string',
|
|
6745
7004
|
resourceOwnerId: 'number',
|
|
6746
|
-
securityToken: 'string',
|
|
6747
7005
|
snapshotBackupType: 'string',
|
|
6748
7006
|
};
|
|
6749
7007
|
}
|
|
@@ -10537,12 +10795,44 @@ export class DescribeBackupDBsResponseBodyDatabases extends $tea.Model {
|
|
|
10537
10795
|
}
|
|
10538
10796
|
}
|
|
10539
10797
|
|
|
10798
|
+
export class DescribeBackupTasksResponseBodyBackupJobs extends $tea.Model {
|
|
10799
|
+
backupSetStatus?: string;
|
|
10800
|
+
backupStartTime?: string;
|
|
10801
|
+
backupjobId?: number;
|
|
10802
|
+
jobMode?: string;
|
|
10803
|
+
progress?: string;
|
|
10804
|
+
static names(): { [key: string]: string } {
|
|
10805
|
+
return {
|
|
10806
|
+
backupSetStatus: 'BackupSetStatus',
|
|
10807
|
+
backupStartTime: 'BackupStartTime',
|
|
10808
|
+
backupjobId: 'BackupjobId',
|
|
10809
|
+
jobMode: 'JobMode',
|
|
10810
|
+
progress: 'Progress',
|
|
10811
|
+
};
|
|
10812
|
+
}
|
|
10813
|
+
|
|
10814
|
+
static types(): { [key: string]: any } {
|
|
10815
|
+
return {
|
|
10816
|
+
backupSetStatus: 'string',
|
|
10817
|
+
backupStartTime: 'string',
|
|
10818
|
+
backupjobId: 'number',
|
|
10819
|
+
jobMode: 'string',
|
|
10820
|
+
progress: 'string',
|
|
10821
|
+
};
|
|
10822
|
+
}
|
|
10823
|
+
|
|
10824
|
+
constructor(map?: { [key: string]: any }) {
|
|
10825
|
+
super(map);
|
|
10826
|
+
}
|
|
10827
|
+
}
|
|
10828
|
+
|
|
10540
10829
|
export class DescribeBackupsResponseBodyBackupsBackup extends $tea.Model {
|
|
10541
10830
|
backupDBNames?: string;
|
|
10542
10831
|
backupDownloadURL?: string;
|
|
10543
10832
|
backupEndTime?: string;
|
|
10544
10833
|
backupId?: number;
|
|
10545
10834
|
backupIntranetDownloadURL?: string;
|
|
10835
|
+
backupJobId?: number;
|
|
10546
10836
|
backupMethod?: string;
|
|
10547
10837
|
backupMode?: string;
|
|
10548
10838
|
backupSize?: number;
|
|
@@ -10556,6 +10846,7 @@ export class DescribeBackupsResponseBodyBackupsBackup extends $tea.Model {
|
|
|
10556
10846
|
backupEndTime: 'BackupEndTime',
|
|
10557
10847
|
backupId: 'BackupId',
|
|
10558
10848
|
backupIntranetDownloadURL: 'BackupIntranetDownloadURL',
|
|
10849
|
+
backupJobId: 'BackupJobId',
|
|
10559
10850
|
backupMethod: 'BackupMethod',
|
|
10560
10851
|
backupMode: 'BackupMode',
|
|
10561
10852
|
backupSize: 'BackupSize',
|
|
@@ -10572,6 +10863,7 @@ export class DescribeBackupsResponseBodyBackupsBackup extends $tea.Model {
|
|
|
10572
10863
|
backupEndTime: 'string',
|
|
10573
10864
|
backupId: 'number',
|
|
10574
10865
|
backupIntranetDownloadURL: 'string',
|
|
10866
|
+
backupJobId: 'number',
|
|
10575
10867
|
backupMethod: 'string',
|
|
10576
10868
|
backupMode: 'string',
|
|
10577
10869
|
backupSize: 'number',
|
|
@@ -12045,14 +12337,39 @@ export class DescribeInstanceAutoRenewalAttributeResponseBodyItems extends $tea.
|
|
|
12045
12337
|
}
|
|
12046
12338
|
}
|
|
12047
12339
|
|
|
12048
|
-
export class
|
|
12049
|
-
|
|
12050
|
-
|
|
12340
|
+
export class DescribeInstanceRecoverTimeResponseBodyRestoreRanges extends $tea.Model {
|
|
12341
|
+
restoreBeginTime?: string;
|
|
12342
|
+
restoreEndTime?: string;
|
|
12343
|
+
restoreType?: string;
|
|
12051
12344
|
static names(): { [key: string]: string } {
|
|
12052
12345
|
return {
|
|
12053
|
-
|
|
12054
|
-
|
|
12055
|
-
|
|
12346
|
+
restoreBeginTime: 'RestoreBeginTime',
|
|
12347
|
+
restoreEndTime: 'RestoreEndTime',
|
|
12348
|
+
restoreType: 'RestoreType',
|
|
12349
|
+
};
|
|
12350
|
+
}
|
|
12351
|
+
|
|
12352
|
+
static types(): { [key: string]: any } {
|
|
12353
|
+
return {
|
|
12354
|
+
restoreBeginTime: 'string',
|
|
12355
|
+
restoreEndTime: 'string',
|
|
12356
|
+
restoreType: 'string',
|
|
12357
|
+
};
|
|
12358
|
+
}
|
|
12359
|
+
|
|
12360
|
+
constructor(map?: { [key: string]: any }) {
|
|
12361
|
+
super(map);
|
|
12362
|
+
}
|
|
12363
|
+
}
|
|
12364
|
+
|
|
12365
|
+
export class DescribeKernelReleaseNotesResponseBodyReleaseNotesReleaseNote extends $tea.Model {
|
|
12366
|
+
kernelVersion?: string;
|
|
12367
|
+
releaseNote?: string;
|
|
12368
|
+
static names(): { [key: string]: string } {
|
|
12369
|
+
return {
|
|
12370
|
+
kernelVersion: 'KernelVersion',
|
|
12371
|
+
releaseNote: 'ReleaseNote',
|
|
12372
|
+
};
|
|
12056
12373
|
}
|
|
12057
12374
|
|
|
12058
12375
|
static types(): { [key: string]: any } {
|
|
@@ -12395,6 +12712,108 @@ export class DescribePriceResponseBodyOrderCoupons extends $tea.Model {
|
|
|
12395
12712
|
}
|
|
12396
12713
|
}
|
|
12397
12714
|
|
|
12715
|
+
export class DescribePriceResponseBodyOrderDepreciateInfoContractActivityOptionIds extends $tea.Model {
|
|
12716
|
+
optionId?: number[];
|
|
12717
|
+
static names(): { [key: string]: string } {
|
|
12718
|
+
return {
|
|
12719
|
+
optionId: 'OptionId',
|
|
12720
|
+
};
|
|
12721
|
+
}
|
|
12722
|
+
|
|
12723
|
+
static types(): { [key: string]: any } {
|
|
12724
|
+
return {
|
|
12725
|
+
optionId: { 'type': 'array', 'itemType': 'number' },
|
|
12726
|
+
};
|
|
12727
|
+
}
|
|
12728
|
+
|
|
12729
|
+
constructor(map?: { [key: string]: any }) {
|
|
12730
|
+
super(map);
|
|
12731
|
+
}
|
|
12732
|
+
}
|
|
12733
|
+
|
|
12734
|
+
export class DescribePriceResponseBodyOrderDepreciateInfoContractActivity extends $tea.Model {
|
|
12735
|
+
activityId?: number;
|
|
12736
|
+
activityName?: string;
|
|
12737
|
+
finalFee?: number;
|
|
12738
|
+
finalPromFee?: number;
|
|
12739
|
+
optionCode?: string;
|
|
12740
|
+
optionIds?: DescribePriceResponseBodyOrderDepreciateInfoContractActivityOptionIds;
|
|
12741
|
+
prodFee?: number;
|
|
12742
|
+
static names(): { [key: string]: string } {
|
|
12743
|
+
return {
|
|
12744
|
+
activityId: 'ActivityId',
|
|
12745
|
+
activityName: 'ActivityName',
|
|
12746
|
+
finalFee: 'FinalFee',
|
|
12747
|
+
finalPromFee: 'FinalPromFee',
|
|
12748
|
+
optionCode: 'OptionCode',
|
|
12749
|
+
optionIds: 'OptionIds',
|
|
12750
|
+
prodFee: 'ProdFee',
|
|
12751
|
+
};
|
|
12752
|
+
}
|
|
12753
|
+
|
|
12754
|
+
static types(): { [key: string]: any } {
|
|
12755
|
+
return {
|
|
12756
|
+
activityId: 'number',
|
|
12757
|
+
activityName: 'string',
|
|
12758
|
+
finalFee: 'number',
|
|
12759
|
+
finalPromFee: 'number',
|
|
12760
|
+
optionCode: 'string',
|
|
12761
|
+
optionIds: DescribePriceResponseBodyOrderDepreciateInfoContractActivityOptionIds,
|
|
12762
|
+
prodFee: 'number',
|
|
12763
|
+
};
|
|
12764
|
+
}
|
|
12765
|
+
|
|
12766
|
+
constructor(map?: { [key: string]: any }) {
|
|
12767
|
+
super(map);
|
|
12768
|
+
}
|
|
12769
|
+
}
|
|
12770
|
+
|
|
12771
|
+
export class DescribePriceResponseBodyOrderDepreciateInfo extends $tea.Model {
|
|
12772
|
+
cheapRate?: number;
|
|
12773
|
+
cheapStandAmount?: number;
|
|
12774
|
+
contractActivity?: DescribePriceResponseBodyOrderDepreciateInfoContractActivity;
|
|
12775
|
+
differential?: number;
|
|
12776
|
+
differentialName?: string;
|
|
12777
|
+
isContractActivity?: boolean;
|
|
12778
|
+
isShow?: string;
|
|
12779
|
+
listPrice?: number;
|
|
12780
|
+
monthPrice?: number;
|
|
12781
|
+
originalStandAmount?: number;
|
|
12782
|
+
static names(): { [key: string]: string } {
|
|
12783
|
+
return {
|
|
12784
|
+
cheapRate: 'CheapRate',
|
|
12785
|
+
cheapStandAmount: 'CheapStandAmount',
|
|
12786
|
+
contractActivity: 'ContractActivity',
|
|
12787
|
+
differential: 'Differential',
|
|
12788
|
+
differentialName: 'DifferentialName',
|
|
12789
|
+
isContractActivity: 'IsContractActivity',
|
|
12790
|
+
isShow: 'IsShow',
|
|
12791
|
+
listPrice: 'ListPrice',
|
|
12792
|
+
monthPrice: 'MonthPrice',
|
|
12793
|
+
originalStandAmount: 'OriginalStandAmount',
|
|
12794
|
+
};
|
|
12795
|
+
}
|
|
12796
|
+
|
|
12797
|
+
static types(): { [key: string]: any } {
|
|
12798
|
+
return {
|
|
12799
|
+
cheapRate: 'number',
|
|
12800
|
+
cheapStandAmount: 'number',
|
|
12801
|
+
contractActivity: DescribePriceResponseBodyOrderDepreciateInfoContractActivity,
|
|
12802
|
+
differential: 'number',
|
|
12803
|
+
differentialName: 'string',
|
|
12804
|
+
isContractActivity: 'boolean',
|
|
12805
|
+
isShow: 'string',
|
|
12806
|
+
listPrice: 'number',
|
|
12807
|
+
monthPrice: 'number',
|
|
12808
|
+
originalStandAmount: 'number',
|
|
12809
|
+
};
|
|
12810
|
+
}
|
|
12811
|
+
|
|
12812
|
+
constructor(map?: { [key: string]: any }) {
|
|
12813
|
+
super(map);
|
|
12814
|
+
}
|
|
12815
|
+
}
|
|
12816
|
+
|
|
12398
12817
|
export class DescribePriceResponseBodyOrderRuleIds extends $tea.Model {
|
|
12399
12818
|
ruleId?: string[];
|
|
12400
12819
|
static names(): { [key: string]: string } {
|
|
@@ -12415,39 +12834,60 @@ export class DescribePriceResponseBodyOrderRuleIds extends $tea.Model {
|
|
|
12415
12834
|
}
|
|
12416
12835
|
|
|
12417
12836
|
export class DescribePriceResponseBodyOrder extends $tea.Model {
|
|
12837
|
+
code?: string;
|
|
12838
|
+
contractActivity?: boolean;
|
|
12418
12839
|
coupons?: DescribePriceResponseBodyOrderCoupons;
|
|
12419
12840
|
currency?: string;
|
|
12841
|
+
depreciateInfo?: DescribePriceResponseBodyOrderDepreciateInfo;
|
|
12420
12842
|
discountAmount?: string;
|
|
12843
|
+
isContractActivity?: boolean;
|
|
12844
|
+
message?: string;
|
|
12421
12845
|
optionalPromotions?: string;
|
|
12422
12846
|
originalAmount?: string;
|
|
12423
12847
|
promDetailList?: string;
|
|
12424
12848
|
ruleIds?: DescribePriceResponseBodyOrderRuleIds;
|
|
12425
12849
|
showDiscountInfo?: boolean;
|
|
12850
|
+
standDiscountPrice?: number;
|
|
12851
|
+
standPrice?: number;
|
|
12426
12852
|
tradeAmount?: string;
|
|
12427
12853
|
static names(): { [key: string]: string } {
|
|
12428
12854
|
return {
|
|
12855
|
+
code: 'Code',
|
|
12856
|
+
contractActivity: 'ContractActivity',
|
|
12429
12857
|
coupons: 'Coupons',
|
|
12430
12858
|
currency: 'Currency',
|
|
12859
|
+
depreciateInfo: 'DepreciateInfo',
|
|
12431
12860
|
discountAmount: 'DiscountAmount',
|
|
12861
|
+
isContractActivity: 'IsContractActivity',
|
|
12862
|
+
message: 'Message',
|
|
12432
12863
|
optionalPromotions: 'OptionalPromotions',
|
|
12433
12864
|
originalAmount: 'OriginalAmount',
|
|
12434
12865
|
promDetailList: 'PromDetailList',
|
|
12435
12866
|
ruleIds: 'RuleIds',
|
|
12436
12867
|
showDiscountInfo: 'ShowDiscountInfo',
|
|
12868
|
+
standDiscountPrice: 'StandDiscountPrice',
|
|
12869
|
+
standPrice: 'StandPrice',
|
|
12437
12870
|
tradeAmount: 'TradeAmount',
|
|
12438
12871
|
};
|
|
12439
12872
|
}
|
|
12440
12873
|
|
|
12441
12874
|
static types(): { [key: string]: any } {
|
|
12442
12875
|
return {
|
|
12876
|
+
code: 'string',
|
|
12877
|
+
contractActivity: 'boolean',
|
|
12443
12878
|
coupons: DescribePriceResponseBodyOrderCoupons,
|
|
12444
12879
|
currency: 'string',
|
|
12880
|
+
depreciateInfo: DescribePriceResponseBodyOrderDepreciateInfo,
|
|
12445
12881
|
discountAmount: 'string',
|
|
12882
|
+
isContractActivity: 'boolean',
|
|
12883
|
+
message: 'string',
|
|
12446
12884
|
optionalPromotions: 'string',
|
|
12447
12885
|
originalAmount: 'string',
|
|
12448
12886
|
promDetailList: 'string',
|
|
12449
12887
|
ruleIds: DescribePriceResponseBodyOrderRuleIds,
|
|
12450
12888
|
showDiscountInfo: 'boolean',
|
|
12889
|
+
standDiscountPrice: 'number',
|
|
12890
|
+
standPrice: 'number',
|
|
12451
12891
|
tradeAmount: 'string',
|
|
12452
12892
|
};
|
|
12453
12893
|
}
|
|
@@ -12501,6 +12941,474 @@ export class DescribePriceResponseBodyRules extends $tea.Model {
|
|
|
12501
12941
|
}
|
|
12502
12942
|
}
|
|
12503
12943
|
|
|
12944
|
+
export class DescribePriceResponseBodySubOrdersSubOrderDepreciateInfoContractActivityOptionIds extends $tea.Model {
|
|
12945
|
+
optionId?: number[];
|
|
12946
|
+
static names(): { [key: string]: string } {
|
|
12947
|
+
return {
|
|
12948
|
+
optionId: 'OptionId',
|
|
12949
|
+
};
|
|
12950
|
+
}
|
|
12951
|
+
|
|
12952
|
+
static types(): { [key: string]: any } {
|
|
12953
|
+
return {
|
|
12954
|
+
optionId: { 'type': 'array', 'itemType': 'number' },
|
|
12955
|
+
};
|
|
12956
|
+
}
|
|
12957
|
+
|
|
12958
|
+
constructor(map?: { [key: string]: any }) {
|
|
12959
|
+
super(map);
|
|
12960
|
+
}
|
|
12961
|
+
}
|
|
12962
|
+
|
|
12963
|
+
export class DescribePriceResponseBodySubOrdersSubOrderDepreciateInfoContractActivity extends $tea.Model {
|
|
12964
|
+
activityId?: number;
|
|
12965
|
+
activityName?: string;
|
|
12966
|
+
finalFee?: number;
|
|
12967
|
+
finalPromFee?: number;
|
|
12968
|
+
optionCode?: string;
|
|
12969
|
+
optionIds?: DescribePriceResponseBodySubOrdersSubOrderDepreciateInfoContractActivityOptionIds;
|
|
12970
|
+
prodFee?: number;
|
|
12971
|
+
static names(): { [key: string]: string } {
|
|
12972
|
+
return {
|
|
12973
|
+
activityId: 'ActivityId',
|
|
12974
|
+
activityName: 'ActivityName',
|
|
12975
|
+
finalFee: 'FinalFee',
|
|
12976
|
+
finalPromFee: 'FinalPromFee',
|
|
12977
|
+
optionCode: 'OptionCode',
|
|
12978
|
+
optionIds: 'OptionIds',
|
|
12979
|
+
prodFee: 'ProdFee',
|
|
12980
|
+
};
|
|
12981
|
+
}
|
|
12982
|
+
|
|
12983
|
+
static types(): { [key: string]: any } {
|
|
12984
|
+
return {
|
|
12985
|
+
activityId: 'number',
|
|
12986
|
+
activityName: 'string',
|
|
12987
|
+
finalFee: 'number',
|
|
12988
|
+
finalPromFee: 'number',
|
|
12989
|
+
optionCode: 'string',
|
|
12990
|
+
optionIds: DescribePriceResponseBodySubOrdersSubOrderDepreciateInfoContractActivityOptionIds,
|
|
12991
|
+
prodFee: 'number',
|
|
12992
|
+
};
|
|
12993
|
+
}
|
|
12994
|
+
|
|
12995
|
+
constructor(map?: { [key: string]: any }) {
|
|
12996
|
+
super(map);
|
|
12997
|
+
}
|
|
12998
|
+
}
|
|
12999
|
+
|
|
13000
|
+
export class DescribePriceResponseBodySubOrdersSubOrderDepreciateInfo extends $tea.Model {
|
|
13001
|
+
cheapRate?: number;
|
|
13002
|
+
cheapStandAmount?: number;
|
|
13003
|
+
contractActivity?: DescribePriceResponseBodySubOrdersSubOrderDepreciateInfoContractActivity;
|
|
13004
|
+
differential?: number;
|
|
13005
|
+
differentialName?: string;
|
|
13006
|
+
isContractActivity?: boolean;
|
|
13007
|
+
isShow?: string;
|
|
13008
|
+
listPrice?: number;
|
|
13009
|
+
monthPrice?: number;
|
|
13010
|
+
originalStandAmount?: number;
|
|
13011
|
+
static names(): { [key: string]: string } {
|
|
13012
|
+
return {
|
|
13013
|
+
cheapRate: 'CheapRate',
|
|
13014
|
+
cheapStandAmount: 'CheapStandAmount',
|
|
13015
|
+
contractActivity: 'ContractActivity',
|
|
13016
|
+
differential: 'Differential',
|
|
13017
|
+
differentialName: 'DifferentialName',
|
|
13018
|
+
isContractActivity: 'IsContractActivity',
|
|
13019
|
+
isShow: 'IsShow',
|
|
13020
|
+
listPrice: 'ListPrice',
|
|
13021
|
+
monthPrice: 'MonthPrice',
|
|
13022
|
+
originalStandAmount: 'OriginalStandAmount',
|
|
13023
|
+
};
|
|
13024
|
+
}
|
|
13025
|
+
|
|
13026
|
+
static types(): { [key: string]: any } {
|
|
13027
|
+
return {
|
|
13028
|
+
cheapRate: 'number',
|
|
13029
|
+
cheapStandAmount: 'number',
|
|
13030
|
+
contractActivity: DescribePriceResponseBodySubOrdersSubOrderDepreciateInfoContractActivity,
|
|
13031
|
+
differential: 'number',
|
|
13032
|
+
differentialName: 'string',
|
|
13033
|
+
isContractActivity: 'boolean',
|
|
13034
|
+
isShow: 'string',
|
|
13035
|
+
listPrice: 'number',
|
|
13036
|
+
monthPrice: 'number',
|
|
13037
|
+
originalStandAmount: 'number',
|
|
13038
|
+
};
|
|
13039
|
+
}
|
|
13040
|
+
|
|
13041
|
+
constructor(map?: { [key: string]: any }) {
|
|
13042
|
+
super(map);
|
|
13043
|
+
}
|
|
13044
|
+
}
|
|
13045
|
+
|
|
13046
|
+
export class DescribePriceResponseBodySubOrdersSubOrderModuleInstanceModuleInstanceDepreciateInfo extends $tea.Model {
|
|
13047
|
+
cheapRate?: number;
|
|
13048
|
+
cheapStandAmount?: number;
|
|
13049
|
+
differential?: number;
|
|
13050
|
+
differentialName?: string;
|
|
13051
|
+
isContractActivity?: boolean;
|
|
13052
|
+
isShow?: string;
|
|
13053
|
+
listPrice?: number;
|
|
13054
|
+
monthPrice?: number;
|
|
13055
|
+
originalStandAmount?: number;
|
|
13056
|
+
static names(): { [key: string]: string } {
|
|
13057
|
+
return {
|
|
13058
|
+
cheapRate: 'CheapRate',
|
|
13059
|
+
cheapStandAmount: 'CheapStandAmount',
|
|
13060
|
+
differential: 'Differential',
|
|
13061
|
+
differentialName: 'DifferentialName',
|
|
13062
|
+
isContractActivity: 'IsContractActivity',
|
|
13063
|
+
isShow: 'IsShow',
|
|
13064
|
+
listPrice: 'ListPrice',
|
|
13065
|
+
monthPrice: 'MonthPrice',
|
|
13066
|
+
originalStandAmount: 'OriginalStandAmount',
|
|
13067
|
+
};
|
|
13068
|
+
}
|
|
13069
|
+
|
|
13070
|
+
static types(): { [key: string]: any } {
|
|
13071
|
+
return {
|
|
13072
|
+
cheapRate: 'number',
|
|
13073
|
+
cheapStandAmount: 'number',
|
|
13074
|
+
differential: 'number',
|
|
13075
|
+
differentialName: 'string',
|
|
13076
|
+
isContractActivity: 'boolean',
|
|
13077
|
+
isShow: 'string',
|
|
13078
|
+
listPrice: 'number',
|
|
13079
|
+
monthPrice: 'number',
|
|
13080
|
+
originalStandAmount: 'number',
|
|
13081
|
+
};
|
|
13082
|
+
}
|
|
13083
|
+
|
|
13084
|
+
constructor(map?: { [key: string]: any }) {
|
|
13085
|
+
super(map);
|
|
13086
|
+
}
|
|
13087
|
+
}
|
|
13088
|
+
|
|
13089
|
+
export class DescribePriceResponseBodySubOrdersSubOrderModuleInstanceModuleInstanceModuleAttrsModuleAttr extends $tea.Model {
|
|
13090
|
+
code?: string;
|
|
13091
|
+
name?: string;
|
|
13092
|
+
type?: string;
|
|
13093
|
+
value?: string;
|
|
13094
|
+
static names(): { [key: string]: string } {
|
|
13095
|
+
return {
|
|
13096
|
+
code: 'Code',
|
|
13097
|
+
name: 'Name',
|
|
13098
|
+
type: 'Type',
|
|
13099
|
+
value: 'Value',
|
|
13100
|
+
};
|
|
13101
|
+
}
|
|
13102
|
+
|
|
13103
|
+
static types(): { [key: string]: any } {
|
|
13104
|
+
return {
|
|
13105
|
+
code: 'string',
|
|
13106
|
+
name: 'string',
|
|
13107
|
+
type: 'string',
|
|
13108
|
+
value: 'string',
|
|
13109
|
+
};
|
|
13110
|
+
}
|
|
13111
|
+
|
|
13112
|
+
constructor(map?: { [key: string]: any }) {
|
|
13113
|
+
super(map);
|
|
13114
|
+
}
|
|
13115
|
+
}
|
|
13116
|
+
|
|
13117
|
+
export class DescribePriceResponseBodySubOrdersSubOrderModuleInstanceModuleInstanceModuleAttrs extends $tea.Model {
|
|
13118
|
+
moduleAttr?: DescribePriceResponseBodySubOrdersSubOrderModuleInstanceModuleInstanceModuleAttrsModuleAttr[];
|
|
13119
|
+
static names(): { [key: string]: string } {
|
|
13120
|
+
return {
|
|
13121
|
+
moduleAttr: 'moduleAttr',
|
|
13122
|
+
};
|
|
13123
|
+
}
|
|
13124
|
+
|
|
13125
|
+
static types(): { [key: string]: any } {
|
|
13126
|
+
return {
|
|
13127
|
+
moduleAttr: { 'type': 'array', 'itemType': DescribePriceResponseBodySubOrdersSubOrderModuleInstanceModuleInstanceModuleAttrsModuleAttr },
|
|
13128
|
+
};
|
|
13129
|
+
}
|
|
13130
|
+
|
|
13131
|
+
constructor(map?: { [key: string]: any }) {
|
|
13132
|
+
super(map);
|
|
13133
|
+
}
|
|
13134
|
+
}
|
|
13135
|
+
|
|
13136
|
+
export class DescribePriceResponseBodySubOrdersSubOrderModuleInstanceModuleInstancePromDetailListPromDetal extends $tea.Model {
|
|
13137
|
+
activityExtInfo?: { [key: string]: any };
|
|
13138
|
+
derivedPromType?: string;
|
|
13139
|
+
finalPromFee?: number;
|
|
13140
|
+
optionCode?: string;
|
|
13141
|
+
promType?: string;
|
|
13142
|
+
promotionCode?: string;
|
|
13143
|
+
promotionId?: number;
|
|
13144
|
+
promotionName?: string;
|
|
13145
|
+
static names(): { [key: string]: string } {
|
|
13146
|
+
return {
|
|
13147
|
+
activityExtInfo: 'ActivityExtInfo',
|
|
13148
|
+
derivedPromType: 'DerivedPromType',
|
|
13149
|
+
finalPromFee: 'FinalPromFee',
|
|
13150
|
+
optionCode: 'OptionCode',
|
|
13151
|
+
promType: 'PromType',
|
|
13152
|
+
promotionCode: 'PromotionCode',
|
|
13153
|
+
promotionId: 'PromotionId',
|
|
13154
|
+
promotionName: 'PromotionName',
|
|
13155
|
+
};
|
|
13156
|
+
}
|
|
13157
|
+
|
|
13158
|
+
static types(): { [key: string]: any } {
|
|
13159
|
+
return {
|
|
13160
|
+
activityExtInfo: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
13161
|
+
derivedPromType: 'string',
|
|
13162
|
+
finalPromFee: 'number',
|
|
13163
|
+
optionCode: 'string',
|
|
13164
|
+
promType: 'string',
|
|
13165
|
+
promotionCode: 'string',
|
|
13166
|
+
promotionId: 'number',
|
|
13167
|
+
promotionName: 'string',
|
|
13168
|
+
};
|
|
13169
|
+
}
|
|
13170
|
+
|
|
13171
|
+
constructor(map?: { [key: string]: any }) {
|
|
13172
|
+
super(map);
|
|
13173
|
+
}
|
|
13174
|
+
}
|
|
13175
|
+
|
|
13176
|
+
export class DescribePriceResponseBodySubOrdersSubOrderModuleInstanceModuleInstancePromDetailList extends $tea.Model {
|
|
13177
|
+
promDetal?: DescribePriceResponseBodySubOrdersSubOrderModuleInstanceModuleInstancePromDetailListPromDetal[];
|
|
13178
|
+
static names(): { [key: string]: string } {
|
|
13179
|
+
return {
|
|
13180
|
+
promDetal: 'PromDetal',
|
|
13181
|
+
};
|
|
13182
|
+
}
|
|
13183
|
+
|
|
13184
|
+
static types(): { [key: string]: any } {
|
|
13185
|
+
return {
|
|
13186
|
+
promDetal: { 'type': 'array', 'itemType': DescribePriceResponseBodySubOrdersSubOrderModuleInstanceModuleInstancePromDetailListPromDetal },
|
|
13187
|
+
};
|
|
13188
|
+
}
|
|
13189
|
+
|
|
13190
|
+
constructor(map?: { [key: string]: any }) {
|
|
13191
|
+
super(map);
|
|
13192
|
+
}
|
|
13193
|
+
}
|
|
13194
|
+
|
|
13195
|
+
export class DescribePriceResponseBodySubOrdersSubOrderModuleInstanceModuleInstance extends $tea.Model {
|
|
13196
|
+
contractActivity?: boolean;
|
|
13197
|
+
cycleFee?: string;
|
|
13198
|
+
depreciateInfo?: DescribePriceResponseBodySubOrdersSubOrderModuleInstanceModuleInstanceDepreciateInfo;
|
|
13199
|
+
discountFee?: string;
|
|
13200
|
+
moduleAttrs?: DescribePriceResponseBodySubOrdersSubOrderModuleInstanceModuleInstanceModuleAttrs;
|
|
13201
|
+
moduleCode?: string;
|
|
13202
|
+
moduleId?: number;
|
|
13203
|
+
moduleName?: string;
|
|
13204
|
+
needOrderPay?: boolean;
|
|
13205
|
+
payFee?: number;
|
|
13206
|
+
pricingModule?: boolean;
|
|
13207
|
+
promDetailList?: DescribePriceResponseBodySubOrdersSubOrderModuleInstanceModuleInstancePromDetailList;
|
|
13208
|
+
standPrice?: number;
|
|
13209
|
+
totalProductFee?: number;
|
|
13210
|
+
static names(): { [key: string]: string } {
|
|
13211
|
+
return {
|
|
13212
|
+
contractActivity: 'ContractActivity',
|
|
13213
|
+
cycleFee: 'CycleFee',
|
|
13214
|
+
depreciateInfo: 'DepreciateInfo',
|
|
13215
|
+
discountFee: 'DiscountFee',
|
|
13216
|
+
moduleAttrs: 'ModuleAttrs',
|
|
13217
|
+
moduleCode: 'ModuleCode',
|
|
13218
|
+
moduleId: 'ModuleId',
|
|
13219
|
+
moduleName: 'ModuleName',
|
|
13220
|
+
needOrderPay: 'NeedOrderPay',
|
|
13221
|
+
payFee: 'PayFee',
|
|
13222
|
+
pricingModule: 'PricingModule',
|
|
13223
|
+
promDetailList: 'PromDetailList',
|
|
13224
|
+
standPrice: 'StandPrice',
|
|
13225
|
+
totalProductFee: 'TotalProductFee',
|
|
13226
|
+
};
|
|
13227
|
+
}
|
|
13228
|
+
|
|
13229
|
+
static types(): { [key: string]: any } {
|
|
13230
|
+
return {
|
|
13231
|
+
contractActivity: 'boolean',
|
|
13232
|
+
cycleFee: 'string',
|
|
13233
|
+
depreciateInfo: DescribePriceResponseBodySubOrdersSubOrderModuleInstanceModuleInstanceDepreciateInfo,
|
|
13234
|
+
discountFee: 'string',
|
|
13235
|
+
moduleAttrs: DescribePriceResponseBodySubOrdersSubOrderModuleInstanceModuleInstanceModuleAttrs,
|
|
13236
|
+
moduleCode: 'string',
|
|
13237
|
+
moduleId: 'number',
|
|
13238
|
+
moduleName: 'string',
|
|
13239
|
+
needOrderPay: 'boolean',
|
|
13240
|
+
payFee: 'number',
|
|
13241
|
+
pricingModule: 'boolean',
|
|
13242
|
+
promDetailList: DescribePriceResponseBodySubOrdersSubOrderModuleInstanceModuleInstancePromDetailList,
|
|
13243
|
+
standPrice: 'number',
|
|
13244
|
+
totalProductFee: 'number',
|
|
13245
|
+
};
|
|
13246
|
+
}
|
|
13247
|
+
|
|
13248
|
+
constructor(map?: { [key: string]: any }) {
|
|
13249
|
+
super(map);
|
|
13250
|
+
}
|
|
13251
|
+
}
|
|
13252
|
+
|
|
13253
|
+
export class DescribePriceResponseBodySubOrdersSubOrderModuleInstance extends $tea.Model {
|
|
13254
|
+
moduleInstance?: DescribePriceResponseBodySubOrdersSubOrderModuleInstanceModuleInstance[];
|
|
13255
|
+
static names(): { [key: string]: string } {
|
|
13256
|
+
return {
|
|
13257
|
+
moduleInstance: 'ModuleInstance',
|
|
13258
|
+
};
|
|
13259
|
+
}
|
|
13260
|
+
|
|
13261
|
+
static types(): { [key: string]: any } {
|
|
13262
|
+
return {
|
|
13263
|
+
moduleInstance: { 'type': 'array', 'itemType': DescribePriceResponseBodySubOrdersSubOrderModuleInstanceModuleInstance },
|
|
13264
|
+
};
|
|
13265
|
+
}
|
|
13266
|
+
|
|
13267
|
+
constructor(map?: { [key: string]: any }) {
|
|
13268
|
+
super(map);
|
|
13269
|
+
}
|
|
13270
|
+
}
|
|
13271
|
+
|
|
13272
|
+
export class DescribePriceResponseBodySubOrdersSubOrderOptionalPromotionsOptionalPromotionTargetArticleItemCodes extends $tea.Model {
|
|
13273
|
+
targetArticleItemCode?: string[];
|
|
13274
|
+
static names(): { [key: string]: string } {
|
|
13275
|
+
return {
|
|
13276
|
+
targetArticleItemCode: 'targetArticleItemCode',
|
|
13277
|
+
};
|
|
13278
|
+
}
|
|
13279
|
+
|
|
13280
|
+
static types(): { [key: string]: any } {
|
|
13281
|
+
return {
|
|
13282
|
+
targetArticleItemCode: { 'type': 'array', 'itemType': 'string' },
|
|
13283
|
+
};
|
|
13284
|
+
}
|
|
13285
|
+
|
|
13286
|
+
constructor(map?: { [key: string]: any }) {
|
|
13287
|
+
super(map);
|
|
13288
|
+
}
|
|
13289
|
+
}
|
|
13290
|
+
|
|
13291
|
+
export class DescribePriceResponseBodySubOrdersSubOrderOptionalPromotionsOptionalPromotion extends $tea.Model {
|
|
13292
|
+
activityCategory?: string;
|
|
13293
|
+
activityExtInfo?: { [key: string]: any };
|
|
13294
|
+
canPromFee?: number;
|
|
13295
|
+
optionCode?: string;
|
|
13296
|
+
promotionName?: string;
|
|
13297
|
+
promotionOptionNo?: string;
|
|
13298
|
+
selected?: boolean;
|
|
13299
|
+
show?: boolean;
|
|
13300
|
+
targetArticleItemCodes?: DescribePriceResponseBodySubOrdersSubOrderOptionalPromotionsOptionalPromotionTargetArticleItemCodes;
|
|
13301
|
+
static names(): { [key: string]: string } {
|
|
13302
|
+
return {
|
|
13303
|
+
activityCategory: 'ActivityCategory',
|
|
13304
|
+
activityExtInfo: 'ActivityExtInfo',
|
|
13305
|
+
canPromFee: 'CanPromFee',
|
|
13306
|
+
optionCode: 'OptionCode',
|
|
13307
|
+
promotionName: 'PromotionName',
|
|
13308
|
+
promotionOptionNo: 'PromotionOptionNo',
|
|
13309
|
+
selected: 'Selected',
|
|
13310
|
+
show: 'Show',
|
|
13311
|
+
targetArticleItemCodes: 'TargetArticleItemCodes',
|
|
13312
|
+
};
|
|
13313
|
+
}
|
|
13314
|
+
|
|
13315
|
+
static types(): { [key: string]: any } {
|
|
13316
|
+
return {
|
|
13317
|
+
activityCategory: 'string',
|
|
13318
|
+
activityExtInfo: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
13319
|
+
canPromFee: 'number',
|
|
13320
|
+
optionCode: 'string',
|
|
13321
|
+
promotionName: 'string',
|
|
13322
|
+
promotionOptionNo: 'string',
|
|
13323
|
+
selected: 'boolean',
|
|
13324
|
+
show: 'boolean',
|
|
13325
|
+
targetArticleItemCodes: DescribePriceResponseBodySubOrdersSubOrderOptionalPromotionsOptionalPromotionTargetArticleItemCodes,
|
|
13326
|
+
};
|
|
13327
|
+
}
|
|
13328
|
+
|
|
13329
|
+
constructor(map?: { [key: string]: any }) {
|
|
13330
|
+
super(map);
|
|
13331
|
+
}
|
|
13332
|
+
}
|
|
13333
|
+
|
|
13334
|
+
export class DescribePriceResponseBodySubOrdersSubOrderOptionalPromotions extends $tea.Model {
|
|
13335
|
+
optionalPromotion?: DescribePriceResponseBodySubOrdersSubOrderOptionalPromotionsOptionalPromotion[];
|
|
13336
|
+
static names(): { [key: string]: string } {
|
|
13337
|
+
return {
|
|
13338
|
+
optionalPromotion: 'OptionalPromotion',
|
|
13339
|
+
};
|
|
13340
|
+
}
|
|
13341
|
+
|
|
13342
|
+
static types(): { [key: string]: any } {
|
|
13343
|
+
return {
|
|
13344
|
+
optionalPromotion: { 'type': 'array', 'itemType': DescribePriceResponseBodySubOrdersSubOrderOptionalPromotionsOptionalPromotion },
|
|
13345
|
+
};
|
|
13346
|
+
}
|
|
13347
|
+
|
|
13348
|
+
constructor(map?: { [key: string]: any }) {
|
|
13349
|
+
super(map);
|
|
13350
|
+
}
|
|
13351
|
+
}
|
|
13352
|
+
|
|
13353
|
+
export class DescribePriceResponseBodySubOrdersSubOrderPromDetailListPromDetal extends $tea.Model {
|
|
13354
|
+
activityExtInfo?: { [key: string]: any };
|
|
13355
|
+
derivedPromType?: string;
|
|
13356
|
+
finalPromFee?: number;
|
|
13357
|
+
optionCode?: string;
|
|
13358
|
+
promType?: string;
|
|
13359
|
+
promotionCode?: string;
|
|
13360
|
+
promotionId?: number;
|
|
13361
|
+
promotionName?: string;
|
|
13362
|
+
static names(): { [key: string]: string } {
|
|
13363
|
+
return {
|
|
13364
|
+
activityExtInfo: 'ActivityExtInfo',
|
|
13365
|
+
derivedPromType: 'DerivedPromType',
|
|
13366
|
+
finalPromFee: 'FinalPromFee',
|
|
13367
|
+
optionCode: 'OptionCode',
|
|
13368
|
+
promType: 'PromType',
|
|
13369
|
+
promotionCode: 'PromotionCode',
|
|
13370
|
+
promotionId: 'PromotionId',
|
|
13371
|
+
promotionName: 'PromotionName',
|
|
13372
|
+
};
|
|
13373
|
+
}
|
|
13374
|
+
|
|
13375
|
+
static types(): { [key: string]: any } {
|
|
13376
|
+
return {
|
|
13377
|
+
activityExtInfo: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
13378
|
+
derivedPromType: 'string',
|
|
13379
|
+
finalPromFee: 'number',
|
|
13380
|
+
optionCode: 'string',
|
|
13381
|
+
promType: 'string',
|
|
13382
|
+
promotionCode: 'string',
|
|
13383
|
+
promotionId: 'number',
|
|
13384
|
+
promotionName: 'string',
|
|
13385
|
+
};
|
|
13386
|
+
}
|
|
13387
|
+
|
|
13388
|
+
constructor(map?: { [key: string]: any }) {
|
|
13389
|
+
super(map);
|
|
13390
|
+
}
|
|
13391
|
+
}
|
|
13392
|
+
|
|
13393
|
+
export class DescribePriceResponseBodySubOrdersSubOrderPromDetailList extends $tea.Model {
|
|
13394
|
+
promDetal?: DescribePriceResponseBodySubOrdersSubOrderPromDetailListPromDetal[];
|
|
13395
|
+
static names(): { [key: string]: string } {
|
|
13396
|
+
return {
|
|
13397
|
+
promDetal: 'PromDetal',
|
|
13398
|
+
};
|
|
13399
|
+
}
|
|
13400
|
+
|
|
13401
|
+
static types(): { [key: string]: any } {
|
|
13402
|
+
return {
|
|
13403
|
+
promDetal: { 'type': 'array', 'itemType': DescribePriceResponseBodySubOrdersSubOrderPromDetailListPromDetal },
|
|
13404
|
+
};
|
|
13405
|
+
}
|
|
13406
|
+
|
|
13407
|
+
constructor(map?: { [key: string]: any }) {
|
|
13408
|
+
super(map);
|
|
13409
|
+
}
|
|
13410
|
+
}
|
|
13411
|
+
|
|
12504
13412
|
export class DescribePriceResponseBodySubOrdersSubOrderRuleIds extends $tea.Model {
|
|
12505
13413
|
ruleId?: string[];
|
|
12506
13414
|
static names(): { [key: string]: string } {
|
|
@@ -12521,27 +13429,54 @@ export class DescribePriceResponseBodySubOrdersSubOrderRuleIds extends $tea.Mode
|
|
|
12521
13429
|
}
|
|
12522
13430
|
|
|
12523
13431
|
export class DescribePriceResponseBodySubOrdersSubOrder extends $tea.Model {
|
|
13432
|
+
contractActivity?: boolean;
|
|
13433
|
+
depreciateInfo?: DescribePriceResponseBodySubOrdersSubOrderDepreciateInfo;
|
|
12524
13434
|
discountAmount?: string;
|
|
12525
13435
|
instanceId?: string;
|
|
13436
|
+
isContractActivity?: boolean;
|
|
13437
|
+
isNewOfficialActivity?: string;
|
|
13438
|
+
moduleInstance?: DescribePriceResponseBodySubOrdersSubOrderModuleInstance;
|
|
13439
|
+
optionalPromotions?: DescribePriceResponseBodySubOrdersSubOrderOptionalPromotions;
|
|
12526
13440
|
originalAmount?: string;
|
|
13441
|
+
promDetailList?: DescribePriceResponseBodySubOrdersSubOrderPromDetailList;
|
|
12527
13442
|
ruleIds?: DescribePriceResponseBodySubOrdersSubOrderRuleIds;
|
|
13443
|
+
standDiscountPrice?: number;
|
|
13444
|
+
standPrice?: number;
|
|
12528
13445
|
tradeAmount?: string;
|
|
12529
13446
|
static names(): { [key: string]: string } {
|
|
12530
13447
|
return {
|
|
13448
|
+
contractActivity: 'ContractActivity',
|
|
13449
|
+
depreciateInfo: 'DepreciateInfo',
|
|
12531
13450
|
discountAmount: 'DiscountAmount',
|
|
12532
13451
|
instanceId: 'InstanceId',
|
|
13452
|
+
isContractActivity: 'IsContractActivity',
|
|
13453
|
+
isNewOfficialActivity: 'IsNewOfficialActivity',
|
|
13454
|
+
moduleInstance: 'ModuleInstance',
|
|
13455
|
+
optionalPromotions: 'OptionalPromotions',
|
|
12533
13456
|
originalAmount: 'OriginalAmount',
|
|
13457
|
+
promDetailList: 'PromDetailList',
|
|
12534
13458
|
ruleIds: 'RuleIds',
|
|
13459
|
+
standDiscountPrice: 'StandDiscountPrice',
|
|
13460
|
+
standPrice: 'StandPrice',
|
|
12535
13461
|
tradeAmount: 'TradeAmount',
|
|
12536
13462
|
};
|
|
12537
13463
|
}
|
|
12538
13464
|
|
|
12539
13465
|
static types(): { [key: string]: any } {
|
|
12540
13466
|
return {
|
|
13467
|
+
contractActivity: 'boolean',
|
|
13468
|
+
depreciateInfo: DescribePriceResponseBodySubOrdersSubOrderDepreciateInfo,
|
|
12541
13469
|
discountAmount: 'string',
|
|
12542
13470
|
instanceId: 'string',
|
|
13471
|
+
isContractActivity: 'boolean',
|
|
13472
|
+
isNewOfficialActivity: 'string',
|
|
13473
|
+
moduleInstance: DescribePriceResponseBodySubOrdersSubOrderModuleInstance,
|
|
13474
|
+
optionalPromotions: DescribePriceResponseBodySubOrdersSubOrderOptionalPromotions,
|
|
12543
13475
|
originalAmount: 'string',
|
|
13476
|
+
promDetailList: DescribePriceResponseBodySubOrdersSubOrderPromDetailList,
|
|
12544
13477
|
ruleIds: DescribePriceResponseBodySubOrdersSubOrderRuleIds,
|
|
13478
|
+
standDiscountPrice: 'number',
|
|
13479
|
+
standPrice: 'number',
|
|
12545
13480
|
tradeAmount: 'string',
|
|
12546
13481
|
};
|
|
12547
13482
|
}
|
|
@@ -13876,7 +14811,6 @@ export default class Client extends OpenApi {
|
|
|
13876
14811
|
}
|
|
13877
14812
|
|
|
13878
14813
|
/**
|
|
13879
|
-
* ## Usage
|
|
13880
14814
|
* When you call this operation, the instance must be in the Running state.
|
|
13881
14815
|
*
|
|
13882
14816
|
* @param request CreateBackupRequest
|
|
@@ -13928,7 +14862,6 @@ export default class Client extends OpenApi {
|
|
|
13928
14862
|
}
|
|
13929
14863
|
|
|
13930
14864
|
/**
|
|
13931
|
-
* ## Usage
|
|
13932
14865
|
* When you call this operation, the instance must be in the Running state.
|
|
13933
14866
|
*
|
|
13934
14867
|
* @param request CreateBackupRequest
|
|
@@ -13940,7 +14873,9 @@ export default class Client extends OpenApi {
|
|
|
13940
14873
|
}
|
|
13941
14874
|
|
|
13942
14875
|
/**
|
|
13943
|
-
*
|
|
14876
|
+
* Make sure that you fully understand the billing methods and [pricing](https://www.aliyun.com/price/product#/mongodb/detail/mongodb_computeudr_dp_cn) of ApsaraDB for MongoDB before you call this operation.
|
|
14877
|
+
* For more information about the instance types of ApsaraDB for MongoDB instances, see [Instance types](https://www.alibabacloud.com/help/en/mongodb/product-overview/instance-types-1).
|
|
14878
|
+
* To create sharded cluster instances, you can call the [CreateShardingDBInstance](~~CreateShardingDBInstance~~) operation.
|
|
13944
14879
|
*
|
|
13945
14880
|
* @param request CreateDBInstanceRequest
|
|
13946
14881
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -14123,7 +15058,9 @@ export default class Client extends OpenApi {
|
|
|
14123
15058
|
}
|
|
14124
15059
|
|
|
14125
15060
|
/**
|
|
14126
|
-
*
|
|
15061
|
+
* Make sure that you fully understand the billing methods and [pricing](https://www.aliyun.com/price/product#/mongodb/detail/mongodb_computeudr_dp_cn) of ApsaraDB for MongoDB before you call this operation.
|
|
15062
|
+
* For more information about the instance types of ApsaraDB for MongoDB instances, see [Instance types](https://www.alibabacloud.com/help/en/mongodb/product-overview/instance-types-1).
|
|
15063
|
+
* To create sharded cluster instances, you can call the [CreateShardingDBInstance](~~CreateShardingDBInstance~~) operation.
|
|
14127
15064
|
*
|
|
14128
15065
|
* @param request CreateDBInstanceRequest
|
|
14129
15066
|
* @return CreateDBInstanceResponse
|
|
@@ -14295,7 +15232,8 @@ export default class Client extends OpenApi {
|
|
|
14295
15232
|
}
|
|
14296
15233
|
|
|
14297
15234
|
/**
|
|
14298
|
-
*
|
|
15235
|
+
* Before you call this operation, make sure that you fully understand the billing methods and [pricing](https://www.alibabacloud.com/product/apsaradb-for-mongodb/pricing) of ApsaraDB for MongoDB.
|
|
15236
|
+
* This operation is applicable only to sharded cluster instances.
|
|
14299
15237
|
*
|
|
14300
15238
|
* @param request CreateNodeBatchRequest
|
|
14301
15239
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -14378,7 +15316,8 @@ export default class Client extends OpenApi {
|
|
|
14378
15316
|
}
|
|
14379
15317
|
|
|
14380
15318
|
/**
|
|
14381
|
-
*
|
|
15319
|
+
* Before you call this operation, make sure that you fully understand the billing methods and [pricing](https://www.alibabacloud.com/product/apsaradb-for-mongodb/pricing) of ApsaraDB for MongoDB.
|
|
15320
|
+
* This operation is applicable only to sharded cluster instances.
|
|
14382
15321
|
*
|
|
14383
15322
|
* @param request CreateNodeBatchRequest
|
|
14384
15323
|
* @return CreateNodeBatchResponse
|
|
@@ -14567,10 +15506,10 @@ export default class Client extends OpenApi {
|
|
|
14567
15506
|
}
|
|
14568
15507
|
|
|
14569
15508
|
/**
|
|
14570
|
-
* Before you call this operation, make sure that the instance meets the following requirements
|
|
14571
|
-
* * The instance is in the
|
|
14572
|
-
* *
|
|
14573
|
-
* > After
|
|
15509
|
+
* Before you call this operation, make sure that the instance meets the following requirements
|
|
15510
|
+
* * The instance is in the Running state.
|
|
15511
|
+
* * The billing method of the instance is pay-as-you-go.
|
|
15512
|
+
* > After an instance is released, all data in the instance is cleared and cannot be recovered. Proceed with caution.
|
|
14574
15513
|
*
|
|
14575
15514
|
* @param request DeleteDBInstanceRequest
|
|
14576
15515
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -14621,10 +15560,10 @@ export default class Client extends OpenApi {
|
|
|
14621
15560
|
}
|
|
14622
15561
|
|
|
14623
15562
|
/**
|
|
14624
|
-
* Before you call this operation, make sure that the instance meets the following requirements
|
|
14625
|
-
* * The instance is in the
|
|
14626
|
-
* *
|
|
14627
|
-
* > After
|
|
15563
|
+
* Before you call this operation, make sure that the instance meets the following requirements
|
|
15564
|
+
* * The instance is in the Running state.
|
|
15565
|
+
* * The billing method of the instance is pay-as-you-go.
|
|
15566
|
+
* > After an instance is released, all data in the instance is cleared and cannot be recovered. Proceed with caution.
|
|
14628
15567
|
*
|
|
14629
15568
|
* @param request DeleteDBInstanceRequest
|
|
14630
15569
|
* @return DeleteDBInstanceResponse
|
|
@@ -14692,8 +15631,8 @@ export default class Client extends OpenApi {
|
|
|
14692
15631
|
}
|
|
14693
15632
|
|
|
14694
15633
|
/**
|
|
14695
|
-
* Before you call this operation, make sure that the following requirements
|
|
14696
|
-
* * The instance is in the
|
|
15634
|
+
* Before you call this operation, make sure that the instance meets the following requirements:
|
|
15635
|
+
* * The instance is in the Running state.
|
|
14697
15636
|
* * The instance is a sharded cluster instance.
|
|
14698
15637
|
* * The billing method of the instance is pay-as-you-go.
|
|
14699
15638
|
* * The number of the shard or mongos nodes in the instance is greater than two.
|
|
@@ -14751,8 +15690,8 @@ export default class Client extends OpenApi {
|
|
|
14751
15690
|
}
|
|
14752
15691
|
|
|
14753
15692
|
/**
|
|
14754
|
-
* Before you call this operation, make sure that the following requirements
|
|
14755
|
-
* * The instance is in the
|
|
15693
|
+
* Before you call this operation, make sure that the instance meets the following requirements:
|
|
15694
|
+
* * The instance is in the Running state.
|
|
14756
15695
|
* * The instance is a sharded cluster instance.
|
|
14757
15696
|
* * The billing method of the instance is pay-as-you-go.
|
|
14758
15697
|
* * The number of the shard or mongos nodes in the instance is greater than two.
|
|
@@ -14766,7 +15705,7 @@ export default class Client extends OpenApi {
|
|
|
14766
15705
|
}
|
|
14767
15706
|
|
|
14768
15707
|
/**
|
|
14769
|
-
* >
|
|
15708
|
+
* > This operation can be used to query only the information of the root account.
|
|
14770
15709
|
*
|
|
14771
15710
|
* @param request DescribeAccountsRequest
|
|
14772
15711
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -14817,7 +15756,7 @@ export default class Client extends OpenApi {
|
|
|
14817
15756
|
}
|
|
14818
15757
|
|
|
14819
15758
|
/**
|
|
14820
|
-
* >
|
|
15759
|
+
* > This operation can be used to query only the information of the root account.
|
|
14821
15760
|
*
|
|
14822
15761
|
* @param request DescribeAccountsRequest
|
|
14823
15762
|
* @return DescribeAccountsResponse
|
|
@@ -15486,13 +16425,12 @@ export default class Client extends OpenApi {
|
|
|
15486
16425
|
}
|
|
15487
16426
|
|
|
15488
16427
|
/**
|
|
15489
|
-
*
|
|
15490
|
-
*
|
|
15491
|
-
* Before you call this operation, make sure that the ApsaraDB for MongoDB instance meets the following requirements:
|
|
16428
|
+
* You can call the [CreateDBInstance](~~61763~~) operation to restore a database for an ApsaraDB for MongoDB instance. For more information, see [Restore one database of an ApsaraDB for MongoDB instance](~~112274~~).
|
|
16429
|
+
* Before you call this operation, make sure that the instance meets the following requirements:
|
|
15492
16430
|
* * The instance was created after March 26, 2019.
|
|
15493
|
-
* * The instance is located in the China (Qingdao), China (Beijing), China (Zhangjiakou), China (Hohhot), China (Hangzhou), China (Shanghai), China (Shenzhen), or Singapore
|
|
16431
|
+
* * The instance is located in the China (Qingdao), China (Beijing), China (Zhangjiakou), China (Hohhot), China (Hangzhou), China (Shanghai), China (Shenzhen), or Singapore region. Other regions are not supported.
|
|
15494
16432
|
* * The instance is a replica set instance.
|
|
15495
|
-
* * The
|
|
16433
|
+
* * The instance runs MongoDB 3.4, MongoDB 4.0, or MongoDB 4.2. In addition, the instance uses local disks to store data.
|
|
15496
16434
|
* * The storage engine of the instance is WiredTiger.
|
|
15497
16435
|
*
|
|
15498
16436
|
* @param request DescribeBackupDBsRequest
|
|
@@ -15564,13 +16502,12 @@ export default class Client extends OpenApi {
|
|
|
15564
16502
|
}
|
|
15565
16503
|
|
|
15566
16504
|
/**
|
|
15567
|
-
*
|
|
15568
|
-
*
|
|
15569
|
-
* Before you call this operation, make sure that the ApsaraDB for MongoDB instance meets the following requirements:
|
|
16505
|
+
* You can call the [CreateDBInstance](~~61763~~) operation to restore a database for an ApsaraDB for MongoDB instance. For more information, see [Restore one database of an ApsaraDB for MongoDB instance](~~112274~~).
|
|
16506
|
+
* Before you call this operation, make sure that the instance meets the following requirements:
|
|
15570
16507
|
* * The instance was created after March 26, 2019.
|
|
15571
|
-
* * The instance is located in the China (Qingdao), China (Beijing), China (Zhangjiakou), China (Hohhot), China (Hangzhou), China (Shanghai), China (Shenzhen), or Singapore
|
|
16508
|
+
* * The instance is located in the China (Qingdao), China (Beijing), China (Zhangjiakou), China (Hohhot), China (Hangzhou), China (Shanghai), China (Shenzhen), or Singapore region. Other regions are not supported.
|
|
15572
16509
|
* * The instance is a replica set instance.
|
|
15573
|
-
* * The
|
|
16510
|
+
* * The instance runs MongoDB 3.4, MongoDB 4.0, or MongoDB 4.2. In addition, the instance uses local disks to store data.
|
|
15574
16511
|
* * The storage engine of the instance is WiredTiger.
|
|
15575
16512
|
*
|
|
15576
16513
|
* @param request DescribeBackupDBsRequest
|
|
@@ -15630,6 +16567,56 @@ export default class Client extends OpenApi {
|
|
|
15630
16567
|
return await this.describeBackupPolicyWithOptions(request, runtime);
|
|
15631
16568
|
}
|
|
15632
16569
|
|
|
16570
|
+
async describeBackupStorageWithOptions(request: DescribeBackupStorageRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBackupStorageResponse> {
|
|
16571
|
+
Util.validateModel(request);
|
|
16572
|
+
let query = OpenApiUtil.query(Util.toMap(request));
|
|
16573
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
16574
|
+
query: OpenApiUtil.query(query),
|
|
16575
|
+
});
|
|
16576
|
+
let params = new $OpenApi.Params({
|
|
16577
|
+
action: "DescribeBackupStorage",
|
|
16578
|
+
version: "2015-12-01",
|
|
16579
|
+
protocol: "HTTPS",
|
|
16580
|
+
pathname: "/",
|
|
16581
|
+
method: "GET",
|
|
16582
|
+
authType: "AK",
|
|
16583
|
+
style: "RPC",
|
|
16584
|
+
reqBodyType: "formData",
|
|
16585
|
+
bodyType: "json",
|
|
16586
|
+
});
|
|
16587
|
+
return $tea.cast<DescribeBackupStorageResponse>(await this.callApi(params, req, runtime), new DescribeBackupStorageResponse({}));
|
|
16588
|
+
}
|
|
16589
|
+
|
|
16590
|
+
async describeBackupStorage(request: DescribeBackupStorageRequest): Promise<DescribeBackupStorageResponse> {
|
|
16591
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
16592
|
+
return await this.describeBackupStorageWithOptions(request, runtime);
|
|
16593
|
+
}
|
|
16594
|
+
|
|
16595
|
+
async describeBackupTasksWithOptions(request: DescribeBackupTasksRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBackupTasksResponse> {
|
|
16596
|
+
Util.validateModel(request);
|
|
16597
|
+
let query = OpenApiUtil.query(Util.toMap(request));
|
|
16598
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
16599
|
+
query: OpenApiUtil.query(query),
|
|
16600
|
+
});
|
|
16601
|
+
let params = new $OpenApi.Params({
|
|
16602
|
+
action: "DescribeBackupTasks",
|
|
16603
|
+
version: "2015-12-01",
|
|
16604
|
+
protocol: "HTTPS",
|
|
16605
|
+
pathname: "/",
|
|
16606
|
+
method: "GET",
|
|
16607
|
+
authType: "AK",
|
|
16608
|
+
style: "RPC",
|
|
16609
|
+
reqBodyType: "formData",
|
|
16610
|
+
bodyType: "json",
|
|
16611
|
+
});
|
|
16612
|
+
return $tea.cast<DescribeBackupTasksResponse>(await this.callApi(params, req, runtime), new DescribeBackupTasksResponse({}));
|
|
16613
|
+
}
|
|
16614
|
+
|
|
16615
|
+
async describeBackupTasks(request: DescribeBackupTasksRequest): Promise<DescribeBackupTasksResponse> {
|
|
16616
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
16617
|
+
return await this.describeBackupTasksWithOptions(request, runtime);
|
|
16618
|
+
}
|
|
16619
|
+
|
|
15633
16620
|
async describeBackupsWithOptions(request: DescribeBackupsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBackupsResponse> {
|
|
15634
16621
|
Util.validateModel(request);
|
|
15635
16622
|
let query = { };
|
|
@@ -15885,7 +16872,6 @@ export default class Client extends OpenApi {
|
|
|
15885
16872
|
}
|
|
15886
16873
|
|
|
15887
16874
|
/**
|
|
15888
|
-
* ## Usage
|
|
15889
16875
|
* When you call the DescribeDBInstanceEncryptionKey operation, the instance must have transparent data encryption (TDE) enabled in BYOK mode. You can call the [ModifyDBInstanceTDE](~~131267~~) operation to enable TDE.
|
|
15890
16876
|
*
|
|
15891
16877
|
* @param request DescribeDBInstanceEncryptionKeyRequest
|
|
@@ -15937,7 +16923,6 @@ export default class Client extends OpenApi {
|
|
|
15937
16923
|
}
|
|
15938
16924
|
|
|
15939
16925
|
/**
|
|
15940
|
-
* ## Usage
|
|
15941
16926
|
* When you call the DescribeDBInstanceEncryptionKey operation, the instance must have transparent data encryption (TDE) enabled in BYOK mode. You can call the [ModifyDBInstanceTDE](~~131267~~) operation to enable TDE.
|
|
15942
16927
|
*
|
|
15943
16928
|
* @param request DescribeDBInstanceEncryptionKeyRequest
|
|
@@ -16193,9 +17178,9 @@ export default class Client extends OpenApi {
|
|
|
16193
17178
|
}
|
|
16194
17179
|
|
|
16195
17180
|
/**
|
|
16196
|
-
* > For more information about
|
|
16197
|
-
* Before you call this operation, make sure that the
|
|
16198
|
-
* *
|
|
17181
|
+
* > For more information about TDE, see [TDE](~~131048~~).
|
|
17182
|
+
* Before you call this operation, make sure that the instance meets the following requirements:
|
|
17183
|
+
* * The instance is a replica set or sharded cluster instance.
|
|
16199
17184
|
* * The storage engine of the instance is WiredTiger.
|
|
16200
17185
|
* * The database engine version of the instance is 4.0 or 4.2. If the database engine version is earlier than 4.0, you can call the [UpgradeDBInstanceEngineVersion](~~67608~~) operation to upgrade the database engine.
|
|
16201
17186
|
*
|
|
@@ -16244,9 +17229,9 @@ export default class Client extends OpenApi {
|
|
|
16244
17229
|
}
|
|
16245
17230
|
|
|
16246
17231
|
/**
|
|
16247
|
-
* > For more information about
|
|
16248
|
-
* Before you call this operation, make sure that the
|
|
16249
|
-
* *
|
|
17232
|
+
* > For more information about TDE, see [TDE](~~131048~~).
|
|
17233
|
+
* Before you call this operation, make sure that the instance meets the following requirements:
|
|
17234
|
+
* * The instance is a replica set or sharded cluster instance.
|
|
16250
17235
|
* * The storage engine of the instance is WiredTiger.
|
|
16251
17236
|
* * The database engine version of the instance is 4.0 or 4.2. If the database engine version is earlier than 4.0, you can call the [UpgradeDBInstanceEngineVersion](~~67608~~) operation to upgrade the database engine.
|
|
16252
17237
|
*
|
|
@@ -16401,7 +17386,7 @@ export default class Client extends OpenApi {
|
|
|
16401
17386
|
}
|
|
16402
17387
|
|
|
16403
17388
|
/**
|
|
16404
|
-
* * If you do not specify an instance when you call this operation, the overview information of all instances in
|
|
17389
|
+
* * If you do not specify an instance when you call this operation, the overview information of all instances in a specific region within this account is returned.
|
|
16405
17390
|
* * Paged query is disabled for this operation.
|
|
16406
17391
|
*
|
|
16407
17392
|
* @param request DescribeDBInstancesOverviewRequest
|
|
@@ -16493,7 +17478,7 @@ export default class Client extends OpenApi {
|
|
|
16493
17478
|
}
|
|
16494
17479
|
|
|
16495
17480
|
/**
|
|
16496
|
-
* * If you do not specify an instance when you call this operation, the overview information of all instances in
|
|
17481
|
+
* * If you do not specify an instance when you call this operation, the overview information of all instances in a specific region within this account is returned.
|
|
16497
17482
|
* * Paged query is disabled for this operation.
|
|
16498
17483
|
*
|
|
16499
17484
|
* @param request DescribeDBInstancesOverviewRequest
|
|
@@ -16878,6 +17863,31 @@ export default class Client extends OpenApi {
|
|
|
16878
17863
|
return await this.describeInstanceAutoRenewalAttributeWithOptions(request, runtime);
|
|
16879
17864
|
}
|
|
16880
17865
|
|
|
17866
|
+
async describeInstanceRecoverTimeWithOptions(request: DescribeInstanceRecoverTimeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeInstanceRecoverTimeResponse> {
|
|
17867
|
+
Util.validateModel(request);
|
|
17868
|
+
let query = OpenApiUtil.query(Util.toMap(request));
|
|
17869
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
17870
|
+
query: OpenApiUtil.query(query),
|
|
17871
|
+
});
|
|
17872
|
+
let params = new $OpenApi.Params({
|
|
17873
|
+
action: "DescribeInstanceRecoverTime",
|
|
17874
|
+
version: "2015-12-01",
|
|
17875
|
+
protocol: "HTTPS",
|
|
17876
|
+
pathname: "/",
|
|
17877
|
+
method: "GET",
|
|
17878
|
+
authType: "AK",
|
|
17879
|
+
style: "RPC",
|
|
17880
|
+
reqBodyType: "formData",
|
|
17881
|
+
bodyType: "json",
|
|
17882
|
+
});
|
|
17883
|
+
return $tea.cast<DescribeInstanceRecoverTimeResponse>(await this.callApi(params, req, runtime), new DescribeInstanceRecoverTimeResponse({}));
|
|
17884
|
+
}
|
|
17885
|
+
|
|
17886
|
+
async describeInstanceRecoverTime(request: DescribeInstanceRecoverTimeRequest): Promise<DescribeInstanceRecoverTimeResponse> {
|
|
17887
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
17888
|
+
return await this.describeInstanceRecoverTimeWithOptions(request, runtime);
|
|
17889
|
+
}
|
|
17890
|
+
|
|
16881
17891
|
async describeKernelReleaseNotesWithOptions(request: DescribeKernelReleaseNotesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeKernelReleaseNotesResponse> {
|
|
16882
17892
|
Util.validateModel(request);
|
|
16883
17893
|
let query = { };
|
|
@@ -18621,6 +19631,10 @@ export default class Client extends OpenApi {
|
|
|
18621
19631
|
query["EnableBackupLog"] = request.enableBackupLog;
|
|
18622
19632
|
}
|
|
18623
19633
|
|
|
19634
|
+
if (!Util.isUnset(request.highFrequencyBackupRetention)) {
|
|
19635
|
+
query["HighFrequencyBackupRetention"] = request.highFrequencyBackupRetention;
|
|
19636
|
+
}
|
|
19637
|
+
|
|
18624
19638
|
if (!Util.isUnset(request.logBackupRetentionPeriod)) {
|
|
18625
19639
|
query["LogBackupRetentionPeriod"] = request.logBackupRetentionPeriod;
|
|
18626
19640
|
}
|
|
@@ -18649,10 +19663,6 @@ export default class Client extends OpenApi {
|
|
|
18649
19663
|
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
18650
19664
|
}
|
|
18651
19665
|
|
|
18652
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
18653
|
-
query["SecurityToken"] = request.securityToken;
|
|
18654
|
-
}
|
|
18655
|
-
|
|
18656
19666
|
if (!Util.isUnset(request.snapshotBackupType)) {
|
|
18657
19667
|
query["SnapshotBackupType"] = request.snapshotBackupType;
|
|
18658
19668
|
}
|
|
@@ -19746,8 +20756,9 @@ export default class Client extends OpenApi {
|
|
|
19746
20756
|
}
|
|
19747
20757
|
|
|
19748
20758
|
/**
|
|
19749
|
-
* Make sure that you fully understand the billing methods and [pricing](https://www.
|
|
19750
|
-
* This operation is applicable to
|
|
20759
|
+
* Make sure that you fully understand the billing methods and [pricing](https://www.alibabacloud.com/zh/product/apsaradb-for-mongodb/pricing) of ApsaraDB for MongoDB before you call this operation.
|
|
20760
|
+
* This operation is applicable only to sharded cluster instances.
|
|
20761
|
+
* When you upgrade or downgrade the configurations of multiple sharded cluster instances in batches, the specifications of the instances are limited. For example, if you want to expand the storage capacity of the instances, the storage capacity of the instances after expansion must be greater than the current capacity. When the specifications of multiple sharded cluster instances are different, limits are defined based on the specifications of a random sharded cluster instance. In this case, you may be unable to upgrade or downgrade the configurations of the instances. In this case, we recommend that you call the ModifyNodeSpec operation to individually change the configurations of each sharded cluster instance.
|
|
19751
20762
|
*
|
|
19752
20763
|
* @param request ModifyNodeSpecBatchRequest
|
|
19753
20764
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -19826,8 +20837,9 @@ export default class Client extends OpenApi {
|
|
|
19826
20837
|
}
|
|
19827
20838
|
|
|
19828
20839
|
/**
|
|
19829
|
-
* Make sure that you fully understand the billing methods and [pricing](https://www.
|
|
19830
|
-
* This operation is applicable to
|
|
20840
|
+
* Make sure that you fully understand the billing methods and [pricing](https://www.alibabacloud.com/zh/product/apsaradb-for-mongodb/pricing) of ApsaraDB for MongoDB before you call this operation.
|
|
20841
|
+
* This operation is applicable only to sharded cluster instances.
|
|
20842
|
+
* When you upgrade or downgrade the configurations of multiple sharded cluster instances in batches, the specifications of the instances are limited. For example, if you want to expand the storage capacity of the instances, the storage capacity of the instances after expansion must be greater than the current capacity. When the specifications of multiple sharded cluster instances are different, limits are defined based on the specifications of a random sharded cluster instance. In this case, you may be unable to upgrade or downgrade the configurations of the instances. In this case, we recommend that you call the ModifyNodeSpec operation to individually change the configurations of each sharded cluster instance.
|
|
19831
20843
|
*
|
|
19832
20844
|
* @param request ModifyNodeSpecBatchRequest
|
|
19833
20845
|
* @return ModifyNodeSpecBatchResponse
|
|
@@ -20370,7 +21382,7 @@ export default class Client extends OpenApi {
|
|
|
20370
21382
|
}
|
|
20371
21383
|
|
|
20372
21384
|
/**
|
|
20373
|
-
* > This operation can reset only the password of the root account of an instance.
|
|
21385
|
+
* > This operation can be used to reset only the password of the root account of an instance.
|
|
20374
21386
|
*
|
|
20375
21387
|
* @param request ResetAccountPasswordRequest
|
|
20376
21388
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -20429,7 +21441,7 @@ export default class Client extends OpenApi {
|
|
|
20429
21441
|
}
|
|
20430
21442
|
|
|
20431
21443
|
/**
|
|
20432
|
-
* > This operation can reset only the password of the root account of an instance.
|
|
21444
|
+
* > This operation can be used to reset only the password of the root account of an instance.
|
|
20433
21445
|
*
|
|
20434
21446
|
* @param request ResetAccountPasswordRequest
|
|
20435
21447
|
* @return ResetAccountPasswordResponse
|
|
@@ -20502,9 +21514,8 @@ export default class Client extends OpenApi {
|
|
|
20502
21514
|
}
|
|
20503
21515
|
|
|
20504
21516
|
/**
|
|
20505
|
-
* This operation is
|
|
20506
|
-
* This operation
|
|
20507
|
-
* > This operation overwrites the data of the current instance, and the data cannot be recovered. Proceed with caution.
|
|
21517
|
+
* This operation is applicable to replica set instances, but cannot be performed on standalone instances and sharded cluster instances. You can use the following methods to clone an instance: [Create an instance from a backup point](~~55013~~) to clone a standalone instance. Call the [CreateShardingDBInstance](~~61884~~) operation to clone a sharded cluster instance.
|
|
21518
|
+
* > This operation overwrites the data of the current instance, and the data cannot be recovered. Proceed with caution.
|
|
20508
21519
|
*
|
|
20509
21520
|
* @param request RestoreDBInstanceRequest
|
|
20510
21521
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -20555,9 +21566,8 @@ export default class Client extends OpenApi {
|
|
|
20555
21566
|
}
|
|
20556
21567
|
|
|
20557
21568
|
/**
|
|
20558
|
-
* This operation is
|
|
20559
|
-
* This operation
|
|
20560
|
-
* > This operation overwrites the data of the current instance, and the data cannot be recovered. Proceed with caution.
|
|
21569
|
+
* This operation is applicable to replica set instances, but cannot be performed on standalone instances and sharded cluster instances. You can use the following methods to clone an instance: [Create an instance from a backup point](~~55013~~) to clone a standalone instance. Call the [CreateShardingDBInstance](~~61884~~) operation to clone a sharded cluster instance.
|
|
21570
|
+
* > This operation overwrites the data of the current instance, and the data cannot be recovered. Proceed with caution.
|
|
20561
21571
|
*
|
|
20562
21572
|
* @param request RestoreDBInstanceRequest
|
|
20563
21573
|
* @return RestoreDBInstanceResponse
|
|
@@ -20644,9 +21654,9 @@ export default class Client extends OpenApi {
|
|
|
20644
21654
|
}
|
|
20645
21655
|
|
|
20646
21656
|
/**
|
|
20647
|
-
*
|
|
20648
|
-
* * 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
|
|
20649
|
-
* * If the tag you specify does not exist, this tag is automatically created and bound to the specified instance.
|
|
21657
|
+
* If you have a large number of instances, you can create multiple tags, bind the tags to the instances, and filter the instances by tag.
|
|
21658
|
+
* * 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.
|
|
21659
|
+
* * If the tag that you specify does not exist, this tag is automatically created and bound to the specified instance.
|
|
20650
21660
|
* * If a tag that has the same key is already bound to the instance, the new tag overwrites the existing tag.
|
|
20651
21661
|
* * You can bind up to 20 tags to each instance.
|
|
20652
21662
|
* * You can bind tags to up to 50 instances each time you call the operation.
|
|
@@ -20712,9 +21722,9 @@ export default class Client extends OpenApi {
|
|
|
20712
21722
|
}
|
|
20713
21723
|
|
|
20714
21724
|
/**
|
|
20715
|
-
*
|
|
20716
|
-
* * 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
|
|
20717
|
-
* * If the tag you specify does not exist, this tag is automatically created and bound to the specified instance.
|
|
21725
|
+
* If you have a large number of instances, you can create multiple tags, bind the tags to the instances, and filter the instances by tag.
|
|
21726
|
+
* * 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.
|
|
21727
|
+
* * If the tag that you specify does not exist, this tag is automatically created and bound to the specified instance.
|
|
20718
21728
|
* * If a tag that has the same key is already bound to the instance, the new tag overwrites the existing tag.
|
|
20719
21729
|
* * You can bind up to 20 tags to each instance.
|
|
20720
21730
|
* * You can bind tags to up to 50 instances each time you call the operation.
|