@alicloud/polardbx20200202 1.0.2 → 1.0.6
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 +705 -309
- package/dist/client.js +2824 -797
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +3413 -1019
package/dist/client.d.ts
CHANGED
|
@@ -50,10 +50,9 @@ export declare class AllocateInstancePublicConnectionResponse extends $tea.Model
|
|
|
50
50
|
[key: string]: any;
|
|
51
51
|
});
|
|
52
52
|
}
|
|
53
|
-
export declare class
|
|
54
|
-
|
|
53
|
+
export declare class CancelActiveOperationTasksRequest extends $tea.Model {
|
|
54
|
+
ids?: string;
|
|
55
55
|
regionId?: string;
|
|
56
|
-
scaleOutToken?: string;
|
|
57
56
|
static names(): {
|
|
58
57
|
[key: string]: string;
|
|
59
58
|
};
|
|
@@ -64,7 +63,50 @@ export declare class CancelPolarxOrderRequest extends $tea.Model {
|
|
|
64
63
|
[key: string]: any;
|
|
65
64
|
});
|
|
66
65
|
}
|
|
67
|
-
export declare class
|
|
66
|
+
export declare class CancelActiveOperationTasksResponseBody extends $tea.Model {
|
|
67
|
+
ids?: string;
|
|
68
|
+
requestId?: string;
|
|
69
|
+
static names(): {
|
|
70
|
+
[key: string]: string;
|
|
71
|
+
};
|
|
72
|
+
static types(): {
|
|
73
|
+
[key: string]: any;
|
|
74
|
+
};
|
|
75
|
+
constructor(map?: {
|
|
76
|
+
[key: string]: any;
|
|
77
|
+
});
|
|
78
|
+
}
|
|
79
|
+
export declare class CancelActiveOperationTasksResponse extends $tea.Model {
|
|
80
|
+
headers: {
|
|
81
|
+
[key: string]: string;
|
|
82
|
+
};
|
|
83
|
+
body: CancelActiveOperationTasksResponseBody;
|
|
84
|
+
static names(): {
|
|
85
|
+
[key: string]: string;
|
|
86
|
+
};
|
|
87
|
+
static types(): {
|
|
88
|
+
[key: string]: any;
|
|
89
|
+
};
|
|
90
|
+
constructor(map?: {
|
|
91
|
+
[key: string]: any;
|
|
92
|
+
});
|
|
93
|
+
}
|
|
94
|
+
export declare class ChangeResourceGroupRequest extends $tea.Model {
|
|
95
|
+
newResourceGroupId?: string;
|
|
96
|
+
regionId?: string;
|
|
97
|
+
resourceId?: string;
|
|
98
|
+
resourceType?: string;
|
|
99
|
+
static names(): {
|
|
100
|
+
[key: string]: string;
|
|
101
|
+
};
|
|
102
|
+
static types(): {
|
|
103
|
+
[key: string]: any;
|
|
104
|
+
};
|
|
105
|
+
constructor(map?: {
|
|
106
|
+
[key: string]: any;
|
|
107
|
+
});
|
|
108
|
+
}
|
|
109
|
+
export declare class ChangeResourceGroupResponseBody extends $tea.Model {
|
|
68
110
|
requestId?: string;
|
|
69
111
|
static names(): {
|
|
70
112
|
[key: string]: string;
|
|
@@ -76,11 +118,11 @@ export declare class CancelPolarxOrderResponseBody extends $tea.Model {
|
|
|
76
118
|
[key: string]: any;
|
|
77
119
|
});
|
|
78
120
|
}
|
|
79
|
-
export declare class
|
|
121
|
+
export declare class ChangeResourceGroupResponse extends $tea.Model {
|
|
80
122
|
headers: {
|
|
81
123
|
[key: string]: string;
|
|
82
124
|
};
|
|
83
|
-
body:
|
|
125
|
+
body: ChangeResourceGroupResponseBody;
|
|
84
126
|
static names(): {
|
|
85
127
|
[key: string]: string;
|
|
86
128
|
};
|
|
@@ -331,24 +373,12 @@ export declare class CreateDBInstanceResponse extends $tea.Model {
|
|
|
331
373
|
[key: string]: any;
|
|
332
374
|
});
|
|
333
375
|
}
|
|
334
|
-
export declare class
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
isAutoRenew?: boolean;
|
|
340
|
-
masterInstId?: string;
|
|
341
|
-
mySQLVersion?: number;
|
|
342
|
-
payType?: string;
|
|
343
|
-
pricingCycle?: string;
|
|
344
|
-
quantity?: number;
|
|
376
|
+
export declare class CreateSuperAccountRequest extends $tea.Model {
|
|
377
|
+
accountDescription?: string;
|
|
378
|
+
accountName?: string;
|
|
379
|
+
accountPassword?: string;
|
|
380
|
+
DBInstanceName?: string;
|
|
345
381
|
regionId?: string;
|
|
346
|
-
specification?: string;
|
|
347
|
-
type?: string;
|
|
348
|
-
vpcId?: string;
|
|
349
|
-
vswitchId?: string;
|
|
350
|
-
zoneId?: string;
|
|
351
|
-
isHa?: boolean;
|
|
352
382
|
static names(): {
|
|
353
383
|
[key: string]: string;
|
|
354
384
|
};
|
|
@@ -359,8 +389,8 @@ export declare class CreatePolarxInstanceRequest extends $tea.Model {
|
|
|
359
389
|
[key: string]: any;
|
|
360
390
|
});
|
|
361
391
|
}
|
|
362
|
-
export declare class
|
|
363
|
-
|
|
392
|
+
export declare class CreateSuperAccountResponseBody extends $tea.Model {
|
|
393
|
+
message?: string;
|
|
364
394
|
requestId?: string;
|
|
365
395
|
success?: boolean;
|
|
366
396
|
static names(): {
|
|
@@ -373,11 +403,11 @@ export declare class CreatePolarxInstanceResponseBody extends $tea.Model {
|
|
|
373
403
|
[key: string]: any;
|
|
374
404
|
});
|
|
375
405
|
}
|
|
376
|
-
export declare class
|
|
406
|
+
export declare class CreateSuperAccountResponse extends $tea.Model {
|
|
377
407
|
headers: {
|
|
378
408
|
[key: string]: string;
|
|
379
409
|
};
|
|
380
|
-
body:
|
|
410
|
+
body: CreateSuperAccountResponseBody;
|
|
381
411
|
static names(): {
|
|
382
412
|
[key: string]: string;
|
|
383
413
|
};
|
|
@@ -388,10 +418,12 @@ export declare class CreatePolarxInstanceResponse extends $tea.Model {
|
|
|
388
418
|
[key: string]: any;
|
|
389
419
|
});
|
|
390
420
|
}
|
|
391
|
-
export declare class
|
|
421
|
+
export declare class DeleteAccountRequest extends $tea.Model {
|
|
422
|
+
accountName?: string;
|
|
392
423
|
DBInstanceName?: string;
|
|
393
|
-
nodeCount?: string;
|
|
394
424
|
regionId?: string;
|
|
425
|
+
securityAccountName?: string;
|
|
426
|
+
securityAccountPassword?: string;
|
|
395
427
|
static names(): {
|
|
396
428
|
[key: string]: string;
|
|
397
429
|
};
|
|
@@ -402,9 +434,10 @@ export declare class CreatePolarxOrderRequest extends $tea.Model {
|
|
|
402
434
|
[key: string]: any;
|
|
403
435
|
});
|
|
404
436
|
}
|
|
405
|
-
export declare class
|
|
406
|
-
|
|
437
|
+
export declare class DeleteAccountResponseBody extends $tea.Model {
|
|
438
|
+
message?: string;
|
|
407
439
|
requestId?: string;
|
|
440
|
+
success?: boolean;
|
|
408
441
|
static names(): {
|
|
409
442
|
[key: string]: string;
|
|
410
443
|
};
|
|
@@ -415,11 +448,11 @@ export declare class CreatePolarxOrderResponseBody extends $tea.Model {
|
|
|
415
448
|
[key: string]: any;
|
|
416
449
|
});
|
|
417
450
|
}
|
|
418
|
-
export declare class
|
|
451
|
+
export declare class DeleteAccountResponse extends $tea.Model {
|
|
419
452
|
headers: {
|
|
420
453
|
[key: string]: string;
|
|
421
454
|
};
|
|
422
|
-
body:
|
|
455
|
+
body: DeleteAccountResponseBody;
|
|
423
456
|
static names(): {
|
|
424
457
|
[key: string]: string;
|
|
425
458
|
};
|
|
@@ -430,11 +463,9 @@ export declare class CreatePolarxOrderResponse extends $tea.Model {
|
|
|
430
463
|
[key: string]: any;
|
|
431
464
|
});
|
|
432
465
|
}
|
|
433
|
-
export declare class
|
|
434
|
-
accountDescription?: string;
|
|
435
|
-
accountName?: string;
|
|
436
|
-
accountPassword?: string;
|
|
466
|
+
export declare class DeleteDBRequest extends $tea.Model {
|
|
437
467
|
DBInstanceName?: string;
|
|
468
|
+
dbName?: string;
|
|
438
469
|
regionId?: string;
|
|
439
470
|
static names(): {
|
|
440
471
|
[key: string]: string;
|
|
@@ -446,7 +477,7 @@ export declare class CreateSuperAccountRequest extends $tea.Model {
|
|
|
446
477
|
[key: string]: any;
|
|
447
478
|
});
|
|
448
479
|
}
|
|
449
|
-
export declare class
|
|
480
|
+
export declare class DeleteDBResponseBody extends $tea.Model {
|
|
450
481
|
message?: string;
|
|
451
482
|
requestId?: string;
|
|
452
483
|
success?: boolean;
|
|
@@ -460,11 +491,11 @@ export declare class CreateSuperAccountResponseBody extends $tea.Model {
|
|
|
460
491
|
[key: string]: any;
|
|
461
492
|
});
|
|
462
493
|
}
|
|
463
|
-
export declare class
|
|
494
|
+
export declare class DeleteDBResponse extends $tea.Model {
|
|
464
495
|
headers: {
|
|
465
496
|
[key: string]: string;
|
|
466
497
|
};
|
|
467
|
-
body:
|
|
498
|
+
body: DeleteDBResponseBody;
|
|
468
499
|
static names(): {
|
|
469
500
|
[key: string]: string;
|
|
470
501
|
};
|
|
@@ -475,12 +506,10 @@ export declare class CreateSuperAccountResponse extends $tea.Model {
|
|
|
475
506
|
[key: string]: any;
|
|
476
507
|
});
|
|
477
508
|
}
|
|
478
|
-
export declare class
|
|
479
|
-
accountName?: string;
|
|
509
|
+
export declare class DeleteDBInstanceRequest extends $tea.Model {
|
|
480
510
|
DBInstanceName?: string;
|
|
481
511
|
regionId?: string;
|
|
482
|
-
|
|
483
|
-
securityAccountPassword?: string;
|
|
512
|
+
resourceGroupId?: string;
|
|
484
513
|
static names(): {
|
|
485
514
|
[key: string]: string;
|
|
486
515
|
};
|
|
@@ -491,10 +520,8 @@ export declare class DeleteAccountRequest extends $tea.Model {
|
|
|
491
520
|
[key: string]: any;
|
|
492
521
|
});
|
|
493
522
|
}
|
|
494
|
-
export declare class
|
|
495
|
-
message?: string;
|
|
523
|
+
export declare class DeleteDBInstanceResponseBody extends $tea.Model {
|
|
496
524
|
requestId?: string;
|
|
497
|
-
success?: boolean;
|
|
498
525
|
static names(): {
|
|
499
526
|
[key: string]: string;
|
|
500
527
|
};
|
|
@@ -505,11 +532,11 @@ export declare class DeleteAccountResponseBody extends $tea.Model {
|
|
|
505
532
|
[key: string]: any;
|
|
506
533
|
});
|
|
507
534
|
}
|
|
508
|
-
export declare class
|
|
535
|
+
export declare class DeleteDBInstanceResponse extends $tea.Model {
|
|
509
536
|
headers: {
|
|
510
537
|
[key: string]: string;
|
|
511
538
|
};
|
|
512
|
-
body:
|
|
539
|
+
body: DeleteDBInstanceResponseBody;
|
|
513
540
|
static names(): {
|
|
514
541
|
[key: string]: string;
|
|
515
542
|
};
|
|
@@ -520,9 +547,10 @@ export declare class DeleteAccountResponse extends $tea.Model {
|
|
|
520
547
|
[key: string]: any;
|
|
521
548
|
});
|
|
522
549
|
}
|
|
523
|
-
export declare class
|
|
550
|
+
export declare class DescribeAccountListRequest extends $tea.Model {
|
|
551
|
+
accountName?: string;
|
|
552
|
+
accountType?: string;
|
|
524
553
|
DBInstanceName?: string;
|
|
525
|
-
dbName?: string;
|
|
526
554
|
regionId?: string;
|
|
527
555
|
static names(): {
|
|
528
556
|
[key: string]: string;
|
|
@@ -534,7 +562,8 @@ export declare class DeleteDBRequest extends $tea.Model {
|
|
|
534
562
|
[key: string]: any;
|
|
535
563
|
});
|
|
536
564
|
}
|
|
537
|
-
export declare class
|
|
565
|
+
export declare class DescribeAccountListResponseBody extends $tea.Model {
|
|
566
|
+
data?: DescribeAccountListResponseBodyData[];
|
|
538
567
|
message?: string;
|
|
539
568
|
requestId?: string;
|
|
540
569
|
success?: boolean;
|
|
@@ -548,11 +577,11 @@ export declare class DeleteDBResponseBody extends $tea.Model {
|
|
|
548
577
|
[key: string]: any;
|
|
549
578
|
});
|
|
550
579
|
}
|
|
551
|
-
export declare class
|
|
580
|
+
export declare class DescribeAccountListResponse extends $tea.Model {
|
|
552
581
|
headers: {
|
|
553
582
|
[key: string]: string;
|
|
554
583
|
};
|
|
555
|
-
body:
|
|
584
|
+
body: DescribeAccountListResponseBody;
|
|
556
585
|
static names(): {
|
|
557
586
|
[key: string]: string;
|
|
558
587
|
};
|
|
@@ -563,8 +592,7 @@ export declare class DeleteDBResponse extends $tea.Model {
|
|
|
563
592
|
[key: string]: any;
|
|
564
593
|
});
|
|
565
594
|
}
|
|
566
|
-
export declare class
|
|
567
|
-
DBInstanceName?: string;
|
|
595
|
+
export declare class DescribeActiveOperationMaintainConfRequest extends $tea.Model {
|
|
568
596
|
regionId?: string;
|
|
569
597
|
static names(): {
|
|
570
598
|
[key: string]: string;
|
|
@@ -576,7 +604,9 @@ export declare class DeleteDBInstanceRequest extends $tea.Model {
|
|
|
576
604
|
[key: string]: any;
|
|
577
605
|
});
|
|
578
606
|
}
|
|
579
|
-
export declare class
|
|
607
|
+
export declare class DescribeActiveOperationMaintainConfResponseBody extends $tea.Model {
|
|
608
|
+
config?: DescribeActiveOperationMaintainConfResponseBodyConfig;
|
|
609
|
+
hasConfig?: number;
|
|
580
610
|
requestId?: string;
|
|
581
611
|
static names(): {
|
|
582
612
|
[key: string]: string;
|
|
@@ -588,11 +618,11 @@ export declare class DeleteDBInstanceResponseBody extends $tea.Model {
|
|
|
588
618
|
[key: string]: any;
|
|
589
619
|
});
|
|
590
620
|
}
|
|
591
|
-
export declare class
|
|
621
|
+
export declare class DescribeActiveOperationMaintainConfResponse extends $tea.Model {
|
|
592
622
|
headers: {
|
|
593
623
|
[key: string]: string;
|
|
594
624
|
};
|
|
595
|
-
body:
|
|
625
|
+
body: DescribeActiveOperationMaintainConfResponseBody;
|
|
596
626
|
static names(): {
|
|
597
627
|
[key: string]: string;
|
|
598
628
|
};
|
|
@@ -603,10 +633,9 @@ export declare class DeleteDBInstanceResponse extends $tea.Model {
|
|
|
603
633
|
[key: string]: any;
|
|
604
634
|
});
|
|
605
635
|
}
|
|
606
|
-
export declare class
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
DBInstanceName?: string;
|
|
636
|
+
export declare class DescribeActiveOperationTaskCountRequest extends $tea.Model {
|
|
637
|
+
category?: string;
|
|
638
|
+
product?: string;
|
|
610
639
|
regionId?: string;
|
|
611
640
|
static names(): {
|
|
612
641
|
[key: string]: string;
|
|
@@ -618,11 +647,10 @@ export declare class DescribeAccountListRequest extends $tea.Model {
|
|
|
618
647
|
[key: string]: any;
|
|
619
648
|
});
|
|
620
649
|
}
|
|
621
|
-
export declare class
|
|
622
|
-
|
|
623
|
-
message?: string;
|
|
650
|
+
export declare class DescribeActiveOperationTaskCountResponseBody extends $tea.Model {
|
|
651
|
+
needPop?: number;
|
|
624
652
|
requestId?: string;
|
|
625
|
-
|
|
653
|
+
taskCount?: number;
|
|
626
654
|
static names(): {
|
|
627
655
|
[key: string]: string;
|
|
628
656
|
};
|
|
@@ -633,11 +661,65 @@ export declare class DescribeAccountListResponseBody extends $tea.Model {
|
|
|
633
661
|
[key: string]: any;
|
|
634
662
|
});
|
|
635
663
|
}
|
|
636
|
-
export declare class
|
|
664
|
+
export declare class DescribeActiveOperationTaskCountResponse extends $tea.Model {
|
|
637
665
|
headers: {
|
|
638
666
|
[key: string]: string;
|
|
639
667
|
};
|
|
640
|
-
body:
|
|
668
|
+
body: DescribeActiveOperationTaskCountResponseBody;
|
|
669
|
+
static names(): {
|
|
670
|
+
[key: string]: string;
|
|
671
|
+
};
|
|
672
|
+
static types(): {
|
|
673
|
+
[key: string]: any;
|
|
674
|
+
};
|
|
675
|
+
constructor(map?: {
|
|
676
|
+
[key: string]: any;
|
|
677
|
+
});
|
|
678
|
+
}
|
|
679
|
+
export declare class DescribeActiveOperationTasksRequest extends $tea.Model {
|
|
680
|
+
allowCancel?: number;
|
|
681
|
+
allowChange?: number;
|
|
682
|
+
changeLevel?: string;
|
|
683
|
+
dbType?: string;
|
|
684
|
+
insName?: string;
|
|
685
|
+
pageNumber?: number;
|
|
686
|
+
pageSize?: number;
|
|
687
|
+
productId?: string;
|
|
688
|
+
region?: string;
|
|
689
|
+
regionId?: string;
|
|
690
|
+
status?: number;
|
|
691
|
+
taskType?: string;
|
|
692
|
+
static names(): {
|
|
693
|
+
[key: string]: string;
|
|
694
|
+
};
|
|
695
|
+
static types(): {
|
|
696
|
+
[key: string]: any;
|
|
697
|
+
};
|
|
698
|
+
constructor(map?: {
|
|
699
|
+
[key: string]: any;
|
|
700
|
+
});
|
|
701
|
+
}
|
|
702
|
+
export declare class DescribeActiveOperationTasksResponseBody extends $tea.Model {
|
|
703
|
+
items?: DescribeActiveOperationTasksResponseBodyItems[];
|
|
704
|
+
pageNumber?: number;
|
|
705
|
+
pageSize?: number;
|
|
706
|
+
requestId?: string;
|
|
707
|
+
totalRecordCount?: number;
|
|
708
|
+
static names(): {
|
|
709
|
+
[key: string]: string;
|
|
710
|
+
};
|
|
711
|
+
static types(): {
|
|
712
|
+
[key: string]: any;
|
|
713
|
+
};
|
|
714
|
+
constructor(map?: {
|
|
715
|
+
[key: string]: any;
|
|
716
|
+
});
|
|
717
|
+
}
|
|
718
|
+
export declare class DescribeActiveOperationTasksResponse extends $tea.Model {
|
|
719
|
+
headers: {
|
|
720
|
+
[key: string]: string;
|
|
721
|
+
};
|
|
722
|
+
body: DescribeActiveOperationTasksResponseBody;
|
|
641
723
|
static names(): {
|
|
642
724
|
[key: string]: string;
|
|
643
725
|
};
|
|
@@ -832,6 +914,7 @@ export declare class DescribeCharacterSetResponse extends $tea.Model {
|
|
|
832
914
|
export declare class DescribeDBInstanceAttributeRequest extends $tea.Model {
|
|
833
915
|
DBInstanceName?: string;
|
|
834
916
|
regionId?: string;
|
|
917
|
+
resourceGroupId?: string;
|
|
835
918
|
static names(): {
|
|
836
919
|
[key: string]: string;
|
|
837
920
|
};
|
|
@@ -1036,9 +1119,12 @@ export declare class DescribeDBInstanceTopologyResponse extends $tea.Model {
|
|
|
1036
1119
|
});
|
|
1037
1120
|
}
|
|
1038
1121
|
export declare class DescribeDBInstancesRequest extends $tea.Model {
|
|
1122
|
+
instanceId?: string;
|
|
1039
1123
|
pageNumber?: number;
|
|
1040
1124
|
pageSize?: number;
|
|
1041
1125
|
regionId?: string;
|
|
1126
|
+
resourceGroupId?: string;
|
|
1127
|
+
tags?: string;
|
|
1042
1128
|
static names(): {
|
|
1043
1129
|
[key: string]: string;
|
|
1044
1130
|
};
|
|
@@ -1084,6 +1170,7 @@ export declare class DescribeDBNodePerformanceRequest extends $tea.Model {
|
|
|
1084
1170
|
characterType?: string;
|
|
1085
1171
|
DBInstanceName?: string;
|
|
1086
1172
|
DBNodeIds?: string;
|
|
1173
|
+
DBNodeRole?: string;
|
|
1087
1174
|
endTime?: string;
|
|
1088
1175
|
key?: string;
|
|
1089
1176
|
regionId?: string;
|
|
@@ -1217,10 +1304,12 @@ export declare class DescribeDistributeTableListResponse extends $tea.Model {
|
|
|
1217
1304
|
[key: string]: any;
|
|
1218
1305
|
});
|
|
1219
1306
|
}
|
|
1220
|
-
export declare class
|
|
1221
|
-
|
|
1222
|
-
|
|
1307
|
+
export declare class DescribeEventsRequest extends $tea.Model {
|
|
1308
|
+
endTime?: string;
|
|
1309
|
+
pageNumber?: number;
|
|
1310
|
+
pageSize?: number;
|
|
1223
1311
|
regionId?: string;
|
|
1312
|
+
startTime?: string;
|
|
1224
1313
|
static names(): {
|
|
1225
1314
|
[key: string]: string;
|
|
1226
1315
|
};
|
|
@@ -1231,9 +1320,12 @@ export declare class DescribeParameterTemplatesRequest extends $tea.Model {
|
|
|
1231
1320
|
[key: string]: any;
|
|
1232
1321
|
});
|
|
1233
1322
|
}
|
|
1234
|
-
export declare class
|
|
1235
|
-
|
|
1323
|
+
export declare class DescribeEventsResponseBody extends $tea.Model {
|
|
1324
|
+
eventItems?: DescribeEventsResponseBodyEventItems[];
|
|
1325
|
+
pageNumber?: number;
|
|
1326
|
+
pageSize?: number;
|
|
1236
1327
|
requestId?: string;
|
|
1328
|
+
totalRecordCount?: number;
|
|
1237
1329
|
static names(): {
|
|
1238
1330
|
[key: string]: string;
|
|
1239
1331
|
};
|
|
@@ -1244,11 +1336,11 @@ export declare class DescribeParameterTemplatesResponseBody extends $tea.Model {
|
|
|
1244
1336
|
[key: string]: any;
|
|
1245
1337
|
});
|
|
1246
1338
|
}
|
|
1247
|
-
export declare class
|
|
1339
|
+
export declare class DescribeEventsResponse extends $tea.Model {
|
|
1248
1340
|
headers: {
|
|
1249
1341
|
[key: string]: string;
|
|
1250
1342
|
};
|
|
1251
|
-
body:
|
|
1343
|
+
body: DescribeEventsResponseBody;
|
|
1252
1344
|
static names(): {
|
|
1253
1345
|
[key: string]: string;
|
|
1254
1346
|
};
|
|
@@ -1259,7 +1351,7 @@ export declare class DescribeParameterTemplatesResponse extends $tea.Model {
|
|
|
1259
1351
|
[key: string]: any;
|
|
1260
1352
|
});
|
|
1261
1353
|
}
|
|
1262
|
-
export declare class
|
|
1354
|
+
export declare class DescribeParameterTemplatesRequest extends $tea.Model {
|
|
1263
1355
|
DBInstanceId?: string;
|
|
1264
1356
|
paramLevel?: string;
|
|
1265
1357
|
regionId?: string;
|
|
@@ -1273,8 +1365,8 @@ export declare class DescribeParametersRequest extends $tea.Model {
|
|
|
1273
1365
|
[key: string]: any;
|
|
1274
1366
|
});
|
|
1275
1367
|
}
|
|
1276
|
-
export declare class
|
|
1277
|
-
data?:
|
|
1368
|
+
export declare class DescribeParameterTemplatesResponseBody extends $tea.Model {
|
|
1369
|
+
data?: DescribeParameterTemplatesResponseBodyData;
|
|
1278
1370
|
requestId?: string;
|
|
1279
1371
|
static names(): {
|
|
1280
1372
|
[key: string]: string;
|
|
@@ -1286,11 +1378,11 @@ export declare class DescribeParametersResponseBody extends $tea.Model {
|
|
|
1286
1378
|
[key: string]: any;
|
|
1287
1379
|
});
|
|
1288
1380
|
}
|
|
1289
|
-
export declare class
|
|
1381
|
+
export declare class DescribeParameterTemplatesResponse extends $tea.Model {
|
|
1290
1382
|
headers: {
|
|
1291
1383
|
[key: string]: string;
|
|
1292
1384
|
};
|
|
1293
|
-
body:
|
|
1385
|
+
body: DescribeParameterTemplatesResponseBody;
|
|
1294
1386
|
static names(): {
|
|
1295
1387
|
[key: string]: string;
|
|
1296
1388
|
};
|
|
@@ -1301,9 +1393,9 @@ export declare class DescribeParametersResponse extends $tea.Model {
|
|
|
1301
1393
|
[key: string]: any;
|
|
1302
1394
|
});
|
|
1303
1395
|
}
|
|
1304
|
-
export declare class
|
|
1305
|
-
|
|
1306
|
-
|
|
1396
|
+
export declare class DescribeParametersRequest extends $tea.Model {
|
|
1397
|
+
DBInstanceId?: string;
|
|
1398
|
+
paramLevel?: string;
|
|
1307
1399
|
regionId?: string;
|
|
1308
1400
|
static names(): {
|
|
1309
1401
|
[key: string]: string;
|
|
@@ -1315,12 +1407,9 @@ export declare class DescribePolarxDataNodesRequest extends $tea.Model {
|
|
|
1315
1407
|
[key: string]: any;
|
|
1316
1408
|
});
|
|
1317
1409
|
}
|
|
1318
|
-
export declare class
|
|
1319
|
-
|
|
1320
|
-
pageNumber?: number;
|
|
1321
|
-
pageSize?: number;
|
|
1410
|
+
export declare class DescribeParametersResponseBody extends $tea.Model {
|
|
1411
|
+
data?: DescribeParametersResponseBodyData;
|
|
1322
1412
|
requestId?: string;
|
|
1323
|
-
totalNumber?: number;
|
|
1324
1413
|
static names(): {
|
|
1325
1414
|
[key: string]: string;
|
|
1326
1415
|
};
|
|
@@ -1331,11 +1420,11 @@ export declare class DescribePolarxDataNodesResponseBody extends $tea.Model {
|
|
|
1331
1420
|
[key: string]: any;
|
|
1332
1421
|
});
|
|
1333
1422
|
}
|
|
1334
|
-
export declare class
|
|
1423
|
+
export declare class DescribeParametersResponse extends $tea.Model {
|
|
1335
1424
|
headers: {
|
|
1336
1425
|
[key: string]: string;
|
|
1337
1426
|
};
|
|
1338
|
-
body:
|
|
1427
|
+
body: DescribeParametersResponseBody;
|
|
1339
1428
|
static names(): {
|
|
1340
1429
|
[key: string]: string;
|
|
1341
1430
|
};
|
|
@@ -1346,11 +1435,13 @@ export declare class DescribePolarxDataNodesResponse extends $tea.Model {
|
|
|
1346
1435
|
[key: string]: any;
|
|
1347
1436
|
});
|
|
1348
1437
|
}
|
|
1349
|
-
export declare class
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1438
|
+
export declare class DescribeRegionsResponseBody extends $tea.Model {
|
|
1439
|
+
code?: number;
|
|
1440
|
+
errorCode?: number;
|
|
1441
|
+
message?: string;
|
|
1442
|
+
regions?: DescribeRegionsResponseBodyRegions;
|
|
1443
|
+
requestId?: string;
|
|
1444
|
+
success?: boolean;
|
|
1354
1445
|
static names(): {
|
|
1355
1446
|
[key: string]: string;
|
|
1356
1447
|
};
|
|
@@ -1361,13 +1452,11 @@ export declare class DescribePolarxDbInstancesRequest extends $tea.Model {
|
|
|
1361
1452
|
[key: string]: any;
|
|
1362
1453
|
});
|
|
1363
1454
|
}
|
|
1364
|
-
export declare class
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
success?: boolean;
|
|
1370
|
-
total?: string;
|
|
1455
|
+
export declare class DescribeRegionsResponse extends $tea.Model {
|
|
1456
|
+
headers: {
|
|
1457
|
+
[key: string]: string;
|
|
1458
|
+
};
|
|
1459
|
+
body: DescribeRegionsResponseBody;
|
|
1371
1460
|
static names(): {
|
|
1372
1461
|
[key: string]: string;
|
|
1373
1462
|
};
|
|
@@ -1378,11 +1467,12 @@ export declare class DescribePolarxDbInstancesResponseBody extends $tea.Model {
|
|
|
1378
1467
|
[key: string]: any;
|
|
1379
1468
|
});
|
|
1380
1469
|
}
|
|
1381
|
-
export declare class
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1470
|
+
export declare class DescribeScaleOutMigrateTaskListRequest extends $tea.Model {
|
|
1471
|
+
DBInstanceName?: string;
|
|
1472
|
+
ownerAccount?: string;
|
|
1473
|
+
ownerId?: number;
|
|
1474
|
+
resourceOwnerAccount?: string;
|
|
1475
|
+
resourceOwnerId?: number;
|
|
1386
1476
|
static names(): {
|
|
1387
1477
|
[key: string]: string;
|
|
1388
1478
|
};
|
|
@@ -1393,11 +1483,9 @@ export declare class DescribePolarxDbInstancesResponse extends $tea.Model {
|
|
|
1393
1483
|
[key: string]: any;
|
|
1394
1484
|
});
|
|
1395
1485
|
}
|
|
1396
|
-
export declare class
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
regionId?: string;
|
|
1400
|
-
resourceGroupId?: string;
|
|
1486
|
+
export declare class DescribeScaleOutMigrateTaskListResponseBody extends $tea.Model {
|
|
1487
|
+
progress?: number;
|
|
1488
|
+
requestId?: string;
|
|
1401
1489
|
static names(): {
|
|
1402
1490
|
[key: string]: string;
|
|
1403
1491
|
};
|
|
@@ -1408,12 +1496,11 @@ export declare class DescribePolarxPgInstancesRequest extends $tea.Model {
|
|
|
1408
1496
|
[key: string]: any;
|
|
1409
1497
|
});
|
|
1410
1498
|
}
|
|
1411
|
-
export declare class
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
requestId?: string;
|
|
1499
|
+
export declare class DescribeScaleOutMigrateTaskListResponse extends $tea.Model {
|
|
1500
|
+
headers: {
|
|
1501
|
+
[key: string]: string;
|
|
1502
|
+
};
|
|
1503
|
+
body: DescribeScaleOutMigrateTaskListResponseBody;
|
|
1417
1504
|
static names(): {
|
|
1418
1505
|
[key: string]: string;
|
|
1419
1506
|
};
|
|
@@ -1424,11 +1511,9 @@ export declare class DescribePolarxPgInstancesResponseBody extends $tea.Model {
|
|
|
1424
1511
|
[key: string]: any;
|
|
1425
1512
|
});
|
|
1426
1513
|
}
|
|
1427
|
-
export declare class
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
};
|
|
1431
|
-
body: DescribePolarxPgInstancesResponseBody;
|
|
1514
|
+
export declare class DescribeSecurityIpsRequest extends $tea.Model {
|
|
1515
|
+
DBInstanceName?: string;
|
|
1516
|
+
regionId?: string;
|
|
1432
1517
|
static names(): {
|
|
1433
1518
|
[key: string]: string;
|
|
1434
1519
|
};
|
|
@@ -1439,11 +1524,9 @@ export declare class DescribePolarxPgInstancesResponse extends $tea.Model {
|
|
|
1439
1524
|
[key: string]: any;
|
|
1440
1525
|
});
|
|
1441
1526
|
}
|
|
1442
|
-
export declare class
|
|
1443
|
-
|
|
1444
|
-
errorCode?: number;
|
|
1527
|
+
export declare class DescribeSecurityIpsResponseBody extends $tea.Model {
|
|
1528
|
+
data?: DescribeSecurityIpsResponseBodyData;
|
|
1445
1529
|
message?: string;
|
|
1446
|
-
regions?: DescribeRegionsResponseBodyRegions;
|
|
1447
1530
|
requestId?: string;
|
|
1448
1531
|
success?: boolean;
|
|
1449
1532
|
static names(): {
|
|
@@ -1456,11 +1539,11 @@ export declare class DescribeRegionsResponseBody extends $tea.Model {
|
|
|
1456
1539
|
[key: string]: any;
|
|
1457
1540
|
});
|
|
1458
1541
|
}
|
|
1459
|
-
export declare class
|
|
1542
|
+
export declare class DescribeSecurityIpsResponse extends $tea.Model {
|
|
1460
1543
|
headers: {
|
|
1461
1544
|
[key: string]: string;
|
|
1462
1545
|
};
|
|
1463
|
-
body:
|
|
1546
|
+
body: DescribeSecurityIpsResponseBody;
|
|
1464
1547
|
static names(): {
|
|
1465
1548
|
[key: string]: string;
|
|
1466
1549
|
};
|
|
@@ -1471,12 +1554,13 @@ export declare class DescribeRegionsResponse extends $tea.Model {
|
|
|
1471
1554
|
[key: string]: any;
|
|
1472
1555
|
});
|
|
1473
1556
|
}
|
|
1474
|
-
export declare class
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1557
|
+
export declare class DescribeSlinkTaskInfoRequest extends $tea.Model {
|
|
1558
|
+
failPageNumber?: number;
|
|
1559
|
+
failPageSize?: number;
|
|
1560
|
+
regionId?: string;
|
|
1561
|
+
slinkTaskId?: string;
|
|
1562
|
+
successPageNumber?: number;
|
|
1563
|
+
successPageSize?: number;
|
|
1480
1564
|
static names(): {
|
|
1481
1565
|
[key: string]: string;
|
|
1482
1566
|
};
|
|
@@ -1487,9 +1571,11 @@ export declare class DescribeScaleOutMigrateTaskListRequest extends $tea.Model {
|
|
|
1487
1571
|
[key: string]: any;
|
|
1488
1572
|
});
|
|
1489
1573
|
}
|
|
1490
|
-
export declare class
|
|
1491
|
-
|
|
1492
|
-
|
|
1574
|
+
export declare class DescribeSlinkTaskInfoResponseBody extends $tea.Model {
|
|
1575
|
+
code?: number;
|
|
1576
|
+
data?: DescribeSlinkTaskInfoResponseBodyData;
|
|
1577
|
+
message?: string;
|
|
1578
|
+
success?: string;
|
|
1493
1579
|
static names(): {
|
|
1494
1580
|
[key: string]: string;
|
|
1495
1581
|
};
|
|
@@ -1500,11 +1586,11 @@ export declare class DescribeScaleOutMigrateTaskListResponseBody extends $tea.Mo
|
|
|
1500
1586
|
[key: string]: any;
|
|
1501
1587
|
});
|
|
1502
1588
|
}
|
|
1503
|
-
export declare class
|
|
1589
|
+
export declare class DescribeSlinkTaskInfoResponse extends $tea.Model {
|
|
1504
1590
|
headers: {
|
|
1505
1591
|
[key: string]: string;
|
|
1506
1592
|
};
|
|
1507
|
-
body:
|
|
1593
|
+
body: DescribeSlinkTaskInfoResponseBody;
|
|
1508
1594
|
static names(): {
|
|
1509
1595
|
[key: string]: string;
|
|
1510
1596
|
};
|
|
@@ -1515,9 +1601,10 @@ export declare class DescribeScaleOutMigrateTaskListResponse extends $tea.Model
|
|
|
1515
1601
|
[key: string]: any;
|
|
1516
1602
|
});
|
|
1517
1603
|
}
|
|
1518
|
-
export declare class
|
|
1604
|
+
export declare class DescribeTagsRequest extends $tea.Model {
|
|
1519
1605
|
DBInstanceName?: string;
|
|
1520
1606
|
regionId?: string;
|
|
1607
|
+
tagKey?: string;
|
|
1521
1608
|
static names(): {
|
|
1522
1609
|
[key: string]: string;
|
|
1523
1610
|
};
|
|
@@ -1528,11 +1615,9 @@ export declare class DescribeSecurityIpsRequest extends $tea.Model {
|
|
|
1528
1615
|
[key: string]: any;
|
|
1529
1616
|
});
|
|
1530
1617
|
}
|
|
1531
|
-
export declare class
|
|
1532
|
-
data?: DescribeSecurityIpsResponseBodyData;
|
|
1533
|
-
message?: string;
|
|
1618
|
+
export declare class DescribeTagsResponseBody extends $tea.Model {
|
|
1534
1619
|
requestId?: string;
|
|
1535
|
-
|
|
1620
|
+
tagInfos?: DescribeTagsResponseBodyTagInfos[];
|
|
1536
1621
|
static names(): {
|
|
1537
1622
|
[key: string]: string;
|
|
1538
1623
|
};
|
|
@@ -1543,11 +1628,11 @@ export declare class DescribeSecurityIpsResponseBody extends $tea.Model {
|
|
|
1543
1628
|
[key: string]: any;
|
|
1544
1629
|
});
|
|
1545
1630
|
}
|
|
1546
|
-
export declare class
|
|
1631
|
+
export declare class DescribeTagsResponse extends $tea.Model {
|
|
1547
1632
|
headers: {
|
|
1548
1633
|
[key: string]: string;
|
|
1549
1634
|
};
|
|
1550
|
-
body:
|
|
1635
|
+
body: DescribeTagsResponseBody;
|
|
1551
1636
|
static names(): {
|
|
1552
1637
|
[key: string]: string;
|
|
1553
1638
|
};
|
|
@@ -1569,8 +1654,6 @@ export declare class DescribeTasksRequest extends $tea.Model {
|
|
|
1569
1654
|
resourceOwnerAccount?: string;
|
|
1570
1655
|
resourceOwnerId?: number;
|
|
1571
1656
|
startTime?: string;
|
|
1572
|
-
status?: string;
|
|
1573
|
-
taskAction?: string;
|
|
1574
1657
|
static names(): {
|
|
1575
1658
|
[key: string]: string;
|
|
1576
1659
|
};
|
|
@@ -1653,9 +1736,8 @@ export declare class DescribeUserEncryptionKeyListResponse extends $tea.Model {
|
|
|
1653
1736
|
[key: string]: any;
|
|
1654
1737
|
});
|
|
1655
1738
|
}
|
|
1656
|
-
export declare class
|
|
1739
|
+
export declare class InitDBInstanceResourceGroupIdRequest extends $tea.Model {
|
|
1657
1740
|
DBInstanceName?: string;
|
|
1658
|
-
orderType?: string;
|
|
1659
1741
|
regionId?: string;
|
|
1660
1742
|
static names(): {
|
|
1661
1743
|
[key: string]: string;
|
|
@@ -1667,9 +1749,7 @@ export declare class GetPolarxCommodityRequest extends $tea.Model {
|
|
|
1667
1749
|
[key: string]: any;
|
|
1668
1750
|
});
|
|
1669
1751
|
}
|
|
1670
|
-
export declare class
|
|
1671
|
-
componentList?: GetPolarxCommodityResponseBodyComponentList[];
|
|
1672
|
-
DBInstance?: GetPolarxCommodityResponseBodyDBInstance;
|
|
1752
|
+
export declare class InitDBInstanceResourceGroupIdResponseBody extends $tea.Model {
|
|
1673
1753
|
requestId?: string;
|
|
1674
1754
|
static names(): {
|
|
1675
1755
|
[key: string]: string;
|
|
@@ -1681,11 +1761,56 @@ export declare class GetPolarxCommodityResponseBody extends $tea.Model {
|
|
|
1681
1761
|
[key: string]: any;
|
|
1682
1762
|
});
|
|
1683
1763
|
}
|
|
1684
|
-
export declare class
|
|
1764
|
+
export declare class InitDBInstanceResourceGroupIdResponse extends $tea.Model {
|
|
1685
1765
|
headers: {
|
|
1686
1766
|
[key: string]: string;
|
|
1687
1767
|
};
|
|
1688
|
-
body:
|
|
1768
|
+
body: InitDBInstanceResourceGroupIdResponseBody;
|
|
1769
|
+
static names(): {
|
|
1770
|
+
[key: string]: string;
|
|
1771
|
+
};
|
|
1772
|
+
static types(): {
|
|
1773
|
+
[key: string]: any;
|
|
1774
|
+
};
|
|
1775
|
+
constructor(map?: {
|
|
1776
|
+
[key: string]: any;
|
|
1777
|
+
});
|
|
1778
|
+
}
|
|
1779
|
+
export declare class ListTagResourcesRequest extends $tea.Model {
|
|
1780
|
+
nextToken?: string;
|
|
1781
|
+
regionId?: string;
|
|
1782
|
+
resourceId?: string[];
|
|
1783
|
+
resourceType?: string;
|
|
1784
|
+
tag?: ListTagResourcesRequestTag[];
|
|
1785
|
+
static names(): {
|
|
1786
|
+
[key: string]: string;
|
|
1787
|
+
};
|
|
1788
|
+
static types(): {
|
|
1789
|
+
[key: string]: any;
|
|
1790
|
+
};
|
|
1791
|
+
constructor(map?: {
|
|
1792
|
+
[key: string]: any;
|
|
1793
|
+
});
|
|
1794
|
+
}
|
|
1795
|
+
export declare class ListTagResourcesResponseBody extends $tea.Model {
|
|
1796
|
+
nextToken?: string;
|
|
1797
|
+
requestId?: string;
|
|
1798
|
+
tagResources?: ListTagResourcesResponseBodyTagResources;
|
|
1799
|
+
static names(): {
|
|
1800
|
+
[key: string]: string;
|
|
1801
|
+
};
|
|
1802
|
+
static types(): {
|
|
1803
|
+
[key: string]: any;
|
|
1804
|
+
};
|
|
1805
|
+
constructor(map?: {
|
|
1806
|
+
[key: string]: any;
|
|
1807
|
+
});
|
|
1808
|
+
}
|
|
1809
|
+
export declare class ListTagResourcesResponse extends $tea.Model {
|
|
1810
|
+
headers: {
|
|
1811
|
+
[key: string]: string;
|
|
1812
|
+
};
|
|
1813
|
+
body: ListTagResourcesResponseBody;
|
|
1689
1814
|
static names(): {
|
|
1690
1815
|
[key: string]: string;
|
|
1691
1816
|
};
|
|
@@ -1740,6 +1865,93 @@ export declare class ModifyAccountDescriptionResponse extends $tea.Model {
|
|
|
1740
1865
|
[key: string]: any;
|
|
1741
1866
|
});
|
|
1742
1867
|
}
|
|
1868
|
+
export declare class ModifyActiveOperationMaintainConfRequest extends $tea.Model {
|
|
1869
|
+
cycleTime?: string;
|
|
1870
|
+
cycleType?: string;
|
|
1871
|
+
maintainEndTime?: string;
|
|
1872
|
+
maintainStartTime?: string;
|
|
1873
|
+
regionId?: string;
|
|
1874
|
+
status?: number;
|
|
1875
|
+
static names(): {
|
|
1876
|
+
[key: string]: string;
|
|
1877
|
+
};
|
|
1878
|
+
static types(): {
|
|
1879
|
+
[key: string]: any;
|
|
1880
|
+
};
|
|
1881
|
+
constructor(map?: {
|
|
1882
|
+
[key: string]: any;
|
|
1883
|
+
});
|
|
1884
|
+
}
|
|
1885
|
+
export declare class ModifyActiveOperationMaintainConfResponseBody extends $tea.Model {
|
|
1886
|
+
requestId?: string;
|
|
1887
|
+
static names(): {
|
|
1888
|
+
[key: string]: string;
|
|
1889
|
+
};
|
|
1890
|
+
static types(): {
|
|
1891
|
+
[key: string]: any;
|
|
1892
|
+
};
|
|
1893
|
+
constructor(map?: {
|
|
1894
|
+
[key: string]: any;
|
|
1895
|
+
});
|
|
1896
|
+
}
|
|
1897
|
+
export declare class ModifyActiveOperationMaintainConfResponse extends $tea.Model {
|
|
1898
|
+
headers: {
|
|
1899
|
+
[key: string]: string;
|
|
1900
|
+
};
|
|
1901
|
+
body: ModifyActiveOperationMaintainConfResponseBody;
|
|
1902
|
+
static names(): {
|
|
1903
|
+
[key: string]: string;
|
|
1904
|
+
};
|
|
1905
|
+
static types(): {
|
|
1906
|
+
[key: string]: any;
|
|
1907
|
+
};
|
|
1908
|
+
constructor(map?: {
|
|
1909
|
+
[key: string]: any;
|
|
1910
|
+
});
|
|
1911
|
+
}
|
|
1912
|
+
export declare class ModifyActiveOperationTasksRequest extends $tea.Model {
|
|
1913
|
+
ids?: string;
|
|
1914
|
+
immediateStart?: number;
|
|
1915
|
+
regionId?: string;
|
|
1916
|
+
switchTime?: string;
|
|
1917
|
+
static names(): {
|
|
1918
|
+
[key: string]: string;
|
|
1919
|
+
};
|
|
1920
|
+
static types(): {
|
|
1921
|
+
[key: string]: any;
|
|
1922
|
+
};
|
|
1923
|
+
constructor(map?: {
|
|
1924
|
+
[key: string]: any;
|
|
1925
|
+
});
|
|
1926
|
+
}
|
|
1927
|
+
export declare class ModifyActiveOperationTasksResponseBody extends $tea.Model {
|
|
1928
|
+
ids?: string;
|
|
1929
|
+
requestId?: string;
|
|
1930
|
+
static names(): {
|
|
1931
|
+
[key: string]: string;
|
|
1932
|
+
};
|
|
1933
|
+
static types(): {
|
|
1934
|
+
[key: string]: any;
|
|
1935
|
+
};
|
|
1936
|
+
constructor(map?: {
|
|
1937
|
+
[key: string]: any;
|
|
1938
|
+
});
|
|
1939
|
+
}
|
|
1940
|
+
export declare class ModifyActiveOperationTasksResponse extends $tea.Model {
|
|
1941
|
+
headers: {
|
|
1942
|
+
[key: string]: string;
|
|
1943
|
+
};
|
|
1944
|
+
body: ModifyActiveOperationTasksResponseBody;
|
|
1945
|
+
static names(): {
|
|
1946
|
+
[key: string]: string;
|
|
1947
|
+
};
|
|
1948
|
+
static types(): {
|
|
1949
|
+
[key: string]: any;
|
|
1950
|
+
};
|
|
1951
|
+
constructor(map?: {
|
|
1952
|
+
[key: string]: any;
|
|
1953
|
+
});
|
|
1954
|
+
}
|
|
1743
1955
|
export declare class ModifyDBInstanceClassRequest extends $tea.Model {
|
|
1744
1956
|
clientToken?: string;
|
|
1745
1957
|
DBInstanceName?: string;
|
|
@@ -1825,6 +2037,52 @@ export declare class ModifyDBInstanceConfigResponse extends $tea.Model {
|
|
|
1825
2037
|
[key: string]: any;
|
|
1826
2038
|
});
|
|
1827
2039
|
}
|
|
2040
|
+
export declare class ModifyDBInstanceConnectionStringRequest extends $tea.Model {
|
|
2041
|
+
connectionString?: string;
|
|
2042
|
+
DBInstanceName?: string;
|
|
2043
|
+
newPort?: string;
|
|
2044
|
+
newPrefix?: string;
|
|
2045
|
+
regionId?: string;
|
|
2046
|
+
static names(): {
|
|
2047
|
+
[key: string]: string;
|
|
2048
|
+
};
|
|
2049
|
+
static types(): {
|
|
2050
|
+
[key: string]: any;
|
|
2051
|
+
};
|
|
2052
|
+
constructor(map?: {
|
|
2053
|
+
[key: string]: any;
|
|
2054
|
+
});
|
|
2055
|
+
}
|
|
2056
|
+
export declare class ModifyDBInstanceConnectionStringResponseBody extends $tea.Model {
|
|
2057
|
+
code?: number;
|
|
2058
|
+
data?: ModifyDBInstanceConnectionStringResponseBodyData;
|
|
2059
|
+
message?: string;
|
|
2060
|
+
requestId?: string;
|
|
2061
|
+
static names(): {
|
|
2062
|
+
[key: string]: string;
|
|
2063
|
+
};
|
|
2064
|
+
static types(): {
|
|
2065
|
+
[key: string]: any;
|
|
2066
|
+
};
|
|
2067
|
+
constructor(map?: {
|
|
2068
|
+
[key: string]: any;
|
|
2069
|
+
});
|
|
2070
|
+
}
|
|
2071
|
+
export declare class ModifyDBInstanceConnectionStringResponse extends $tea.Model {
|
|
2072
|
+
headers: {
|
|
2073
|
+
[key: string]: string;
|
|
2074
|
+
};
|
|
2075
|
+
body: ModifyDBInstanceConnectionStringResponseBody;
|
|
2076
|
+
static names(): {
|
|
2077
|
+
[key: string]: string;
|
|
2078
|
+
};
|
|
2079
|
+
static types(): {
|
|
2080
|
+
[key: string]: any;
|
|
2081
|
+
};
|
|
2082
|
+
constructor(map?: {
|
|
2083
|
+
[key: string]: any;
|
|
2084
|
+
});
|
|
2085
|
+
}
|
|
1828
2086
|
export declare class ModifyDBInstanceDescriptionRequest extends $tea.Model {
|
|
1829
2087
|
DBInstanceDescription?: string;
|
|
1830
2088
|
DBInstanceName?: string;
|
|
@@ -2083,6 +2341,91 @@ export declare class RestartDBInstanceResponse extends $tea.Model {
|
|
|
2083
2341
|
[key: string]: any;
|
|
2084
2342
|
});
|
|
2085
2343
|
}
|
|
2344
|
+
export declare class TagResourcesRequest extends $tea.Model {
|
|
2345
|
+
regionId?: string;
|
|
2346
|
+
resourceId?: string[];
|
|
2347
|
+
resourceType?: string;
|
|
2348
|
+
tag?: TagResourcesRequestTag[];
|
|
2349
|
+
static names(): {
|
|
2350
|
+
[key: string]: string;
|
|
2351
|
+
};
|
|
2352
|
+
static types(): {
|
|
2353
|
+
[key: string]: any;
|
|
2354
|
+
};
|
|
2355
|
+
constructor(map?: {
|
|
2356
|
+
[key: string]: any;
|
|
2357
|
+
});
|
|
2358
|
+
}
|
|
2359
|
+
export declare class TagResourcesResponseBody extends $tea.Model {
|
|
2360
|
+
requestId?: string;
|
|
2361
|
+
static names(): {
|
|
2362
|
+
[key: string]: string;
|
|
2363
|
+
};
|
|
2364
|
+
static types(): {
|
|
2365
|
+
[key: string]: any;
|
|
2366
|
+
};
|
|
2367
|
+
constructor(map?: {
|
|
2368
|
+
[key: string]: any;
|
|
2369
|
+
});
|
|
2370
|
+
}
|
|
2371
|
+
export declare class TagResourcesResponse extends $tea.Model {
|
|
2372
|
+
headers: {
|
|
2373
|
+
[key: string]: string;
|
|
2374
|
+
};
|
|
2375
|
+
body: TagResourcesResponseBody;
|
|
2376
|
+
static names(): {
|
|
2377
|
+
[key: string]: string;
|
|
2378
|
+
};
|
|
2379
|
+
static types(): {
|
|
2380
|
+
[key: string]: any;
|
|
2381
|
+
};
|
|
2382
|
+
constructor(map?: {
|
|
2383
|
+
[key: string]: any;
|
|
2384
|
+
});
|
|
2385
|
+
}
|
|
2386
|
+
export declare class UntagResourcesRequest extends $tea.Model {
|
|
2387
|
+
all?: boolean;
|
|
2388
|
+
regionId?: string;
|
|
2389
|
+
resourceId?: string[];
|
|
2390
|
+
resourceType?: string;
|
|
2391
|
+
tagKey?: string[];
|
|
2392
|
+
static names(): {
|
|
2393
|
+
[key: string]: string;
|
|
2394
|
+
};
|
|
2395
|
+
static types(): {
|
|
2396
|
+
[key: string]: any;
|
|
2397
|
+
};
|
|
2398
|
+
constructor(map?: {
|
|
2399
|
+
[key: string]: any;
|
|
2400
|
+
});
|
|
2401
|
+
}
|
|
2402
|
+
export declare class UntagResourcesResponseBody extends $tea.Model {
|
|
2403
|
+
requestId?: string;
|
|
2404
|
+
static names(): {
|
|
2405
|
+
[key: string]: string;
|
|
2406
|
+
};
|
|
2407
|
+
static types(): {
|
|
2408
|
+
[key: string]: any;
|
|
2409
|
+
};
|
|
2410
|
+
constructor(map?: {
|
|
2411
|
+
[key: string]: any;
|
|
2412
|
+
});
|
|
2413
|
+
}
|
|
2414
|
+
export declare class UntagResourcesResponse extends $tea.Model {
|
|
2415
|
+
headers: {
|
|
2416
|
+
[key: string]: string;
|
|
2417
|
+
};
|
|
2418
|
+
body: UntagResourcesResponseBody;
|
|
2419
|
+
static names(): {
|
|
2420
|
+
[key: string]: string;
|
|
2421
|
+
};
|
|
2422
|
+
static types(): {
|
|
2423
|
+
[key: string]: any;
|
|
2424
|
+
};
|
|
2425
|
+
constructor(map?: {
|
|
2426
|
+
[key: string]: any;
|
|
2427
|
+
});
|
|
2428
|
+
}
|
|
2086
2429
|
export declare class UpdateBackupPolicyRequest extends $tea.Model {
|
|
2087
2430
|
backupPeriod?: string;
|
|
2088
2431
|
backupPlanBegin?: string;
|
|
@@ -2269,8 +2612,6 @@ export declare class UpdatePolarDBXInstanceNodeResponse extends $tea.Model {
|
|
|
2269
2612
|
export declare class UpgradeDBInstanceKernelVersionRequest extends $tea.Model {
|
|
2270
2613
|
DBInstanceName?: string;
|
|
2271
2614
|
regionId?: string;
|
|
2272
|
-
switchTime?: string;
|
|
2273
|
-
upgradeTime?: string;
|
|
2274
2615
|
static names(): {
|
|
2275
2616
|
[key: string]: string;
|
|
2276
2617
|
};
|
|
@@ -2336,21 +2677,14 @@ export declare class CreateBackupResponseBodyData extends $tea.Model {
|
|
|
2336
2677
|
[key: string]: any;
|
|
2337
2678
|
});
|
|
2338
2679
|
}
|
|
2339
|
-
export declare class
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
constructor(map?: {
|
|
2348
|
-
[key: string]: any;
|
|
2349
|
-
});
|
|
2350
|
-
}
|
|
2351
|
-
export declare class CreatePolarxInstanceResponseBodyData extends $tea.Model {
|
|
2352
|
-
drdsInstanceIdList?: CreatePolarxInstanceResponseBodyDataDrdsInstanceIdList;
|
|
2353
|
-
orderId?: number;
|
|
2680
|
+
export declare class DescribeAccountListResponseBodyData extends $tea.Model {
|
|
2681
|
+
accountDescription?: string;
|
|
2682
|
+
accountName?: string;
|
|
2683
|
+
accountPrivilege?: string;
|
|
2684
|
+
accountType?: string;
|
|
2685
|
+
DBInstanceName?: string;
|
|
2686
|
+
DBName?: string;
|
|
2687
|
+
gmtCreated?: string;
|
|
2354
2688
|
static names(): {
|
|
2355
2689
|
[key: string]: string;
|
|
2356
2690
|
};
|
|
@@ -2361,9 +2695,14 @@ export declare class CreatePolarxInstanceResponseBodyData extends $tea.Model {
|
|
|
2361
2695
|
[key: string]: any;
|
|
2362
2696
|
});
|
|
2363
2697
|
}
|
|
2364
|
-
export declare class
|
|
2365
|
-
|
|
2366
|
-
|
|
2698
|
+
export declare class DescribeActiveOperationMaintainConfResponseBodyConfig extends $tea.Model {
|
|
2699
|
+
createdTime?: string;
|
|
2700
|
+
cycleTime?: string;
|
|
2701
|
+
cycleType?: string;
|
|
2702
|
+
maintainEndTime?: string;
|
|
2703
|
+
maintainStartTime?: string;
|
|
2704
|
+
modifiedTime?: string;
|
|
2705
|
+
status?: number;
|
|
2367
2706
|
static names(): {
|
|
2368
2707
|
[key: string]: string;
|
|
2369
2708
|
};
|
|
@@ -2374,14 +2713,34 @@ export declare class CreatePolarxOrderResponseBodyOrderResultList extends $tea.M
|
|
|
2374
2713
|
[key: string]: any;
|
|
2375
2714
|
});
|
|
2376
2715
|
}
|
|
2377
|
-
export declare class
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2716
|
+
export declare class DescribeActiveOperationTasksResponseBodyItems extends $tea.Model {
|
|
2717
|
+
allowCancel?: string;
|
|
2718
|
+
allowChange?: string;
|
|
2719
|
+
changeLevel?: string;
|
|
2720
|
+
changeLevelEn?: string;
|
|
2721
|
+
changeLevelZh?: string;
|
|
2722
|
+
createdTime?: string;
|
|
2723
|
+
currentAVZ?: string;
|
|
2724
|
+
dbType?: string;
|
|
2725
|
+
dbVersion?: string;
|
|
2726
|
+
deadline?: string;
|
|
2727
|
+
id?: number;
|
|
2728
|
+
impact?: string;
|
|
2729
|
+
impactEn?: string;
|
|
2730
|
+
impactZh?: string;
|
|
2731
|
+
insComment?: string;
|
|
2732
|
+
insName?: string;
|
|
2733
|
+
modifiedTime?: string;
|
|
2734
|
+
prepareInterval?: string;
|
|
2735
|
+
region?: string;
|
|
2736
|
+
resultInfo?: string;
|
|
2737
|
+
startTime?: string;
|
|
2738
|
+
status?: number;
|
|
2739
|
+
subInsNames?: string[];
|
|
2740
|
+
switchTime?: string;
|
|
2741
|
+
taskType?: string;
|
|
2742
|
+
taskTypeEn?: string;
|
|
2743
|
+
taskTypeZh?: string;
|
|
2385
2744
|
static names(): {
|
|
2386
2745
|
[key: string]: string;
|
|
2387
2746
|
};
|
|
@@ -2473,7 +2832,6 @@ export declare class DescribeDBInstanceAttributeResponseBodyDBInstanceConnAddrs
|
|
|
2473
2832
|
type?: string;
|
|
2474
2833
|
VPCId?: string;
|
|
2475
2834
|
vSwitchId?: string;
|
|
2476
|
-
vpcInstanceId?: string;
|
|
2477
2835
|
static names(): {
|
|
2478
2836
|
[key: string]: string;
|
|
2479
2837
|
};
|
|
@@ -2501,6 +2859,19 @@ export declare class DescribeDBInstanceAttributeResponseBodyDBInstanceDBNodes ex
|
|
|
2501
2859
|
[key: string]: any;
|
|
2502
2860
|
});
|
|
2503
2861
|
}
|
|
2862
|
+
export declare class DescribeDBInstanceAttributeResponseBodyDBInstanceTagSet extends $tea.Model {
|
|
2863
|
+
key?: string;
|
|
2864
|
+
value?: string;
|
|
2865
|
+
static names(): {
|
|
2866
|
+
[key: string]: string;
|
|
2867
|
+
};
|
|
2868
|
+
static types(): {
|
|
2869
|
+
[key: string]: any;
|
|
2870
|
+
};
|
|
2871
|
+
constructor(map?: {
|
|
2872
|
+
[key: string]: any;
|
|
2873
|
+
});
|
|
2874
|
+
}
|
|
2504
2875
|
export declare class DescribeDBInstanceAttributeResponseBodyDBInstance extends $tea.Model {
|
|
2505
2876
|
commodityCode?: string;
|
|
2506
2877
|
connAddrs?: DescribeDBInstanceAttributeResponseBodyDBInstanceConnAddrs[];
|
|
@@ -2528,10 +2899,12 @@ export declare class DescribeDBInstanceAttributeResponseBodyDBInstance extends $
|
|
|
2528
2899
|
port?: string;
|
|
2529
2900
|
readDBInstances?: string[];
|
|
2530
2901
|
regionId?: string;
|
|
2902
|
+
resourceGroupId?: string;
|
|
2531
2903
|
rightsSeparationEnabled?: boolean;
|
|
2532
2904
|
rightsSeparationStatus?: string;
|
|
2533
2905
|
status?: string;
|
|
2534
2906
|
storageUsed?: number;
|
|
2907
|
+
tagSet?: DescribeDBInstanceAttributeResponseBodyDBInstanceTagSet[];
|
|
2535
2908
|
type?: string;
|
|
2536
2909
|
VPCId?: string;
|
|
2537
2910
|
vSwitchId?: string;
|
|
@@ -2682,9 +3055,23 @@ export declare class DescribeDBInstancesResponseBodyDBInstancesNodes extends $te
|
|
|
2682
3055
|
[key: string]: any;
|
|
2683
3056
|
});
|
|
2684
3057
|
}
|
|
3058
|
+
export declare class DescribeDBInstancesResponseBodyDBInstancesTagSet extends $tea.Model {
|
|
3059
|
+
key?: string;
|
|
3060
|
+
value?: string;
|
|
3061
|
+
static names(): {
|
|
3062
|
+
[key: string]: string;
|
|
3063
|
+
};
|
|
3064
|
+
static types(): {
|
|
3065
|
+
[key: string]: any;
|
|
3066
|
+
};
|
|
3067
|
+
constructor(map?: {
|
|
3068
|
+
[key: string]: any;
|
|
3069
|
+
});
|
|
3070
|
+
}
|
|
2685
3071
|
export declare class DescribeDBInstancesResponseBodyDBInstances extends $tea.Model {
|
|
2686
3072
|
commodityCode?: string;
|
|
2687
3073
|
createTime?: string;
|
|
3074
|
+
DBInstanceName?: string;
|
|
2688
3075
|
DBType?: string;
|
|
2689
3076
|
DBVersion?: string;
|
|
2690
3077
|
description?: string;
|
|
@@ -2702,8 +3089,10 @@ export declare class DescribeDBInstancesResponseBodyDBInstances extends $tea.Mod
|
|
|
2702
3089
|
payType?: string;
|
|
2703
3090
|
readDBInstances?: string[];
|
|
2704
3091
|
regionId?: string;
|
|
3092
|
+
resourceGroupId?: string;
|
|
2705
3093
|
status?: string;
|
|
2706
3094
|
storageUsed?: number;
|
|
3095
|
+
tagSet?: DescribeDBInstancesResponseBodyDBInstancesTagSet[];
|
|
2707
3096
|
type?: string;
|
|
2708
3097
|
VPCId?: string;
|
|
2709
3098
|
zoneId?: string;
|
|
@@ -2825,6 +3214,28 @@ export declare class DescribeDistributeTableListResponseBodyData extends $tea.Mo
|
|
|
2825
3214
|
[key: string]: any;
|
|
2826
3215
|
});
|
|
2827
3216
|
}
|
|
3217
|
+
export declare class DescribeEventsResponseBodyEventItems extends $tea.Model {
|
|
3218
|
+
eventId?: number;
|
|
3219
|
+
eventName?: string;
|
|
3220
|
+
eventPayload?: string;
|
|
3221
|
+
eventReason?: string;
|
|
3222
|
+
eventRecordTime?: string;
|
|
3223
|
+
eventTime?: string;
|
|
3224
|
+
eventType?: string;
|
|
3225
|
+
eventUserType?: string;
|
|
3226
|
+
regionId?: string;
|
|
3227
|
+
resourceName?: string;
|
|
3228
|
+
resourceType?: string;
|
|
3229
|
+
static names(): {
|
|
3230
|
+
[key: string]: string;
|
|
3231
|
+
};
|
|
3232
|
+
static types(): {
|
|
3233
|
+
[key: string]: any;
|
|
3234
|
+
};
|
|
3235
|
+
constructor(map?: {
|
|
3236
|
+
[key: string]: any;
|
|
3237
|
+
});
|
|
3238
|
+
}
|
|
2828
3239
|
export declare class DescribeParameterTemplatesResponseBodyDataParameters extends $tea.Model {
|
|
2829
3240
|
checkingCode?: string;
|
|
2830
3241
|
dynamic?: number;
|
|
@@ -2900,10 +3311,9 @@ export declare class DescribeParametersResponseBodyData extends $tea.Model {
|
|
|
2900
3311
|
[key: string]: any;
|
|
2901
3312
|
});
|
|
2902
3313
|
}
|
|
2903
|
-
export declare class
|
|
2904
|
-
|
|
2905
|
-
|
|
2906
|
-
DBInstanceName?: string;
|
|
3314
|
+
export declare class DescribeRegionsResponseBodyRegionsRegionZonesZone extends $tea.Model {
|
|
3315
|
+
vpcEnabled?: boolean;
|
|
3316
|
+
zoneId?: string;
|
|
2907
3317
|
static names(): {
|
|
2908
3318
|
[key: string]: string;
|
|
2909
3319
|
};
|
|
@@ -2914,26 +3324,23 @@ export declare class DescribePolarxDataNodesResponseBodyDBInstanceDataNodes exte
|
|
|
2914
3324
|
[key: string]: any;
|
|
2915
3325
|
});
|
|
2916
3326
|
}
|
|
2917
|
-
export declare class
|
|
2918
|
-
|
|
2919
|
-
|
|
2920
|
-
|
|
2921
|
-
|
|
2922
|
-
|
|
2923
|
-
|
|
2924
|
-
|
|
2925
|
-
|
|
2926
|
-
|
|
2927
|
-
|
|
2928
|
-
|
|
2929
|
-
|
|
3327
|
+
export declare class DescribeRegionsResponseBodyRegionsRegionZones extends $tea.Model {
|
|
3328
|
+
zone?: DescribeRegionsResponseBodyRegionsRegionZonesZone[];
|
|
3329
|
+
static names(): {
|
|
3330
|
+
[key: string]: string;
|
|
3331
|
+
};
|
|
3332
|
+
static types(): {
|
|
3333
|
+
[key: string]: any;
|
|
3334
|
+
};
|
|
3335
|
+
constructor(map?: {
|
|
3336
|
+
[key: string]: any;
|
|
3337
|
+
});
|
|
3338
|
+
}
|
|
3339
|
+
export declare class DescribeRegionsResponseBodyRegionsRegion extends $tea.Model {
|
|
2930
3340
|
regionId?: string;
|
|
2931
|
-
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
VPCId?: string;
|
|
2935
|
-
zoneId?: string;
|
|
2936
|
-
lockReason?: string;
|
|
3341
|
+
supportPolarx10?: boolean;
|
|
3342
|
+
supportPolarx20?: boolean;
|
|
3343
|
+
zones?: DescribeRegionsResponseBodyRegionsRegionZones;
|
|
2937
3344
|
static names(): {
|
|
2938
3345
|
[key: string]: string;
|
|
2939
3346
|
};
|
|
@@ -2944,8 +3351,8 @@ export declare class DescribePolarxDbInstancesResponseBodyDbInstancesDbInstance
|
|
|
2944
3351
|
[key: string]: any;
|
|
2945
3352
|
});
|
|
2946
3353
|
}
|
|
2947
|
-
export declare class
|
|
2948
|
-
|
|
3354
|
+
export declare class DescribeRegionsResponseBodyRegions extends $tea.Model {
|
|
3355
|
+
region?: DescribeRegionsResponseBodyRegionsRegion[];
|
|
2949
3356
|
static names(): {
|
|
2950
3357
|
[key: string]: string;
|
|
2951
3358
|
};
|
|
@@ -2956,27 +3363,9 @@ export declare class DescribePolarxDbInstancesResponseBodyDbInstances extends $t
|
|
|
2956
3363
|
[key: string]: any;
|
|
2957
3364
|
});
|
|
2958
3365
|
}
|
|
2959
|
-
export declare class
|
|
2960
|
-
|
|
2961
|
-
|
|
2962
|
-
DBType?: string;
|
|
2963
|
-
DBVersion?: string;
|
|
2964
|
-
description?: string;
|
|
2965
|
-
engine?: string;
|
|
2966
|
-
expireTime?: string;
|
|
2967
|
-
expired?: boolean;
|
|
2968
|
-
id?: string;
|
|
2969
|
-
lockMode?: string;
|
|
2970
|
-
lockReason?: string;
|
|
2971
|
-
network?: string;
|
|
2972
|
-
nodeClass?: string;
|
|
2973
|
-
nodeCount?: number;
|
|
2974
|
-
payType?: string;
|
|
2975
|
-
regionId?: string;
|
|
2976
|
-
status?: string;
|
|
2977
|
-
storageUsed?: number;
|
|
2978
|
-
VPCId?: string;
|
|
2979
|
-
zoneId?: string;
|
|
3366
|
+
export declare class DescribeSecurityIpsResponseBodyDataGroupItems extends $tea.Model {
|
|
3367
|
+
groupName?: string;
|
|
3368
|
+
securityIPList?: string;
|
|
2980
3369
|
static names(): {
|
|
2981
3370
|
[key: string]: string;
|
|
2982
3371
|
};
|
|
@@ -2987,9 +3376,9 @@ export declare class DescribePolarxPgInstancesResponseBodyDBInstances extends $t
|
|
|
2987
3376
|
[key: string]: any;
|
|
2988
3377
|
});
|
|
2989
3378
|
}
|
|
2990
|
-
export declare class
|
|
2991
|
-
|
|
2992
|
-
|
|
3379
|
+
export declare class DescribeSecurityIpsResponseBodyData extends $tea.Model {
|
|
3380
|
+
DBInstanceName?: string;
|
|
3381
|
+
groupItems?: DescribeSecurityIpsResponseBodyDataGroupItems[];
|
|
2993
3382
|
static names(): {
|
|
2994
3383
|
[key: string]: string;
|
|
2995
3384
|
};
|
|
@@ -3000,8 +3389,15 @@ export declare class DescribeRegionsResponseBodyRegionsRegionZonesZone extends $
|
|
|
3000
3389
|
[key: string]: any;
|
|
3001
3390
|
});
|
|
3002
3391
|
}
|
|
3003
|
-
export declare class
|
|
3004
|
-
|
|
3392
|
+
export declare class DescribeSlinkTaskInfoResponseBodyDataDataImportTaskDetailInfoServiceDetailListTaskDetailList extends $tea.Model {
|
|
3393
|
+
delay?: number;
|
|
3394
|
+
lastError?: string;
|
|
3395
|
+
physicalDbName?: string;
|
|
3396
|
+
progress?: number;
|
|
3397
|
+
statistics?: string;
|
|
3398
|
+
status?: string;
|
|
3399
|
+
taskId?: number;
|
|
3400
|
+
type?: string;
|
|
3005
3401
|
static names(): {
|
|
3006
3402
|
[key: string]: string;
|
|
3007
3403
|
};
|
|
@@ -3012,11 +3408,11 @@ export declare class DescribeRegionsResponseBodyRegionsRegionZones extends $tea.
|
|
|
3012
3408
|
[key: string]: any;
|
|
3013
3409
|
});
|
|
3014
3410
|
}
|
|
3015
|
-
export declare class
|
|
3016
|
-
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
|
|
3411
|
+
export declare class DescribeSlinkTaskInfoResponseBodyDataDataImportTaskDetailInfoServiceDetailList extends $tea.Model {
|
|
3412
|
+
id?: number;
|
|
3413
|
+
status?: string;
|
|
3414
|
+
taskDetailList?: DescribeSlinkTaskInfoResponseBodyDataDataImportTaskDetailInfoServiceDetailListTaskDetailList[];
|
|
3415
|
+
type?: string;
|
|
3020
3416
|
static names(): {
|
|
3021
3417
|
[key: string]: string;
|
|
3022
3418
|
};
|
|
@@ -3027,8 +3423,11 @@ export declare class DescribeRegionsResponseBodyRegionsRegion extends $tea.Model
|
|
|
3027
3423
|
[key: string]: any;
|
|
3028
3424
|
});
|
|
3029
3425
|
}
|
|
3030
|
-
export declare class
|
|
3031
|
-
|
|
3426
|
+
export declare class DescribeSlinkTaskInfoResponseBodyDataDataImportTaskDetailInfo extends $tea.Model {
|
|
3427
|
+
fsmId?: number;
|
|
3428
|
+
fsmState?: string;
|
|
3429
|
+
fsmStatus?: string;
|
|
3430
|
+
serviceDetailList?: DescribeSlinkTaskInfoResponseBodyDataDataImportTaskDetailInfoServiceDetailList[];
|
|
3032
3431
|
static names(): {
|
|
3033
3432
|
[key: string]: string;
|
|
3034
3433
|
};
|
|
@@ -3039,9 +3438,8 @@ export declare class DescribeRegionsResponseBodyRegions extends $tea.Model {
|
|
|
3039
3438
|
[key: string]: any;
|
|
3040
3439
|
});
|
|
3041
3440
|
}
|
|
3042
|
-
export declare class
|
|
3043
|
-
|
|
3044
|
-
securityIPList?: string;
|
|
3441
|
+
export declare class DescribeSlinkTaskInfoResponseBodyData extends $tea.Model {
|
|
3442
|
+
dataImportTaskDetailInfo?: DescribeSlinkTaskInfoResponseBodyDataDataImportTaskDetailInfo;
|
|
3045
3443
|
static names(): {
|
|
3046
3444
|
[key: string]: string;
|
|
3047
3445
|
};
|
|
@@ -3052,9 +3450,10 @@ export declare class DescribeSecurityIpsResponseBodyDataGroupItems extends $tea.
|
|
|
3052
3450
|
[key: string]: any;
|
|
3053
3451
|
});
|
|
3054
3452
|
}
|
|
3055
|
-
export declare class
|
|
3056
|
-
|
|
3057
|
-
|
|
3453
|
+
export declare class DescribeTagsResponseBodyTagInfos extends $tea.Model {
|
|
3454
|
+
DBInstanceIds?: string[];
|
|
3455
|
+
tagKey?: string;
|
|
3456
|
+
tagValue?: string;
|
|
3058
3457
|
static names(): {
|
|
3059
3458
|
[key: string]: string;
|
|
3060
3459
|
};
|
|
@@ -3099,10 +3498,9 @@ export declare class DescribeUserEncryptionKeyListResponseBodyData extends $tea.
|
|
|
3099
3498
|
[key: string]: any;
|
|
3100
3499
|
});
|
|
3101
3500
|
}
|
|
3102
|
-
export declare class
|
|
3103
|
-
|
|
3104
|
-
|
|
3105
|
-
values?: string[];
|
|
3501
|
+
export declare class ListTagResourcesRequestTag extends $tea.Model {
|
|
3502
|
+
key?: string;
|
|
3503
|
+
value?: string;
|
|
3106
3504
|
static names(): {
|
|
3107
3505
|
[key: string]: string;
|
|
3108
3506
|
};
|
|
@@ -3113,12 +3511,11 @@ export declare class GetPolarxCommodityResponseBodyComponentList extends $tea.Mo
|
|
|
3113
3511
|
[key: string]: any;
|
|
3114
3512
|
});
|
|
3115
3513
|
}
|
|
3116
|
-
export declare class
|
|
3117
|
-
|
|
3118
|
-
|
|
3119
|
-
|
|
3120
|
-
|
|
3121
|
-
vSwitchId?: string;
|
|
3514
|
+
export declare class ListTagResourcesResponseBodyTagResourcesTagResource extends $tea.Model {
|
|
3515
|
+
resourceId?: string;
|
|
3516
|
+
resourceType?: string;
|
|
3517
|
+
tagKey?: string;
|
|
3518
|
+
tagValue?: string;
|
|
3122
3519
|
static names(): {
|
|
3123
3520
|
[key: string]: string;
|
|
3124
3521
|
};
|
|
@@ -3129,11 +3526,8 @@ export declare class GetPolarxCommodityResponseBodyDBInstanceConnAddrs extends $
|
|
|
3129
3526
|
[key: string]: any;
|
|
3130
3527
|
});
|
|
3131
3528
|
}
|
|
3132
|
-
export declare class
|
|
3133
|
-
|
|
3134
|
-
nodeClass?: string;
|
|
3135
|
-
regionId?: string;
|
|
3136
|
-
zoneId?: string;
|
|
3529
|
+
export declare class ListTagResourcesResponseBodyTagResources extends $tea.Model {
|
|
3530
|
+
tagResource?: ListTagResourcesResponseBodyTagResourcesTagResource[];
|
|
3137
3531
|
static names(): {
|
|
3138
3532
|
[key: string]: string;
|
|
3139
3533
|
};
|
|
@@ -3144,38 +3538,24 @@ export declare class GetPolarxCommodityResponseBodyDBInstanceDBNodes extends $te
|
|
|
3144
3538
|
[key: string]: any;
|
|
3145
3539
|
});
|
|
3146
3540
|
}
|
|
3147
|
-
export declare class
|
|
3148
|
-
commodityCode?: string;
|
|
3149
|
-
connAddrs?: GetPolarxCommodityResponseBodyDBInstanceConnAddrs[];
|
|
3541
|
+
export declare class ModifyDBInstanceConnectionStringResponseBodyData extends $tea.Model {
|
|
3150
3542
|
connectionString?: string;
|
|
3151
|
-
|
|
3152
|
-
|
|
3153
|
-
DBNodeClass?: string;
|
|
3154
|
-
DBNodeCount?: number;
|
|
3155
|
-
DBNodes?: GetPolarxCommodityResponseBodyDBInstanceDBNodes[];
|
|
3156
|
-
DBType?: string;
|
|
3157
|
-
DBVersion?: string;
|
|
3158
|
-
description?: string;
|
|
3159
|
-
engine?: string;
|
|
3160
|
-
expireDate?: string;
|
|
3161
|
-
expired?: string;
|
|
3162
|
-
id?: string;
|
|
3163
|
-
latestMinorVersion?: string;
|
|
3164
|
-
lockMode?: string;
|
|
3165
|
-
maintainEndTime?: string;
|
|
3166
|
-
maintainStartTime?: string;
|
|
3167
|
-
minorVersion?: string;
|
|
3168
|
-
network?: string;
|
|
3169
|
-
payType?: string;
|
|
3543
|
+
DBInstanceName?: string;
|
|
3544
|
+
DBInstanceNetType?: string;
|
|
3170
3545
|
port?: string;
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
|
|
3176
|
-
|
|
3177
|
-
|
|
3178
|
-
|
|
3546
|
+
static names(): {
|
|
3547
|
+
[key: string]: string;
|
|
3548
|
+
};
|
|
3549
|
+
static types(): {
|
|
3550
|
+
[key: string]: any;
|
|
3551
|
+
};
|
|
3552
|
+
constructor(map?: {
|
|
3553
|
+
[key: string]: any;
|
|
3554
|
+
});
|
|
3555
|
+
}
|
|
3556
|
+
export declare class TagResourcesRequestTag extends $tea.Model {
|
|
3557
|
+
key?: string;
|
|
3558
|
+
value?: string;
|
|
3179
3559
|
static names(): {
|
|
3180
3560
|
[key: string]: string;
|
|
3181
3561
|
};
|
|
@@ -3239,8 +3619,10 @@ export default class Client extends OpenApi {
|
|
|
3239
3619
|
}, endpoint: string): string;
|
|
3240
3620
|
allocateInstancePublicConnectionWithOptions(request: AllocateInstancePublicConnectionRequest, runtime: $Util.RuntimeOptions): Promise<AllocateInstancePublicConnectionResponse>;
|
|
3241
3621
|
allocateInstancePublicConnection(request: AllocateInstancePublicConnectionRequest): Promise<AllocateInstancePublicConnectionResponse>;
|
|
3242
|
-
|
|
3243
|
-
|
|
3622
|
+
cancelActiveOperationTasksWithOptions(request: CancelActiveOperationTasksRequest, runtime: $Util.RuntimeOptions): Promise<CancelActiveOperationTasksResponse>;
|
|
3623
|
+
cancelActiveOperationTasks(request: CancelActiveOperationTasksRequest): Promise<CancelActiveOperationTasksResponse>;
|
|
3624
|
+
changeResourceGroupWithOptions(request: ChangeResourceGroupRequest, runtime: $Util.RuntimeOptions): Promise<ChangeResourceGroupResponse>;
|
|
3625
|
+
changeResourceGroup(request: ChangeResourceGroupRequest): Promise<ChangeResourceGroupResponse>;
|
|
3244
3626
|
checkCloudResourceAuthorizedWithOptions(request: CheckCloudResourceAuthorizedRequest, runtime: $Util.RuntimeOptions): Promise<CheckCloudResourceAuthorizedResponse>;
|
|
3245
3627
|
checkCloudResourceAuthorized(request: CheckCloudResourceAuthorizedRequest): Promise<CheckCloudResourceAuthorizedResponse>;
|
|
3246
3628
|
createAccountWithOptions(request: CreateAccountRequest, runtime: $Util.RuntimeOptions): Promise<CreateAccountResponse>;
|
|
@@ -3251,10 +3633,6 @@ export default class Client extends OpenApi {
|
|
|
3251
3633
|
createDB(request: CreateDBRequest): Promise<CreateDBResponse>;
|
|
3252
3634
|
createDBInstanceWithOptions(request: CreateDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<CreateDBInstanceResponse>;
|
|
3253
3635
|
createDBInstance(request: CreateDBInstanceRequest): Promise<CreateDBInstanceResponse>;
|
|
3254
|
-
createPolarxInstanceWithOptions(request: CreatePolarxInstanceRequest, runtime: $Util.RuntimeOptions): Promise<CreatePolarxInstanceResponse>;
|
|
3255
|
-
createPolarxInstance(request: CreatePolarxInstanceRequest): Promise<CreatePolarxInstanceResponse>;
|
|
3256
|
-
createPolarxOrderWithOptions(request: CreatePolarxOrderRequest, runtime: $Util.RuntimeOptions): Promise<CreatePolarxOrderResponse>;
|
|
3257
|
-
createPolarxOrder(request: CreatePolarxOrderRequest): Promise<CreatePolarxOrderResponse>;
|
|
3258
3636
|
createSuperAccountWithOptions(request: CreateSuperAccountRequest, runtime: $Util.RuntimeOptions): Promise<CreateSuperAccountResponse>;
|
|
3259
3637
|
createSuperAccount(request: CreateSuperAccountRequest): Promise<CreateSuperAccountResponse>;
|
|
3260
3638
|
deleteAccountWithOptions(request: DeleteAccountRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAccountResponse>;
|
|
@@ -3265,6 +3643,12 @@ export default class Client extends OpenApi {
|
|
|
3265
3643
|
deleteDBInstance(request: DeleteDBInstanceRequest): Promise<DeleteDBInstanceResponse>;
|
|
3266
3644
|
describeAccountListWithOptions(request: DescribeAccountListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAccountListResponse>;
|
|
3267
3645
|
describeAccountList(request: DescribeAccountListRequest): Promise<DescribeAccountListResponse>;
|
|
3646
|
+
describeActiveOperationMaintainConfWithOptions(request: DescribeActiveOperationMaintainConfRequest, runtime: $Util.RuntimeOptions): Promise<DescribeActiveOperationMaintainConfResponse>;
|
|
3647
|
+
describeActiveOperationMaintainConf(request: DescribeActiveOperationMaintainConfRequest): Promise<DescribeActiveOperationMaintainConfResponse>;
|
|
3648
|
+
describeActiveOperationTaskCountWithOptions(request: DescribeActiveOperationTaskCountRequest, runtime: $Util.RuntimeOptions): Promise<DescribeActiveOperationTaskCountResponse>;
|
|
3649
|
+
describeActiveOperationTaskCount(request: DescribeActiveOperationTaskCountRequest): Promise<DescribeActiveOperationTaskCountResponse>;
|
|
3650
|
+
describeActiveOperationTasksWithOptions(request: DescribeActiveOperationTasksRequest, runtime: $Util.RuntimeOptions): Promise<DescribeActiveOperationTasksResponse>;
|
|
3651
|
+
describeActiveOperationTasks(request: DescribeActiveOperationTasksRequest): Promise<DescribeActiveOperationTasksResponse>;
|
|
3268
3652
|
describeBackupPolicyWithOptions(request: DescribeBackupPolicyRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBackupPolicyResponse>;
|
|
3269
3653
|
describeBackupPolicy(request: DescribeBackupPolicyRequest): Promise<DescribeBackupPolicyResponse>;
|
|
3270
3654
|
describeBackupSetListWithOptions(request: DescribeBackupSetListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBackupSetListResponse>;
|
|
@@ -3291,34 +3675,42 @@ export default class Client extends OpenApi {
|
|
|
3291
3675
|
describeDbList(request: DescribeDbListRequest): Promise<DescribeDbListResponse>;
|
|
3292
3676
|
describeDistributeTableListWithOptions(request: DescribeDistributeTableListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDistributeTableListResponse>;
|
|
3293
3677
|
describeDistributeTableList(request: DescribeDistributeTableListRequest): Promise<DescribeDistributeTableListResponse>;
|
|
3678
|
+
describeEventsWithOptions(request: DescribeEventsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeEventsResponse>;
|
|
3679
|
+
describeEvents(request: DescribeEventsRequest): Promise<DescribeEventsResponse>;
|
|
3294
3680
|
describeParameterTemplatesWithOptions(request: DescribeParameterTemplatesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeParameterTemplatesResponse>;
|
|
3295
3681
|
describeParameterTemplates(request: DescribeParameterTemplatesRequest): Promise<DescribeParameterTemplatesResponse>;
|
|
3296
3682
|
describeParametersWithOptions(request: DescribeParametersRequest, runtime: $Util.RuntimeOptions): Promise<DescribeParametersResponse>;
|
|
3297
3683
|
describeParameters(request: DescribeParametersRequest): Promise<DescribeParametersResponse>;
|
|
3298
|
-
describePolarxDataNodesWithOptions(request: DescribePolarxDataNodesRequest, runtime: $Util.RuntimeOptions): Promise<DescribePolarxDataNodesResponse>;
|
|
3299
|
-
describePolarxDataNodes(request: DescribePolarxDataNodesRequest): Promise<DescribePolarxDataNodesResponse>;
|
|
3300
|
-
describePolarxDbInstancesWithOptions(request: DescribePolarxDbInstancesRequest, runtime: $Util.RuntimeOptions): Promise<DescribePolarxDbInstancesResponse>;
|
|
3301
|
-
describePolarxDbInstances(request: DescribePolarxDbInstancesRequest): Promise<DescribePolarxDbInstancesResponse>;
|
|
3302
|
-
describePolarxPgInstancesWithOptions(request: DescribePolarxPgInstancesRequest, runtime: $Util.RuntimeOptions): Promise<DescribePolarxPgInstancesResponse>;
|
|
3303
|
-
describePolarxPgInstances(request: DescribePolarxPgInstancesRequest): Promise<DescribePolarxPgInstancesResponse>;
|
|
3304
3684
|
describeRegionsWithOptions(runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse>;
|
|
3305
3685
|
describeRegions(): Promise<DescribeRegionsResponse>;
|
|
3306
3686
|
describeScaleOutMigrateTaskListWithOptions(request: DescribeScaleOutMigrateTaskListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeScaleOutMigrateTaskListResponse>;
|
|
3307
3687
|
describeScaleOutMigrateTaskList(request: DescribeScaleOutMigrateTaskListRequest): Promise<DescribeScaleOutMigrateTaskListResponse>;
|
|
3308
3688
|
describeSecurityIpsWithOptions(request: DescribeSecurityIpsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSecurityIpsResponse>;
|
|
3309
3689
|
describeSecurityIps(request: DescribeSecurityIpsRequest): Promise<DescribeSecurityIpsResponse>;
|
|
3690
|
+
describeSlinkTaskInfoWithOptions(request: DescribeSlinkTaskInfoRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSlinkTaskInfoResponse>;
|
|
3691
|
+
describeSlinkTaskInfo(request: DescribeSlinkTaskInfoRequest): Promise<DescribeSlinkTaskInfoResponse>;
|
|
3692
|
+
describeTagsWithOptions(request: DescribeTagsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeTagsResponse>;
|
|
3693
|
+
describeTags(request: DescribeTagsRequest): Promise<DescribeTagsResponse>;
|
|
3310
3694
|
describeTasksWithOptions(request: DescribeTasksRequest, runtime: $Util.RuntimeOptions): Promise<DescribeTasksResponse>;
|
|
3311
3695
|
describeTasks(request: DescribeTasksRequest): Promise<DescribeTasksResponse>;
|
|
3312
3696
|
describeUserEncryptionKeyListWithOptions(request: DescribeUserEncryptionKeyListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeUserEncryptionKeyListResponse>;
|
|
3313
3697
|
describeUserEncryptionKeyList(request: DescribeUserEncryptionKeyListRequest): Promise<DescribeUserEncryptionKeyListResponse>;
|
|
3314
|
-
|
|
3315
|
-
|
|
3698
|
+
initDBInstanceResourceGroupIdWithOptions(request: InitDBInstanceResourceGroupIdRequest, runtime: $Util.RuntimeOptions): Promise<InitDBInstanceResourceGroupIdResponse>;
|
|
3699
|
+
initDBInstanceResourceGroupId(request: InitDBInstanceResourceGroupIdRequest): Promise<InitDBInstanceResourceGroupIdResponse>;
|
|
3700
|
+
listTagResourcesWithOptions(request: ListTagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<ListTagResourcesResponse>;
|
|
3701
|
+
listTagResources(request: ListTagResourcesRequest): Promise<ListTagResourcesResponse>;
|
|
3316
3702
|
modifyAccountDescriptionWithOptions(request: ModifyAccountDescriptionRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAccountDescriptionResponse>;
|
|
3317
3703
|
modifyAccountDescription(request: ModifyAccountDescriptionRequest): Promise<ModifyAccountDescriptionResponse>;
|
|
3704
|
+
modifyActiveOperationMaintainConfWithOptions(request: ModifyActiveOperationMaintainConfRequest, runtime: $Util.RuntimeOptions): Promise<ModifyActiveOperationMaintainConfResponse>;
|
|
3705
|
+
modifyActiveOperationMaintainConf(request: ModifyActiveOperationMaintainConfRequest): Promise<ModifyActiveOperationMaintainConfResponse>;
|
|
3706
|
+
modifyActiveOperationTasksWithOptions(request: ModifyActiveOperationTasksRequest, runtime: $Util.RuntimeOptions): Promise<ModifyActiveOperationTasksResponse>;
|
|
3707
|
+
modifyActiveOperationTasks(request: ModifyActiveOperationTasksRequest): Promise<ModifyActiveOperationTasksResponse>;
|
|
3318
3708
|
modifyDBInstanceClassWithOptions(request: ModifyDBInstanceClassRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceClassResponse>;
|
|
3319
3709
|
modifyDBInstanceClass(request: ModifyDBInstanceClassRequest): Promise<ModifyDBInstanceClassResponse>;
|
|
3320
3710
|
modifyDBInstanceConfigWithOptions(request: ModifyDBInstanceConfigRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceConfigResponse>;
|
|
3321
3711
|
modifyDBInstanceConfig(request: ModifyDBInstanceConfigRequest): Promise<ModifyDBInstanceConfigResponse>;
|
|
3712
|
+
modifyDBInstanceConnectionStringWithOptions(request: ModifyDBInstanceConnectionStringRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceConnectionStringResponse>;
|
|
3713
|
+
modifyDBInstanceConnectionString(request: ModifyDBInstanceConnectionStringRequest): Promise<ModifyDBInstanceConnectionStringResponse>;
|
|
3322
3714
|
modifyDBInstanceDescriptionWithOptions(request: ModifyDBInstanceDescriptionRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceDescriptionResponse>;
|
|
3323
3715
|
modifyDBInstanceDescription(request: ModifyDBInstanceDescriptionRequest): Promise<ModifyDBInstanceDescriptionResponse>;
|
|
3324
3716
|
modifyDatabaseDescriptionWithOptions(request: ModifyDatabaseDescriptionRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDatabaseDescriptionResponse>;
|
|
@@ -3331,6 +3723,10 @@ export default class Client extends OpenApi {
|
|
|
3331
3723
|
releaseInstancePublicConnection(request: ReleaseInstancePublicConnectionRequest): Promise<ReleaseInstancePublicConnectionResponse>;
|
|
3332
3724
|
restartDBInstanceWithOptions(request: RestartDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<RestartDBInstanceResponse>;
|
|
3333
3725
|
restartDBInstance(request: RestartDBInstanceRequest): Promise<RestartDBInstanceResponse>;
|
|
3726
|
+
tagResourcesWithOptions(request: TagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<TagResourcesResponse>;
|
|
3727
|
+
tagResources(request: TagResourcesRequest): Promise<TagResourcesResponse>;
|
|
3728
|
+
untagResourcesWithOptions(request: UntagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<UntagResourcesResponse>;
|
|
3729
|
+
untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse>;
|
|
3334
3730
|
updateBackupPolicyWithOptions(request: UpdateBackupPolicyRequest, runtime: $Util.RuntimeOptions): Promise<UpdateBackupPolicyResponse>;
|
|
3335
3731
|
updateBackupPolicy(request: UpdateBackupPolicyRequest): Promise<UpdateBackupPolicyResponse>;
|
|
3336
3732
|
updateDBInstanceSSLWithOptions(request: UpdateDBInstanceSSLRequest, runtime: $Util.RuntimeOptions): Promise<UpdateDBInstanceSSLResponse>;
|