@alicloud/polardb20170801 2.0.4 → 2.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 +543 -0
- package/dist/client.js +1249 -25
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +1679 -74
package/dist/client.d.ts
CHANGED
|
@@ -38,6 +38,7 @@ export declare class CancelScheduleTasksResponse extends $tea.Model {
|
|
|
38
38
|
headers: {
|
|
39
39
|
[key: string]: string;
|
|
40
40
|
};
|
|
41
|
+
statusCode: number;
|
|
41
42
|
body: CancelScheduleTasksResponseBody;
|
|
42
43
|
static names(): {
|
|
43
44
|
[key: string]: string;
|
|
@@ -82,6 +83,7 @@ export declare class CheckAccountNameResponse extends $tea.Model {
|
|
|
82
83
|
headers: {
|
|
83
84
|
[key: string]: string;
|
|
84
85
|
};
|
|
86
|
+
statusCode: number;
|
|
85
87
|
body: CheckAccountNameResponseBody;
|
|
86
88
|
static names(): {
|
|
87
89
|
[key: string]: string;
|
|
@@ -126,6 +128,7 @@ export declare class CheckDBNameResponse extends $tea.Model {
|
|
|
126
128
|
headers: {
|
|
127
129
|
[key: string]: string;
|
|
128
130
|
};
|
|
131
|
+
statusCode: number;
|
|
129
132
|
body: CheckDBNameResponseBody;
|
|
130
133
|
static names(): {
|
|
131
134
|
[key: string]: string;
|
|
@@ -137,6 +140,52 @@ export declare class CheckDBNameResponse extends $tea.Model {
|
|
|
137
140
|
[key: string]: any;
|
|
138
141
|
});
|
|
139
142
|
}
|
|
143
|
+
export declare class CloseAITaskRequest extends $tea.Model {
|
|
144
|
+
DBClusterId?: string;
|
|
145
|
+
ownerAccount?: string;
|
|
146
|
+
ownerId?: number;
|
|
147
|
+
regionId?: string;
|
|
148
|
+
resourceOwnerAccount?: string;
|
|
149
|
+
resourceOwnerId?: number;
|
|
150
|
+
static names(): {
|
|
151
|
+
[key: string]: string;
|
|
152
|
+
};
|
|
153
|
+
static types(): {
|
|
154
|
+
[key: string]: any;
|
|
155
|
+
};
|
|
156
|
+
constructor(map?: {
|
|
157
|
+
[key: string]: any;
|
|
158
|
+
});
|
|
159
|
+
}
|
|
160
|
+
export declare class CloseAITaskResponseBody extends $tea.Model {
|
|
161
|
+
requestId?: string;
|
|
162
|
+
taskId?: string;
|
|
163
|
+
static names(): {
|
|
164
|
+
[key: string]: string;
|
|
165
|
+
};
|
|
166
|
+
static types(): {
|
|
167
|
+
[key: string]: any;
|
|
168
|
+
};
|
|
169
|
+
constructor(map?: {
|
|
170
|
+
[key: string]: any;
|
|
171
|
+
});
|
|
172
|
+
}
|
|
173
|
+
export declare class CloseAITaskResponse extends $tea.Model {
|
|
174
|
+
headers: {
|
|
175
|
+
[key: string]: string;
|
|
176
|
+
};
|
|
177
|
+
statusCode: number;
|
|
178
|
+
body: CloseAITaskResponseBody;
|
|
179
|
+
static names(): {
|
|
180
|
+
[key: string]: string;
|
|
181
|
+
};
|
|
182
|
+
static types(): {
|
|
183
|
+
[key: string]: any;
|
|
184
|
+
};
|
|
185
|
+
constructor(map?: {
|
|
186
|
+
[key: string]: any;
|
|
187
|
+
});
|
|
188
|
+
}
|
|
140
189
|
export declare class CloseDBClusterMigrationRequest extends $tea.Model {
|
|
141
190
|
continueEnableBinlog?: boolean;
|
|
142
191
|
DBClusterId?: string;
|
|
@@ -170,6 +219,7 @@ export declare class CloseDBClusterMigrationResponse extends $tea.Model {
|
|
|
170
219
|
headers: {
|
|
171
220
|
[key: string]: string;
|
|
172
221
|
};
|
|
222
|
+
statusCode: number;
|
|
173
223
|
body: CloseDBClusterMigrationResponseBody;
|
|
174
224
|
static names(): {
|
|
175
225
|
[key: string]: string;
|
|
@@ -220,6 +270,7 @@ export declare class CreateAccountResponse extends $tea.Model {
|
|
|
220
270
|
headers: {
|
|
221
271
|
[key: string]: string;
|
|
222
272
|
};
|
|
273
|
+
statusCode: number;
|
|
223
274
|
body: CreateAccountResponseBody;
|
|
224
275
|
static names(): {
|
|
225
276
|
[key: string]: string;
|
|
@@ -265,6 +316,7 @@ export declare class CreateBackupResponse extends $tea.Model {
|
|
|
265
316
|
headers: {
|
|
266
317
|
[key: string]: string;
|
|
267
318
|
};
|
|
319
|
+
statusCode: number;
|
|
268
320
|
body: CreateBackupResponseBody;
|
|
269
321
|
static names(): {
|
|
270
322
|
[key: string]: string;
|
|
@@ -337,6 +389,7 @@ export declare class CreateDBClusterResponse extends $tea.Model {
|
|
|
337
389
|
headers: {
|
|
338
390
|
[key: string]: string;
|
|
339
391
|
};
|
|
392
|
+
statusCode: number;
|
|
340
393
|
body: CreateDBClusterResponseBody;
|
|
341
394
|
static names(): {
|
|
342
395
|
[key: string]: string;
|
|
@@ -387,6 +440,7 @@ export declare class CreateDBClusterEndpointResponse extends $tea.Model {
|
|
|
387
440
|
headers: {
|
|
388
441
|
[key: string]: string;
|
|
389
442
|
};
|
|
443
|
+
statusCode: number;
|
|
390
444
|
body: CreateDBClusterEndpointResponseBody;
|
|
391
445
|
static names(): {
|
|
392
446
|
[key: string]: string;
|
|
@@ -433,6 +487,7 @@ export declare class CreateDBEndpointAddressResponse extends $tea.Model {
|
|
|
433
487
|
headers: {
|
|
434
488
|
[key: string]: string;
|
|
435
489
|
};
|
|
490
|
+
statusCode: number;
|
|
436
491
|
body: CreateDBEndpointAddressResponseBody;
|
|
437
492
|
static names(): {
|
|
438
493
|
[key: string]: string;
|
|
@@ -487,6 +542,7 @@ export declare class CreateDBLinkResponse extends $tea.Model {
|
|
|
487
542
|
headers: {
|
|
488
543
|
[key: string]: string;
|
|
489
544
|
};
|
|
545
|
+
statusCode: number;
|
|
490
546
|
body: CreateDBLinkResponseBody;
|
|
491
547
|
static names(): {
|
|
492
548
|
[key: string]: string;
|
|
@@ -539,6 +595,7 @@ export declare class CreateDBNodesResponse extends $tea.Model {
|
|
|
539
595
|
headers: {
|
|
540
596
|
[key: string]: string;
|
|
541
597
|
};
|
|
598
|
+
statusCode: number;
|
|
542
599
|
body: CreateDBNodesResponseBody;
|
|
543
600
|
static names(): {
|
|
544
601
|
[key: string]: string;
|
|
@@ -589,6 +646,7 @@ export declare class CreateDatabaseResponse extends $tea.Model {
|
|
|
589
646
|
headers: {
|
|
590
647
|
[key: string]: string;
|
|
591
648
|
};
|
|
649
|
+
statusCode: number;
|
|
592
650
|
body: CreateDatabaseResponseBody;
|
|
593
651
|
static names(): {
|
|
594
652
|
[key: string]: string;
|
|
@@ -635,6 +693,7 @@ export declare class CreateGlobalDatabaseNetworkResponse extends $tea.Model {
|
|
|
635
693
|
headers: {
|
|
636
694
|
[key: string]: string;
|
|
637
695
|
};
|
|
696
|
+
statusCode: number;
|
|
638
697
|
body: CreateGlobalDatabaseNetworkResponseBody;
|
|
639
698
|
static names(): {
|
|
640
699
|
[key: string]: string;
|
|
@@ -684,6 +743,7 @@ export declare class CreateParameterGroupResponse extends $tea.Model {
|
|
|
684
743
|
headers: {
|
|
685
744
|
[key: string]: string;
|
|
686
745
|
};
|
|
746
|
+
statusCode: number;
|
|
687
747
|
body: CreateParameterGroupResponseBody;
|
|
688
748
|
static names(): {
|
|
689
749
|
[key: string]: string;
|
|
@@ -733,6 +793,7 @@ export declare class CreateStoragePlanResponse extends $tea.Model {
|
|
|
733
793
|
headers: {
|
|
734
794
|
[key: string]: string;
|
|
735
795
|
};
|
|
796
|
+
statusCode: number;
|
|
736
797
|
body: CreateStoragePlanResponseBody;
|
|
737
798
|
static names(): {
|
|
738
799
|
[key: string]: string;
|
|
@@ -777,6 +838,7 @@ export declare class DeleteAccountResponse extends $tea.Model {
|
|
|
777
838
|
headers: {
|
|
778
839
|
[key: string]: string;
|
|
779
840
|
};
|
|
841
|
+
statusCode: number;
|
|
780
842
|
body: DeleteAccountResponseBody;
|
|
781
843
|
static names(): {
|
|
782
844
|
[key: string]: string;
|
|
@@ -821,6 +883,7 @@ export declare class DeleteBackupResponse extends $tea.Model {
|
|
|
821
883
|
headers: {
|
|
822
884
|
[key: string]: string;
|
|
823
885
|
};
|
|
886
|
+
statusCode: number;
|
|
824
887
|
body: DeleteBackupResponseBody;
|
|
825
888
|
static names(): {
|
|
826
889
|
[key: string]: string;
|
|
@@ -865,6 +928,7 @@ export declare class DeleteDBClusterResponse extends $tea.Model {
|
|
|
865
928
|
headers: {
|
|
866
929
|
[key: string]: string;
|
|
867
930
|
};
|
|
931
|
+
statusCode: number;
|
|
868
932
|
body: DeleteDBClusterResponseBody;
|
|
869
933
|
static names(): {
|
|
870
934
|
[key: string]: string;
|
|
@@ -909,6 +973,7 @@ export declare class DeleteDBClusterEndpointResponse extends $tea.Model {
|
|
|
909
973
|
headers: {
|
|
910
974
|
[key: string]: string;
|
|
911
975
|
};
|
|
976
|
+
statusCode: number;
|
|
912
977
|
body: DeleteDBClusterEndpointResponseBody;
|
|
913
978
|
static names(): {
|
|
914
979
|
[key: string]: string;
|
|
@@ -954,6 +1019,7 @@ export declare class DeleteDBEndpointAddressResponse extends $tea.Model {
|
|
|
954
1019
|
headers: {
|
|
955
1020
|
[key: string]: string;
|
|
956
1021
|
};
|
|
1022
|
+
statusCode: number;
|
|
957
1023
|
body: DeleteDBEndpointAddressResponseBody;
|
|
958
1024
|
static names(): {
|
|
959
1025
|
[key: string]: string;
|
|
@@ -998,6 +1064,7 @@ export declare class DeleteDBLinkResponse extends $tea.Model {
|
|
|
998
1064
|
headers: {
|
|
999
1065
|
[key: string]: string;
|
|
1000
1066
|
};
|
|
1067
|
+
statusCode: number;
|
|
1001
1068
|
body: DeleteDBLinkResponseBody;
|
|
1002
1069
|
static names(): {
|
|
1003
1070
|
[key: string]: string;
|
|
@@ -1045,6 +1112,7 @@ export declare class DeleteDBNodesResponse extends $tea.Model {
|
|
|
1045
1112
|
headers: {
|
|
1046
1113
|
[key: string]: string;
|
|
1047
1114
|
};
|
|
1115
|
+
statusCode: number;
|
|
1048
1116
|
body: DeleteDBNodesResponseBody;
|
|
1049
1117
|
static names(): {
|
|
1050
1118
|
[key: string]: string;
|
|
@@ -1089,6 +1157,7 @@ export declare class DeleteDatabaseResponse extends $tea.Model {
|
|
|
1089
1157
|
headers: {
|
|
1090
1158
|
[key: string]: string;
|
|
1091
1159
|
};
|
|
1160
|
+
statusCode: number;
|
|
1092
1161
|
body: DeleteDatabaseResponseBody;
|
|
1093
1162
|
static names(): {
|
|
1094
1163
|
[key: string]: string;
|
|
@@ -1133,6 +1202,7 @@ export declare class DeleteGlobalDatabaseNetworkResponse extends $tea.Model {
|
|
|
1133
1202
|
headers: {
|
|
1134
1203
|
[key: string]: string;
|
|
1135
1204
|
};
|
|
1205
|
+
statusCode: number;
|
|
1136
1206
|
body: DeleteGlobalDatabaseNetworkResponseBody;
|
|
1137
1207
|
static names(): {
|
|
1138
1208
|
[key: string]: string;
|
|
@@ -1175,6 +1245,7 @@ export declare class DeleteMaskingRulesResponse extends $tea.Model {
|
|
|
1175
1245
|
headers: {
|
|
1176
1246
|
[key: string]: string;
|
|
1177
1247
|
};
|
|
1248
|
+
statusCode: number;
|
|
1178
1249
|
body: DeleteMaskingRulesResponseBody;
|
|
1179
1250
|
static names(): {
|
|
1180
1251
|
[key: string]: string;
|
|
@@ -1219,6 +1290,7 @@ export declare class DeleteParameterGroupResponse extends $tea.Model {
|
|
|
1219
1290
|
headers: {
|
|
1220
1291
|
[key: string]: string;
|
|
1221
1292
|
};
|
|
1293
|
+
statusCode: number;
|
|
1222
1294
|
body: DeleteParameterGroupResponseBody;
|
|
1223
1295
|
static names(): {
|
|
1224
1296
|
[key: string]: string;
|
|
@@ -1230,6 +1302,54 @@ export declare class DeleteParameterGroupResponse extends $tea.Model {
|
|
|
1230
1302
|
[key: string]: any;
|
|
1231
1303
|
});
|
|
1232
1304
|
}
|
|
1305
|
+
export declare class DescribeAITaskStatusRequest extends $tea.Model {
|
|
1306
|
+
DBClusterId?: string;
|
|
1307
|
+
ownerAccount?: string;
|
|
1308
|
+
ownerId?: number;
|
|
1309
|
+
regionId?: string;
|
|
1310
|
+
resourceOwnerAccount?: string;
|
|
1311
|
+
resourceOwnerId?: number;
|
|
1312
|
+
static names(): {
|
|
1313
|
+
[key: string]: string;
|
|
1314
|
+
};
|
|
1315
|
+
static types(): {
|
|
1316
|
+
[key: string]: any;
|
|
1317
|
+
};
|
|
1318
|
+
constructor(map?: {
|
|
1319
|
+
[key: string]: any;
|
|
1320
|
+
});
|
|
1321
|
+
}
|
|
1322
|
+
export declare class DescribeAITaskStatusResponseBody extends $tea.Model {
|
|
1323
|
+
DBClusterId?: string;
|
|
1324
|
+
requestId?: string;
|
|
1325
|
+
status?: string;
|
|
1326
|
+
statusName?: string;
|
|
1327
|
+
static names(): {
|
|
1328
|
+
[key: string]: string;
|
|
1329
|
+
};
|
|
1330
|
+
static types(): {
|
|
1331
|
+
[key: string]: any;
|
|
1332
|
+
};
|
|
1333
|
+
constructor(map?: {
|
|
1334
|
+
[key: string]: any;
|
|
1335
|
+
});
|
|
1336
|
+
}
|
|
1337
|
+
export declare class DescribeAITaskStatusResponse extends $tea.Model {
|
|
1338
|
+
headers: {
|
|
1339
|
+
[key: string]: string;
|
|
1340
|
+
};
|
|
1341
|
+
statusCode: number;
|
|
1342
|
+
body: DescribeAITaskStatusResponseBody;
|
|
1343
|
+
static names(): {
|
|
1344
|
+
[key: string]: string;
|
|
1345
|
+
};
|
|
1346
|
+
static types(): {
|
|
1347
|
+
[key: string]: any;
|
|
1348
|
+
};
|
|
1349
|
+
constructor(map?: {
|
|
1350
|
+
[key: string]: any;
|
|
1351
|
+
});
|
|
1352
|
+
}
|
|
1233
1353
|
export declare class DescribeAccountsRequest extends $tea.Model {
|
|
1234
1354
|
accountName?: string;
|
|
1235
1355
|
DBClusterId?: string;
|
|
@@ -1268,6 +1388,7 @@ export declare class DescribeAccountsResponse extends $tea.Model {
|
|
|
1268
1388
|
headers: {
|
|
1269
1389
|
[key: string]: string;
|
|
1270
1390
|
};
|
|
1391
|
+
statusCode: number;
|
|
1271
1392
|
body: DescribeAccountsResponseBody;
|
|
1272
1393
|
static names(): {
|
|
1273
1394
|
[key: string]: string;
|
|
@@ -1319,6 +1440,7 @@ export declare class DescribeAutoRenewAttributeResponse extends $tea.Model {
|
|
|
1319
1440
|
headers: {
|
|
1320
1441
|
[key: string]: string;
|
|
1321
1442
|
};
|
|
1443
|
+
statusCode: number;
|
|
1322
1444
|
body: DescribeAutoRenewAttributeResponseBody;
|
|
1323
1445
|
static names(): {
|
|
1324
1446
|
[key: string]: string;
|
|
@@ -1331,6 +1453,7 @@ export declare class DescribeAutoRenewAttributeResponse extends $tea.Model {
|
|
|
1331
1453
|
});
|
|
1332
1454
|
}
|
|
1333
1455
|
export declare class DescribeBackupLogsRequest extends $tea.Model {
|
|
1456
|
+
backupRegion?: string;
|
|
1334
1457
|
DBClusterId?: string;
|
|
1335
1458
|
endTime?: string;
|
|
1336
1459
|
ownerAccount?: string;
|
|
@@ -1370,6 +1493,7 @@ export declare class DescribeBackupLogsResponse extends $tea.Model {
|
|
|
1370
1493
|
headers: {
|
|
1371
1494
|
[key: string]: string;
|
|
1372
1495
|
};
|
|
1496
|
+
statusCode: number;
|
|
1373
1497
|
body: DescribeBackupLogsResponseBody;
|
|
1374
1498
|
static names(): {
|
|
1375
1499
|
[key: string]: string;
|
|
@@ -1404,6 +1528,8 @@ export declare class DescribeBackupPolicyResponseBody extends $tea.Model {
|
|
|
1404
1528
|
dataLevel1BackupPeriod?: string;
|
|
1405
1529
|
dataLevel1BackupRetentionPeriod?: string;
|
|
1406
1530
|
dataLevel1BackupTime?: string;
|
|
1531
|
+
dataLevel2BackupAnotherRegionRegion?: string;
|
|
1532
|
+
dataLevel2BackupAnotherRegionRetentionPeriod?: string;
|
|
1407
1533
|
dataLevel2BackupPeriod?: string;
|
|
1408
1534
|
dataLevel2BackupRetentionPeriod?: string;
|
|
1409
1535
|
preferredBackupPeriod?: string;
|
|
@@ -1424,6 +1550,7 @@ export declare class DescribeBackupPolicyResponse extends $tea.Model {
|
|
|
1424
1550
|
headers: {
|
|
1425
1551
|
[key: string]: string;
|
|
1426
1552
|
};
|
|
1553
|
+
statusCode: number;
|
|
1427
1554
|
body: DescribeBackupPolicyResponseBody;
|
|
1428
1555
|
static names(): {
|
|
1429
1556
|
[key: string]: string;
|
|
@@ -1470,6 +1597,7 @@ export declare class DescribeBackupTasksResponse extends $tea.Model {
|
|
|
1470
1597
|
headers: {
|
|
1471
1598
|
[key: string]: string;
|
|
1472
1599
|
};
|
|
1600
|
+
statusCode: number;
|
|
1473
1601
|
body: DescribeBackupTasksResponseBody;
|
|
1474
1602
|
static names(): {
|
|
1475
1603
|
[key: string]: string;
|
|
@@ -1484,6 +1612,7 @@ export declare class DescribeBackupTasksResponse extends $tea.Model {
|
|
|
1484
1612
|
export declare class DescribeBackupsRequest extends $tea.Model {
|
|
1485
1613
|
backupId?: string;
|
|
1486
1614
|
backupMode?: string;
|
|
1615
|
+
backupRegion?: string;
|
|
1487
1616
|
backupStatus?: string;
|
|
1488
1617
|
DBClusterId?: string;
|
|
1489
1618
|
endTime?: string;
|
|
@@ -1524,6 +1653,7 @@ export declare class DescribeBackupsResponse extends $tea.Model {
|
|
|
1524
1653
|
headers: {
|
|
1525
1654
|
[key: string]: string;
|
|
1526
1655
|
};
|
|
1656
|
+
statusCode: number;
|
|
1527
1657
|
body: DescribeBackupsResponseBody;
|
|
1528
1658
|
static names(): {
|
|
1529
1659
|
[key: string]: string;
|
|
@@ -1570,6 +1700,7 @@ export declare class DescribeCharacterSetNameResponse extends $tea.Model {
|
|
|
1570
1700
|
headers: {
|
|
1571
1701
|
[key: string]: string;
|
|
1572
1702
|
};
|
|
1703
|
+
statusCode: number;
|
|
1573
1704
|
body: DescribeCharacterSetNameResponseBody;
|
|
1574
1705
|
static names(): {
|
|
1575
1706
|
[key: string]: string;
|
|
@@ -1615,6 +1746,7 @@ export declare class DescribeDBClusterAccessWhitelistResponse extends $tea.Model
|
|
|
1615
1746
|
headers: {
|
|
1616
1747
|
[key: string]: string;
|
|
1617
1748
|
};
|
|
1749
|
+
statusCode: number;
|
|
1618
1750
|
body: DescribeDBClusterAccessWhitelistResponseBody;
|
|
1619
1751
|
static names(): {
|
|
1620
1752
|
[key: string]: string;
|
|
@@ -1643,6 +1775,8 @@ export declare class DescribeDBClusterAttributeRequest extends $tea.Model {
|
|
|
1643
1775
|
});
|
|
1644
1776
|
}
|
|
1645
1777
|
export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
1778
|
+
blktagTotal?: number;
|
|
1779
|
+
blktagUsed?: number;
|
|
1646
1780
|
category?: string;
|
|
1647
1781
|
creationTime?: string;
|
|
1648
1782
|
DBClusterDescription?: string;
|
|
@@ -1658,6 +1792,8 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
1658
1792
|
engine?: string;
|
|
1659
1793
|
expireTime?: string;
|
|
1660
1794
|
expired?: string;
|
|
1795
|
+
inodeTotal?: number;
|
|
1796
|
+
inodeUsed?: number;
|
|
1661
1797
|
isLatestVersion?: boolean;
|
|
1662
1798
|
isProxyLatestVersion?: boolean;
|
|
1663
1799
|
lockMode?: string;
|
|
@@ -1672,6 +1808,8 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
1672
1808
|
resourceGroupId?: string;
|
|
1673
1809
|
SQLSize?: number;
|
|
1674
1810
|
storageMax?: number;
|
|
1811
|
+
storagePayType?: string;
|
|
1812
|
+
storageSpace?: number;
|
|
1675
1813
|
storageType?: string;
|
|
1676
1814
|
storageUsed?: number;
|
|
1677
1815
|
subCategory?: string;
|
|
@@ -1693,6 +1831,7 @@ export declare class DescribeDBClusterAttributeResponse extends $tea.Model {
|
|
|
1693
1831
|
headers: {
|
|
1694
1832
|
[key: string]: string;
|
|
1695
1833
|
};
|
|
1834
|
+
statusCode: number;
|
|
1696
1835
|
body: DescribeDBClusterAttributeResponseBody;
|
|
1697
1836
|
static names(): {
|
|
1698
1837
|
[key: string]: string;
|
|
@@ -1737,6 +1876,7 @@ export declare class DescribeDBClusterAuditLogCollectorResponse extends $tea.Mod
|
|
|
1737
1876
|
headers: {
|
|
1738
1877
|
[key: string]: string;
|
|
1739
1878
|
};
|
|
1879
|
+
statusCode: number;
|
|
1740
1880
|
body: DescribeDBClusterAuditLogCollectorResponseBody;
|
|
1741
1881
|
static names(): {
|
|
1742
1882
|
[key: string]: string;
|
|
@@ -1786,6 +1926,7 @@ export declare class DescribeDBClusterAvailableResourcesResponse extends $tea.Mo
|
|
|
1786
1926
|
headers: {
|
|
1787
1927
|
[key: string]: string;
|
|
1788
1928
|
};
|
|
1929
|
+
statusCode: number;
|
|
1789
1930
|
body: DescribeDBClusterAvailableResourcesResponseBody;
|
|
1790
1931
|
static names(): {
|
|
1791
1932
|
[key: string]: string;
|
|
@@ -1831,6 +1972,7 @@ export declare class DescribeDBClusterEndpointsResponse extends $tea.Model {
|
|
|
1831
1972
|
headers: {
|
|
1832
1973
|
[key: string]: string;
|
|
1833
1974
|
};
|
|
1975
|
+
statusCode: number;
|
|
1834
1976
|
body: DescribeDBClusterEndpointsResponseBody;
|
|
1835
1977
|
static names(): {
|
|
1836
1978
|
[key: string]: string;
|
|
@@ -1864,6 +2006,7 @@ export declare class DescribeDBClusterMigrationResponseBody extends $tea.Model {
|
|
|
1864
2006
|
DBClusterId?: string;
|
|
1865
2007
|
DBClusterReadWriteMode?: string;
|
|
1866
2008
|
delayedSeconds?: number;
|
|
2009
|
+
dtsInstanceId?: string;
|
|
1867
2010
|
expiredTime?: string;
|
|
1868
2011
|
migrationStatus?: string;
|
|
1869
2012
|
rdsEndpointList?: DescribeDBClusterMigrationResponseBodyRdsEndpointList[];
|
|
@@ -1885,6 +2028,7 @@ export declare class DescribeDBClusterMigrationResponse extends $tea.Model {
|
|
|
1885
2028
|
headers: {
|
|
1886
2029
|
[key: string]: string;
|
|
1887
2030
|
};
|
|
2031
|
+
statusCode: number;
|
|
1888
2032
|
body: DescribeDBClusterMigrationResponseBody;
|
|
1889
2033
|
static names(): {
|
|
1890
2034
|
[key: string]: string;
|
|
@@ -1929,6 +2073,7 @@ export declare class DescribeDBClusterMonitorResponse extends $tea.Model {
|
|
|
1929
2073
|
headers: {
|
|
1930
2074
|
[key: string]: string;
|
|
1931
2075
|
};
|
|
2076
|
+
statusCode: number;
|
|
1932
2077
|
body: DescribeDBClusterMonitorResponseBody;
|
|
1933
2078
|
static names(): {
|
|
1934
2079
|
[key: string]: string;
|
|
@@ -1976,6 +2121,7 @@ export declare class DescribeDBClusterParametersResponse extends $tea.Model {
|
|
|
1976
2121
|
headers: {
|
|
1977
2122
|
[key: string]: string;
|
|
1978
2123
|
};
|
|
2124
|
+
statusCode: number;
|
|
1979
2125
|
body: DescribeDBClusterParametersResponseBody;
|
|
1980
2126
|
static names(): {
|
|
1981
2127
|
[key: string]: string;
|
|
@@ -2024,6 +2170,7 @@ export declare class DescribeDBClusterPerformanceResponse extends $tea.Model {
|
|
|
2024
2170
|
headers: {
|
|
2025
2171
|
[key: string]: string;
|
|
2026
2172
|
};
|
|
2173
|
+
statusCode: number;
|
|
2027
2174
|
body: DescribeDBClusterPerformanceResponseBody;
|
|
2028
2175
|
static names(): {
|
|
2029
2176
|
[key: string]: string;
|
|
@@ -2069,6 +2216,7 @@ export declare class DescribeDBClusterSSLResponse extends $tea.Model {
|
|
|
2069
2216
|
headers: {
|
|
2070
2217
|
[key: string]: string;
|
|
2071
2218
|
};
|
|
2219
|
+
statusCode: number;
|
|
2072
2220
|
body: DescribeDBClusterSSLResponseBody;
|
|
2073
2221
|
static names(): {
|
|
2074
2222
|
[key: string]: string;
|
|
@@ -2116,6 +2264,7 @@ export declare class DescribeDBClusterTDEResponse extends $tea.Model {
|
|
|
2116
2264
|
headers: {
|
|
2117
2265
|
[key: string]: string;
|
|
2118
2266
|
};
|
|
2267
|
+
statusCode: number;
|
|
2119
2268
|
body: DescribeDBClusterTDEResponseBody;
|
|
2120
2269
|
static names(): {
|
|
2121
2270
|
[key: string]: string;
|
|
@@ -2151,6 +2300,7 @@ export declare class DescribeDBClusterVersionResponseBody extends $tea.Model {
|
|
|
2151
2300
|
DBVersion?: string;
|
|
2152
2301
|
DBVersionStatus?: string;
|
|
2153
2302
|
isLatestVersion?: string;
|
|
2303
|
+
isProxyLatestVersion?: string;
|
|
2154
2304
|
proxyLatestVersion?: string;
|
|
2155
2305
|
proxyRevisionVersion?: string;
|
|
2156
2306
|
proxyVersionStatus?: string;
|
|
@@ -2169,6 +2319,7 @@ export declare class DescribeDBClusterVersionResponse extends $tea.Model {
|
|
|
2169
2319
|
headers: {
|
|
2170
2320
|
[key: string]: string;
|
|
2171
2321
|
};
|
|
2322
|
+
statusCode: number;
|
|
2172
2323
|
body: DescribeDBClusterVersionResponseBody;
|
|
2173
2324
|
static names(): {
|
|
2174
2325
|
[key: string]: string;
|
|
@@ -2226,6 +2377,7 @@ export declare class DescribeDBClustersResponse extends $tea.Model {
|
|
|
2226
2377
|
headers: {
|
|
2227
2378
|
[key: string]: string;
|
|
2228
2379
|
};
|
|
2380
|
+
statusCode: number;
|
|
2229
2381
|
body: DescribeDBClustersResponseBody;
|
|
2230
2382
|
static names(): {
|
|
2231
2383
|
[key: string]: string;
|
|
@@ -2280,6 +2432,7 @@ export declare class DescribeDBClustersWithBackupsResponse extends $tea.Model {
|
|
|
2280
2432
|
headers: {
|
|
2281
2433
|
[key: string]: string;
|
|
2282
2434
|
};
|
|
2435
|
+
statusCode: number;
|
|
2283
2436
|
body: DescribeDBClustersWithBackupsResponseBody;
|
|
2284
2437
|
static names(): {
|
|
2285
2438
|
[key: string]: string;
|
|
@@ -2326,6 +2479,7 @@ export declare class DescribeDBInitializeVariableResponse extends $tea.Model {
|
|
|
2326
2479
|
headers: {
|
|
2327
2480
|
[key: string]: string;
|
|
2328
2481
|
};
|
|
2482
|
+
statusCode: number;
|
|
2329
2483
|
body: DescribeDBInitializeVariableResponseBody;
|
|
2330
2484
|
static names(): {
|
|
2331
2485
|
[key: string]: string;
|
|
@@ -2372,6 +2526,7 @@ export declare class DescribeDBLinksResponse extends $tea.Model {
|
|
|
2372
2526
|
headers: {
|
|
2373
2527
|
[key: string]: string;
|
|
2374
2528
|
};
|
|
2529
|
+
statusCode: number;
|
|
2375
2530
|
body: DescribeDBLinksResponseBody;
|
|
2376
2531
|
static names(): {
|
|
2377
2532
|
[key: string]: string;
|
|
@@ -2421,6 +2576,7 @@ export declare class DescribeDBNodePerformanceResponse extends $tea.Model {
|
|
|
2421
2576
|
headers: {
|
|
2422
2577
|
[key: string]: string;
|
|
2423
2578
|
};
|
|
2579
|
+
statusCode: number;
|
|
2424
2580
|
body: DescribeDBNodePerformanceResponseBody;
|
|
2425
2581
|
static names(): {
|
|
2426
2582
|
[key: string]: string;
|
|
@@ -2469,6 +2625,7 @@ export declare class DescribeDBNodesParametersResponse extends $tea.Model {
|
|
|
2469
2625
|
headers: {
|
|
2470
2626
|
[key: string]: string;
|
|
2471
2627
|
};
|
|
2628
|
+
statusCode: number;
|
|
2472
2629
|
body: DescribeDBNodesParametersResponseBody;
|
|
2473
2630
|
static names(): {
|
|
2474
2631
|
[key: string]: string;
|
|
@@ -2517,6 +2674,7 @@ export declare class DescribeDBProxyPerformanceResponse extends $tea.Model {
|
|
|
2517
2674
|
headers: {
|
|
2518
2675
|
[key: string]: string;
|
|
2519
2676
|
};
|
|
2677
|
+
statusCode: number;
|
|
2520
2678
|
body: DescribeDBProxyPerformanceResponseBody;
|
|
2521
2679
|
static names(): {
|
|
2522
2680
|
[key: string]: string;
|
|
@@ -2566,6 +2724,7 @@ export declare class DescribeDatabasesResponse extends $tea.Model {
|
|
|
2566
2724
|
headers: {
|
|
2567
2725
|
[key: string]: string;
|
|
2568
2726
|
};
|
|
2727
|
+
statusCode: number;
|
|
2569
2728
|
body: DescribeDatabasesResponseBody;
|
|
2570
2729
|
static names(): {
|
|
2571
2730
|
[key: string]: string;
|
|
@@ -2580,6 +2739,7 @@ export declare class DescribeDatabasesResponse extends $tea.Model {
|
|
|
2580
2739
|
export declare class DescribeDetachedBackupsRequest extends $tea.Model {
|
|
2581
2740
|
backupId?: string;
|
|
2582
2741
|
backupMode?: string;
|
|
2742
|
+
backupRegion?: string;
|
|
2583
2743
|
backupStatus?: string;
|
|
2584
2744
|
DBClusterId?: string;
|
|
2585
2745
|
endTime?: string;
|
|
@@ -2620,6 +2780,7 @@ export declare class DescribeDetachedBackupsResponse extends $tea.Model {
|
|
|
2620
2780
|
headers: {
|
|
2621
2781
|
[key: string]: string;
|
|
2622
2782
|
};
|
|
2783
|
+
statusCode: number;
|
|
2623
2784
|
body: DescribeDetachedBackupsResponseBody;
|
|
2624
2785
|
static names(): {
|
|
2625
2786
|
[key: string]: string;
|
|
@@ -2672,6 +2833,7 @@ export declare class DescribeGlobalDatabaseNetworkResponse extends $tea.Model {
|
|
|
2672
2833
|
headers: {
|
|
2673
2834
|
[key: string]: string;
|
|
2674
2835
|
};
|
|
2836
|
+
statusCode: number;
|
|
2675
2837
|
body: DescribeGlobalDatabaseNetworkResponseBody;
|
|
2676
2838
|
static names(): {
|
|
2677
2839
|
[key: string]: string;
|
|
@@ -2685,6 +2847,8 @@ export declare class DescribeGlobalDatabaseNetworkResponse extends $tea.Model {
|
|
|
2685
2847
|
}
|
|
2686
2848
|
export declare class DescribeGlobalDatabaseNetworksRequest extends $tea.Model {
|
|
2687
2849
|
DBClusterId?: string;
|
|
2850
|
+
GDNDescription?: string;
|
|
2851
|
+
GDNId?: string;
|
|
2688
2852
|
ownerAccount?: string;
|
|
2689
2853
|
ownerId?: number;
|
|
2690
2854
|
pageNumber?: number;
|
|
@@ -2722,6 +2886,7 @@ export declare class DescribeGlobalDatabaseNetworksResponse extends $tea.Model {
|
|
|
2722
2886
|
headers: {
|
|
2723
2887
|
[key: string]: string;
|
|
2724
2888
|
};
|
|
2889
|
+
statusCode: number;
|
|
2725
2890
|
body: DescribeGlobalDatabaseNetworksResponseBody;
|
|
2726
2891
|
static names(): {
|
|
2727
2892
|
[key: string]: string;
|
|
@@ -2751,6 +2916,8 @@ export declare class DescribeLogBackupPolicyRequest extends $tea.Model {
|
|
|
2751
2916
|
}
|
|
2752
2917
|
export declare class DescribeLogBackupPolicyResponseBody extends $tea.Model {
|
|
2753
2918
|
enableBackupLog?: number;
|
|
2919
|
+
logBackupAnotherRegionRegion?: string;
|
|
2920
|
+
logBackupAnotherRegionRetentionPeriod?: string;
|
|
2754
2921
|
logBackupRetentionPeriod?: number;
|
|
2755
2922
|
requestId?: string;
|
|
2756
2923
|
static names(): {
|
|
@@ -2767,6 +2934,7 @@ export declare class DescribeLogBackupPolicyResponse extends $tea.Model {
|
|
|
2767
2934
|
headers: {
|
|
2768
2935
|
[key: string]: string;
|
|
2769
2936
|
};
|
|
2937
|
+
statusCode: number;
|
|
2770
2938
|
body: DescribeLogBackupPolicyResponseBody;
|
|
2771
2939
|
static names(): {
|
|
2772
2940
|
[key: string]: string;
|
|
@@ -2792,6 +2960,7 @@ export declare class DescribeMaskingRulesRequest extends $tea.Model {
|
|
|
2792
2960
|
});
|
|
2793
2961
|
}
|
|
2794
2962
|
export declare class DescribeMaskingRulesResponseBody extends $tea.Model {
|
|
2963
|
+
DBClusterId?: string;
|
|
2795
2964
|
data?: DescribeMaskingRulesResponseBodyData;
|
|
2796
2965
|
message?: string;
|
|
2797
2966
|
requestId?: string;
|
|
@@ -2810,6 +2979,7 @@ export declare class DescribeMaskingRulesResponse extends $tea.Model {
|
|
|
2810
2979
|
headers: {
|
|
2811
2980
|
[key: string]: string;
|
|
2812
2981
|
};
|
|
2982
|
+
statusCode: number;
|
|
2813
2983
|
body: DescribeMaskingRulesResponseBody;
|
|
2814
2984
|
static names(): {
|
|
2815
2985
|
[key: string]: string;
|
|
@@ -2844,6 +3014,7 @@ export declare class DescribeMetaListRequest extends $tea.Model {
|
|
|
2844
3014
|
});
|
|
2845
3015
|
}
|
|
2846
3016
|
export declare class DescribeMetaListResponseBody extends $tea.Model {
|
|
3017
|
+
DBClusterId?: string;
|
|
2847
3018
|
items?: DescribeMetaListResponseBodyItems[];
|
|
2848
3019
|
pageNumber?: string;
|
|
2849
3020
|
pageSize?: string;
|
|
@@ -2864,6 +3035,7 @@ export declare class DescribeMetaListResponse extends $tea.Model {
|
|
|
2864
3035
|
headers: {
|
|
2865
3036
|
[key: string]: string;
|
|
2866
3037
|
};
|
|
3038
|
+
statusCode: number;
|
|
2867
3039
|
body: DescribeMetaListResponseBody;
|
|
2868
3040
|
static names(): {
|
|
2869
3041
|
[key: string]: string;
|
|
@@ -2909,6 +3081,7 @@ export declare class DescribeParameterGroupResponse extends $tea.Model {
|
|
|
2909
3081
|
headers: {
|
|
2910
3082
|
[key: string]: string;
|
|
2911
3083
|
};
|
|
3084
|
+
statusCode: number;
|
|
2912
3085
|
body: DescribeParameterGroupResponseBody;
|
|
2913
3086
|
static names(): {
|
|
2914
3087
|
[key: string]: string;
|
|
@@ -2955,6 +3128,7 @@ export declare class DescribeParameterGroupsResponse extends $tea.Model {
|
|
|
2955
3128
|
headers: {
|
|
2956
3129
|
[key: string]: string;
|
|
2957
3130
|
};
|
|
3131
|
+
statusCode: number;
|
|
2958
3132
|
body: DescribeParameterGroupsResponseBody;
|
|
2959
3133
|
static names(): {
|
|
2960
3134
|
[key: string]: string;
|
|
@@ -3005,6 +3179,7 @@ export declare class DescribeParameterTemplatesResponse extends $tea.Model {
|
|
|
3005
3179
|
headers: {
|
|
3006
3180
|
[key: string]: string;
|
|
3007
3181
|
};
|
|
3182
|
+
statusCode: number;
|
|
3008
3183
|
body: DescribeParameterTemplatesResponseBody;
|
|
3009
3184
|
static names(): {
|
|
3010
3185
|
[key: string]: string;
|
|
@@ -3057,6 +3232,7 @@ export declare class DescribePendingMaintenanceActionResponse extends $tea.Model
|
|
|
3057
3232
|
headers: {
|
|
3058
3233
|
[key: string]: string;
|
|
3059
3234
|
};
|
|
3235
|
+
statusCode: number;
|
|
3060
3236
|
body: DescribePendingMaintenanceActionResponseBody;
|
|
3061
3237
|
static names(): {
|
|
3062
3238
|
[key: string]: string;
|
|
@@ -3103,6 +3279,7 @@ export declare class DescribePendingMaintenanceActionsResponse extends $tea.Mode
|
|
|
3103
3279
|
headers: {
|
|
3104
3280
|
[key: string]: string;
|
|
3105
3281
|
};
|
|
3282
|
+
statusCode: number;
|
|
3106
3283
|
body: DescribePendingMaintenanceActionsResponseBody;
|
|
3107
3284
|
static names(): {
|
|
3108
3285
|
[key: string]: string;
|
|
@@ -3131,6 +3308,7 @@ export declare class DescribePolarSQLCollectorPolicyRequest extends $tea.Model {
|
|
|
3131
3308
|
});
|
|
3132
3309
|
}
|
|
3133
3310
|
export declare class DescribePolarSQLCollectorPolicyResponseBody extends $tea.Model {
|
|
3311
|
+
DBClusterId?: string;
|
|
3134
3312
|
requestId?: string;
|
|
3135
3313
|
SQLCollectorStatus?: string;
|
|
3136
3314
|
static names(): {
|
|
@@ -3147,6 +3325,7 @@ export declare class DescribePolarSQLCollectorPolicyResponse extends $tea.Model
|
|
|
3147
3325
|
headers: {
|
|
3148
3326
|
[key: string]: string;
|
|
3149
3327
|
};
|
|
3328
|
+
statusCode: number;
|
|
3150
3329
|
body: DescribePolarSQLCollectorPolicyResponseBody;
|
|
3151
3330
|
static names(): {
|
|
3152
3331
|
[key: string]: string;
|
|
@@ -3190,6 +3369,7 @@ export declare class DescribeRegionsResponse extends $tea.Model {
|
|
|
3190
3369
|
headers: {
|
|
3191
3370
|
[key: string]: string;
|
|
3192
3371
|
};
|
|
3372
|
+
statusCode: number;
|
|
3193
3373
|
body: DescribeRegionsResponseBody;
|
|
3194
3374
|
static names(): {
|
|
3195
3375
|
[key: string]: string;
|
|
@@ -3209,6 +3389,8 @@ export declare class DescribeScheduleTasksRequest extends $tea.Model {
|
|
|
3209
3389
|
ownerId?: number;
|
|
3210
3390
|
pageNumber?: number;
|
|
3211
3391
|
pageSize?: number;
|
|
3392
|
+
plannedEndTime?: string;
|
|
3393
|
+
plannedStartTime?: string;
|
|
3212
3394
|
regionId?: string;
|
|
3213
3395
|
resourceOwnerAccount?: string;
|
|
3214
3396
|
resourceOwnerId?: number;
|
|
@@ -3243,6 +3425,7 @@ export declare class DescribeScheduleTasksResponse extends $tea.Model {
|
|
|
3243
3425
|
headers: {
|
|
3244
3426
|
[key: string]: string;
|
|
3245
3427
|
};
|
|
3428
|
+
statusCode: number;
|
|
3246
3429
|
body: DescribeScheduleTasksResponseBody;
|
|
3247
3430
|
static names(): {
|
|
3248
3431
|
[key: string]: string;
|
|
@@ -3299,6 +3482,7 @@ export declare class DescribeSlowLogRecordsResponse extends $tea.Model {
|
|
|
3299
3482
|
headers: {
|
|
3300
3483
|
[key: string]: string;
|
|
3301
3484
|
};
|
|
3485
|
+
statusCode: number;
|
|
3302
3486
|
body: DescribeSlowLogRecordsResponseBody;
|
|
3303
3487
|
static names(): {
|
|
3304
3488
|
[key: string]: string;
|
|
@@ -3356,6 +3540,7 @@ export declare class DescribeSlowLogsResponse extends $tea.Model {
|
|
|
3356
3540
|
headers: {
|
|
3357
3541
|
[key: string]: string;
|
|
3358
3542
|
};
|
|
3543
|
+
statusCode: number;
|
|
3359
3544
|
body: DescribeSlowLogsResponseBody;
|
|
3360
3545
|
static names(): {
|
|
3361
3546
|
[key: string]: string;
|
|
@@ -3404,6 +3589,7 @@ export declare class DescribeStoragePlanResponse extends $tea.Model {
|
|
|
3404
3589
|
headers: {
|
|
3405
3590
|
[key: string]: string;
|
|
3406
3591
|
};
|
|
3592
|
+
statusCode: number;
|
|
3407
3593
|
body: DescribeStoragePlanResponseBody;
|
|
3408
3594
|
static names(): {
|
|
3409
3595
|
[key: string]: string;
|
|
@@ -3460,6 +3646,7 @@ export declare class DescribeTasksResponse extends $tea.Model {
|
|
|
3460
3646
|
headers: {
|
|
3461
3647
|
[key: string]: string;
|
|
3462
3648
|
};
|
|
3649
|
+
statusCode: number;
|
|
3463
3650
|
body: DescribeTasksResponseBody;
|
|
3464
3651
|
static names(): {
|
|
3465
3652
|
[key: string]: string;
|
|
@@ -3471,6 +3658,54 @@ export declare class DescribeTasksResponse extends $tea.Model {
|
|
|
3471
3658
|
[key: string]: any;
|
|
3472
3659
|
});
|
|
3473
3660
|
}
|
|
3661
|
+
export declare class EnableFirewallRulesRequest extends $tea.Model {
|
|
3662
|
+
DBClusterId?: string;
|
|
3663
|
+
enable?: boolean;
|
|
3664
|
+
ownerAccount?: string;
|
|
3665
|
+
ownerId?: number;
|
|
3666
|
+
resourceOwnerAccount?: string;
|
|
3667
|
+
resourceOwnerId?: number;
|
|
3668
|
+
ruleNameList?: string;
|
|
3669
|
+
static names(): {
|
|
3670
|
+
[key: string]: string;
|
|
3671
|
+
};
|
|
3672
|
+
static types(): {
|
|
3673
|
+
[key: string]: any;
|
|
3674
|
+
};
|
|
3675
|
+
constructor(map?: {
|
|
3676
|
+
[key: string]: any;
|
|
3677
|
+
});
|
|
3678
|
+
}
|
|
3679
|
+
export declare class EnableFirewallRulesResponseBody extends $tea.Model {
|
|
3680
|
+
message?: string;
|
|
3681
|
+
requestId?: string;
|
|
3682
|
+
success?: boolean;
|
|
3683
|
+
static names(): {
|
|
3684
|
+
[key: string]: string;
|
|
3685
|
+
};
|
|
3686
|
+
static types(): {
|
|
3687
|
+
[key: string]: any;
|
|
3688
|
+
};
|
|
3689
|
+
constructor(map?: {
|
|
3690
|
+
[key: string]: any;
|
|
3691
|
+
});
|
|
3692
|
+
}
|
|
3693
|
+
export declare class EnableFirewallRulesResponse extends $tea.Model {
|
|
3694
|
+
headers: {
|
|
3695
|
+
[key: string]: string;
|
|
3696
|
+
};
|
|
3697
|
+
statusCode: number;
|
|
3698
|
+
body: EnableFirewallRulesResponseBody;
|
|
3699
|
+
static names(): {
|
|
3700
|
+
[key: string]: string;
|
|
3701
|
+
};
|
|
3702
|
+
static types(): {
|
|
3703
|
+
[key: string]: any;
|
|
3704
|
+
};
|
|
3705
|
+
constructor(map?: {
|
|
3706
|
+
[key: string]: any;
|
|
3707
|
+
});
|
|
3708
|
+
}
|
|
3474
3709
|
export declare class FailoverDBClusterRequest extends $tea.Model {
|
|
3475
3710
|
clientToken?: string;
|
|
3476
3711
|
DBClusterId?: string;
|
|
@@ -3505,6 +3740,7 @@ export declare class FailoverDBClusterResponse extends $tea.Model {
|
|
|
3505
3740
|
headers: {
|
|
3506
3741
|
[key: string]: string;
|
|
3507
3742
|
};
|
|
3743
|
+
statusCode: number;
|
|
3508
3744
|
body: FailoverDBClusterResponseBody;
|
|
3509
3745
|
static names(): {
|
|
3510
3746
|
[key: string]: string;
|
|
@@ -3551,6 +3787,7 @@ export declare class GrantAccountPrivilegeResponse extends $tea.Model {
|
|
|
3551
3787
|
headers: {
|
|
3552
3788
|
[key: string]: string;
|
|
3553
3789
|
};
|
|
3790
|
+
statusCode: number;
|
|
3554
3791
|
body: GrantAccountPrivilegeResponseBody;
|
|
3555
3792
|
static names(): {
|
|
3556
3793
|
[key: string]: string;
|
|
@@ -3600,6 +3837,7 @@ export declare class ListTagResourcesResponse extends $tea.Model {
|
|
|
3600
3837
|
headers: {
|
|
3601
3838
|
[key: string]: string;
|
|
3602
3839
|
};
|
|
3840
|
+
statusCode: number;
|
|
3603
3841
|
body: ListTagResourcesResponseBody;
|
|
3604
3842
|
static names(): {
|
|
3605
3843
|
[key: string]: string;
|
|
@@ -3645,6 +3883,7 @@ export declare class ModifyAccountDescriptionResponse extends $tea.Model {
|
|
|
3645
3883
|
headers: {
|
|
3646
3884
|
[key: string]: string;
|
|
3647
3885
|
};
|
|
3886
|
+
statusCode: number;
|
|
3648
3887
|
body: ModifyAccountDescriptionResponseBody;
|
|
3649
3888
|
static names(): {
|
|
3650
3889
|
[key: string]: string;
|
|
@@ -3690,6 +3929,7 @@ export declare class ModifyAccountPasswordResponse extends $tea.Model {
|
|
|
3690
3929
|
headers: {
|
|
3691
3930
|
[key: string]: string;
|
|
3692
3931
|
};
|
|
3932
|
+
statusCode: number;
|
|
3693
3933
|
body: ModifyAccountPasswordResponseBody;
|
|
3694
3934
|
static names(): {
|
|
3695
3935
|
[key: string]: string;
|
|
@@ -3738,6 +3978,7 @@ export declare class ModifyAutoRenewAttributeResponse extends $tea.Model {
|
|
|
3738
3978
|
headers: {
|
|
3739
3979
|
[key: string]: string;
|
|
3740
3980
|
};
|
|
3981
|
+
statusCode: number;
|
|
3741
3982
|
body: ModifyAutoRenewAttributeResponseBody;
|
|
3742
3983
|
static names(): {
|
|
3743
3984
|
[key: string]: string;
|
|
@@ -3757,6 +3998,8 @@ export declare class ModifyBackupPolicyRequest extends $tea.Model {
|
|
|
3757
3998
|
dataLevel1BackupPeriod?: string;
|
|
3758
3999
|
dataLevel1BackupRetentionPeriod?: string;
|
|
3759
4000
|
dataLevel1BackupTime?: string;
|
|
4001
|
+
dataLevel2BackupAnotherRegionRegion?: string;
|
|
4002
|
+
dataLevel2BackupAnotherRegionRetentionPeriod?: string;
|
|
3760
4003
|
dataLevel2BackupPeriod?: string;
|
|
3761
4004
|
dataLevel2BackupRetentionPeriod?: string;
|
|
3762
4005
|
ownerAccount?: string;
|
|
@@ -3791,6 +4034,7 @@ export declare class ModifyBackupPolicyResponse extends $tea.Model {
|
|
|
3791
4034
|
headers: {
|
|
3792
4035
|
[key: string]: string;
|
|
3793
4036
|
};
|
|
4037
|
+
statusCode: number;
|
|
3794
4038
|
body: ModifyBackupPolicyResponseBody;
|
|
3795
4039
|
static names(): {
|
|
3796
4040
|
[key: string]: string;
|
|
@@ -3840,6 +4084,7 @@ export declare class ModifyDBClusterAccessWhitelistResponse extends $tea.Model {
|
|
|
3840
4084
|
headers: {
|
|
3841
4085
|
[key: string]: string;
|
|
3842
4086
|
};
|
|
4087
|
+
statusCode: number;
|
|
3843
4088
|
body: ModifyDBClusterAccessWhitelistResponseBody;
|
|
3844
4089
|
static names(): {
|
|
3845
4090
|
[key: string]: string;
|
|
@@ -3854,10 +4099,13 @@ export declare class ModifyDBClusterAccessWhitelistResponse extends $tea.Model {
|
|
|
3854
4099
|
export declare class ModifyDBClusterAndNodesParametersRequest extends $tea.Model {
|
|
3855
4100
|
DBClusterId?: string;
|
|
3856
4101
|
DBNodeIds?: string;
|
|
4102
|
+
fromTimeService?: boolean;
|
|
3857
4103
|
ownerAccount?: string;
|
|
3858
4104
|
ownerId?: number;
|
|
3859
4105
|
parameterGroupId?: string;
|
|
3860
4106
|
parameters?: string;
|
|
4107
|
+
plannedEndTime?: string;
|
|
4108
|
+
plannedStartTime?: string;
|
|
3861
4109
|
resourceOwnerAccount?: string;
|
|
3862
4110
|
resourceOwnerId?: number;
|
|
3863
4111
|
static names(): {
|
|
@@ -3886,6 +4134,7 @@ export declare class ModifyDBClusterAndNodesParametersResponse extends $tea.Mode
|
|
|
3886
4134
|
headers: {
|
|
3887
4135
|
[key: string]: string;
|
|
3888
4136
|
};
|
|
4137
|
+
statusCode: number;
|
|
3889
4138
|
body: ModifyDBClusterAndNodesParametersResponseBody;
|
|
3890
4139
|
static names(): {
|
|
3891
4140
|
[key: string]: string;
|
|
@@ -3930,6 +4179,7 @@ export declare class ModifyDBClusterAuditLogCollectorResponse extends $tea.Model
|
|
|
3930
4179
|
headers: {
|
|
3931
4180
|
[key: string]: string;
|
|
3932
4181
|
};
|
|
4182
|
+
statusCode: number;
|
|
3933
4183
|
body: ModifyDBClusterAuditLogCollectorResponseBody;
|
|
3934
4184
|
static names(): {
|
|
3935
4185
|
[key: string]: string;
|
|
@@ -3941,6 +4191,51 @@ export declare class ModifyDBClusterAuditLogCollectorResponse extends $tea.Model
|
|
|
3941
4191
|
[key: string]: any;
|
|
3942
4192
|
});
|
|
3943
4193
|
}
|
|
4194
|
+
export declare class ModifyDBClusterDeletionRequest extends $tea.Model {
|
|
4195
|
+
DBClusterId?: string;
|
|
4196
|
+
ownerAccount?: string;
|
|
4197
|
+
ownerId?: number;
|
|
4198
|
+
protection?: boolean;
|
|
4199
|
+
resourceOwnerAccount?: string;
|
|
4200
|
+
resourceOwnerId?: number;
|
|
4201
|
+
static names(): {
|
|
4202
|
+
[key: string]: string;
|
|
4203
|
+
};
|
|
4204
|
+
static types(): {
|
|
4205
|
+
[key: string]: any;
|
|
4206
|
+
};
|
|
4207
|
+
constructor(map?: {
|
|
4208
|
+
[key: string]: any;
|
|
4209
|
+
});
|
|
4210
|
+
}
|
|
4211
|
+
export declare class ModifyDBClusterDeletionResponseBody extends $tea.Model {
|
|
4212
|
+
requestId?: string;
|
|
4213
|
+
static names(): {
|
|
4214
|
+
[key: string]: string;
|
|
4215
|
+
};
|
|
4216
|
+
static types(): {
|
|
4217
|
+
[key: string]: any;
|
|
4218
|
+
};
|
|
4219
|
+
constructor(map?: {
|
|
4220
|
+
[key: string]: any;
|
|
4221
|
+
});
|
|
4222
|
+
}
|
|
4223
|
+
export declare class ModifyDBClusterDeletionResponse extends $tea.Model {
|
|
4224
|
+
headers: {
|
|
4225
|
+
[key: string]: string;
|
|
4226
|
+
};
|
|
4227
|
+
statusCode: number;
|
|
4228
|
+
body: ModifyDBClusterDeletionResponseBody;
|
|
4229
|
+
static names(): {
|
|
4230
|
+
[key: string]: string;
|
|
4231
|
+
};
|
|
4232
|
+
static types(): {
|
|
4233
|
+
[key: string]: any;
|
|
4234
|
+
};
|
|
4235
|
+
constructor(map?: {
|
|
4236
|
+
[key: string]: any;
|
|
4237
|
+
});
|
|
4238
|
+
}
|
|
3944
4239
|
export declare class ModifyDBClusterDescriptionRequest extends $tea.Model {
|
|
3945
4240
|
DBClusterDescription?: string;
|
|
3946
4241
|
DBClusterId?: string;
|
|
@@ -3974,6 +4269,7 @@ export declare class ModifyDBClusterDescriptionResponse extends $tea.Model {
|
|
|
3974
4269
|
headers: {
|
|
3975
4270
|
[key: string]: string;
|
|
3976
4271
|
};
|
|
4272
|
+
statusCode: number;
|
|
3977
4273
|
body: ModifyDBClusterDescriptionResponseBody;
|
|
3978
4274
|
static names(): {
|
|
3979
4275
|
[key: string]: string;
|
|
@@ -4023,6 +4319,7 @@ export declare class ModifyDBClusterEndpointResponse extends $tea.Model {
|
|
|
4023
4319
|
headers: {
|
|
4024
4320
|
[key: string]: string;
|
|
4025
4321
|
};
|
|
4322
|
+
statusCode: number;
|
|
4026
4323
|
body: ModifyDBClusterEndpointResponseBody;
|
|
4027
4324
|
static names(): {
|
|
4028
4325
|
[key: string]: string;
|
|
@@ -4067,6 +4364,7 @@ export declare class ModifyDBClusterMaintainTimeResponse extends $tea.Model {
|
|
|
4067
4364
|
headers: {
|
|
4068
4365
|
[key: string]: string;
|
|
4069
4366
|
};
|
|
4367
|
+
statusCode: number;
|
|
4070
4368
|
body: ModifyDBClusterMaintainTimeResponseBody;
|
|
4071
4369
|
static names(): {
|
|
4072
4370
|
[key: string]: string;
|
|
@@ -4079,6 +4377,7 @@ export declare class ModifyDBClusterMaintainTimeResponse extends $tea.Model {
|
|
|
4079
4377
|
});
|
|
4080
4378
|
}
|
|
4081
4379
|
export declare class ModifyDBClusterMigrationRequest extends $tea.Model {
|
|
4380
|
+
connectionStrings?: string;
|
|
4082
4381
|
DBClusterId?: string;
|
|
4083
4382
|
newMasterInstanceId?: string;
|
|
4084
4383
|
ownerAccount?: string;
|
|
@@ -4114,6 +4413,7 @@ export declare class ModifyDBClusterMigrationResponse extends $tea.Model {
|
|
|
4114
4413
|
headers: {
|
|
4115
4414
|
[key: string]: string;
|
|
4116
4415
|
};
|
|
4416
|
+
statusCode: number;
|
|
4117
4417
|
body: ModifyDBClusterMigrationResponseBody;
|
|
4118
4418
|
static names(): {
|
|
4119
4419
|
[key: string]: string;
|
|
@@ -4158,6 +4458,7 @@ export declare class ModifyDBClusterMonitorResponse extends $tea.Model {
|
|
|
4158
4458
|
headers: {
|
|
4159
4459
|
[key: string]: string;
|
|
4160
4460
|
};
|
|
4461
|
+
statusCode: number;
|
|
4161
4462
|
body: ModifyDBClusterMonitorResponseBody;
|
|
4162
4463
|
static names(): {
|
|
4163
4464
|
[key: string]: string;
|
|
@@ -4171,10 +4472,13 @@ export declare class ModifyDBClusterMonitorResponse extends $tea.Model {
|
|
|
4171
4472
|
}
|
|
4172
4473
|
export declare class ModifyDBClusterParametersRequest extends $tea.Model {
|
|
4173
4474
|
DBClusterId?: string;
|
|
4475
|
+
fromTimeService?: boolean;
|
|
4174
4476
|
ownerAccount?: string;
|
|
4175
4477
|
ownerId?: number;
|
|
4176
4478
|
parameterGroupId?: string;
|
|
4177
4479
|
parameters?: string;
|
|
4480
|
+
plannedEndTime?: string;
|
|
4481
|
+
plannedStartTime?: string;
|
|
4178
4482
|
resourceOwnerAccount?: string;
|
|
4179
4483
|
resourceOwnerId?: number;
|
|
4180
4484
|
static names(): {
|
|
@@ -4203,6 +4507,7 @@ export declare class ModifyDBClusterParametersResponse extends $tea.Model {
|
|
|
4203
4507
|
headers: {
|
|
4204
4508
|
[key: string]: string;
|
|
4205
4509
|
};
|
|
4510
|
+
statusCode: number;
|
|
4206
4511
|
body: ModifyDBClusterParametersResponseBody;
|
|
4207
4512
|
static names(): {
|
|
4208
4513
|
[key: string]: string;
|
|
@@ -4251,6 +4556,7 @@ export declare class ModifyDBClusterPrimaryZoneResponse extends $tea.Model {
|
|
|
4251
4556
|
headers: {
|
|
4252
4557
|
[key: string]: string;
|
|
4253
4558
|
};
|
|
4559
|
+
statusCode: number;
|
|
4254
4560
|
body: ModifyDBClusterPrimaryZoneResponseBody;
|
|
4255
4561
|
static names(): {
|
|
4256
4562
|
[key: string]: string;
|
|
@@ -4262,6 +4568,52 @@ export declare class ModifyDBClusterPrimaryZoneResponse extends $tea.Model {
|
|
|
4262
4568
|
[key: string]: any;
|
|
4263
4569
|
});
|
|
4264
4570
|
}
|
|
4571
|
+
export declare class ModifyDBClusterResourceGroupRequest extends $tea.Model {
|
|
4572
|
+
DBClusterId?: string;
|
|
4573
|
+
newResourceGroupId?: string;
|
|
4574
|
+
ownerAccount?: string;
|
|
4575
|
+
ownerId?: number;
|
|
4576
|
+
resourceGroupId?: string;
|
|
4577
|
+
resourceOwnerAccount?: string;
|
|
4578
|
+
resourceOwnerId?: number;
|
|
4579
|
+
static names(): {
|
|
4580
|
+
[key: string]: string;
|
|
4581
|
+
};
|
|
4582
|
+
static types(): {
|
|
4583
|
+
[key: string]: any;
|
|
4584
|
+
};
|
|
4585
|
+
constructor(map?: {
|
|
4586
|
+
[key: string]: any;
|
|
4587
|
+
});
|
|
4588
|
+
}
|
|
4589
|
+
export declare class ModifyDBClusterResourceGroupResponseBody extends $tea.Model {
|
|
4590
|
+
requestId?: string;
|
|
4591
|
+
static names(): {
|
|
4592
|
+
[key: string]: string;
|
|
4593
|
+
};
|
|
4594
|
+
static types(): {
|
|
4595
|
+
[key: string]: any;
|
|
4596
|
+
};
|
|
4597
|
+
constructor(map?: {
|
|
4598
|
+
[key: string]: any;
|
|
4599
|
+
});
|
|
4600
|
+
}
|
|
4601
|
+
export declare class ModifyDBClusterResourceGroupResponse extends $tea.Model {
|
|
4602
|
+
headers: {
|
|
4603
|
+
[key: string]: string;
|
|
4604
|
+
};
|
|
4605
|
+
statusCode: number;
|
|
4606
|
+
body: ModifyDBClusterResourceGroupResponseBody;
|
|
4607
|
+
static names(): {
|
|
4608
|
+
[key: string]: string;
|
|
4609
|
+
};
|
|
4610
|
+
static types(): {
|
|
4611
|
+
[key: string]: any;
|
|
4612
|
+
};
|
|
4613
|
+
constructor(map?: {
|
|
4614
|
+
[key: string]: any;
|
|
4615
|
+
});
|
|
4616
|
+
}
|
|
4265
4617
|
export declare class ModifyDBClusterSSLRequest extends $tea.Model {
|
|
4266
4618
|
DBClusterId?: string;
|
|
4267
4619
|
DBEndpointId?: string;
|
|
@@ -4298,6 +4650,7 @@ export declare class ModifyDBClusterSSLResponse extends $tea.Model {
|
|
|
4298
4650
|
headers: {
|
|
4299
4651
|
[key: string]: string;
|
|
4300
4652
|
};
|
|
4653
|
+
statusCode: number;
|
|
4301
4654
|
body: ModifyDBClusterSSLResponseBody;
|
|
4302
4655
|
static names(): {
|
|
4303
4656
|
[key: string]: string;
|
|
@@ -4345,6 +4698,7 @@ export declare class ModifyDBClusterTDEResponse extends $tea.Model {
|
|
|
4345
4698
|
headers: {
|
|
4346
4699
|
[key: string]: string;
|
|
4347
4700
|
};
|
|
4701
|
+
statusCode: number;
|
|
4348
4702
|
body: ModifyDBClusterTDEResponseBody;
|
|
4349
4703
|
static names(): {
|
|
4350
4704
|
[key: string]: string;
|
|
@@ -4390,6 +4744,7 @@ export declare class ModifyDBDescriptionResponse extends $tea.Model {
|
|
|
4390
4744
|
headers: {
|
|
4391
4745
|
[key: string]: string;
|
|
4392
4746
|
};
|
|
4747
|
+
statusCode: number;
|
|
4393
4748
|
body: ModifyDBDescriptionResponseBody;
|
|
4394
4749
|
static names(): {
|
|
4395
4750
|
[key: string]: string;
|
|
@@ -4439,6 +4794,7 @@ export declare class ModifyDBEndpointAddressResponse extends $tea.Model {
|
|
|
4439
4794
|
headers: {
|
|
4440
4795
|
[key: string]: string;
|
|
4441
4796
|
};
|
|
4797
|
+
statusCode: number;
|
|
4442
4798
|
body: ModifyDBEndpointAddressResponseBody;
|
|
4443
4799
|
static names(): {
|
|
4444
4800
|
[key: string]: string;
|
|
@@ -4490,6 +4846,7 @@ export declare class ModifyDBNodeClassResponse extends $tea.Model {
|
|
|
4490
4846
|
headers: {
|
|
4491
4847
|
[key: string]: string;
|
|
4492
4848
|
};
|
|
4849
|
+
statusCode: number;
|
|
4493
4850
|
body: ModifyDBNodeClassResponseBody;
|
|
4494
4851
|
static names(): {
|
|
4495
4852
|
[key: string]: string;
|
|
@@ -4541,6 +4898,7 @@ export declare class ModifyDBNodesClassResponse extends $tea.Model {
|
|
|
4541
4898
|
headers: {
|
|
4542
4899
|
[key: string]: string;
|
|
4543
4900
|
};
|
|
4901
|
+
statusCode: number;
|
|
4544
4902
|
body: ModifyDBNodesClassResponseBody;
|
|
4545
4903
|
static names(): {
|
|
4546
4904
|
[key: string]: string;
|
|
@@ -4555,10 +4913,13 @@ export declare class ModifyDBNodesClassResponse extends $tea.Model {
|
|
|
4555
4913
|
export declare class ModifyDBNodesParametersRequest extends $tea.Model {
|
|
4556
4914
|
DBClusterId?: string;
|
|
4557
4915
|
DBNodeIds?: string;
|
|
4916
|
+
fromTimeService?: boolean;
|
|
4558
4917
|
ownerAccount?: string;
|
|
4559
4918
|
ownerId?: number;
|
|
4560
4919
|
parameterGroupId?: string;
|
|
4561
4920
|
parameters?: string;
|
|
4921
|
+
plannedEndTime?: string;
|
|
4922
|
+
plannedStartTime?: string;
|
|
4562
4923
|
resourceOwnerAccount?: string;
|
|
4563
4924
|
resourceOwnerId?: number;
|
|
4564
4925
|
static names(): {
|
|
@@ -4587,6 +4948,7 @@ export declare class ModifyDBNodesParametersResponse extends $tea.Model {
|
|
|
4587
4948
|
headers: {
|
|
4588
4949
|
[key: string]: string;
|
|
4589
4950
|
};
|
|
4951
|
+
statusCode: number;
|
|
4590
4952
|
body: ModifyDBNodesParametersResponseBody;
|
|
4591
4953
|
static names(): {
|
|
4592
4954
|
[key: string]: string;
|
|
@@ -4632,6 +4994,7 @@ export declare class ModifyGlobalDatabaseNetworkResponse extends $tea.Model {
|
|
|
4632
4994
|
headers: {
|
|
4633
4995
|
[key: string]: string;
|
|
4634
4996
|
};
|
|
4997
|
+
statusCode: number;
|
|
4635
4998
|
body: ModifyGlobalDatabaseNetworkResponseBody;
|
|
4636
4999
|
static names(): {
|
|
4637
5000
|
[key: string]: string;
|
|
@@ -4645,6 +5008,8 @@ export declare class ModifyGlobalDatabaseNetworkResponse extends $tea.Model {
|
|
|
4645
5008
|
}
|
|
4646
5009
|
export declare class ModifyLogBackupPolicyRequest extends $tea.Model {
|
|
4647
5010
|
DBClusterId?: string;
|
|
5011
|
+
logBackupAnotherRegionRegion?: string;
|
|
5012
|
+
logBackupAnotherRegionRetentionPeriod?: string;
|
|
4648
5013
|
logBackupRetentionPeriod?: string;
|
|
4649
5014
|
ownerAccount?: string;
|
|
4650
5015
|
ownerId?: number;
|
|
@@ -4676,6 +5041,7 @@ export declare class ModifyLogBackupPolicyResponse extends $tea.Model {
|
|
|
4676
5041
|
headers: {
|
|
4677
5042
|
[key: string]: string;
|
|
4678
5043
|
};
|
|
5044
|
+
statusCode: number;
|
|
4679
5045
|
body: ModifyLogBackupPolicyResponseBody;
|
|
4680
5046
|
static names(): {
|
|
4681
5047
|
[key: string]: string;
|
|
@@ -4721,6 +5087,7 @@ export declare class ModifyMaskingRulesResponse extends $tea.Model {
|
|
|
4721
5087
|
headers: {
|
|
4722
5088
|
[key: string]: string;
|
|
4723
5089
|
};
|
|
5090
|
+
statusCode: number;
|
|
4724
5091
|
body: ModifyMaskingRulesResponseBody;
|
|
4725
5092
|
static names(): {
|
|
4726
5093
|
[key: string]: string;
|
|
@@ -4768,6 +5135,7 @@ export declare class ModifyPendingMaintenanceActionResponse extends $tea.Model {
|
|
|
4768
5135
|
headers: {
|
|
4769
5136
|
[key: string]: string;
|
|
4770
5137
|
};
|
|
5138
|
+
statusCode: number;
|
|
4771
5139
|
body: ModifyPendingMaintenanceActionResponseBody;
|
|
4772
5140
|
static names(): {
|
|
4773
5141
|
[key: string]: string;
|
|
@@ -4779,6 +5147,101 @@ export declare class ModifyPendingMaintenanceActionResponse extends $tea.Model {
|
|
|
4779
5147
|
[key: string]: any;
|
|
4780
5148
|
});
|
|
4781
5149
|
}
|
|
5150
|
+
export declare class OpenAITaskRequest extends $tea.Model {
|
|
5151
|
+
DBClusterId?: string;
|
|
5152
|
+
ownerAccount?: string;
|
|
5153
|
+
ownerId?: number;
|
|
5154
|
+
password?: string;
|
|
5155
|
+
regionId?: string;
|
|
5156
|
+
resourceOwnerAccount?: string;
|
|
5157
|
+
resourceOwnerId?: number;
|
|
5158
|
+
username?: string;
|
|
5159
|
+
static names(): {
|
|
5160
|
+
[key: string]: string;
|
|
5161
|
+
};
|
|
5162
|
+
static types(): {
|
|
5163
|
+
[key: string]: any;
|
|
5164
|
+
};
|
|
5165
|
+
constructor(map?: {
|
|
5166
|
+
[key: string]: any;
|
|
5167
|
+
});
|
|
5168
|
+
}
|
|
5169
|
+
export declare class OpenAITaskResponseBody extends $tea.Model {
|
|
5170
|
+
requestId?: string;
|
|
5171
|
+
taskId?: string;
|
|
5172
|
+
static names(): {
|
|
5173
|
+
[key: string]: string;
|
|
5174
|
+
};
|
|
5175
|
+
static types(): {
|
|
5176
|
+
[key: string]: any;
|
|
5177
|
+
};
|
|
5178
|
+
constructor(map?: {
|
|
5179
|
+
[key: string]: any;
|
|
5180
|
+
});
|
|
5181
|
+
}
|
|
5182
|
+
export declare class OpenAITaskResponse extends $tea.Model {
|
|
5183
|
+
headers: {
|
|
5184
|
+
[key: string]: string;
|
|
5185
|
+
};
|
|
5186
|
+
statusCode: number;
|
|
5187
|
+
body: OpenAITaskResponseBody;
|
|
5188
|
+
static names(): {
|
|
5189
|
+
[key: string]: string;
|
|
5190
|
+
};
|
|
5191
|
+
static types(): {
|
|
5192
|
+
[key: string]: any;
|
|
5193
|
+
};
|
|
5194
|
+
constructor(map?: {
|
|
5195
|
+
[key: string]: any;
|
|
5196
|
+
});
|
|
5197
|
+
}
|
|
5198
|
+
export declare class RefreshDBClusterStorageUsageRequest extends $tea.Model {
|
|
5199
|
+
ownerAccount?: string;
|
|
5200
|
+
ownerId?: number;
|
|
5201
|
+
resourceOwnerAccount?: string;
|
|
5202
|
+
resourceOwnerId?: number;
|
|
5203
|
+
syncRealTime?: boolean;
|
|
5204
|
+
static names(): {
|
|
5205
|
+
[key: string]: string;
|
|
5206
|
+
};
|
|
5207
|
+
static types(): {
|
|
5208
|
+
[key: string]: any;
|
|
5209
|
+
};
|
|
5210
|
+
constructor(map?: {
|
|
5211
|
+
[key: string]: any;
|
|
5212
|
+
});
|
|
5213
|
+
}
|
|
5214
|
+
export declare class RefreshDBClusterStorageUsageResponseBody extends $tea.Model {
|
|
5215
|
+
DBClusterId?: string;
|
|
5216
|
+
requestId?: string;
|
|
5217
|
+
usedStorage?: string;
|
|
5218
|
+
usedStorageModified?: string;
|
|
5219
|
+
static names(): {
|
|
5220
|
+
[key: string]: string;
|
|
5221
|
+
};
|
|
5222
|
+
static types(): {
|
|
5223
|
+
[key: string]: any;
|
|
5224
|
+
};
|
|
5225
|
+
constructor(map?: {
|
|
5226
|
+
[key: string]: any;
|
|
5227
|
+
});
|
|
5228
|
+
}
|
|
5229
|
+
export declare class RefreshDBClusterStorageUsageResponse extends $tea.Model {
|
|
5230
|
+
headers: {
|
|
5231
|
+
[key: string]: string;
|
|
5232
|
+
};
|
|
5233
|
+
statusCode: number;
|
|
5234
|
+
body: RefreshDBClusterStorageUsageResponseBody;
|
|
5235
|
+
static names(): {
|
|
5236
|
+
[key: string]: string;
|
|
5237
|
+
};
|
|
5238
|
+
static types(): {
|
|
5239
|
+
[key: string]: any;
|
|
5240
|
+
};
|
|
5241
|
+
constructor(map?: {
|
|
5242
|
+
[key: string]: any;
|
|
5243
|
+
});
|
|
5244
|
+
}
|
|
4782
5245
|
export declare class RemoveDBClusterFromGDNRequest extends $tea.Model {
|
|
4783
5246
|
DBClusterId?: string;
|
|
4784
5247
|
GDNId?: string;
|
|
@@ -4813,6 +5276,7 @@ export declare class RemoveDBClusterFromGDNResponse extends $tea.Model {
|
|
|
4813
5276
|
headers: {
|
|
4814
5277
|
[key: string]: string;
|
|
4815
5278
|
};
|
|
5279
|
+
statusCode: number;
|
|
4816
5280
|
body: RemoveDBClusterFromGDNResponseBody;
|
|
4817
5281
|
static names(): {
|
|
4818
5282
|
[key: string]: string;
|
|
@@ -4858,6 +5322,7 @@ export declare class ResetAccountResponse extends $tea.Model {
|
|
|
4858
5322
|
headers: {
|
|
4859
5323
|
[key: string]: string;
|
|
4860
5324
|
};
|
|
5325
|
+
statusCode: number;
|
|
4861
5326
|
body: ResetAccountResponseBody;
|
|
4862
5327
|
static names(): {
|
|
4863
5328
|
[key: string]: string;
|
|
@@ -4901,6 +5366,7 @@ export declare class RestartDBNodeResponse extends $tea.Model {
|
|
|
4901
5366
|
headers: {
|
|
4902
5367
|
[key: string]: string;
|
|
4903
5368
|
};
|
|
5369
|
+
statusCode: number;
|
|
4904
5370
|
body: RestartDBNodeResponseBody;
|
|
4905
5371
|
static names(): {
|
|
4906
5372
|
[key: string]: string;
|
|
@@ -4948,6 +5414,7 @@ export declare class RestoreTableResponse extends $tea.Model {
|
|
|
4948
5414
|
headers: {
|
|
4949
5415
|
[key: string]: string;
|
|
4950
5416
|
};
|
|
5417
|
+
statusCode: number;
|
|
4951
5418
|
body: RestoreTableResponseBody;
|
|
4952
5419
|
static names(): {
|
|
4953
5420
|
[key: string]: string;
|
|
@@ -4993,6 +5460,7 @@ export declare class RevokeAccountPrivilegeResponse extends $tea.Model {
|
|
|
4993
5460
|
headers: {
|
|
4994
5461
|
[key: string]: string;
|
|
4995
5462
|
};
|
|
5463
|
+
statusCode: number;
|
|
4996
5464
|
body: RevokeAccountPrivilegeResponseBody;
|
|
4997
5465
|
static names(): {
|
|
4998
5466
|
[key: string]: string;
|
|
@@ -5004,6 +5472,53 @@ export declare class RevokeAccountPrivilegeResponse extends $tea.Model {
|
|
|
5004
5472
|
[key: string]: any;
|
|
5005
5473
|
});
|
|
5006
5474
|
}
|
|
5475
|
+
export declare class SwitchOverGlobalDatabaseNetworkRequest extends $tea.Model {
|
|
5476
|
+
DBClusterId?: string;
|
|
5477
|
+
GDNId?: string;
|
|
5478
|
+
ownerAccount?: string;
|
|
5479
|
+
ownerId?: number;
|
|
5480
|
+
regionId?: string;
|
|
5481
|
+
resourceOwnerAccount?: string;
|
|
5482
|
+
resourceOwnerId?: number;
|
|
5483
|
+
securityToken?: string;
|
|
5484
|
+
static names(): {
|
|
5485
|
+
[key: string]: string;
|
|
5486
|
+
};
|
|
5487
|
+
static types(): {
|
|
5488
|
+
[key: string]: any;
|
|
5489
|
+
};
|
|
5490
|
+
constructor(map?: {
|
|
5491
|
+
[key: string]: any;
|
|
5492
|
+
});
|
|
5493
|
+
}
|
|
5494
|
+
export declare class SwitchOverGlobalDatabaseNetworkResponseBody extends $tea.Model {
|
|
5495
|
+
requestId?: string;
|
|
5496
|
+
static names(): {
|
|
5497
|
+
[key: string]: string;
|
|
5498
|
+
};
|
|
5499
|
+
static types(): {
|
|
5500
|
+
[key: string]: any;
|
|
5501
|
+
};
|
|
5502
|
+
constructor(map?: {
|
|
5503
|
+
[key: string]: any;
|
|
5504
|
+
});
|
|
5505
|
+
}
|
|
5506
|
+
export declare class SwitchOverGlobalDatabaseNetworkResponse extends $tea.Model {
|
|
5507
|
+
headers: {
|
|
5508
|
+
[key: string]: string;
|
|
5509
|
+
};
|
|
5510
|
+
statusCode: number;
|
|
5511
|
+
body: SwitchOverGlobalDatabaseNetworkResponseBody;
|
|
5512
|
+
static names(): {
|
|
5513
|
+
[key: string]: string;
|
|
5514
|
+
};
|
|
5515
|
+
static types(): {
|
|
5516
|
+
[key: string]: any;
|
|
5517
|
+
};
|
|
5518
|
+
constructor(map?: {
|
|
5519
|
+
[key: string]: any;
|
|
5520
|
+
});
|
|
5521
|
+
}
|
|
5007
5522
|
export declare class TagResourcesRequest extends $tea.Model {
|
|
5008
5523
|
ownerAccount?: string;
|
|
5009
5524
|
ownerId?: number;
|
|
@@ -5039,6 +5554,7 @@ export declare class TagResourcesResponse extends $tea.Model {
|
|
|
5039
5554
|
headers: {
|
|
5040
5555
|
[key: string]: string;
|
|
5041
5556
|
};
|
|
5557
|
+
statusCode: number;
|
|
5042
5558
|
body: TagResourcesResponseBody;
|
|
5043
5559
|
static names(): {
|
|
5044
5560
|
[key: string]: string;
|
|
@@ -5090,6 +5606,7 @@ export declare class TempModifyDBNodeResponse extends $tea.Model {
|
|
|
5090
5606
|
headers: {
|
|
5091
5607
|
[key: string]: string;
|
|
5092
5608
|
};
|
|
5609
|
+
statusCode: number;
|
|
5093
5610
|
body: TempModifyDBNodeResponseBody;
|
|
5094
5611
|
static names(): {
|
|
5095
5612
|
[key: string]: string;
|
|
@@ -5143,6 +5660,7 @@ export declare class TransformDBClusterPayTypeResponse extends $tea.Model {
|
|
|
5143
5660
|
headers: {
|
|
5144
5661
|
[key: string]: string;
|
|
5145
5662
|
};
|
|
5663
|
+
statusCode: number;
|
|
5146
5664
|
body: TransformDBClusterPayTypeResponseBody;
|
|
5147
5665
|
static names(): {
|
|
5148
5666
|
[key: string]: string;
|
|
@@ -5190,6 +5708,7 @@ export declare class UntagResourcesResponse extends $tea.Model {
|
|
|
5190
5708
|
headers: {
|
|
5191
5709
|
[key: string]: string;
|
|
5192
5710
|
};
|
|
5711
|
+
statusCode: number;
|
|
5193
5712
|
body: UntagResourcesResponseBody;
|
|
5194
5713
|
static names(): {
|
|
5195
5714
|
[key: string]: string;
|
|
@@ -5236,6 +5755,7 @@ export declare class UpgradeDBClusterMinorVersionResponse extends $tea.Model {
|
|
|
5236
5755
|
headers: {
|
|
5237
5756
|
[key: string]: string;
|
|
5238
5757
|
};
|
|
5758
|
+
statusCode: number;
|
|
5239
5759
|
body: UpgradeDBClusterMinorVersionResponseBody;
|
|
5240
5760
|
static names(): {
|
|
5241
5761
|
[key: string]: string;
|
|
@@ -5256,6 +5776,8 @@ export declare class UpgradeDBClusterVersionRequest extends $tea.Model {
|
|
|
5256
5776
|
plannedStartTime?: string;
|
|
5257
5777
|
resourceOwnerAccount?: string;
|
|
5258
5778
|
resourceOwnerId?: number;
|
|
5779
|
+
upgradeLabel?: string;
|
|
5780
|
+
upgradePolicy?: string;
|
|
5259
5781
|
upgradeType?: string;
|
|
5260
5782
|
static names(): {
|
|
5261
5783
|
[key: string]: string;
|
|
@@ -5283,6 +5805,7 @@ export declare class UpgradeDBClusterVersionResponse extends $tea.Model {
|
|
|
5283
5805
|
headers: {
|
|
5284
5806
|
[key: string]: string;
|
|
5285
5807
|
};
|
|
5808
|
+
statusCode: number;
|
|
5286
5809
|
body: UpgradeDBClusterVersionResponseBody;
|
|
5287
5810
|
static names(): {
|
|
5288
5811
|
[key: string]: string;
|
|
@@ -5719,6 +6242,7 @@ export declare class DescribeDBClusterParametersResponseBodyRunningParametersPar
|
|
|
5719
6242
|
checkingCode?: string;
|
|
5720
6243
|
dataType?: string;
|
|
5721
6244
|
defaultParameterValue?: string;
|
|
6245
|
+
factor?: string;
|
|
5722
6246
|
forceRestart?: boolean;
|
|
5723
6247
|
isModifiable?: boolean;
|
|
5724
6248
|
isNodeAvailable?: string;
|
|
@@ -5902,6 +6426,8 @@ export declare class DescribeDBClustersResponseBodyItemsDBCluster extends $tea.M
|
|
|
5902
6426
|
payType?: string;
|
|
5903
6427
|
regionId?: string;
|
|
5904
6428
|
resourceGroupId?: string;
|
|
6429
|
+
storagePayType?: string;
|
|
6430
|
+
storageSpace?: number;
|
|
5905
6431
|
storageUsed?: number;
|
|
5906
6432
|
tags?: DescribeDBClustersResponseBodyItemsDBClusterTags;
|
|
5907
6433
|
vpcId?: string;
|
|
@@ -6068,6 +6594,7 @@ export declare class DescribeDBNodesParametersResponseBodyDBNodeIdsRunningParame
|
|
|
6068
6594
|
checkingCode?: string;
|
|
6069
6595
|
dataType?: string;
|
|
6070
6596
|
defaultParameterValue?: string;
|
|
6597
|
+
factor?: string;
|
|
6071
6598
|
forceRestart?: boolean;
|
|
6072
6599
|
isModifiable?: boolean;
|
|
6073
6600
|
isNodeAvailable?: string;
|
|
@@ -6793,6 +7320,8 @@ export default class Client extends OpenApi {
|
|
|
6793
7320
|
checkAccountName(request: CheckAccountNameRequest): Promise<CheckAccountNameResponse>;
|
|
6794
7321
|
checkDBNameWithOptions(request: CheckDBNameRequest, runtime: $Util.RuntimeOptions): Promise<CheckDBNameResponse>;
|
|
6795
7322
|
checkDBName(request: CheckDBNameRequest): Promise<CheckDBNameResponse>;
|
|
7323
|
+
closeAITaskWithOptions(request: CloseAITaskRequest, runtime: $Util.RuntimeOptions): Promise<CloseAITaskResponse>;
|
|
7324
|
+
closeAITask(request: CloseAITaskRequest): Promise<CloseAITaskResponse>;
|
|
6796
7325
|
closeDBClusterMigrationWithOptions(request: CloseDBClusterMigrationRequest, runtime: $Util.RuntimeOptions): Promise<CloseDBClusterMigrationResponse>;
|
|
6797
7326
|
closeDBClusterMigration(request: CloseDBClusterMigrationRequest): Promise<CloseDBClusterMigrationResponse>;
|
|
6798
7327
|
createAccountWithOptions(request: CreateAccountRequest, runtime: $Util.RuntimeOptions): Promise<CreateAccountResponse>;
|
|
@@ -6839,6 +7368,8 @@ export default class Client extends OpenApi {
|
|
|
6839
7368
|
deleteMaskingRules(request: DeleteMaskingRulesRequest): Promise<DeleteMaskingRulesResponse>;
|
|
6840
7369
|
deleteParameterGroupWithOptions(request: DeleteParameterGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteParameterGroupResponse>;
|
|
6841
7370
|
deleteParameterGroup(request: DeleteParameterGroupRequest): Promise<DeleteParameterGroupResponse>;
|
|
7371
|
+
describeAITaskStatusWithOptions(request: DescribeAITaskStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAITaskStatusResponse>;
|
|
7372
|
+
describeAITaskStatus(request: DescribeAITaskStatusRequest): Promise<DescribeAITaskStatusResponse>;
|
|
6842
7373
|
describeAccountsWithOptions(request: DescribeAccountsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAccountsResponse>;
|
|
6843
7374
|
describeAccounts(request: DescribeAccountsRequest): Promise<DescribeAccountsResponse>;
|
|
6844
7375
|
describeAutoRenewAttributeWithOptions(request: DescribeAutoRenewAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAutoRenewAttributeResponse>;
|
|
@@ -6929,6 +7460,8 @@ export default class Client extends OpenApi {
|
|
|
6929
7460
|
describeStoragePlan(request: DescribeStoragePlanRequest): Promise<DescribeStoragePlanResponse>;
|
|
6930
7461
|
describeTasksWithOptions(request: DescribeTasksRequest, runtime: $Util.RuntimeOptions): Promise<DescribeTasksResponse>;
|
|
6931
7462
|
describeTasks(request: DescribeTasksRequest): Promise<DescribeTasksResponse>;
|
|
7463
|
+
enableFirewallRulesWithOptions(request: EnableFirewallRulesRequest, runtime: $Util.RuntimeOptions): Promise<EnableFirewallRulesResponse>;
|
|
7464
|
+
enableFirewallRules(request: EnableFirewallRulesRequest): Promise<EnableFirewallRulesResponse>;
|
|
6932
7465
|
failoverDBClusterWithOptions(request: FailoverDBClusterRequest, runtime: $Util.RuntimeOptions): Promise<FailoverDBClusterResponse>;
|
|
6933
7466
|
failoverDBCluster(request: FailoverDBClusterRequest): Promise<FailoverDBClusterResponse>;
|
|
6934
7467
|
grantAccountPrivilegeWithOptions(request: GrantAccountPrivilegeRequest, runtime: $Util.RuntimeOptions): Promise<GrantAccountPrivilegeResponse>;
|
|
@@ -6949,6 +7482,8 @@ export default class Client extends OpenApi {
|
|
|
6949
7482
|
modifyDBClusterAndNodesParameters(request: ModifyDBClusterAndNodesParametersRequest): Promise<ModifyDBClusterAndNodesParametersResponse>;
|
|
6950
7483
|
modifyDBClusterAuditLogCollectorWithOptions(request: ModifyDBClusterAuditLogCollectorRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBClusterAuditLogCollectorResponse>;
|
|
6951
7484
|
modifyDBClusterAuditLogCollector(request: ModifyDBClusterAuditLogCollectorRequest): Promise<ModifyDBClusterAuditLogCollectorResponse>;
|
|
7485
|
+
modifyDBClusterDeletionWithOptions(request: ModifyDBClusterDeletionRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBClusterDeletionResponse>;
|
|
7486
|
+
modifyDBClusterDeletion(request: ModifyDBClusterDeletionRequest): Promise<ModifyDBClusterDeletionResponse>;
|
|
6952
7487
|
modifyDBClusterDescriptionWithOptions(request: ModifyDBClusterDescriptionRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBClusterDescriptionResponse>;
|
|
6953
7488
|
modifyDBClusterDescription(request: ModifyDBClusterDescriptionRequest): Promise<ModifyDBClusterDescriptionResponse>;
|
|
6954
7489
|
modifyDBClusterEndpointWithOptions(request: ModifyDBClusterEndpointRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBClusterEndpointResponse>;
|
|
@@ -6963,6 +7498,8 @@ export default class Client extends OpenApi {
|
|
|
6963
7498
|
modifyDBClusterParameters(request: ModifyDBClusterParametersRequest): Promise<ModifyDBClusterParametersResponse>;
|
|
6964
7499
|
modifyDBClusterPrimaryZoneWithOptions(request: ModifyDBClusterPrimaryZoneRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBClusterPrimaryZoneResponse>;
|
|
6965
7500
|
modifyDBClusterPrimaryZone(request: ModifyDBClusterPrimaryZoneRequest): Promise<ModifyDBClusterPrimaryZoneResponse>;
|
|
7501
|
+
modifyDBClusterResourceGroupWithOptions(request: ModifyDBClusterResourceGroupRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBClusterResourceGroupResponse>;
|
|
7502
|
+
modifyDBClusterResourceGroup(request: ModifyDBClusterResourceGroupRequest): Promise<ModifyDBClusterResourceGroupResponse>;
|
|
6966
7503
|
modifyDBClusterSSLWithOptions(request: ModifyDBClusterSSLRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBClusterSSLResponse>;
|
|
6967
7504
|
modifyDBClusterSSL(request: ModifyDBClusterSSLRequest): Promise<ModifyDBClusterSSLResponse>;
|
|
6968
7505
|
modifyDBClusterTDEWithOptions(request: ModifyDBClusterTDERequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBClusterTDEResponse>;
|
|
@@ -6985,6 +7522,10 @@ export default class Client extends OpenApi {
|
|
|
6985
7522
|
modifyMaskingRules(request: ModifyMaskingRulesRequest): Promise<ModifyMaskingRulesResponse>;
|
|
6986
7523
|
modifyPendingMaintenanceActionWithOptions(request: ModifyPendingMaintenanceActionRequest, runtime: $Util.RuntimeOptions): Promise<ModifyPendingMaintenanceActionResponse>;
|
|
6987
7524
|
modifyPendingMaintenanceAction(request: ModifyPendingMaintenanceActionRequest): Promise<ModifyPendingMaintenanceActionResponse>;
|
|
7525
|
+
openAITaskWithOptions(request: OpenAITaskRequest, runtime: $Util.RuntimeOptions): Promise<OpenAITaskResponse>;
|
|
7526
|
+
openAITask(request: OpenAITaskRequest): Promise<OpenAITaskResponse>;
|
|
7527
|
+
refreshDBClusterStorageUsageWithOptions(request: RefreshDBClusterStorageUsageRequest, runtime: $Util.RuntimeOptions): Promise<RefreshDBClusterStorageUsageResponse>;
|
|
7528
|
+
refreshDBClusterStorageUsage(request: RefreshDBClusterStorageUsageRequest): Promise<RefreshDBClusterStorageUsageResponse>;
|
|
6988
7529
|
removeDBClusterFromGDNWithOptions(request: RemoveDBClusterFromGDNRequest, runtime: $Util.RuntimeOptions): Promise<RemoveDBClusterFromGDNResponse>;
|
|
6989
7530
|
removeDBClusterFromGDN(request: RemoveDBClusterFromGDNRequest): Promise<RemoveDBClusterFromGDNResponse>;
|
|
6990
7531
|
resetAccountWithOptions(request: ResetAccountRequest, runtime: $Util.RuntimeOptions): Promise<ResetAccountResponse>;
|
|
@@ -6995,6 +7536,8 @@ export default class Client extends OpenApi {
|
|
|
6995
7536
|
restoreTable(request: RestoreTableRequest): Promise<RestoreTableResponse>;
|
|
6996
7537
|
revokeAccountPrivilegeWithOptions(request: RevokeAccountPrivilegeRequest, runtime: $Util.RuntimeOptions): Promise<RevokeAccountPrivilegeResponse>;
|
|
6997
7538
|
revokeAccountPrivilege(request: RevokeAccountPrivilegeRequest): Promise<RevokeAccountPrivilegeResponse>;
|
|
7539
|
+
switchOverGlobalDatabaseNetworkWithOptions(request: SwitchOverGlobalDatabaseNetworkRequest, runtime: $Util.RuntimeOptions): Promise<SwitchOverGlobalDatabaseNetworkResponse>;
|
|
7540
|
+
switchOverGlobalDatabaseNetwork(request: SwitchOverGlobalDatabaseNetworkRequest): Promise<SwitchOverGlobalDatabaseNetworkResponse>;
|
|
6998
7541
|
tagResourcesWithOptions(request: TagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<TagResourcesResponse>;
|
|
6999
7542
|
tagResources(request: TagResourcesRequest): Promise<TagResourcesResponse>;
|
|
7000
7543
|
tempModifyDBNodeWithOptions(request: TempModifyDBNodeRequest, runtime: $Util.RuntimeOptions): Promise<TempModifyDBNodeResponse>;
|