@alicloud/polardbx20200202 1.0.1 → 1.0.5
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 +395 -156
- package/dist/client.js +1639 -318
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +1828 -413
package/dist/client.d.ts
CHANGED
|
@@ -50,6 +50,47 @@ export declare class AllocateInstancePublicConnectionResponse extends $tea.Model
|
|
|
50
50
|
[key: string]: any;
|
|
51
51
|
});
|
|
52
52
|
}
|
|
53
|
+
export declare class CancelActiveOperationTasksRequest extends $tea.Model {
|
|
54
|
+
ids?: string;
|
|
55
|
+
regionId?: string;
|
|
56
|
+
static names(): {
|
|
57
|
+
[key: string]: string;
|
|
58
|
+
};
|
|
59
|
+
static types(): {
|
|
60
|
+
[key: string]: any;
|
|
61
|
+
};
|
|
62
|
+
constructor(map?: {
|
|
63
|
+
[key: string]: any;
|
|
64
|
+
});
|
|
65
|
+
}
|
|
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
|
+
}
|
|
53
94
|
export declare class CancelPolarxOrderRequest extends $tea.Model {
|
|
54
95
|
DBInstanceName?: string;
|
|
55
96
|
regionId?: string;
|
|
@@ -331,63 +372,6 @@ export declare class CreateDBInstanceResponse extends $tea.Model {
|
|
|
331
372
|
[key: string]: any;
|
|
332
373
|
});
|
|
333
374
|
}
|
|
334
|
-
export declare class CreatePolarxInstanceRequest extends $tea.Model {
|
|
335
|
-
clientToken?: string;
|
|
336
|
-
description?: string;
|
|
337
|
-
duration?: number;
|
|
338
|
-
instanceSeries?: string;
|
|
339
|
-
isAutoRenew?: boolean;
|
|
340
|
-
masterInstId?: string;
|
|
341
|
-
mySQLVersion?: number;
|
|
342
|
-
payType?: string;
|
|
343
|
-
pricingCycle?: string;
|
|
344
|
-
quantity?: number;
|
|
345
|
-
regionId?: string;
|
|
346
|
-
specification?: string;
|
|
347
|
-
type?: string;
|
|
348
|
-
vpcId?: string;
|
|
349
|
-
vswitchId?: string;
|
|
350
|
-
zoneId?: string;
|
|
351
|
-
isHa?: boolean;
|
|
352
|
-
static names(): {
|
|
353
|
-
[key: string]: string;
|
|
354
|
-
};
|
|
355
|
-
static types(): {
|
|
356
|
-
[key: string]: any;
|
|
357
|
-
};
|
|
358
|
-
constructor(map?: {
|
|
359
|
-
[key: string]: any;
|
|
360
|
-
});
|
|
361
|
-
}
|
|
362
|
-
export declare class CreatePolarxInstanceResponseBody extends $tea.Model {
|
|
363
|
-
data?: CreatePolarxInstanceResponseBodyData;
|
|
364
|
-
requestId?: string;
|
|
365
|
-
success?: boolean;
|
|
366
|
-
static names(): {
|
|
367
|
-
[key: string]: string;
|
|
368
|
-
};
|
|
369
|
-
static types(): {
|
|
370
|
-
[key: string]: any;
|
|
371
|
-
};
|
|
372
|
-
constructor(map?: {
|
|
373
|
-
[key: string]: any;
|
|
374
|
-
});
|
|
375
|
-
}
|
|
376
|
-
export declare class CreatePolarxInstanceResponse extends $tea.Model {
|
|
377
|
-
headers: {
|
|
378
|
-
[key: string]: string;
|
|
379
|
-
};
|
|
380
|
-
body: CreatePolarxInstanceResponseBody;
|
|
381
|
-
static names(): {
|
|
382
|
-
[key: string]: string;
|
|
383
|
-
};
|
|
384
|
-
static types(): {
|
|
385
|
-
[key: string]: any;
|
|
386
|
-
};
|
|
387
|
-
constructor(map?: {
|
|
388
|
-
[key: string]: any;
|
|
389
|
-
});
|
|
390
|
-
}
|
|
391
375
|
export declare class CreatePolarxOrderRequest extends $tea.Model {
|
|
392
376
|
DBInstanceName?: string;
|
|
393
377
|
nodeCount?: string;
|
|
@@ -648,6 +632,144 @@ export declare class DescribeAccountListResponse extends $tea.Model {
|
|
|
648
632
|
[key: string]: any;
|
|
649
633
|
});
|
|
650
634
|
}
|
|
635
|
+
export declare class DescribeActiveOperationMaintainConfRequest extends $tea.Model {
|
|
636
|
+
regionId?: string;
|
|
637
|
+
static names(): {
|
|
638
|
+
[key: string]: string;
|
|
639
|
+
};
|
|
640
|
+
static types(): {
|
|
641
|
+
[key: string]: any;
|
|
642
|
+
};
|
|
643
|
+
constructor(map?: {
|
|
644
|
+
[key: string]: any;
|
|
645
|
+
});
|
|
646
|
+
}
|
|
647
|
+
export declare class DescribeActiveOperationMaintainConfResponseBody extends $tea.Model {
|
|
648
|
+
config?: DescribeActiveOperationMaintainConfResponseBodyConfig;
|
|
649
|
+
hasConfig?: number;
|
|
650
|
+
requestId?: string;
|
|
651
|
+
static names(): {
|
|
652
|
+
[key: string]: string;
|
|
653
|
+
};
|
|
654
|
+
static types(): {
|
|
655
|
+
[key: string]: any;
|
|
656
|
+
};
|
|
657
|
+
constructor(map?: {
|
|
658
|
+
[key: string]: any;
|
|
659
|
+
});
|
|
660
|
+
}
|
|
661
|
+
export declare class DescribeActiveOperationMaintainConfResponse extends $tea.Model {
|
|
662
|
+
headers: {
|
|
663
|
+
[key: string]: string;
|
|
664
|
+
};
|
|
665
|
+
body: DescribeActiveOperationMaintainConfResponseBody;
|
|
666
|
+
static names(): {
|
|
667
|
+
[key: string]: string;
|
|
668
|
+
};
|
|
669
|
+
static types(): {
|
|
670
|
+
[key: string]: any;
|
|
671
|
+
};
|
|
672
|
+
constructor(map?: {
|
|
673
|
+
[key: string]: any;
|
|
674
|
+
});
|
|
675
|
+
}
|
|
676
|
+
export declare class DescribeActiveOperationTaskCountRequest extends $tea.Model {
|
|
677
|
+
category?: string;
|
|
678
|
+
product?: string;
|
|
679
|
+
regionId?: string;
|
|
680
|
+
static names(): {
|
|
681
|
+
[key: string]: string;
|
|
682
|
+
};
|
|
683
|
+
static types(): {
|
|
684
|
+
[key: string]: any;
|
|
685
|
+
};
|
|
686
|
+
constructor(map?: {
|
|
687
|
+
[key: string]: any;
|
|
688
|
+
});
|
|
689
|
+
}
|
|
690
|
+
export declare class DescribeActiveOperationTaskCountResponseBody extends $tea.Model {
|
|
691
|
+
needPop?: number;
|
|
692
|
+
requestId?: string;
|
|
693
|
+
taskCount?: number;
|
|
694
|
+
static names(): {
|
|
695
|
+
[key: string]: string;
|
|
696
|
+
};
|
|
697
|
+
static types(): {
|
|
698
|
+
[key: string]: any;
|
|
699
|
+
};
|
|
700
|
+
constructor(map?: {
|
|
701
|
+
[key: string]: any;
|
|
702
|
+
});
|
|
703
|
+
}
|
|
704
|
+
export declare class DescribeActiveOperationTaskCountResponse extends $tea.Model {
|
|
705
|
+
headers: {
|
|
706
|
+
[key: string]: string;
|
|
707
|
+
};
|
|
708
|
+
body: DescribeActiveOperationTaskCountResponseBody;
|
|
709
|
+
static names(): {
|
|
710
|
+
[key: string]: string;
|
|
711
|
+
};
|
|
712
|
+
static types(): {
|
|
713
|
+
[key: string]: any;
|
|
714
|
+
};
|
|
715
|
+
constructor(map?: {
|
|
716
|
+
[key: string]: any;
|
|
717
|
+
});
|
|
718
|
+
}
|
|
719
|
+
export declare class DescribeActiveOperationTasksRequest extends $tea.Model {
|
|
720
|
+
allowCancel?: number;
|
|
721
|
+
allowChange?: number;
|
|
722
|
+
changeLevel?: string;
|
|
723
|
+
dbType?: string;
|
|
724
|
+
insName?: string;
|
|
725
|
+
pageNumber?: number;
|
|
726
|
+
pageSize?: number;
|
|
727
|
+
productId?: string;
|
|
728
|
+
region?: string;
|
|
729
|
+
regionId?: string;
|
|
730
|
+
status?: number;
|
|
731
|
+
taskType?: string;
|
|
732
|
+
static names(): {
|
|
733
|
+
[key: string]: string;
|
|
734
|
+
};
|
|
735
|
+
static types(): {
|
|
736
|
+
[key: string]: any;
|
|
737
|
+
};
|
|
738
|
+
constructor(map?: {
|
|
739
|
+
[key: string]: any;
|
|
740
|
+
});
|
|
741
|
+
}
|
|
742
|
+
export declare class DescribeActiveOperationTasksResponseBody extends $tea.Model {
|
|
743
|
+
items?: DescribeActiveOperationTasksResponseBodyItems[];
|
|
744
|
+
pageNumber?: number;
|
|
745
|
+
pageSize?: number;
|
|
746
|
+
requestId?: string;
|
|
747
|
+
totalRecordCount?: number;
|
|
748
|
+
static names(): {
|
|
749
|
+
[key: string]: string;
|
|
750
|
+
};
|
|
751
|
+
static types(): {
|
|
752
|
+
[key: string]: any;
|
|
753
|
+
};
|
|
754
|
+
constructor(map?: {
|
|
755
|
+
[key: string]: any;
|
|
756
|
+
});
|
|
757
|
+
}
|
|
758
|
+
export declare class DescribeActiveOperationTasksResponse extends $tea.Model {
|
|
759
|
+
headers: {
|
|
760
|
+
[key: string]: string;
|
|
761
|
+
};
|
|
762
|
+
body: DescribeActiveOperationTasksResponseBody;
|
|
763
|
+
static names(): {
|
|
764
|
+
[key: string]: string;
|
|
765
|
+
};
|
|
766
|
+
static types(): {
|
|
767
|
+
[key: string]: any;
|
|
768
|
+
};
|
|
769
|
+
constructor(map?: {
|
|
770
|
+
[key: string]: any;
|
|
771
|
+
});
|
|
772
|
+
}
|
|
651
773
|
export declare class DescribeBackupPolicyRequest extends $tea.Model {
|
|
652
774
|
DBInstanceName?: string;
|
|
653
775
|
regionId?: string;
|
|
@@ -1084,6 +1206,7 @@ export declare class DescribeDBNodePerformanceRequest extends $tea.Model {
|
|
|
1084
1206
|
characterType?: string;
|
|
1085
1207
|
DBInstanceName?: string;
|
|
1086
1208
|
DBNodeIds?: string;
|
|
1209
|
+
DBNodeRole?: string;
|
|
1087
1210
|
endTime?: string;
|
|
1088
1211
|
key?: string;
|
|
1089
1212
|
regionId?: string;
|
|
@@ -1217,10 +1340,12 @@ export declare class DescribeDistributeTableListResponse extends $tea.Model {
|
|
|
1217
1340
|
[key: string]: any;
|
|
1218
1341
|
});
|
|
1219
1342
|
}
|
|
1220
|
-
export declare class
|
|
1221
|
-
|
|
1222
|
-
|
|
1343
|
+
export declare class DescribeEventsRequest extends $tea.Model {
|
|
1344
|
+
endTime?: string;
|
|
1345
|
+
pageNumber?: number;
|
|
1346
|
+
pageSize?: number;
|
|
1223
1347
|
regionId?: string;
|
|
1348
|
+
startTime?: string;
|
|
1224
1349
|
static names(): {
|
|
1225
1350
|
[key: string]: string;
|
|
1226
1351
|
};
|
|
@@ -1231,9 +1356,12 @@ export declare class DescribeParameterTemplatesRequest extends $tea.Model {
|
|
|
1231
1356
|
[key: string]: any;
|
|
1232
1357
|
});
|
|
1233
1358
|
}
|
|
1234
|
-
export declare class
|
|
1235
|
-
|
|
1359
|
+
export declare class DescribeEventsResponseBody extends $tea.Model {
|
|
1360
|
+
eventItems?: DescribeEventsResponseBodyEventItems[];
|
|
1361
|
+
pageNumber?: number;
|
|
1362
|
+
pageSize?: number;
|
|
1236
1363
|
requestId?: string;
|
|
1364
|
+
totalRecordCount?: number;
|
|
1237
1365
|
static names(): {
|
|
1238
1366
|
[key: string]: string;
|
|
1239
1367
|
};
|
|
@@ -1244,11 +1372,11 @@ export declare class DescribeParameterTemplatesResponseBody extends $tea.Model {
|
|
|
1244
1372
|
[key: string]: any;
|
|
1245
1373
|
});
|
|
1246
1374
|
}
|
|
1247
|
-
export declare class
|
|
1375
|
+
export declare class DescribeEventsResponse extends $tea.Model {
|
|
1248
1376
|
headers: {
|
|
1249
1377
|
[key: string]: string;
|
|
1250
1378
|
};
|
|
1251
|
-
body:
|
|
1379
|
+
body: DescribeEventsResponseBody;
|
|
1252
1380
|
static names(): {
|
|
1253
1381
|
[key: string]: string;
|
|
1254
1382
|
};
|
|
@@ -1259,7 +1387,7 @@ export declare class DescribeParameterTemplatesResponse extends $tea.Model {
|
|
|
1259
1387
|
[key: string]: any;
|
|
1260
1388
|
});
|
|
1261
1389
|
}
|
|
1262
|
-
export declare class
|
|
1390
|
+
export declare class DescribeParameterTemplatesRequest extends $tea.Model {
|
|
1263
1391
|
DBInstanceId?: string;
|
|
1264
1392
|
paramLevel?: string;
|
|
1265
1393
|
regionId?: string;
|
|
@@ -1273,8 +1401,8 @@ export declare class DescribeParametersRequest extends $tea.Model {
|
|
|
1273
1401
|
[key: string]: any;
|
|
1274
1402
|
});
|
|
1275
1403
|
}
|
|
1276
|
-
export declare class
|
|
1277
|
-
data?:
|
|
1404
|
+
export declare class DescribeParameterTemplatesResponseBody extends $tea.Model {
|
|
1405
|
+
data?: DescribeParameterTemplatesResponseBodyData;
|
|
1278
1406
|
requestId?: string;
|
|
1279
1407
|
static names(): {
|
|
1280
1408
|
[key: string]: string;
|
|
@@ -1286,11 +1414,11 @@ export declare class DescribeParametersResponseBody extends $tea.Model {
|
|
|
1286
1414
|
[key: string]: any;
|
|
1287
1415
|
});
|
|
1288
1416
|
}
|
|
1289
|
-
export declare class
|
|
1417
|
+
export declare class DescribeParameterTemplatesResponse extends $tea.Model {
|
|
1290
1418
|
headers: {
|
|
1291
1419
|
[key: string]: string;
|
|
1292
1420
|
};
|
|
1293
|
-
body:
|
|
1421
|
+
body: DescribeParameterTemplatesResponseBody;
|
|
1294
1422
|
static names(): {
|
|
1295
1423
|
[key: string]: string;
|
|
1296
1424
|
};
|
|
@@ -1301,9 +1429,9 @@ export declare class DescribeParametersResponse extends $tea.Model {
|
|
|
1301
1429
|
[key: string]: any;
|
|
1302
1430
|
});
|
|
1303
1431
|
}
|
|
1304
|
-
export declare class
|
|
1305
|
-
|
|
1306
|
-
|
|
1432
|
+
export declare class DescribeParametersRequest extends $tea.Model {
|
|
1433
|
+
DBInstanceId?: string;
|
|
1434
|
+
paramLevel?: string;
|
|
1307
1435
|
regionId?: string;
|
|
1308
1436
|
static names(): {
|
|
1309
1437
|
[key: string]: string;
|
|
@@ -1315,12 +1443,9 @@ export declare class DescribePolarxDataNodesRequest extends $tea.Model {
|
|
|
1315
1443
|
[key: string]: any;
|
|
1316
1444
|
});
|
|
1317
1445
|
}
|
|
1318
|
-
export declare class
|
|
1319
|
-
|
|
1320
|
-
pageNumber?: number;
|
|
1321
|
-
pageSize?: number;
|
|
1446
|
+
export declare class DescribeParametersResponseBody extends $tea.Model {
|
|
1447
|
+
data?: DescribeParametersResponseBodyData;
|
|
1322
1448
|
requestId?: string;
|
|
1323
|
-
totalNumber?: number;
|
|
1324
1449
|
static names(): {
|
|
1325
1450
|
[key: string]: string;
|
|
1326
1451
|
};
|
|
@@ -1331,11 +1456,11 @@ export declare class DescribePolarxDataNodesResponseBody extends $tea.Model {
|
|
|
1331
1456
|
[key: string]: any;
|
|
1332
1457
|
});
|
|
1333
1458
|
}
|
|
1334
|
-
export declare class
|
|
1459
|
+
export declare class DescribeParametersResponse extends $tea.Model {
|
|
1335
1460
|
headers: {
|
|
1336
1461
|
[key: string]: string;
|
|
1337
1462
|
};
|
|
1338
|
-
body:
|
|
1463
|
+
body: DescribeParametersResponseBody;
|
|
1339
1464
|
static names(): {
|
|
1340
1465
|
[key: string]: string;
|
|
1341
1466
|
};
|
|
@@ -1346,11 +1471,10 @@ export declare class DescribePolarxDataNodesResponse extends $tea.Model {
|
|
|
1346
1471
|
[key: string]: any;
|
|
1347
1472
|
});
|
|
1348
1473
|
}
|
|
1349
|
-
export declare class
|
|
1350
|
-
dbName?: string;
|
|
1351
|
-
drdsInstanceId?: string;
|
|
1474
|
+
export declare class DescribePolarxDataNodesRequest extends $tea.Model {
|
|
1352
1475
|
pageNumber?: number;
|
|
1353
1476
|
pageSize?: number;
|
|
1477
|
+
regionId?: string;
|
|
1354
1478
|
static names(): {
|
|
1355
1479
|
[key: string]: string;
|
|
1356
1480
|
};
|
|
@@ -1361,13 +1485,12 @@ export declare class DescribePolarxDbInstancesRequest extends $tea.Model {
|
|
|
1361
1485
|
[key: string]: any;
|
|
1362
1486
|
});
|
|
1363
1487
|
}
|
|
1364
|
-
export declare class
|
|
1365
|
-
|
|
1366
|
-
pageNumber?:
|
|
1367
|
-
pageSize?:
|
|
1488
|
+
export declare class DescribePolarxDataNodesResponseBody extends $tea.Model {
|
|
1489
|
+
DBInstanceDataNodes?: DescribePolarxDataNodesResponseBodyDBInstanceDataNodes[];
|
|
1490
|
+
pageNumber?: number;
|
|
1491
|
+
pageSize?: number;
|
|
1368
1492
|
requestId?: string;
|
|
1369
|
-
|
|
1370
|
-
total?: string;
|
|
1493
|
+
totalNumber?: number;
|
|
1371
1494
|
static names(): {
|
|
1372
1495
|
[key: string]: string;
|
|
1373
1496
|
};
|
|
@@ -1378,11 +1501,11 @@ export declare class DescribePolarxDbInstancesResponseBody extends $tea.Model {
|
|
|
1378
1501
|
[key: string]: any;
|
|
1379
1502
|
});
|
|
1380
1503
|
}
|
|
1381
|
-
export declare class
|
|
1504
|
+
export declare class DescribePolarxDataNodesResponse extends $tea.Model {
|
|
1382
1505
|
headers: {
|
|
1383
1506
|
[key: string]: string;
|
|
1384
1507
|
};
|
|
1385
|
-
body:
|
|
1508
|
+
body: DescribePolarxDataNodesResponseBody;
|
|
1386
1509
|
static names(): {
|
|
1387
1510
|
[key: string]: string;
|
|
1388
1511
|
};
|
|
@@ -1393,11 +1516,11 @@ export declare class DescribePolarxDbInstancesResponse extends $tea.Model {
|
|
|
1393
1516
|
[key: string]: any;
|
|
1394
1517
|
});
|
|
1395
1518
|
}
|
|
1396
|
-
export declare class
|
|
1519
|
+
export declare class DescribePolarxDbInstancesRequest extends $tea.Model {
|
|
1520
|
+
dbName?: string;
|
|
1521
|
+
drdsInstanceId?: string;
|
|
1397
1522
|
pageNumber?: number;
|
|
1398
1523
|
pageSize?: number;
|
|
1399
|
-
regionId?: string;
|
|
1400
|
-
resourceGroupId?: string;
|
|
1401
1524
|
static names(): {
|
|
1402
1525
|
[key: string]: string;
|
|
1403
1526
|
};
|
|
@@ -1408,12 +1531,13 @@ export declare class DescribePolarxPgInstancesRequest extends $tea.Model {
|
|
|
1408
1531
|
[key: string]: any;
|
|
1409
1532
|
});
|
|
1410
1533
|
}
|
|
1411
|
-
export declare class
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
pageSize?: number;
|
|
1534
|
+
export declare class DescribePolarxDbInstancesResponseBody extends $tea.Model {
|
|
1535
|
+
dbInstances?: DescribePolarxDbInstancesResponseBodyDbInstances;
|
|
1536
|
+
pageNumber?: string;
|
|
1537
|
+
pageSize?: string;
|
|
1416
1538
|
requestId?: string;
|
|
1539
|
+
success?: boolean;
|
|
1540
|
+
total?: string;
|
|
1417
1541
|
static names(): {
|
|
1418
1542
|
[key: string]: string;
|
|
1419
1543
|
};
|
|
@@ -1424,11 +1548,11 @@ export declare class DescribePolarxPgInstancesResponseBody extends $tea.Model {
|
|
|
1424
1548
|
[key: string]: any;
|
|
1425
1549
|
});
|
|
1426
1550
|
}
|
|
1427
|
-
export declare class
|
|
1551
|
+
export declare class DescribePolarxDbInstancesResponse extends $tea.Model {
|
|
1428
1552
|
headers: {
|
|
1429
1553
|
[key: string]: string;
|
|
1430
1554
|
};
|
|
1431
|
-
body:
|
|
1555
|
+
body: DescribePolarxDbInstancesResponseBody;
|
|
1432
1556
|
static names(): {
|
|
1433
1557
|
[key: string]: string;
|
|
1434
1558
|
};
|
|
@@ -1569,8 +1693,6 @@ export declare class DescribeTasksRequest extends $tea.Model {
|
|
|
1569
1693
|
resourceOwnerAccount?: string;
|
|
1570
1694
|
resourceOwnerId?: number;
|
|
1571
1695
|
startTime?: string;
|
|
1572
|
-
status?: string;
|
|
1573
|
-
taskAction?: string;
|
|
1574
1696
|
static names(): {
|
|
1575
1697
|
[key: string]: string;
|
|
1576
1698
|
};
|
|
@@ -1740,6 +1862,93 @@ export declare class ModifyAccountDescriptionResponse extends $tea.Model {
|
|
|
1740
1862
|
[key: string]: any;
|
|
1741
1863
|
});
|
|
1742
1864
|
}
|
|
1865
|
+
export declare class ModifyActiveOperationMaintainConfRequest extends $tea.Model {
|
|
1866
|
+
cycleTime?: string;
|
|
1867
|
+
cycleType?: string;
|
|
1868
|
+
maintainEndTime?: string;
|
|
1869
|
+
maintainStartTime?: string;
|
|
1870
|
+
regionId?: string;
|
|
1871
|
+
status?: number;
|
|
1872
|
+
static names(): {
|
|
1873
|
+
[key: string]: string;
|
|
1874
|
+
};
|
|
1875
|
+
static types(): {
|
|
1876
|
+
[key: string]: any;
|
|
1877
|
+
};
|
|
1878
|
+
constructor(map?: {
|
|
1879
|
+
[key: string]: any;
|
|
1880
|
+
});
|
|
1881
|
+
}
|
|
1882
|
+
export declare class ModifyActiveOperationMaintainConfResponseBody extends $tea.Model {
|
|
1883
|
+
requestId?: string;
|
|
1884
|
+
static names(): {
|
|
1885
|
+
[key: string]: string;
|
|
1886
|
+
};
|
|
1887
|
+
static types(): {
|
|
1888
|
+
[key: string]: any;
|
|
1889
|
+
};
|
|
1890
|
+
constructor(map?: {
|
|
1891
|
+
[key: string]: any;
|
|
1892
|
+
});
|
|
1893
|
+
}
|
|
1894
|
+
export declare class ModifyActiveOperationMaintainConfResponse extends $tea.Model {
|
|
1895
|
+
headers: {
|
|
1896
|
+
[key: string]: string;
|
|
1897
|
+
};
|
|
1898
|
+
body: ModifyActiveOperationMaintainConfResponseBody;
|
|
1899
|
+
static names(): {
|
|
1900
|
+
[key: string]: string;
|
|
1901
|
+
};
|
|
1902
|
+
static types(): {
|
|
1903
|
+
[key: string]: any;
|
|
1904
|
+
};
|
|
1905
|
+
constructor(map?: {
|
|
1906
|
+
[key: string]: any;
|
|
1907
|
+
});
|
|
1908
|
+
}
|
|
1909
|
+
export declare class ModifyActiveOperationTasksRequest extends $tea.Model {
|
|
1910
|
+
ids?: string;
|
|
1911
|
+
immediateStart?: number;
|
|
1912
|
+
regionId?: string;
|
|
1913
|
+
switchTime?: string;
|
|
1914
|
+
static names(): {
|
|
1915
|
+
[key: string]: string;
|
|
1916
|
+
};
|
|
1917
|
+
static types(): {
|
|
1918
|
+
[key: string]: any;
|
|
1919
|
+
};
|
|
1920
|
+
constructor(map?: {
|
|
1921
|
+
[key: string]: any;
|
|
1922
|
+
});
|
|
1923
|
+
}
|
|
1924
|
+
export declare class ModifyActiveOperationTasksResponseBody extends $tea.Model {
|
|
1925
|
+
ids?: string;
|
|
1926
|
+
requestId?: string;
|
|
1927
|
+
static names(): {
|
|
1928
|
+
[key: string]: string;
|
|
1929
|
+
};
|
|
1930
|
+
static types(): {
|
|
1931
|
+
[key: string]: any;
|
|
1932
|
+
};
|
|
1933
|
+
constructor(map?: {
|
|
1934
|
+
[key: string]: any;
|
|
1935
|
+
});
|
|
1936
|
+
}
|
|
1937
|
+
export declare class ModifyActiveOperationTasksResponse extends $tea.Model {
|
|
1938
|
+
headers: {
|
|
1939
|
+
[key: string]: string;
|
|
1940
|
+
};
|
|
1941
|
+
body: ModifyActiveOperationTasksResponseBody;
|
|
1942
|
+
static names(): {
|
|
1943
|
+
[key: string]: string;
|
|
1944
|
+
};
|
|
1945
|
+
static types(): {
|
|
1946
|
+
[key: string]: any;
|
|
1947
|
+
};
|
|
1948
|
+
constructor(map?: {
|
|
1949
|
+
[key: string]: any;
|
|
1950
|
+
});
|
|
1951
|
+
}
|
|
1743
1952
|
export declare class ModifyDBInstanceClassRequest extends $tea.Model {
|
|
1744
1953
|
clientToken?: string;
|
|
1745
1954
|
DBInstanceName?: string;
|
|
@@ -2269,8 +2478,6 @@ export declare class UpdatePolarDBXInstanceNodeResponse extends $tea.Model {
|
|
|
2269
2478
|
export declare class UpgradeDBInstanceKernelVersionRequest extends $tea.Model {
|
|
2270
2479
|
DBInstanceName?: string;
|
|
2271
2480
|
regionId?: string;
|
|
2272
|
-
switchTime?: string;
|
|
2273
|
-
upgradeTime?: string;
|
|
2274
2481
|
static names(): {
|
|
2275
2482
|
[key: string]: string;
|
|
2276
2483
|
};
|
|
@@ -2336,8 +2543,9 @@ export declare class CreateBackupResponseBodyData extends $tea.Model {
|
|
|
2336
2543
|
[key: string]: any;
|
|
2337
2544
|
});
|
|
2338
2545
|
}
|
|
2339
|
-
export declare class
|
|
2340
|
-
|
|
2546
|
+
export declare class CreatePolarxOrderResponseBodyOrderResultList extends $tea.Model {
|
|
2547
|
+
DBInstanceName?: string;
|
|
2548
|
+
orderId?: number;
|
|
2341
2549
|
static names(): {
|
|
2342
2550
|
[key: string]: string;
|
|
2343
2551
|
};
|
|
@@ -2348,9 +2556,14 @@ export declare class CreatePolarxInstanceResponseBodyDataDrdsInstanceIdList exte
|
|
|
2348
2556
|
[key: string]: any;
|
|
2349
2557
|
});
|
|
2350
2558
|
}
|
|
2351
|
-
export declare class
|
|
2352
|
-
|
|
2353
|
-
|
|
2559
|
+
export declare class DescribeAccountListResponseBodyData extends $tea.Model {
|
|
2560
|
+
accountDescription?: string;
|
|
2561
|
+
accountName?: string;
|
|
2562
|
+
accountPrivilege?: string;
|
|
2563
|
+
accountType?: string;
|
|
2564
|
+
DBInstanceName?: string;
|
|
2565
|
+
DBName?: string;
|
|
2566
|
+
gmtCreated?: string;
|
|
2354
2567
|
static names(): {
|
|
2355
2568
|
[key: string]: string;
|
|
2356
2569
|
};
|
|
@@ -2361,9 +2574,14 @@ export declare class CreatePolarxInstanceResponseBodyData extends $tea.Model {
|
|
|
2361
2574
|
[key: string]: any;
|
|
2362
2575
|
});
|
|
2363
2576
|
}
|
|
2364
|
-
export declare class
|
|
2365
|
-
|
|
2366
|
-
|
|
2577
|
+
export declare class DescribeActiveOperationMaintainConfResponseBodyConfig extends $tea.Model {
|
|
2578
|
+
createdTime?: string;
|
|
2579
|
+
cycleTime?: string;
|
|
2580
|
+
cycleType?: string;
|
|
2581
|
+
maintainEndTime?: string;
|
|
2582
|
+
maintainStartTime?: string;
|
|
2583
|
+
modifiedTime?: string;
|
|
2584
|
+
status?: number;
|
|
2367
2585
|
static names(): {
|
|
2368
2586
|
[key: string]: string;
|
|
2369
2587
|
};
|
|
@@ -2374,14 +2592,34 @@ export declare class CreatePolarxOrderResponseBodyOrderResultList extends $tea.M
|
|
|
2374
2592
|
[key: string]: any;
|
|
2375
2593
|
});
|
|
2376
2594
|
}
|
|
2377
|
-
export declare class
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2595
|
+
export declare class DescribeActiveOperationTasksResponseBodyItems extends $tea.Model {
|
|
2596
|
+
allowCancel?: string;
|
|
2597
|
+
allowChange?: string;
|
|
2598
|
+
changeLevel?: string;
|
|
2599
|
+
changeLevelEn?: string;
|
|
2600
|
+
changeLevelZh?: string;
|
|
2601
|
+
createdTime?: string;
|
|
2602
|
+
currentAVZ?: string;
|
|
2603
|
+
dbType?: string;
|
|
2604
|
+
dbVersion?: string;
|
|
2605
|
+
deadline?: string;
|
|
2606
|
+
id?: number;
|
|
2607
|
+
impact?: string;
|
|
2608
|
+
impactEn?: string;
|
|
2609
|
+
impactZh?: string;
|
|
2610
|
+
insComment?: string;
|
|
2611
|
+
insName?: string;
|
|
2612
|
+
modifiedTime?: string;
|
|
2613
|
+
prepareInterval?: string;
|
|
2614
|
+
region?: string;
|
|
2615
|
+
resultInfo?: string;
|
|
2616
|
+
startTime?: string;
|
|
2617
|
+
status?: number;
|
|
2618
|
+
subInsNames?: string[];
|
|
2619
|
+
switchTime?: string;
|
|
2620
|
+
taskType?: string;
|
|
2621
|
+
taskTypeEn?: string;
|
|
2622
|
+
taskTypeZh?: string;
|
|
2385
2623
|
static names(): {
|
|
2386
2624
|
[key: string]: string;
|
|
2387
2625
|
};
|
|
@@ -2469,7 +2707,7 @@ export declare class DescribeCharacterSetResponseBodyData extends $tea.Model {
|
|
|
2469
2707
|
}
|
|
2470
2708
|
export declare class DescribeDBInstanceAttributeResponseBodyDBInstanceConnAddrs extends $tea.Model {
|
|
2471
2709
|
connectionString?: string;
|
|
2472
|
-
port?:
|
|
2710
|
+
port?: number;
|
|
2473
2711
|
type?: string;
|
|
2474
2712
|
VPCId?: string;
|
|
2475
2713
|
vSwitchId?: string;
|
|
@@ -2824,6 +3062,28 @@ export declare class DescribeDistributeTableListResponseBodyData extends $tea.Mo
|
|
|
2824
3062
|
[key: string]: any;
|
|
2825
3063
|
});
|
|
2826
3064
|
}
|
|
3065
|
+
export declare class DescribeEventsResponseBodyEventItems extends $tea.Model {
|
|
3066
|
+
eventId?: number;
|
|
3067
|
+
eventName?: string;
|
|
3068
|
+
eventPayload?: string;
|
|
3069
|
+
eventReason?: string;
|
|
3070
|
+
eventRecordTime?: string;
|
|
3071
|
+
eventTime?: string;
|
|
3072
|
+
eventType?: string;
|
|
3073
|
+
eventUserType?: string;
|
|
3074
|
+
regionId?: string;
|
|
3075
|
+
resourceName?: string;
|
|
3076
|
+
resourceType?: string;
|
|
3077
|
+
static names(): {
|
|
3078
|
+
[key: string]: string;
|
|
3079
|
+
};
|
|
3080
|
+
static types(): {
|
|
3081
|
+
[key: string]: any;
|
|
3082
|
+
};
|
|
3083
|
+
constructor(map?: {
|
|
3084
|
+
[key: string]: any;
|
|
3085
|
+
});
|
|
3086
|
+
}
|
|
2827
3087
|
export declare class DescribeParameterTemplatesResponseBodyDataParameters extends $tea.Model {
|
|
2828
3088
|
checkingCode?: string;
|
|
2829
3089
|
dynamic?: number;
|
|
@@ -2955,37 +3215,6 @@ export declare class DescribePolarxDbInstancesResponseBodyDbInstances extends $t
|
|
|
2955
3215
|
[key: string]: any;
|
|
2956
3216
|
});
|
|
2957
3217
|
}
|
|
2958
|
-
export declare class DescribePolarxPgInstancesResponseBodyDBInstances extends $tea.Model {
|
|
2959
|
-
commodityCode?: string;
|
|
2960
|
-
createTime?: string;
|
|
2961
|
-
DBType?: string;
|
|
2962
|
-
DBVersion?: string;
|
|
2963
|
-
description?: string;
|
|
2964
|
-
engine?: string;
|
|
2965
|
-
expireTime?: string;
|
|
2966
|
-
expired?: boolean;
|
|
2967
|
-
id?: string;
|
|
2968
|
-
lockMode?: string;
|
|
2969
|
-
lockReason?: string;
|
|
2970
|
-
network?: string;
|
|
2971
|
-
nodeClass?: string;
|
|
2972
|
-
nodeCount?: number;
|
|
2973
|
-
payType?: string;
|
|
2974
|
-
regionId?: string;
|
|
2975
|
-
status?: string;
|
|
2976
|
-
storageUsed?: number;
|
|
2977
|
-
VPCId?: string;
|
|
2978
|
-
zoneId?: string;
|
|
2979
|
-
static names(): {
|
|
2980
|
-
[key: string]: string;
|
|
2981
|
-
};
|
|
2982
|
-
static types(): {
|
|
2983
|
-
[key: string]: any;
|
|
2984
|
-
};
|
|
2985
|
-
constructor(map?: {
|
|
2986
|
-
[key: string]: any;
|
|
2987
|
-
});
|
|
2988
|
-
}
|
|
2989
3218
|
export declare class DescribeRegionsResponseBodyRegionsRegionZonesZone extends $tea.Model {
|
|
2990
3219
|
vpcEnabled?: boolean;
|
|
2991
3220
|
zoneId?: string;
|
|
@@ -3238,6 +3467,8 @@ export default class Client extends OpenApi {
|
|
|
3238
3467
|
}, endpoint: string): string;
|
|
3239
3468
|
allocateInstancePublicConnectionWithOptions(request: AllocateInstancePublicConnectionRequest, runtime: $Util.RuntimeOptions): Promise<AllocateInstancePublicConnectionResponse>;
|
|
3240
3469
|
allocateInstancePublicConnection(request: AllocateInstancePublicConnectionRequest): Promise<AllocateInstancePublicConnectionResponse>;
|
|
3470
|
+
cancelActiveOperationTasksWithOptions(request: CancelActiveOperationTasksRequest, runtime: $Util.RuntimeOptions): Promise<CancelActiveOperationTasksResponse>;
|
|
3471
|
+
cancelActiveOperationTasks(request: CancelActiveOperationTasksRequest): Promise<CancelActiveOperationTasksResponse>;
|
|
3241
3472
|
cancelPolarxOrderWithOptions(request: CancelPolarxOrderRequest, runtime: $Util.RuntimeOptions): Promise<CancelPolarxOrderResponse>;
|
|
3242
3473
|
cancelPolarxOrder(request: CancelPolarxOrderRequest): Promise<CancelPolarxOrderResponse>;
|
|
3243
3474
|
checkCloudResourceAuthorizedWithOptions(request: CheckCloudResourceAuthorizedRequest, runtime: $Util.RuntimeOptions): Promise<CheckCloudResourceAuthorizedResponse>;
|
|
@@ -3250,8 +3481,6 @@ export default class Client extends OpenApi {
|
|
|
3250
3481
|
createDB(request: CreateDBRequest): Promise<CreateDBResponse>;
|
|
3251
3482
|
createDBInstanceWithOptions(request: CreateDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<CreateDBInstanceResponse>;
|
|
3252
3483
|
createDBInstance(request: CreateDBInstanceRequest): Promise<CreateDBInstanceResponse>;
|
|
3253
|
-
createPolarxInstanceWithOptions(request: CreatePolarxInstanceRequest, runtime: $Util.RuntimeOptions): Promise<CreatePolarxInstanceResponse>;
|
|
3254
|
-
createPolarxInstance(request: CreatePolarxInstanceRequest): Promise<CreatePolarxInstanceResponse>;
|
|
3255
3484
|
createPolarxOrderWithOptions(request: CreatePolarxOrderRequest, runtime: $Util.RuntimeOptions): Promise<CreatePolarxOrderResponse>;
|
|
3256
3485
|
createPolarxOrder(request: CreatePolarxOrderRequest): Promise<CreatePolarxOrderResponse>;
|
|
3257
3486
|
createSuperAccountWithOptions(request: CreateSuperAccountRequest, runtime: $Util.RuntimeOptions): Promise<CreateSuperAccountResponse>;
|
|
@@ -3264,6 +3493,12 @@ export default class Client extends OpenApi {
|
|
|
3264
3493
|
deleteDBInstance(request: DeleteDBInstanceRequest): Promise<DeleteDBInstanceResponse>;
|
|
3265
3494
|
describeAccountListWithOptions(request: DescribeAccountListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAccountListResponse>;
|
|
3266
3495
|
describeAccountList(request: DescribeAccountListRequest): Promise<DescribeAccountListResponse>;
|
|
3496
|
+
describeActiveOperationMaintainConfWithOptions(request: DescribeActiveOperationMaintainConfRequest, runtime: $Util.RuntimeOptions): Promise<DescribeActiveOperationMaintainConfResponse>;
|
|
3497
|
+
describeActiveOperationMaintainConf(request: DescribeActiveOperationMaintainConfRequest): Promise<DescribeActiveOperationMaintainConfResponse>;
|
|
3498
|
+
describeActiveOperationTaskCountWithOptions(request: DescribeActiveOperationTaskCountRequest, runtime: $Util.RuntimeOptions): Promise<DescribeActiveOperationTaskCountResponse>;
|
|
3499
|
+
describeActiveOperationTaskCount(request: DescribeActiveOperationTaskCountRequest): Promise<DescribeActiveOperationTaskCountResponse>;
|
|
3500
|
+
describeActiveOperationTasksWithOptions(request: DescribeActiveOperationTasksRequest, runtime: $Util.RuntimeOptions): Promise<DescribeActiveOperationTasksResponse>;
|
|
3501
|
+
describeActiveOperationTasks(request: DescribeActiveOperationTasksRequest): Promise<DescribeActiveOperationTasksResponse>;
|
|
3267
3502
|
describeBackupPolicyWithOptions(request: DescribeBackupPolicyRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBackupPolicyResponse>;
|
|
3268
3503
|
describeBackupPolicy(request: DescribeBackupPolicyRequest): Promise<DescribeBackupPolicyResponse>;
|
|
3269
3504
|
describeBackupSetListWithOptions(request: DescribeBackupSetListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBackupSetListResponse>;
|
|
@@ -3290,6 +3525,8 @@ export default class Client extends OpenApi {
|
|
|
3290
3525
|
describeDbList(request: DescribeDbListRequest): Promise<DescribeDbListResponse>;
|
|
3291
3526
|
describeDistributeTableListWithOptions(request: DescribeDistributeTableListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDistributeTableListResponse>;
|
|
3292
3527
|
describeDistributeTableList(request: DescribeDistributeTableListRequest): Promise<DescribeDistributeTableListResponse>;
|
|
3528
|
+
describeEventsWithOptions(request: DescribeEventsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeEventsResponse>;
|
|
3529
|
+
describeEvents(request: DescribeEventsRequest): Promise<DescribeEventsResponse>;
|
|
3293
3530
|
describeParameterTemplatesWithOptions(request: DescribeParameterTemplatesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeParameterTemplatesResponse>;
|
|
3294
3531
|
describeParameterTemplates(request: DescribeParameterTemplatesRequest): Promise<DescribeParameterTemplatesResponse>;
|
|
3295
3532
|
describeParametersWithOptions(request: DescribeParametersRequest, runtime: $Util.RuntimeOptions): Promise<DescribeParametersResponse>;
|
|
@@ -3298,8 +3535,6 @@ export default class Client extends OpenApi {
|
|
|
3298
3535
|
describePolarxDataNodes(request: DescribePolarxDataNodesRequest): Promise<DescribePolarxDataNodesResponse>;
|
|
3299
3536
|
describePolarxDbInstancesWithOptions(request: DescribePolarxDbInstancesRequest, runtime: $Util.RuntimeOptions): Promise<DescribePolarxDbInstancesResponse>;
|
|
3300
3537
|
describePolarxDbInstances(request: DescribePolarxDbInstancesRequest): Promise<DescribePolarxDbInstancesResponse>;
|
|
3301
|
-
describePolarxPgInstancesWithOptions(request: DescribePolarxPgInstancesRequest, runtime: $Util.RuntimeOptions): Promise<DescribePolarxPgInstancesResponse>;
|
|
3302
|
-
describePolarxPgInstances(request: DescribePolarxPgInstancesRequest): Promise<DescribePolarxPgInstancesResponse>;
|
|
3303
3538
|
describeRegionsWithOptions(runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse>;
|
|
3304
3539
|
describeRegions(): Promise<DescribeRegionsResponse>;
|
|
3305
3540
|
describeScaleOutMigrateTaskListWithOptions(request: DescribeScaleOutMigrateTaskListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeScaleOutMigrateTaskListResponse>;
|
|
@@ -3314,6 +3549,10 @@ export default class Client extends OpenApi {
|
|
|
3314
3549
|
getPolarxCommodity(request: GetPolarxCommodityRequest): Promise<GetPolarxCommodityResponse>;
|
|
3315
3550
|
modifyAccountDescriptionWithOptions(request: ModifyAccountDescriptionRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAccountDescriptionResponse>;
|
|
3316
3551
|
modifyAccountDescription(request: ModifyAccountDescriptionRequest): Promise<ModifyAccountDescriptionResponse>;
|
|
3552
|
+
modifyActiveOperationMaintainConfWithOptions(request: ModifyActiveOperationMaintainConfRequest, runtime: $Util.RuntimeOptions): Promise<ModifyActiveOperationMaintainConfResponse>;
|
|
3553
|
+
modifyActiveOperationMaintainConf(request: ModifyActiveOperationMaintainConfRequest): Promise<ModifyActiveOperationMaintainConfResponse>;
|
|
3554
|
+
modifyActiveOperationTasksWithOptions(request: ModifyActiveOperationTasksRequest, runtime: $Util.RuntimeOptions): Promise<ModifyActiveOperationTasksResponse>;
|
|
3555
|
+
modifyActiveOperationTasks(request: ModifyActiveOperationTasksRequest): Promise<ModifyActiveOperationTasksResponse>;
|
|
3317
3556
|
modifyDBInstanceClassWithOptions(request: ModifyDBInstanceClassRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceClassResponse>;
|
|
3318
3557
|
modifyDBInstanceClass(request: ModifyDBInstanceClassRequest): Promise<ModifyDBInstanceClassResponse>;
|
|
3319
3558
|
modifyDBInstanceConfigWithOptions(request: ModifyDBInstanceConfigRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceConfigResponse>;
|