@alicloud/dds20151201 3.6.9 → 3.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +1624 -134
- package/dist/client.js +2358 -284
- package/dist/client.js.map +1 -1
- package/package.json +5 -5
- package/src/client.ts +2750 -402
package/dist/client.d.ts
CHANGED
|
@@ -258,8 +258,12 @@ export declare class CreateDBInstanceRequest extends $tea.Model {
|
|
|
258
258
|
DBInstanceDescription?: string;
|
|
259
259
|
DBInstanceStorage?: number;
|
|
260
260
|
databaseNames?: string;
|
|
261
|
+
encrypted?: boolean;
|
|
262
|
+
encryptionKey?: string;
|
|
261
263
|
engine?: string;
|
|
262
264
|
engineVersion?: string;
|
|
265
|
+
globalSecurityGroupIds?: string;
|
|
266
|
+
hiddenZoneId?: string;
|
|
263
267
|
networkType?: string;
|
|
264
268
|
ownerAccount?: string;
|
|
265
269
|
ownerId?: number;
|
|
@@ -271,11 +275,13 @@ export declare class CreateDBInstanceRequest extends $tea.Model {
|
|
|
271
275
|
resourceOwnerAccount?: string;
|
|
272
276
|
resourceOwnerId?: number;
|
|
273
277
|
restoreTime?: string;
|
|
278
|
+
secondaryZoneId?: string;
|
|
274
279
|
securityIPList?: string;
|
|
275
280
|
securityToken?: string;
|
|
276
281
|
srcDBInstanceId?: string;
|
|
277
282
|
storageEngine?: string;
|
|
278
283
|
storageType?: string;
|
|
284
|
+
tag?: CreateDBInstanceRequestTag[];
|
|
279
285
|
vSwitchId?: string;
|
|
280
286
|
vpcId?: string;
|
|
281
287
|
zoneId?: string;
|
|
@@ -319,6 +325,54 @@ export declare class CreateDBInstanceResponse extends $tea.Model {
|
|
|
319
325
|
[key: string]: any;
|
|
320
326
|
});
|
|
321
327
|
}
|
|
328
|
+
export declare class CreateGlobalSecurityIPGroupRequest extends $tea.Model {
|
|
329
|
+
GIpList?: string;
|
|
330
|
+
globalIgName?: string;
|
|
331
|
+
ownerAccount?: string;
|
|
332
|
+
ownerId?: number;
|
|
333
|
+
regionId?: string;
|
|
334
|
+
resourceOwnerAccount?: string;
|
|
335
|
+
resourceOwnerId?: number;
|
|
336
|
+
securityToken?: string;
|
|
337
|
+
static names(): {
|
|
338
|
+
[key: string]: string;
|
|
339
|
+
};
|
|
340
|
+
static types(): {
|
|
341
|
+
[key: string]: any;
|
|
342
|
+
};
|
|
343
|
+
constructor(map?: {
|
|
344
|
+
[key: string]: any;
|
|
345
|
+
});
|
|
346
|
+
}
|
|
347
|
+
export declare class CreateGlobalSecurityIPGroupResponseBody extends $tea.Model {
|
|
348
|
+
globalSecurityIPGroup?: CreateGlobalSecurityIPGroupResponseBodyGlobalSecurityIPGroup[];
|
|
349
|
+
requestId?: string;
|
|
350
|
+
static names(): {
|
|
351
|
+
[key: string]: string;
|
|
352
|
+
};
|
|
353
|
+
static types(): {
|
|
354
|
+
[key: string]: any;
|
|
355
|
+
};
|
|
356
|
+
constructor(map?: {
|
|
357
|
+
[key: string]: any;
|
|
358
|
+
});
|
|
359
|
+
}
|
|
360
|
+
export declare class CreateGlobalSecurityIPGroupResponse extends $tea.Model {
|
|
361
|
+
headers: {
|
|
362
|
+
[key: string]: string;
|
|
363
|
+
};
|
|
364
|
+
statusCode: number;
|
|
365
|
+
body: CreateGlobalSecurityIPGroupResponseBody;
|
|
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
|
+
}
|
|
322
376
|
export declare class CreateNodeRequest extends $tea.Model {
|
|
323
377
|
accountName?: string;
|
|
324
378
|
accountPassword?: string;
|
|
@@ -440,8 +494,11 @@ export declare class CreateShardingDBInstanceRequest extends $tea.Model {
|
|
|
440
494
|
clientToken?: string;
|
|
441
495
|
configServer?: CreateShardingDBInstanceRequestConfigServer[];
|
|
442
496
|
DBInstanceDescription?: string;
|
|
497
|
+
encrypted?: boolean;
|
|
498
|
+
encryptionKey?: string;
|
|
443
499
|
engine?: string;
|
|
444
500
|
engineVersion?: string;
|
|
501
|
+
globalSecurityGroupIds?: string;
|
|
445
502
|
hiddenZoneId?: string;
|
|
446
503
|
mongos?: CreateShardingDBInstanceRequestMongos[];
|
|
447
504
|
networkType?: string;
|
|
@@ -460,6 +517,8 @@ export declare class CreateShardingDBInstanceRequest extends $tea.Model {
|
|
|
460
517
|
securityToken?: string;
|
|
461
518
|
srcDBInstanceId?: string;
|
|
462
519
|
storageEngine?: string;
|
|
520
|
+
storageType?: string;
|
|
521
|
+
tag?: CreateShardingDBInstanceRequestTag[];
|
|
463
522
|
vSwitchId?: string;
|
|
464
523
|
vpcId?: string;
|
|
465
524
|
zoneId?: string;
|
|
@@ -549,6 +608,53 @@ export declare class DeleteDBInstanceResponse extends $tea.Model {
|
|
|
549
608
|
[key: string]: any;
|
|
550
609
|
});
|
|
551
610
|
}
|
|
611
|
+
export declare class DeleteGlobalSecurityIPGroupRequest extends $tea.Model {
|
|
612
|
+
globalIgName?: string;
|
|
613
|
+
globalSecurityGroupId?: string;
|
|
614
|
+
ownerAccount?: string;
|
|
615
|
+
ownerId?: number;
|
|
616
|
+
regionId?: string;
|
|
617
|
+
resourceOwnerAccount?: string;
|
|
618
|
+
resourceOwnerId?: number;
|
|
619
|
+
securityToken?: string;
|
|
620
|
+
static names(): {
|
|
621
|
+
[key: string]: string;
|
|
622
|
+
};
|
|
623
|
+
static types(): {
|
|
624
|
+
[key: string]: any;
|
|
625
|
+
};
|
|
626
|
+
constructor(map?: {
|
|
627
|
+
[key: string]: any;
|
|
628
|
+
});
|
|
629
|
+
}
|
|
630
|
+
export declare class DeleteGlobalSecurityIPGroupResponseBody extends $tea.Model {
|
|
631
|
+
requestId?: string;
|
|
632
|
+
static names(): {
|
|
633
|
+
[key: string]: string;
|
|
634
|
+
};
|
|
635
|
+
static types(): {
|
|
636
|
+
[key: string]: any;
|
|
637
|
+
};
|
|
638
|
+
constructor(map?: {
|
|
639
|
+
[key: string]: any;
|
|
640
|
+
});
|
|
641
|
+
}
|
|
642
|
+
export declare class DeleteGlobalSecurityIPGroupResponse extends $tea.Model {
|
|
643
|
+
headers: {
|
|
644
|
+
[key: string]: string;
|
|
645
|
+
};
|
|
646
|
+
statusCode: number;
|
|
647
|
+
body: DeleteGlobalSecurityIPGroupResponseBody;
|
|
648
|
+
static names(): {
|
|
649
|
+
[key: string]: string;
|
|
650
|
+
};
|
|
651
|
+
static types(): {
|
|
652
|
+
[key: string]: any;
|
|
653
|
+
};
|
|
654
|
+
constructor(map?: {
|
|
655
|
+
[key: string]: any;
|
|
656
|
+
});
|
|
657
|
+
}
|
|
552
658
|
export declare class DeleteNodeRequest extends $tea.Model {
|
|
553
659
|
clientToken?: string;
|
|
554
660
|
DBInstanceId?: string;
|
|
@@ -892,6 +998,62 @@ export declare class DescribeAuditRecordsResponse extends $tea.Model {
|
|
|
892
998
|
[key: string]: any;
|
|
893
999
|
});
|
|
894
1000
|
}
|
|
1001
|
+
export declare class DescribeAvailabilityZonesRequest extends $tea.Model {
|
|
1002
|
+
acceptLanguage?: string;
|
|
1003
|
+
dbType?: string;
|
|
1004
|
+
excludeSecondaryZoneId?: string;
|
|
1005
|
+
excludeZoneId?: string;
|
|
1006
|
+
instanceChargeType?: string;
|
|
1007
|
+
mongoType?: string;
|
|
1008
|
+
ownerAccount?: string;
|
|
1009
|
+
ownerId?: number;
|
|
1010
|
+
regionId?: string;
|
|
1011
|
+
resourceGroupId?: string;
|
|
1012
|
+
resourceOwnerAccount?: string;
|
|
1013
|
+
resourceOwnerId?: number;
|
|
1014
|
+
securityToken?: string;
|
|
1015
|
+
storageSupport?: string;
|
|
1016
|
+
storageType?: string;
|
|
1017
|
+
zoneId?: string;
|
|
1018
|
+
static names(): {
|
|
1019
|
+
[key: string]: string;
|
|
1020
|
+
};
|
|
1021
|
+
static types(): {
|
|
1022
|
+
[key: string]: any;
|
|
1023
|
+
};
|
|
1024
|
+
constructor(map?: {
|
|
1025
|
+
[key: string]: any;
|
|
1026
|
+
});
|
|
1027
|
+
}
|
|
1028
|
+
export declare class DescribeAvailabilityZonesResponseBody extends $tea.Model {
|
|
1029
|
+
availableZones?: DescribeAvailabilityZonesResponseBodyAvailableZones[];
|
|
1030
|
+
requestId?: string;
|
|
1031
|
+
static names(): {
|
|
1032
|
+
[key: string]: string;
|
|
1033
|
+
};
|
|
1034
|
+
static types(): {
|
|
1035
|
+
[key: string]: any;
|
|
1036
|
+
};
|
|
1037
|
+
constructor(map?: {
|
|
1038
|
+
[key: string]: any;
|
|
1039
|
+
});
|
|
1040
|
+
}
|
|
1041
|
+
export declare class DescribeAvailabilityZonesResponse extends $tea.Model {
|
|
1042
|
+
headers: {
|
|
1043
|
+
[key: string]: string;
|
|
1044
|
+
};
|
|
1045
|
+
statusCode: number;
|
|
1046
|
+
body: DescribeAvailabilityZonesResponseBody;
|
|
1047
|
+
static names(): {
|
|
1048
|
+
[key: string]: string;
|
|
1049
|
+
};
|
|
1050
|
+
static types(): {
|
|
1051
|
+
[key: string]: any;
|
|
1052
|
+
};
|
|
1053
|
+
constructor(map?: {
|
|
1054
|
+
[key: string]: any;
|
|
1055
|
+
});
|
|
1056
|
+
}
|
|
895
1057
|
export declare class DescribeAvailableEngineVersionRequest extends $tea.Model {
|
|
896
1058
|
DBInstanceId?: string;
|
|
897
1059
|
ownerAccount?: string;
|
|
@@ -1060,12 +1222,14 @@ export declare class DescribeBackupPolicyRequest extends $tea.Model {
|
|
|
1060
1222
|
});
|
|
1061
1223
|
}
|
|
1062
1224
|
export declare class DescribeBackupPolicyResponseBody extends $tea.Model {
|
|
1225
|
+
backupInterval?: number;
|
|
1063
1226
|
backupRetentionPeriod?: string;
|
|
1064
1227
|
enableBackupLog?: number;
|
|
1065
1228
|
logBackupRetentionPeriod?: number;
|
|
1066
1229
|
preferredBackupPeriod?: string;
|
|
1067
1230
|
preferredBackupTime?: string;
|
|
1068
1231
|
requestId?: string;
|
|
1232
|
+
snapshotBackupType?: string;
|
|
1069
1233
|
static names(): {
|
|
1070
1234
|
[key: string]: string;
|
|
1071
1235
|
};
|
|
@@ -1150,6 +1314,7 @@ export declare class DescribeBackupsResponse extends $tea.Model {
|
|
|
1150
1314
|
export declare class DescribeDBInstanceAttributeRequest extends $tea.Model {
|
|
1151
1315
|
DBInstanceId?: string;
|
|
1152
1316
|
engine?: string;
|
|
1317
|
+
isDelete?: boolean;
|
|
1153
1318
|
ownerAccount?: string;
|
|
1154
1319
|
ownerId?: number;
|
|
1155
1320
|
resourceGroupId?: string;
|
|
@@ -1451,6 +1616,7 @@ export declare class DescribeDBInstancesRequest extends $tea.Model {
|
|
|
1451
1616
|
DBInstanceId?: string;
|
|
1452
1617
|
DBInstanceStatus?: string;
|
|
1453
1618
|
DBInstanceType?: string;
|
|
1619
|
+
DBNodeType?: string;
|
|
1454
1620
|
engine?: string;
|
|
1455
1621
|
engineVersion?: string;
|
|
1456
1622
|
expireTime?: string;
|
|
@@ -1570,23 +1736,21 @@ export declare class DescribeDBInstancesOverviewResponse extends $tea.Model {
|
|
|
1570
1736
|
[key: string]: any;
|
|
1571
1737
|
});
|
|
1572
1738
|
}
|
|
1573
|
-
export declare class
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
instanceId?: string;
|
|
1579
|
-
instanceNetType?: string;
|
|
1580
|
-
instanceStatus?: string;
|
|
1739
|
+
export declare class DescribeErrorLogRecordsRequest extends $tea.Model {
|
|
1740
|
+
DBInstanceId?: string;
|
|
1741
|
+
DBName?: string;
|
|
1742
|
+
endTime?: string;
|
|
1743
|
+
nodeId?: string;
|
|
1581
1744
|
ownerAccount?: string;
|
|
1582
1745
|
ownerId?: number;
|
|
1583
1746
|
pageNumber?: number;
|
|
1584
1747
|
pageSize?: number;
|
|
1585
|
-
|
|
1748
|
+
resourceGroupId?: string;
|
|
1586
1749
|
resourceOwnerAccount?: string;
|
|
1587
1750
|
resourceOwnerId?: number;
|
|
1751
|
+
roleType?: string;
|
|
1588
1752
|
securityToken?: string;
|
|
1589
|
-
|
|
1753
|
+
startTime?: string;
|
|
1590
1754
|
static names(): {
|
|
1591
1755
|
[key: string]: string;
|
|
1592
1756
|
};
|
|
@@ -1597,12 +1761,13 @@ export declare class DescribeDedicatedClusterInstanceListRequest extends $tea.Mo
|
|
|
1597
1761
|
[key: string]: any;
|
|
1598
1762
|
});
|
|
1599
1763
|
}
|
|
1600
|
-
export declare class
|
|
1601
|
-
|
|
1764
|
+
export declare class DescribeErrorLogRecordsResponseBody extends $tea.Model {
|
|
1765
|
+
engine?: string;
|
|
1766
|
+
items?: DescribeErrorLogRecordsResponseBodyItems;
|
|
1602
1767
|
pageNumber?: number;
|
|
1603
|
-
|
|
1768
|
+
pageRecordCount?: number;
|
|
1604
1769
|
requestId?: string;
|
|
1605
|
-
|
|
1770
|
+
totalRecordCount?: number;
|
|
1606
1771
|
static names(): {
|
|
1607
1772
|
[key: string]: string;
|
|
1608
1773
|
};
|
|
@@ -1613,12 +1778,12 @@ export declare class DescribeDedicatedClusterInstanceListResponseBody extends $t
|
|
|
1613
1778
|
[key: string]: any;
|
|
1614
1779
|
});
|
|
1615
1780
|
}
|
|
1616
|
-
export declare class
|
|
1781
|
+
export declare class DescribeErrorLogRecordsResponse extends $tea.Model {
|
|
1617
1782
|
headers: {
|
|
1618
1783
|
[key: string]: string;
|
|
1619
1784
|
};
|
|
1620
1785
|
statusCode: number;
|
|
1621
|
-
body:
|
|
1786
|
+
body: DescribeErrorLogRecordsResponseBody;
|
|
1622
1787
|
static names(): {
|
|
1623
1788
|
[key: string]: string;
|
|
1624
1789
|
};
|
|
@@ -1629,21 +1794,14 @@ export declare class DescribeDedicatedClusterInstanceListResponse extends $tea.M
|
|
|
1629
1794
|
[key: string]: any;
|
|
1630
1795
|
});
|
|
1631
1796
|
}
|
|
1632
|
-
export declare class
|
|
1633
|
-
|
|
1634
|
-
DBName?: string;
|
|
1635
|
-
endTime?: string;
|
|
1636
|
-
nodeId?: string;
|
|
1797
|
+
export declare class DescribeGlobalSecurityIPGroupRequest extends $tea.Model {
|
|
1798
|
+
globalSecurityGroupId?: string;
|
|
1637
1799
|
ownerAccount?: string;
|
|
1638
1800
|
ownerId?: number;
|
|
1639
|
-
|
|
1640
|
-
pageSize?: number;
|
|
1641
|
-
resourceGroupId?: string;
|
|
1801
|
+
regionId?: string;
|
|
1642
1802
|
resourceOwnerAccount?: string;
|
|
1643
1803
|
resourceOwnerId?: number;
|
|
1644
|
-
roleType?: string;
|
|
1645
1804
|
securityToken?: string;
|
|
1646
|
-
startTime?: string;
|
|
1647
1805
|
static names(): {
|
|
1648
1806
|
[key: string]: string;
|
|
1649
1807
|
};
|
|
@@ -1654,13 +1812,9 @@ export declare class DescribeErrorLogRecordsRequest extends $tea.Model {
|
|
|
1654
1812
|
[key: string]: any;
|
|
1655
1813
|
});
|
|
1656
1814
|
}
|
|
1657
|
-
export declare class
|
|
1658
|
-
|
|
1659
|
-
items?: DescribeErrorLogRecordsResponseBodyItems;
|
|
1660
|
-
pageNumber?: number;
|
|
1661
|
-
pageRecordCount?: number;
|
|
1815
|
+
export declare class DescribeGlobalSecurityIPGroupResponseBody extends $tea.Model {
|
|
1816
|
+
globalSecurityIPGroup?: DescribeGlobalSecurityIPGroupResponseBodyGlobalSecurityIPGroup[];
|
|
1662
1817
|
requestId?: string;
|
|
1663
|
-
totalRecordCount?: number;
|
|
1664
1818
|
static names(): {
|
|
1665
1819
|
[key: string]: string;
|
|
1666
1820
|
};
|
|
@@ -1671,12 +1825,60 @@ export declare class DescribeErrorLogRecordsResponseBody extends $tea.Model {
|
|
|
1671
1825
|
[key: string]: any;
|
|
1672
1826
|
});
|
|
1673
1827
|
}
|
|
1674
|
-
export declare class
|
|
1828
|
+
export declare class DescribeGlobalSecurityIPGroupResponse extends $tea.Model {
|
|
1675
1829
|
headers: {
|
|
1676
1830
|
[key: string]: string;
|
|
1677
1831
|
};
|
|
1678
1832
|
statusCode: number;
|
|
1679
|
-
body:
|
|
1833
|
+
body: DescribeGlobalSecurityIPGroupResponseBody;
|
|
1834
|
+
static names(): {
|
|
1835
|
+
[key: string]: string;
|
|
1836
|
+
};
|
|
1837
|
+
static types(): {
|
|
1838
|
+
[key: string]: any;
|
|
1839
|
+
};
|
|
1840
|
+
constructor(map?: {
|
|
1841
|
+
[key: string]: any;
|
|
1842
|
+
});
|
|
1843
|
+
}
|
|
1844
|
+
export declare class DescribeGlobalSecurityIPGroupRelationRequest extends $tea.Model {
|
|
1845
|
+
DBClusterId?: string;
|
|
1846
|
+
ownerAccount?: string;
|
|
1847
|
+
ownerId?: number;
|
|
1848
|
+
regionId?: string;
|
|
1849
|
+
resourceOwnerAccount?: string;
|
|
1850
|
+
resourceOwnerId?: number;
|
|
1851
|
+
securityToken?: string;
|
|
1852
|
+
static names(): {
|
|
1853
|
+
[key: string]: string;
|
|
1854
|
+
};
|
|
1855
|
+
static types(): {
|
|
1856
|
+
[key: string]: any;
|
|
1857
|
+
};
|
|
1858
|
+
constructor(map?: {
|
|
1859
|
+
[key: string]: any;
|
|
1860
|
+
});
|
|
1861
|
+
}
|
|
1862
|
+
export declare class DescribeGlobalSecurityIPGroupRelationResponseBody extends $tea.Model {
|
|
1863
|
+
DBClusterId?: string;
|
|
1864
|
+
globalSecurityIPGroupRel?: DescribeGlobalSecurityIPGroupRelationResponseBodyGlobalSecurityIPGroupRel[];
|
|
1865
|
+
requestId?: string;
|
|
1866
|
+
static names(): {
|
|
1867
|
+
[key: string]: string;
|
|
1868
|
+
};
|
|
1869
|
+
static types(): {
|
|
1870
|
+
[key: string]: any;
|
|
1871
|
+
};
|
|
1872
|
+
constructor(map?: {
|
|
1873
|
+
[key: string]: any;
|
|
1874
|
+
});
|
|
1875
|
+
}
|
|
1876
|
+
export declare class DescribeGlobalSecurityIPGroupRelationResponse extends $tea.Model {
|
|
1877
|
+
headers: {
|
|
1878
|
+
[key: string]: string;
|
|
1879
|
+
};
|
|
1880
|
+
statusCode: number;
|
|
1881
|
+
body: DescribeGlobalSecurityIPGroupRelationResponseBody;
|
|
1680
1882
|
static names(): {
|
|
1681
1883
|
[key: string]: string;
|
|
1682
1884
|
};
|
|
@@ -1946,6 +2148,7 @@ export declare class DescribeParameterTemplatesResponse extends $tea.Model {
|
|
|
1946
2148
|
export declare class DescribeParametersRequest extends $tea.Model {
|
|
1947
2149
|
characterType?: string;
|
|
1948
2150
|
DBInstanceId?: string;
|
|
2151
|
+
extraParam?: string;
|
|
1949
2152
|
nodeId?: string;
|
|
1950
2153
|
ownerAccount?: string;
|
|
1951
2154
|
ownerId?: number;
|
|
@@ -2659,6 +2862,7 @@ export declare class EvaluateResourceRequest extends $tea.Model {
|
|
|
2659
2862
|
resourceOwnerId?: number;
|
|
2660
2863
|
securityToken?: string;
|
|
2661
2864
|
shardsInfo?: string;
|
|
2865
|
+
storage?: string;
|
|
2662
2866
|
zoneId?: string;
|
|
2663
2867
|
static names(): {
|
|
2664
2868
|
[key: string]: string;
|
|
@@ -2989,6 +3193,7 @@ export declare class ModifyAuditPolicyResponse extends $tea.Model {
|
|
|
2989
3193
|
});
|
|
2990
3194
|
}
|
|
2991
3195
|
export declare class ModifyBackupPolicyRequest extends $tea.Model {
|
|
3196
|
+
backupInterval?: string;
|
|
2992
3197
|
backupRetentionPeriod?: number;
|
|
2993
3198
|
DBInstanceId?: string;
|
|
2994
3199
|
enableBackupLog?: number;
|
|
@@ -3000,6 +3205,7 @@ export declare class ModifyBackupPolicyRequest extends $tea.Model {
|
|
|
3000
3205
|
resourceOwnerAccount?: string;
|
|
3001
3206
|
resourceOwnerId?: number;
|
|
3002
3207
|
securityToken?: string;
|
|
3208
|
+
snapshotBackupType?: string;
|
|
3003
3209
|
static names(): {
|
|
3004
3210
|
[key: string]: string;
|
|
3005
3211
|
};
|
|
@@ -3042,6 +3248,7 @@ export declare class ModifyDBInstanceConnectionStringRequest extends $tea.Model
|
|
|
3042
3248
|
currentConnectionString?: string;
|
|
3043
3249
|
DBInstanceId?: string;
|
|
3044
3250
|
newConnectionString?: string;
|
|
3251
|
+
newPort?: number;
|
|
3045
3252
|
nodeId?: string;
|
|
3046
3253
|
ownerAccount?: string;
|
|
3047
3254
|
ownerId?: number;
|
|
@@ -3285,6 +3492,7 @@ export declare class ModifyDBInstanceNetworkTypeRequest extends $tea.Model {
|
|
|
3285
3492
|
securityToken?: string;
|
|
3286
3493
|
vSwitchId?: string;
|
|
3287
3494
|
vpcId?: string;
|
|
3495
|
+
zoneId?: string;
|
|
3288
3496
|
static names(): {
|
|
3289
3497
|
[key: string]: string;
|
|
3290
3498
|
};
|
|
@@ -3325,7 +3533,6 @@ export declare class ModifyDBInstanceNetworkTypeResponse extends $tea.Model {
|
|
|
3325
3533
|
}
|
|
3326
3534
|
export declare class ModifyDBInstanceSSLRequest extends $tea.Model {
|
|
3327
3535
|
DBInstanceId?: string;
|
|
3328
|
-
disableTlsProtocol?: string;
|
|
3329
3536
|
ownerAccount?: string;
|
|
3330
3537
|
ownerId?: number;
|
|
3331
3538
|
resourceOwnerAccount?: string;
|
|
@@ -3378,6 +3585,7 @@ export declare class ModifyDBInstanceSpecRequest extends $tea.Model {
|
|
|
3378
3585
|
DBInstanceId?: string;
|
|
3379
3586
|
DBInstanceStorage?: string;
|
|
3380
3587
|
effectiveTime?: string;
|
|
3588
|
+
extraParam?: string;
|
|
3381
3589
|
orderType?: string;
|
|
3382
3590
|
ownerAccount?: string;
|
|
3383
3591
|
ownerId?: number;
|
|
@@ -3474,10 +3682,10 @@ export declare class ModifyDBInstanceTDEResponse extends $tea.Model {
|
|
|
3474
3682
|
[key: string]: any;
|
|
3475
3683
|
});
|
|
3476
3684
|
}
|
|
3477
|
-
export declare class
|
|
3478
|
-
|
|
3479
|
-
|
|
3480
|
-
|
|
3685
|
+
export declare class ModifyGlobalSecurityIPGroupRequest extends $tea.Model {
|
|
3686
|
+
GIpList?: string;
|
|
3687
|
+
globalIgName?: string;
|
|
3688
|
+
globalSecurityGroupId?: string;
|
|
3481
3689
|
ownerAccount?: string;
|
|
3482
3690
|
ownerId?: number;
|
|
3483
3691
|
regionId?: string;
|
|
@@ -3494,7 +3702,7 @@ export declare class ModifyInstanceAutoRenewalAttributeRequest extends $tea.Mode
|
|
|
3494
3702
|
[key: string]: any;
|
|
3495
3703
|
});
|
|
3496
3704
|
}
|
|
3497
|
-
export declare class
|
|
3705
|
+
export declare class ModifyGlobalSecurityIPGroupResponseBody extends $tea.Model {
|
|
3498
3706
|
requestId?: string;
|
|
3499
3707
|
static names(): {
|
|
3500
3708
|
[key: string]: string;
|
|
@@ -3506,12 +3714,12 @@ export declare class ModifyInstanceAutoRenewalAttributeResponseBody extends $tea
|
|
|
3506
3714
|
[key: string]: any;
|
|
3507
3715
|
});
|
|
3508
3716
|
}
|
|
3509
|
-
export declare class
|
|
3717
|
+
export declare class ModifyGlobalSecurityIPGroupResponse extends $tea.Model {
|
|
3510
3718
|
headers: {
|
|
3511
3719
|
[key: string]: string;
|
|
3512
3720
|
};
|
|
3513
3721
|
statusCode: number;
|
|
3514
|
-
body:
|
|
3722
|
+
body: ModifyGlobalSecurityIPGroupResponseBody;
|
|
3515
3723
|
static names(): {
|
|
3516
3724
|
[key: string]: string;
|
|
3517
3725
|
};
|
|
@@ -3522,15 +3730,15 @@ export declare class ModifyInstanceAutoRenewalAttributeResponse extends $tea.Mod
|
|
|
3522
3730
|
[key: string]: any;
|
|
3523
3731
|
});
|
|
3524
3732
|
}
|
|
3525
|
-
export declare class
|
|
3526
|
-
|
|
3527
|
-
|
|
3733
|
+
export declare class ModifyGlobalSecurityIPGroupNameRequest extends $tea.Model {
|
|
3734
|
+
globalIgName?: string;
|
|
3735
|
+
globalSecurityGroupId?: string;
|
|
3528
3736
|
ownerAccount?: string;
|
|
3529
3737
|
ownerId?: number;
|
|
3738
|
+
regionId?: string;
|
|
3530
3739
|
resourceOwnerAccount?: string;
|
|
3531
3740
|
resourceOwnerId?: number;
|
|
3532
3741
|
securityToken?: string;
|
|
3533
|
-
vpcAuthMode?: string;
|
|
3534
3742
|
static names(): {
|
|
3535
3743
|
[key: string]: string;
|
|
3536
3744
|
};
|
|
@@ -3541,7 +3749,8 @@ export declare class ModifyInstanceVpcAuthModeRequest extends $tea.Model {
|
|
|
3541
3749
|
[key: string]: any;
|
|
3542
3750
|
});
|
|
3543
3751
|
}
|
|
3544
|
-
export declare class
|
|
3752
|
+
export declare class ModifyGlobalSecurityIPGroupNameResponseBody extends $tea.Model {
|
|
3753
|
+
globalSecurityIPGroup?: ModifyGlobalSecurityIPGroupNameResponseBodyGlobalSecurityIPGroup[];
|
|
3545
3754
|
requestId?: string;
|
|
3546
3755
|
static names(): {
|
|
3547
3756
|
[key: string]: string;
|
|
@@ -3553,12 +3762,12 @@ export declare class ModifyInstanceVpcAuthModeResponseBody extends $tea.Model {
|
|
|
3553
3762
|
[key: string]: any;
|
|
3554
3763
|
});
|
|
3555
3764
|
}
|
|
3556
|
-
export declare class
|
|
3765
|
+
export declare class ModifyGlobalSecurityIPGroupNameResponse extends $tea.Model {
|
|
3557
3766
|
headers: {
|
|
3558
3767
|
[key: string]: string;
|
|
3559
3768
|
};
|
|
3560
3769
|
statusCode: number;
|
|
3561
|
-
body:
|
|
3770
|
+
body: ModifyGlobalSecurityIPGroupNameResponseBody;
|
|
3562
3771
|
static names(): {
|
|
3563
3772
|
[key: string]: string;
|
|
3564
3773
|
};
|
|
@@ -3569,25 +3778,15 @@ export declare class ModifyInstanceVpcAuthModeResponse extends $tea.Model {
|
|
|
3569
3778
|
[key: string]: any;
|
|
3570
3779
|
});
|
|
3571
3780
|
}
|
|
3572
|
-
export declare class
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
clientToken?: string;
|
|
3576
|
-
couponNo?: string;
|
|
3577
|
-
DBInstanceId?: string;
|
|
3578
|
-
effectiveTime?: string;
|
|
3579
|
-
fromApp?: string;
|
|
3580
|
-
nodeClass?: string;
|
|
3581
|
-
nodeId?: string;
|
|
3582
|
-
nodeStorage?: number;
|
|
3583
|
-
orderType?: string;
|
|
3781
|
+
export declare class ModifyGlobalSecurityIPGroupRelationRequest extends $tea.Model {
|
|
3782
|
+
DBClusterId?: string;
|
|
3783
|
+
globalSecurityGroupId?: string;
|
|
3584
3784
|
ownerAccount?: string;
|
|
3585
3785
|
ownerId?: number;
|
|
3586
|
-
|
|
3786
|
+
regionId?: string;
|
|
3587
3787
|
resourceOwnerAccount?: string;
|
|
3588
3788
|
resourceOwnerId?: number;
|
|
3589
3789
|
securityToken?: string;
|
|
3590
|
-
switchTime?: string;
|
|
3591
3790
|
static names(): {
|
|
3592
3791
|
[key: string]: string;
|
|
3593
3792
|
};
|
|
@@ -3598,8 +3797,7 @@ export declare class ModifyNodeSpecRequest extends $tea.Model {
|
|
|
3598
3797
|
[key: string]: any;
|
|
3599
3798
|
});
|
|
3600
3799
|
}
|
|
3601
|
-
export declare class
|
|
3602
|
-
orderId?: string;
|
|
3800
|
+
export declare class ModifyGlobalSecurityIPGroupRelationResponseBody extends $tea.Model {
|
|
3603
3801
|
requestId?: string;
|
|
3604
3802
|
static names(): {
|
|
3605
3803
|
[key: string]: string;
|
|
@@ -3611,12 +3809,12 @@ export declare class ModifyNodeSpecResponseBody extends $tea.Model {
|
|
|
3611
3809
|
[key: string]: any;
|
|
3612
3810
|
});
|
|
3613
3811
|
}
|
|
3614
|
-
export declare class
|
|
3812
|
+
export declare class ModifyGlobalSecurityIPGroupRelationResponse extends $tea.Model {
|
|
3615
3813
|
headers: {
|
|
3616
3814
|
[key: string]: string;
|
|
3617
3815
|
};
|
|
3618
3816
|
statusCode: number;
|
|
3619
|
-
body:
|
|
3817
|
+
body: ModifyGlobalSecurityIPGroupRelationResponseBody;
|
|
3620
3818
|
static names(): {
|
|
3621
3819
|
[key: string]: string;
|
|
3622
3820
|
};
|
|
@@ -3627,9 +3825,162 @@ export declare class ModifyNodeSpecResponse extends $tea.Model {
|
|
|
3627
3825
|
[key: string]: any;
|
|
3628
3826
|
});
|
|
3629
3827
|
}
|
|
3630
|
-
export declare class
|
|
3631
|
-
|
|
3632
|
-
|
|
3828
|
+
export declare class ModifyInstanceAutoRenewalAttributeRequest extends $tea.Model {
|
|
3829
|
+
autoRenew?: string;
|
|
3830
|
+
DBInstanceId?: string;
|
|
3831
|
+
duration?: string;
|
|
3832
|
+
ownerAccount?: string;
|
|
3833
|
+
ownerId?: number;
|
|
3834
|
+
regionId?: string;
|
|
3835
|
+
resourceOwnerAccount?: string;
|
|
3836
|
+
resourceOwnerId?: number;
|
|
3837
|
+
securityToken?: string;
|
|
3838
|
+
static names(): {
|
|
3839
|
+
[key: string]: string;
|
|
3840
|
+
};
|
|
3841
|
+
static types(): {
|
|
3842
|
+
[key: string]: any;
|
|
3843
|
+
};
|
|
3844
|
+
constructor(map?: {
|
|
3845
|
+
[key: string]: any;
|
|
3846
|
+
});
|
|
3847
|
+
}
|
|
3848
|
+
export declare class ModifyInstanceAutoRenewalAttributeResponseBody extends $tea.Model {
|
|
3849
|
+
requestId?: string;
|
|
3850
|
+
static names(): {
|
|
3851
|
+
[key: string]: string;
|
|
3852
|
+
};
|
|
3853
|
+
static types(): {
|
|
3854
|
+
[key: string]: any;
|
|
3855
|
+
};
|
|
3856
|
+
constructor(map?: {
|
|
3857
|
+
[key: string]: any;
|
|
3858
|
+
});
|
|
3859
|
+
}
|
|
3860
|
+
export declare class ModifyInstanceAutoRenewalAttributeResponse extends $tea.Model {
|
|
3861
|
+
headers: {
|
|
3862
|
+
[key: string]: string;
|
|
3863
|
+
};
|
|
3864
|
+
statusCode: number;
|
|
3865
|
+
body: ModifyInstanceAutoRenewalAttributeResponseBody;
|
|
3866
|
+
static names(): {
|
|
3867
|
+
[key: string]: string;
|
|
3868
|
+
};
|
|
3869
|
+
static types(): {
|
|
3870
|
+
[key: string]: any;
|
|
3871
|
+
};
|
|
3872
|
+
constructor(map?: {
|
|
3873
|
+
[key: string]: any;
|
|
3874
|
+
});
|
|
3875
|
+
}
|
|
3876
|
+
export declare class ModifyInstanceVpcAuthModeRequest extends $tea.Model {
|
|
3877
|
+
DBInstanceId?: string;
|
|
3878
|
+
nodeId?: string;
|
|
3879
|
+
ownerAccount?: string;
|
|
3880
|
+
ownerId?: number;
|
|
3881
|
+
resourceOwnerAccount?: string;
|
|
3882
|
+
resourceOwnerId?: number;
|
|
3883
|
+
securityToken?: string;
|
|
3884
|
+
vpcAuthMode?: string;
|
|
3885
|
+
static names(): {
|
|
3886
|
+
[key: string]: string;
|
|
3887
|
+
};
|
|
3888
|
+
static types(): {
|
|
3889
|
+
[key: string]: any;
|
|
3890
|
+
};
|
|
3891
|
+
constructor(map?: {
|
|
3892
|
+
[key: string]: any;
|
|
3893
|
+
});
|
|
3894
|
+
}
|
|
3895
|
+
export declare class ModifyInstanceVpcAuthModeResponseBody extends $tea.Model {
|
|
3896
|
+
requestId?: string;
|
|
3897
|
+
static names(): {
|
|
3898
|
+
[key: string]: string;
|
|
3899
|
+
};
|
|
3900
|
+
static types(): {
|
|
3901
|
+
[key: string]: any;
|
|
3902
|
+
};
|
|
3903
|
+
constructor(map?: {
|
|
3904
|
+
[key: string]: any;
|
|
3905
|
+
});
|
|
3906
|
+
}
|
|
3907
|
+
export declare class ModifyInstanceVpcAuthModeResponse extends $tea.Model {
|
|
3908
|
+
headers: {
|
|
3909
|
+
[key: string]: string;
|
|
3910
|
+
};
|
|
3911
|
+
statusCode: number;
|
|
3912
|
+
body: ModifyInstanceVpcAuthModeResponseBody;
|
|
3913
|
+
static names(): {
|
|
3914
|
+
[key: string]: string;
|
|
3915
|
+
};
|
|
3916
|
+
static types(): {
|
|
3917
|
+
[key: string]: any;
|
|
3918
|
+
};
|
|
3919
|
+
constructor(map?: {
|
|
3920
|
+
[key: string]: any;
|
|
3921
|
+
});
|
|
3922
|
+
}
|
|
3923
|
+
export declare class ModifyNodeSpecRequest extends $tea.Model {
|
|
3924
|
+
autoPay?: boolean;
|
|
3925
|
+
businessInfo?: string;
|
|
3926
|
+
clientToken?: string;
|
|
3927
|
+
couponNo?: string;
|
|
3928
|
+
DBInstanceId?: string;
|
|
3929
|
+
effectiveTime?: string;
|
|
3930
|
+
fromApp?: string;
|
|
3931
|
+
nodeClass?: string;
|
|
3932
|
+
nodeId?: string;
|
|
3933
|
+
nodeStorage?: number;
|
|
3934
|
+
orderType?: string;
|
|
3935
|
+
ownerAccount?: string;
|
|
3936
|
+
ownerId?: number;
|
|
3937
|
+
readonlyReplicas?: number;
|
|
3938
|
+
resourceOwnerAccount?: string;
|
|
3939
|
+
resourceOwnerId?: number;
|
|
3940
|
+
securityToken?: string;
|
|
3941
|
+
switchTime?: string;
|
|
3942
|
+
static names(): {
|
|
3943
|
+
[key: string]: string;
|
|
3944
|
+
};
|
|
3945
|
+
static types(): {
|
|
3946
|
+
[key: string]: any;
|
|
3947
|
+
};
|
|
3948
|
+
constructor(map?: {
|
|
3949
|
+
[key: string]: any;
|
|
3950
|
+
});
|
|
3951
|
+
}
|
|
3952
|
+
export declare class ModifyNodeSpecResponseBody extends $tea.Model {
|
|
3953
|
+
orderId?: string;
|
|
3954
|
+
requestId?: string;
|
|
3955
|
+
static names(): {
|
|
3956
|
+
[key: string]: string;
|
|
3957
|
+
};
|
|
3958
|
+
static types(): {
|
|
3959
|
+
[key: string]: any;
|
|
3960
|
+
};
|
|
3961
|
+
constructor(map?: {
|
|
3962
|
+
[key: string]: any;
|
|
3963
|
+
});
|
|
3964
|
+
}
|
|
3965
|
+
export declare class ModifyNodeSpecResponse extends $tea.Model {
|
|
3966
|
+
headers: {
|
|
3967
|
+
[key: string]: string;
|
|
3968
|
+
};
|
|
3969
|
+
statusCode: number;
|
|
3970
|
+
body: ModifyNodeSpecResponseBody;
|
|
3971
|
+
static names(): {
|
|
3972
|
+
[key: string]: string;
|
|
3973
|
+
};
|
|
3974
|
+
static types(): {
|
|
3975
|
+
[key: string]: any;
|
|
3976
|
+
};
|
|
3977
|
+
constructor(map?: {
|
|
3978
|
+
[key: string]: any;
|
|
3979
|
+
});
|
|
3980
|
+
}
|
|
3981
|
+
export declare class ModifyNodeSpecBatchRequest extends $tea.Model {
|
|
3982
|
+
autoPay?: boolean;
|
|
3983
|
+
businessInfo?: string;
|
|
3633
3984
|
clientToken?: string;
|
|
3634
3985
|
couponNo?: string;
|
|
3635
3986
|
DBInstanceId?: string;
|
|
@@ -4019,6 +4370,7 @@ export declare class RenewDBInstanceResponse extends $tea.Model {
|
|
|
4019
4370
|
export declare class ResetAccountPasswordRequest extends $tea.Model {
|
|
4020
4371
|
accountName?: string;
|
|
4021
4372
|
accountPassword?: string;
|
|
4373
|
+
characterType?: string;
|
|
4022
4374
|
DBInstanceId?: string;
|
|
4023
4375
|
ownerAccount?: string;
|
|
4024
4376
|
ownerId?: number;
|
|
@@ -4251,6 +4603,58 @@ export declare class TagResourcesResponse extends $tea.Model {
|
|
|
4251
4603
|
[key: string]: any;
|
|
4252
4604
|
});
|
|
4253
4605
|
}
|
|
4606
|
+
export declare class TransformInstanceChargeTypeRequest extends $tea.Model {
|
|
4607
|
+
autoPay?: boolean;
|
|
4608
|
+
autoRenew?: string;
|
|
4609
|
+
businessInfo?: string;
|
|
4610
|
+
chargeType?: string;
|
|
4611
|
+
couponNo?: string;
|
|
4612
|
+
instanceId?: string;
|
|
4613
|
+
ownerAccount?: string;
|
|
4614
|
+
ownerId?: number;
|
|
4615
|
+
period?: number;
|
|
4616
|
+
resourceOwnerAccount?: string;
|
|
4617
|
+
resourceOwnerId?: number;
|
|
4618
|
+
securityToken?: string;
|
|
4619
|
+
static names(): {
|
|
4620
|
+
[key: string]: string;
|
|
4621
|
+
};
|
|
4622
|
+
static types(): {
|
|
4623
|
+
[key: string]: any;
|
|
4624
|
+
};
|
|
4625
|
+
constructor(map?: {
|
|
4626
|
+
[key: string]: any;
|
|
4627
|
+
});
|
|
4628
|
+
}
|
|
4629
|
+
export declare class TransformInstanceChargeTypeResponseBody extends $tea.Model {
|
|
4630
|
+
orderId?: string;
|
|
4631
|
+
requestId?: string;
|
|
4632
|
+
static names(): {
|
|
4633
|
+
[key: string]: string;
|
|
4634
|
+
};
|
|
4635
|
+
static types(): {
|
|
4636
|
+
[key: string]: any;
|
|
4637
|
+
};
|
|
4638
|
+
constructor(map?: {
|
|
4639
|
+
[key: string]: any;
|
|
4640
|
+
});
|
|
4641
|
+
}
|
|
4642
|
+
export declare class TransformInstanceChargeTypeResponse extends $tea.Model {
|
|
4643
|
+
headers: {
|
|
4644
|
+
[key: string]: string;
|
|
4645
|
+
};
|
|
4646
|
+
statusCode: number;
|
|
4647
|
+
body: TransformInstanceChargeTypeResponseBody;
|
|
4648
|
+
static names(): {
|
|
4649
|
+
[key: string]: string;
|
|
4650
|
+
};
|
|
4651
|
+
static types(): {
|
|
4652
|
+
[key: string]: any;
|
|
4653
|
+
};
|
|
4654
|
+
constructor(map?: {
|
|
4655
|
+
[key: string]: any;
|
|
4656
|
+
});
|
|
4657
|
+
}
|
|
4254
4658
|
export declare class TransformToPrePaidRequest extends $tea.Model {
|
|
4255
4659
|
autoPay?: boolean;
|
|
4256
4660
|
autoRenew?: string;
|
|
@@ -4442,6 +4846,34 @@ export declare class UpgradeDBInstanceKernelVersionResponse extends $tea.Model {
|
|
|
4442
4846
|
[key: string]: any;
|
|
4443
4847
|
});
|
|
4444
4848
|
}
|
|
4849
|
+
export declare class CreateDBInstanceRequestTag extends $tea.Model {
|
|
4850
|
+
key?: string;
|
|
4851
|
+
value?: string;
|
|
4852
|
+
static names(): {
|
|
4853
|
+
[key: string]: string;
|
|
4854
|
+
};
|
|
4855
|
+
static types(): {
|
|
4856
|
+
[key: string]: any;
|
|
4857
|
+
};
|
|
4858
|
+
constructor(map?: {
|
|
4859
|
+
[key: string]: any;
|
|
4860
|
+
});
|
|
4861
|
+
}
|
|
4862
|
+
export declare class CreateGlobalSecurityIPGroupResponseBodyGlobalSecurityIPGroup extends $tea.Model {
|
|
4863
|
+
GIpList?: string;
|
|
4864
|
+
globalIgName?: string;
|
|
4865
|
+
globalSecurityGroupId?: string;
|
|
4866
|
+
regionId?: string;
|
|
4867
|
+
static names(): {
|
|
4868
|
+
[key: string]: string;
|
|
4869
|
+
};
|
|
4870
|
+
static types(): {
|
|
4871
|
+
[key: string]: any;
|
|
4872
|
+
};
|
|
4873
|
+
constructor(map?: {
|
|
4874
|
+
[key: string]: any;
|
|
4875
|
+
});
|
|
4876
|
+
}
|
|
4445
4877
|
export declare class CreateShardingDBInstanceRequestConfigServer extends $tea.Model {
|
|
4446
4878
|
class?: string;
|
|
4447
4879
|
storage?: number;
|
|
@@ -4481,6 +4913,19 @@ export declare class CreateShardingDBInstanceRequestReplicaSet extends $tea.Mode
|
|
|
4481
4913
|
[key: string]: any;
|
|
4482
4914
|
});
|
|
4483
4915
|
}
|
|
4916
|
+
export declare class CreateShardingDBInstanceRequestTag extends $tea.Model {
|
|
4917
|
+
key?: string;
|
|
4918
|
+
value?: string;
|
|
4919
|
+
static names(): {
|
|
4920
|
+
[key: string]: string;
|
|
4921
|
+
};
|
|
4922
|
+
static types(): {
|
|
4923
|
+
[key: string]: any;
|
|
4924
|
+
};
|
|
4925
|
+
constructor(map?: {
|
|
4926
|
+
[key: string]: any;
|
|
4927
|
+
});
|
|
4928
|
+
}
|
|
4484
4929
|
export declare class DescribeAccountsResponseBodyAccountsAccount extends $tea.Model {
|
|
4485
4930
|
accountDescription?: string;
|
|
4486
4931
|
accountName?: string;
|
|
@@ -4556,6 +5001,20 @@ export declare class DescribeAuditRecordsResponseBodyItems extends $tea.Model {
|
|
|
4556
5001
|
[key: string]: any;
|
|
4557
5002
|
});
|
|
4558
5003
|
}
|
|
5004
|
+
export declare class DescribeAvailabilityZonesResponseBodyAvailableZones extends $tea.Model {
|
|
5005
|
+
regionId?: string;
|
|
5006
|
+
zoneId?: string;
|
|
5007
|
+
zoneName?: string;
|
|
5008
|
+
static names(): {
|
|
5009
|
+
[key: string]: string;
|
|
5010
|
+
};
|
|
5011
|
+
static types(): {
|
|
5012
|
+
[key: string]: any;
|
|
5013
|
+
};
|
|
5014
|
+
constructor(map?: {
|
|
5015
|
+
[key: string]: any;
|
|
5016
|
+
});
|
|
5017
|
+
}
|
|
4559
5018
|
export declare class DescribeAvailableEngineVersionResponseBodyEngineVersions extends $tea.Model {
|
|
4560
5019
|
engineVersion?: string[];
|
|
4561
5020
|
static names(): {
|
|
@@ -4956,10 +5415,14 @@ export declare class DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstanc
|
|
|
4956
5415
|
DBInstanceClass?: string;
|
|
4957
5416
|
DBInstanceDescription?: string;
|
|
4958
5417
|
DBInstanceId?: string;
|
|
5418
|
+
DBInstanceOrderStatus?: string;
|
|
4959
5419
|
DBInstanceReleaseProtection?: boolean;
|
|
4960
5420
|
DBInstanceStatus?: string;
|
|
4961
5421
|
DBInstanceStorage?: number;
|
|
4962
5422
|
DBInstanceType?: string;
|
|
5423
|
+
destroyTime?: string;
|
|
5424
|
+
encrypted?: boolean;
|
|
5425
|
+
encryptionKey?: string;
|
|
4963
5426
|
engine?: string;
|
|
4964
5427
|
engineVersion?: string;
|
|
4965
5428
|
expireTime?: string;
|
|
@@ -4984,6 +5447,8 @@ export declare class DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstanc
|
|
|
4984
5447
|
secondaryZoneId?: string;
|
|
4985
5448
|
shardList?: DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstanceShardList;
|
|
4986
5449
|
storageEngine?: string;
|
|
5450
|
+
storageType?: string;
|
|
5451
|
+
syncPercent?: string;
|
|
4987
5452
|
tags?: DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstanceTags;
|
|
4988
5453
|
VPCCloudInstanceIds?: string;
|
|
4989
5454
|
VPCId?: string;
|
|
@@ -5286,58 +5751,12 @@ export declare class DescribeDBInstancesOverviewResponseBodyDBInstances extends
|
|
|
5286
5751
|
[key: string]: any;
|
|
5287
5752
|
});
|
|
5288
5753
|
}
|
|
5289
|
-
export declare class
|
|
5290
|
-
|
|
5291
|
-
|
|
5292
|
-
|
|
5293
|
-
nodeIp?: string;
|
|
5294
|
-
nodeType?: string;
|
|
5295
|
-
port?: number;
|
|
5296
|
-
role?: string;
|
|
5297
|
-
zoneId?: string;
|
|
5298
|
-
static names(): {
|
|
5299
|
-
[key: string]: string;
|
|
5300
|
-
};
|
|
5301
|
-
static types(): {
|
|
5302
|
-
[key: string]: any;
|
|
5303
|
-
};
|
|
5304
|
-
constructor(map?: {
|
|
5305
|
-
[key: string]: any;
|
|
5306
|
-
});
|
|
5307
|
-
}
|
|
5308
|
-
export declare class DescribeDedicatedClusterInstanceListResponseBodyInstancesDbInstanceInstanceNodeList extends $tea.Model {
|
|
5309
|
-
instanceNodes?: DescribeDedicatedClusterInstanceListResponseBodyInstancesDbInstanceInstanceNodeListInstanceNodes[];
|
|
5310
|
-
static names(): {
|
|
5311
|
-
[key: string]: string;
|
|
5312
|
-
};
|
|
5313
|
-
static types(): {
|
|
5314
|
-
[key: string]: any;
|
|
5315
|
-
};
|
|
5316
|
-
constructor(map?: {
|
|
5317
|
-
[key: string]: any;
|
|
5318
|
-
});
|
|
5319
|
-
}
|
|
5320
|
-
export declare class DescribeDedicatedClusterInstanceListResponseBodyInstancesDbInstance extends $tea.Model {
|
|
5321
|
-
characterType?: string;
|
|
5322
|
-
clusterId?: string;
|
|
5323
|
-
clusterName?: string;
|
|
5754
|
+
export declare class DescribeErrorLogRecordsResponseBodyItemsLogRecords extends $tea.Model {
|
|
5755
|
+
category?: string;
|
|
5756
|
+
connInfo?: string;
|
|
5757
|
+
content?: string;
|
|
5324
5758
|
createTime?: string;
|
|
5325
|
-
|
|
5326
|
-
engine?: string;
|
|
5327
|
-
engineVersion?: string;
|
|
5328
|
-
instanceClass?: string;
|
|
5329
|
-
instanceId?: string;
|
|
5330
|
-
instanceName?: string;
|
|
5331
|
-
instanceNodeList?: DescribeDedicatedClusterInstanceListResponseBodyInstancesDbInstanceInstanceNodeList;
|
|
5332
|
-
instanceStatus?: string;
|
|
5333
|
-
maintainEndTime?: string;
|
|
5334
|
-
maintainStartTime?: string;
|
|
5335
|
-
region?: string;
|
|
5336
|
-
regionId?: string;
|
|
5337
|
-
storageType?: string;
|
|
5338
|
-
vpcId?: string;
|
|
5339
|
-
vswitchId?: string;
|
|
5340
|
-
zoneId?: string;
|
|
5759
|
+
id?: number;
|
|
5341
5760
|
static names(): {
|
|
5342
5761
|
[key: string]: string;
|
|
5343
5762
|
};
|
|
@@ -5348,8 +5767,8 @@ export declare class DescribeDedicatedClusterInstanceListResponseBodyInstancesDb
|
|
|
5348
5767
|
[key: string]: any;
|
|
5349
5768
|
});
|
|
5350
5769
|
}
|
|
5351
|
-
export declare class
|
|
5352
|
-
|
|
5770
|
+
export declare class DescribeErrorLogRecordsResponseBodyItems extends $tea.Model {
|
|
5771
|
+
logRecords?: DescribeErrorLogRecordsResponseBodyItemsLogRecords[];
|
|
5353
5772
|
static names(): {
|
|
5354
5773
|
[key: string]: string;
|
|
5355
5774
|
};
|
|
@@ -5360,12 +5779,12 @@ export declare class DescribeDedicatedClusterInstanceListResponseBodyInstances e
|
|
|
5360
5779
|
[key: string]: any;
|
|
5361
5780
|
});
|
|
5362
5781
|
}
|
|
5363
|
-
export declare class
|
|
5364
|
-
|
|
5365
|
-
|
|
5366
|
-
|
|
5367
|
-
|
|
5368
|
-
|
|
5782
|
+
export declare class DescribeGlobalSecurityIPGroupResponseBodyGlobalSecurityIPGroup extends $tea.Model {
|
|
5783
|
+
DBInstances?: string[];
|
|
5784
|
+
GIpList?: string;
|
|
5785
|
+
globalIgName?: string;
|
|
5786
|
+
globalSecurityGroupId?: string;
|
|
5787
|
+
regionId?: string;
|
|
5369
5788
|
static names(): {
|
|
5370
5789
|
[key: string]: string;
|
|
5371
5790
|
};
|
|
@@ -5376,8 +5795,11 @@ export declare class DescribeErrorLogRecordsResponseBodyItemsLogRecords extends
|
|
|
5376
5795
|
[key: string]: any;
|
|
5377
5796
|
});
|
|
5378
5797
|
}
|
|
5379
|
-
export declare class
|
|
5380
|
-
|
|
5798
|
+
export declare class DescribeGlobalSecurityIPGroupRelationResponseBodyGlobalSecurityIPGroupRel extends $tea.Model {
|
|
5799
|
+
GIpList?: string;
|
|
5800
|
+
globalIgName?: string;
|
|
5801
|
+
globalSecurityGroupId?: string;
|
|
5802
|
+
regionId?: string;
|
|
5381
5803
|
static names(): {
|
|
5382
5804
|
[key: string]: string;
|
|
5383
5805
|
};
|
|
@@ -5527,6 +5949,7 @@ export declare class DescribeParametersResponseBodyConfigParameters extends $tea
|
|
|
5527
5949
|
});
|
|
5528
5950
|
}
|
|
5529
5951
|
export declare class DescribeParametersResponseBodyRunningParametersParameter extends $tea.Model {
|
|
5952
|
+
characterType?: string;
|
|
5530
5953
|
checkingCode?: string;
|
|
5531
5954
|
forceRestart?: string;
|
|
5532
5955
|
modifiableStatus?: string;
|
|
@@ -5555,11 +5978,27 @@ export declare class DescribeParametersResponseBodyRunningParameters extends $te
|
|
|
5555
5978
|
[key: string]: any;
|
|
5556
5979
|
});
|
|
5557
5980
|
}
|
|
5981
|
+
export declare class DescribePriceResponseBodyOrderCouponsCouponPromotionRuleIdList extends $tea.Model {
|
|
5982
|
+
promotionRuleId?: number[];
|
|
5983
|
+
static names(): {
|
|
5984
|
+
[key: string]: string;
|
|
5985
|
+
};
|
|
5986
|
+
static types(): {
|
|
5987
|
+
[key: string]: any;
|
|
5988
|
+
};
|
|
5989
|
+
constructor(map?: {
|
|
5990
|
+
[key: string]: any;
|
|
5991
|
+
});
|
|
5992
|
+
}
|
|
5558
5993
|
export declare class DescribePriceResponseBodyOrderCouponsCoupon extends $tea.Model {
|
|
5994
|
+
activityCategory?: string;
|
|
5559
5995
|
couponNo?: string;
|
|
5560
5996
|
description?: string;
|
|
5561
5997
|
isSelected?: string;
|
|
5562
5998
|
name?: string;
|
|
5999
|
+
optionCode?: string;
|
|
6000
|
+
promotionOptionCode?: string;
|
|
6001
|
+
promotionRuleIdList?: DescribePriceResponseBodyOrderCouponsCouponPromotionRuleIdList;
|
|
5563
6002
|
static names(): {
|
|
5564
6003
|
[key: string]: string;
|
|
5565
6004
|
};
|
|
@@ -5913,7 +6352,6 @@ export declare class DescribeRunningLogRecordsResponseBodyItemsLogRecords extend
|
|
|
5913
6352
|
connInfo?: string;
|
|
5914
6353
|
content?: string;
|
|
5915
6354
|
createTime?: string;
|
|
5916
|
-
id?: number;
|
|
5917
6355
|
static names(): {
|
|
5918
6356
|
[key: string]: string;
|
|
5919
6357
|
};
|
|
@@ -6149,6 +6587,21 @@ export declare class ListTagResourcesResponseBodyTagResources extends $tea.Model
|
|
|
6149
6587
|
[key: string]: any;
|
|
6150
6588
|
});
|
|
6151
6589
|
}
|
|
6590
|
+
export declare class ModifyGlobalSecurityIPGroupNameResponseBodyGlobalSecurityIPGroup extends $tea.Model {
|
|
6591
|
+
GIpList?: string;
|
|
6592
|
+
globalIgName?: string;
|
|
6593
|
+
globalSecurityGroupId?: string;
|
|
6594
|
+
regionId?: string;
|
|
6595
|
+
static names(): {
|
|
6596
|
+
[key: string]: string;
|
|
6597
|
+
};
|
|
6598
|
+
static types(): {
|
|
6599
|
+
[key: string]: any;
|
|
6600
|
+
};
|
|
6601
|
+
constructor(map?: {
|
|
6602
|
+
[key: string]: any;
|
|
6603
|
+
});
|
|
6604
|
+
}
|
|
6152
6605
|
export declare class TagResourcesRequestTag extends $tea.Model {
|
|
6153
6606
|
key?: string;
|
|
6154
6607
|
value?: string;
|
|
@@ -6167,45 +6620,309 @@ export default class Client extends OpenApi {
|
|
|
6167
6620
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
6168
6621
|
[key: string]: string;
|
|
6169
6622
|
}, endpoint: string): string;
|
|
6623
|
+
/**
|
|
6624
|
+
* This operation applies only to sharded cluster instances. For more information, see [Apply for an endpoint for a shard or Configserver node](~~134037~~).
|
|
6625
|
+
* > The requested endpoint can only be accessed over the internal network. If you want to access the endpoint over the Internet, call the [AllocatePublicNetworkAddress](~~67602~~) operation to apply for a public endpoint.
|
|
6626
|
+
*
|
|
6627
|
+
* @param request AllocateNodePrivateNetworkAddressRequest
|
|
6628
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6629
|
+
* @return AllocateNodePrivateNetworkAddressResponse
|
|
6630
|
+
*/
|
|
6170
6631
|
allocateNodePrivateNetworkAddressWithOptions(request: AllocateNodePrivateNetworkAddressRequest, runtime: $Util.RuntimeOptions): Promise<AllocateNodePrivateNetworkAddressResponse>;
|
|
6632
|
+
/**
|
|
6633
|
+
* This operation applies only to sharded cluster instances. For more information, see [Apply for an endpoint for a shard or Configserver node](~~134037~~).
|
|
6634
|
+
* > The requested endpoint can only be accessed over the internal network. If you want to access the endpoint over the Internet, call the [AllocatePublicNetworkAddress](~~67602~~) operation to apply for a public endpoint.
|
|
6635
|
+
*
|
|
6636
|
+
* @param request AllocateNodePrivateNetworkAddressRequest
|
|
6637
|
+
* @return AllocateNodePrivateNetworkAddressResponse
|
|
6638
|
+
*/
|
|
6171
6639
|
allocateNodePrivateNetworkAddress(request: AllocateNodePrivateNetworkAddressRequest): Promise<AllocateNodePrivateNetworkAddressResponse>;
|
|
6172
6640
|
allocatePublicNetworkAddressWithOptions(request: AllocatePublicNetworkAddressRequest, runtime: $Util.RuntimeOptions): Promise<AllocatePublicNetworkAddressResponse>;
|
|
6173
6641
|
allocatePublicNetworkAddress(request: AllocatePublicNetworkAddressRequest): Promise<AllocatePublicNetworkAddressResponse>;
|
|
6642
|
+
/**
|
|
6643
|
+
* Before you enable Transparent Data Encryption (TDE) by calling the [ModifyDBInstanceTDE](~~131267~~) operation, you can call this operation to check whether KMS keys are authorized to ApsaraDB for MongoDB instances.
|
|
6644
|
+
*
|
|
6645
|
+
* @param request CheckCloudResourceAuthorizedRequest
|
|
6646
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6647
|
+
* @return CheckCloudResourceAuthorizedResponse
|
|
6648
|
+
*/
|
|
6174
6649
|
checkCloudResourceAuthorizedWithOptions(request: CheckCloudResourceAuthorizedRequest, runtime: $Util.RuntimeOptions): Promise<CheckCloudResourceAuthorizedResponse>;
|
|
6650
|
+
/**
|
|
6651
|
+
* Before you enable Transparent Data Encryption (TDE) by calling the [ModifyDBInstanceTDE](~~131267~~) operation, you can call this operation to check whether KMS keys are authorized to ApsaraDB for MongoDB instances.
|
|
6652
|
+
*
|
|
6653
|
+
* @param request CheckCloudResourceAuthorizedRequest
|
|
6654
|
+
* @return CheckCloudResourceAuthorizedResponse
|
|
6655
|
+
*/
|
|
6175
6656
|
checkCloudResourceAuthorized(request: CheckCloudResourceAuthorizedRequest): Promise<CheckCloudResourceAuthorizedResponse>;
|
|
6657
|
+
/**
|
|
6658
|
+
* You can call this operation to check whether an ApsaraDB for MongoDB instance meets the data recovery conditions.
|
|
6659
|
+
*
|
|
6660
|
+
* @param request CheckRecoveryConditionRequest
|
|
6661
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6662
|
+
* @return CheckRecoveryConditionResponse
|
|
6663
|
+
*/
|
|
6176
6664
|
checkRecoveryConditionWithOptions(request: CheckRecoveryConditionRequest, runtime: $Util.RuntimeOptions): Promise<CheckRecoveryConditionResponse>;
|
|
6665
|
+
/**
|
|
6666
|
+
* You can call this operation to check whether an ApsaraDB for MongoDB instance meets the data recovery conditions.
|
|
6667
|
+
*
|
|
6668
|
+
* @param request CheckRecoveryConditionRequest
|
|
6669
|
+
* @return CheckRecoveryConditionResponse
|
|
6670
|
+
*/
|
|
6177
6671
|
checkRecoveryCondition(request: CheckRecoveryConditionRequest): Promise<CheckRecoveryConditionResponse>;
|
|
6672
|
+
/**
|
|
6673
|
+
* ## Usage
|
|
6674
|
+
* When you call this operation, the instance must be in the Running state.
|
|
6675
|
+
*
|
|
6676
|
+
* @param request CreateBackupRequest
|
|
6677
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6678
|
+
* @return CreateBackupResponse
|
|
6679
|
+
*/
|
|
6178
6680
|
createBackupWithOptions(request: CreateBackupRequest, runtime: $Util.RuntimeOptions): Promise<CreateBackupResponse>;
|
|
6681
|
+
/**
|
|
6682
|
+
* ## Usage
|
|
6683
|
+
* When you call this operation, the instance must be in the Running state.
|
|
6684
|
+
*
|
|
6685
|
+
* @param request CreateBackupRequest
|
|
6686
|
+
* @return CreateBackupResponse
|
|
6687
|
+
*/
|
|
6179
6688
|
createBackup(request: CreateBackupRequest): Promise<CreateBackupResponse>;
|
|
6689
|
+
/**
|
|
6690
|
+
* Creates or clones an ApsaraDB for MongoDB replica set instance.
|
|
6691
|
+
*
|
|
6692
|
+
* @param request CreateDBInstanceRequest
|
|
6693
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6694
|
+
* @return CreateDBInstanceResponse
|
|
6695
|
+
*/
|
|
6180
6696
|
createDBInstanceWithOptions(request: CreateDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<CreateDBInstanceResponse>;
|
|
6697
|
+
/**
|
|
6698
|
+
* Creates or clones an ApsaraDB for MongoDB replica set instance.
|
|
6699
|
+
*
|
|
6700
|
+
* @param request CreateDBInstanceRequest
|
|
6701
|
+
* @return CreateDBInstanceResponse
|
|
6702
|
+
*/
|
|
6181
6703
|
createDBInstance(request: CreateDBInstanceRequest): Promise<CreateDBInstanceResponse>;
|
|
6704
|
+
createGlobalSecurityIPGroupWithOptions(request: CreateGlobalSecurityIPGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateGlobalSecurityIPGroupResponse>;
|
|
6705
|
+
createGlobalSecurityIPGroup(request: CreateGlobalSecurityIPGroupRequest): Promise<CreateGlobalSecurityIPGroupResponse>;
|
|
6706
|
+
/**
|
|
6707
|
+
* Before you call this operation, make sure that you fully understand the billing methods and [pricing](https://www.alibabacloud.com/zh/product/apsaradb-for-mongodb/pricing) of ApsaraDB for MongoDB.
|
|
6708
|
+
* This operation is applicable only to sharded cluster instances.
|
|
6709
|
+
*
|
|
6710
|
+
* @param request CreateNodeRequest
|
|
6711
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6712
|
+
* @return CreateNodeResponse
|
|
6713
|
+
*/
|
|
6182
6714
|
createNodeWithOptions(request: CreateNodeRequest, runtime: $Util.RuntimeOptions): Promise<CreateNodeResponse>;
|
|
6715
|
+
/**
|
|
6716
|
+
* Before you call this operation, make sure that you fully understand the billing methods and [pricing](https://www.alibabacloud.com/zh/product/apsaradb-for-mongodb/pricing) of ApsaraDB for MongoDB.
|
|
6717
|
+
* This operation is applicable only to sharded cluster instances.
|
|
6718
|
+
*
|
|
6719
|
+
* @param request CreateNodeRequest
|
|
6720
|
+
* @return CreateNodeResponse
|
|
6721
|
+
*/
|
|
6183
6722
|
createNode(request: CreateNodeRequest): Promise<CreateNodeResponse>;
|
|
6723
|
+
/**
|
|
6724
|
+
* The ID of the request.
|
|
6725
|
+
*
|
|
6726
|
+
* @param request CreateNodeBatchRequest
|
|
6727
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6728
|
+
* @return CreateNodeBatchResponse
|
|
6729
|
+
*/
|
|
6184
6730
|
createNodeBatchWithOptions(request: CreateNodeBatchRequest, runtime: $Util.RuntimeOptions): Promise<CreateNodeBatchResponse>;
|
|
6731
|
+
/**
|
|
6732
|
+
* The ID of the request.
|
|
6733
|
+
*
|
|
6734
|
+
* @param request CreateNodeBatchRequest
|
|
6735
|
+
* @return CreateNodeBatchResponse
|
|
6736
|
+
*/
|
|
6185
6737
|
createNodeBatch(request: CreateNodeBatchRequest): Promise<CreateNodeBatchResponse>;
|
|
6738
|
+
/**
|
|
6739
|
+
* * Make sure that you fully understand the billing methods and [pricing](https://www.aliyun.com/price/product#/mongodb/detail) of ApsaraDB for MongoDB before you call this operation.
|
|
6740
|
+
* * For more information about the instance types of ApsaraDB for MongoDB, see [Instance types](~~57141~~).
|
|
6741
|
+
* * To create standalone instances and replica set instances, you can call the [CreateDBInstance](~~61763~~) operation.
|
|
6742
|
+
*
|
|
6743
|
+
* @param request CreateShardingDBInstanceRequest
|
|
6744
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6745
|
+
* @return CreateShardingDBInstanceResponse
|
|
6746
|
+
*/
|
|
6186
6747
|
createShardingDBInstanceWithOptions(request: CreateShardingDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<CreateShardingDBInstanceResponse>;
|
|
6748
|
+
/**
|
|
6749
|
+
* * Make sure that you fully understand the billing methods and [pricing](https://www.aliyun.com/price/product#/mongodb/detail) of ApsaraDB for MongoDB before you call this operation.
|
|
6750
|
+
* * For more information about the instance types of ApsaraDB for MongoDB, see [Instance types](~~57141~~).
|
|
6751
|
+
* * To create standalone instances and replica set instances, you can call the [CreateDBInstance](~~61763~~) operation.
|
|
6752
|
+
*
|
|
6753
|
+
* @param request CreateShardingDBInstanceRequest
|
|
6754
|
+
* @return CreateShardingDBInstanceResponse
|
|
6755
|
+
*/
|
|
6187
6756
|
createShardingDBInstance(request: CreateShardingDBInstanceRequest): Promise<CreateShardingDBInstanceResponse>;
|
|
6757
|
+
/**
|
|
6758
|
+
* Before you call this operation, make sure that the instance meets the following requirements:
|
|
6759
|
+
* * The instance is in the running state.
|
|
6760
|
+
* * A pay-as-you-go instance is used.
|
|
6761
|
+
* > After you release an ApsaraDB for MongoDB instance, data in the instance can no longer be recovered. Proceed with caution.
|
|
6762
|
+
*
|
|
6763
|
+
* @param request DeleteDBInstanceRequest
|
|
6764
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6765
|
+
* @return DeleteDBInstanceResponse
|
|
6766
|
+
*/
|
|
6188
6767
|
deleteDBInstanceWithOptions(request: DeleteDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDBInstanceResponse>;
|
|
6768
|
+
/**
|
|
6769
|
+
* Before you call this operation, make sure that the instance meets the following requirements:
|
|
6770
|
+
* * The instance is in the running state.
|
|
6771
|
+
* * A pay-as-you-go instance is used.
|
|
6772
|
+
* > After you release an ApsaraDB for MongoDB instance, data in the instance can no longer be recovered. Proceed with caution.
|
|
6773
|
+
*
|
|
6774
|
+
* @param request DeleteDBInstanceRequest
|
|
6775
|
+
* @return DeleteDBInstanceResponse
|
|
6776
|
+
*/
|
|
6189
6777
|
deleteDBInstance(request: DeleteDBInstanceRequest): Promise<DeleteDBInstanceResponse>;
|
|
6778
|
+
deleteGlobalSecurityIPGroupWithOptions(request: DeleteGlobalSecurityIPGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteGlobalSecurityIPGroupResponse>;
|
|
6779
|
+
deleteGlobalSecurityIPGroup(request: DeleteGlobalSecurityIPGroupRequest): Promise<DeleteGlobalSecurityIPGroupResponse>;
|
|
6780
|
+
/**
|
|
6781
|
+
* Before you call this operation, make sure that the following requirements are met:
|
|
6782
|
+
* * The instance is in the running state.
|
|
6783
|
+
* * The instance is a sharded cluster instance.
|
|
6784
|
+
* * The billing method of the instance is pay-as-you-go.
|
|
6785
|
+
* * The number of the shard or mongos nodes in the instance is greater than two.
|
|
6786
|
+
*
|
|
6787
|
+
* @param request DeleteNodeRequest
|
|
6788
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6789
|
+
* @return DeleteNodeResponse
|
|
6790
|
+
*/
|
|
6190
6791
|
deleteNodeWithOptions(request: DeleteNodeRequest, runtime: $Util.RuntimeOptions): Promise<DeleteNodeResponse>;
|
|
6792
|
+
/**
|
|
6793
|
+
* Before you call this operation, make sure that the following requirements are met:
|
|
6794
|
+
* * The instance is in the running state.
|
|
6795
|
+
* * The instance is a sharded cluster instance.
|
|
6796
|
+
* * The billing method of the instance is pay-as-you-go.
|
|
6797
|
+
* * The number of the shard or mongos nodes in the instance is greater than two.
|
|
6798
|
+
*
|
|
6799
|
+
* @param request DeleteNodeRequest
|
|
6800
|
+
* @return DeleteNodeResponse
|
|
6801
|
+
*/
|
|
6191
6802
|
deleteNode(request: DeleteNodeRequest): Promise<DeleteNodeResponse>;
|
|
6803
|
+
/**
|
|
6804
|
+
* > This operation can query only the information of the root account.
|
|
6805
|
+
*
|
|
6806
|
+
* @param request DescribeAccountsRequest
|
|
6807
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6808
|
+
* @return DescribeAccountsResponse
|
|
6809
|
+
*/
|
|
6192
6810
|
describeAccountsWithOptions(request: DescribeAccountsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAccountsResponse>;
|
|
6811
|
+
/**
|
|
6812
|
+
* > This operation can query only the information of the root account.
|
|
6813
|
+
*
|
|
6814
|
+
* @param request DescribeAccountsRequest
|
|
6815
|
+
* @return DescribeAccountsResponse
|
|
6816
|
+
*/
|
|
6193
6817
|
describeAccounts(request: DescribeAccountsRequest): Promise<DescribeAccountsResponse>;
|
|
6194
6818
|
describeActiveOperationTaskCountWithOptions(request: DescribeActiveOperationTaskCountRequest, runtime: $Util.RuntimeOptions): Promise<DescribeActiveOperationTaskCountResponse>;
|
|
6195
6819
|
describeActiveOperationTaskCount(request: DescribeActiveOperationTaskCountRequest): Promise<DescribeActiveOperationTaskCountResponse>;
|
|
6196
6820
|
describeActiveOperationTaskTypeWithOptions(request: DescribeActiveOperationTaskTypeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeActiveOperationTaskTypeResponse>;
|
|
6197
6821
|
describeActiveOperationTaskType(request: DescribeActiveOperationTaskTypeRequest): Promise<DescribeActiveOperationTaskTypeResponse>;
|
|
6822
|
+
/**
|
|
6823
|
+
* The role of the node in the instance. Valid values:
|
|
6824
|
+
* * **primary**
|
|
6825
|
+
* * **secondary**
|
|
6826
|
+
*
|
|
6827
|
+
* @param request DescribeAuditLogFilterRequest
|
|
6828
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6829
|
+
* @return DescribeAuditLogFilterResponse
|
|
6830
|
+
*/
|
|
6198
6831
|
describeAuditLogFilterWithOptions(request: DescribeAuditLogFilterRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAuditLogFilterResponse>;
|
|
6832
|
+
/**
|
|
6833
|
+
* The role of the node in the instance. Valid values:
|
|
6834
|
+
* * **primary**
|
|
6835
|
+
* * **secondary**
|
|
6836
|
+
*
|
|
6837
|
+
* @param request DescribeAuditLogFilterRequest
|
|
6838
|
+
* @return DescribeAuditLogFilterResponse
|
|
6839
|
+
*/
|
|
6199
6840
|
describeAuditLogFilter(request: DescribeAuditLogFilterRequest): Promise<DescribeAuditLogFilterResponse>;
|
|
6841
|
+
/**
|
|
6842
|
+
* * The instance must be in the running state when you call this operation.
|
|
6843
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
6844
|
+
* * You can call this operation up to 30 times per minute. To call this operation at a higher frequency, use a Logstore. For more information, see [Manage a Logstore](~~48990~~).
|
|
6845
|
+
*
|
|
6846
|
+
* @param request DescribeAuditPolicyRequest
|
|
6847
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6848
|
+
* @return DescribeAuditPolicyResponse
|
|
6849
|
+
*/
|
|
6200
6850
|
describeAuditPolicyWithOptions(request: DescribeAuditPolicyRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAuditPolicyResponse>;
|
|
6851
|
+
/**
|
|
6852
|
+
* * The instance must be in the running state when you call this operation.
|
|
6853
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
6854
|
+
* * You can call this operation up to 30 times per minute. To call this operation at a higher frequency, use a Logstore. For more information, see [Manage a Logstore](~~48990~~).
|
|
6855
|
+
*
|
|
6856
|
+
* @param request DescribeAuditPolicyRequest
|
|
6857
|
+
* @return DescribeAuditPolicyResponse
|
|
6858
|
+
*/
|
|
6201
6859
|
describeAuditPolicy(request: DescribeAuditPolicyRequest): Promise<DescribeAuditPolicyResponse>;
|
|
6860
|
+
/**
|
|
6861
|
+
* * When you call this operation, ensure that the audit log feature of the instance is enabled. Otherwise, the operation returns an empty audit log.
|
|
6862
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
6863
|
+
* * You can call this operation up to 30 times per minute. To call this operation at a higher frequency, use a Logstore. For more information, see [Manage a Logstore](~~48990~~).
|
|
6864
|
+
*
|
|
6865
|
+
* @param request DescribeAuditRecordsRequest
|
|
6866
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6867
|
+
* @return DescribeAuditRecordsResponse
|
|
6868
|
+
*/
|
|
6202
6869
|
describeAuditRecordsWithOptions(request: DescribeAuditRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAuditRecordsResponse>;
|
|
6870
|
+
/**
|
|
6871
|
+
* * When you call this operation, ensure that the audit log feature of the instance is enabled. Otherwise, the operation returns an empty audit log.
|
|
6872
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
6873
|
+
* * You can call this operation up to 30 times per minute. To call this operation at a higher frequency, use a Logstore. For more information, see [Manage a Logstore](~~48990~~).
|
|
6874
|
+
*
|
|
6875
|
+
* @param request DescribeAuditRecordsRequest
|
|
6876
|
+
* @return DescribeAuditRecordsResponse
|
|
6877
|
+
*/
|
|
6203
6878
|
describeAuditRecords(request: DescribeAuditRecordsRequest): Promise<DescribeAuditRecordsResponse>;
|
|
6879
|
+
/**
|
|
6880
|
+
* You can call this operation to query zones in which you can create an ApsaraDB for MongoDB instance.
|
|
6881
|
+
*
|
|
6882
|
+
* @param request DescribeAvailabilityZonesRequest
|
|
6883
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6884
|
+
* @return DescribeAvailabilityZonesResponse
|
|
6885
|
+
*/
|
|
6886
|
+
describeAvailabilityZonesWithOptions(request: DescribeAvailabilityZonesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAvailabilityZonesResponse>;
|
|
6887
|
+
/**
|
|
6888
|
+
* You can call this operation to query zones in which you can create an ApsaraDB for MongoDB instance.
|
|
6889
|
+
*
|
|
6890
|
+
* @param request DescribeAvailabilityZonesRequest
|
|
6891
|
+
* @return DescribeAvailabilityZonesResponse
|
|
6892
|
+
*/
|
|
6893
|
+
describeAvailabilityZones(request: DescribeAvailabilityZonesRequest): Promise<DescribeAvailabilityZonesResponse>;
|
|
6204
6894
|
describeAvailableEngineVersionWithOptions(request: DescribeAvailableEngineVersionRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAvailableEngineVersionResponse>;
|
|
6205
6895
|
describeAvailableEngineVersion(request: DescribeAvailableEngineVersionRequest): Promise<DescribeAvailableEngineVersionResponse>;
|
|
6206
6896
|
describeAvailableResourceWithOptions(request: DescribeAvailableResourceRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAvailableResourceResponse>;
|
|
6207
6897
|
describeAvailableResource(request: DescribeAvailableResourceRequest): Promise<DescribeAvailableResourceResponse>;
|
|
6898
|
+
/**
|
|
6899
|
+
* ## Precautions
|
|
6900
|
+
* You can call the [CreateDBInstance](~~61763~~) operation to restore a database for an ApsaraDB for MongoDB instance. For more information, see [Restore one or more databases of an ApsaraDB for MongoDB instance](~~112274~~).
|
|
6901
|
+
* Before you call this operation, make sure that the ApsaraDB for MongoDB instance meets the following requirements:
|
|
6902
|
+
* * The instance was created after March 26, 2019.
|
|
6903
|
+
* * The instance is located in the China (Qingdao), China (Beijing), China (Zhangjiakou), China (Hohhot), China (Hangzhou), China (Shanghai), China (Shenzhen), or Singapore (Singapore) region. Other regions are not supported.
|
|
6904
|
+
* * The instance is a replica set instance.
|
|
6905
|
+
* * The version of the database engine is 3.4, 4.0, or 4.2.
|
|
6906
|
+
* * The storage engine of the instance is WiredTiger.
|
|
6907
|
+
*
|
|
6908
|
+
* @param request DescribeBackupDBsRequest
|
|
6909
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6910
|
+
* @return DescribeBackupDBsResponse
|
|
6911
|
+
*/
|
|
6208
6912
|
describeBackupDBsWithOptions(request: DescribeBackupDBsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBackupDBsResponse>;
|
|
6913
|
+
/**
|
|
6914
|
+
* ## Precautions
|
|
6915
|
+
* You can call the [CreateDBInstance](~~61763~~) operation to restore a database for an ApsaraDB for MongoDB instance. For more information, see [Restore one or more databases of an ApsaraDB for MongoDB instance](~~112274~~).
|
|
6916
|
+
* Before you call this operation, make sure that the ApsaraDB for MongoDB instance meets the following requirements:
|
|
6917
|
+
* * The instance was created after March 26, 2019.
|
|
6918
|
+
* * The instance is located in the China (Qingdao), China (Beijing), China (Zhangjiakou), China (Hohhot), China (Hangzhou), China (Shanghai), China (Shenzhen), or Singapore (Singapore) region. Other regions are not supported.
|
|
6919
|
+
* * The instance is a replica set instance.
|
|
6920
|
+
* * The version of the database engine is 3.4, 4.0, or 4.2.
|
|
6921
|
+
* * The storage engine of the instance is WiredTiger.
|
|
6922
|
+
*
|
|
6923
|
+
* @param request DescribeBackupDBsRequest
|
|
6924
|
+
* @return DescribeBackupDBsResponse
|
|
6925
|
+
*/
|
|
6209
6926
|
describeBackupDBs(request: DescribeBackupDBsRequest): Promise<DescribeBackupDBsResponse>;
|
|
6210
6927
|
describeBackupPolicyWithOptions(request: DescribeBackupPolicyRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBackupPolicyResponse>;
|
|
6211
6928
|
describeBackupPolicy(request: DescribeBackupPolicyRequest): Promise<DescribeBackupPolicyResponse>;
|
|
@@ -6213,29 +6930,153 @@ export default class Client extends OpenApi {
|
|
|
6213
6930
|
describeBackups(request: DescribeBackupsRequest): Promise<DescribeBackupsResponse>;
|
|
6214
6931
|
describeDBInstanceAttributeWithOptions(request: DescribeDBInstanceAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceAttributeResponse>;
|
|
6215
6932
|
describeDBInstanceAttribute(request: DescribeDBInstanceAttributeRequest): Promise<DescribeDBInstanceAttributeResponse>;
|
|
6933
|
+
/**
|
|
6934
|
+
* ## Usage
|
|
6935
|
+
* When you call the DescribeDBInstanceEncryptionKey operation, the instance must have transparent data encryption (TDE) enabled in BYOK mode. You can call the [ModifyDBInstanceTDE](~~131267~~) operation to enable TDE.
|
|
6936
|
+
*
|
|
6937
|
+
* @param request DescribeDBInstanceEncryptionKeyRequest
|
|
6938
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6939
|
+
* @return DescribeDBInstanceEncryptionKeyResponse
|
|
6940
|
+
*/
|
|
6216
6941
|
describeDBInstanceEncryptionKeyWithOptions(request: DescribeDBInstanceEncryptionKeyRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceEncryptionKeyResponse>;
|
|
6942
|
+
/**
|
|
6943
|
+
* ## Usage
|
|
6944
|
+
* When you call the DescribeDBInstanceEncryptionKey operation, the instance must have transparent data encryption (TDE) enabled in BYOK mode. You can call the [ModifyDBInstanceTDE](~~131267~~) operation to enable TDE.
|
|
6945
|
+
*
|
|
6946
|
+
* @param request DescribeDBInstanceEncryptionKeyRequest
|
|
6947
|
+
* @return DescribeDBInstanceEncryptionKeyResponse
|
|
6948
|
+
*/
|
|
6217
6949
|
describeDBInstanceEncryptionKey(request: DescribeDBInstanceEncryptionKeyRequest): Promise<DescribeDBInstanceEncryptionKeyResponse>;
|
|
6218
6950
|
describeDBInstanceMonitorWithOptions(request: DescribeDBInstanceMonitorRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceMonitorResponse>;
|
|
6219
6951
|
describeDBInstanceMonitor(request: DescribeDBInstanceMonitorRequest): Promise<DescribeDBInstanceMonitorResponse>;
|
|
6220
6952
|
describeDBInstancePerformanceWithOptions(request: DescribeDBInstancePerformanceRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstancePerformanceResponse>;
|
|
6221
6953
|
describeDBInstancePerformance(request: DescribeDBInstancePerformanceRequest): Promise<DescribeDBInstancePerformanceResponse>;
|
|
6954
|
+
/**
|
|
6955
|
+
* Before you call this operation, make sure that the following requirements are met:
|
|
6956
|
+
* * The instance is in the Running state.
|
|
6957
|
+
* * The instance is a replica set instance.
|
|
6958
|
+
* * The instance runs MongoDB 3.4 or later.
|
|
6959
|
+
*
|
|
6960
|
+
* @param request DescribeDBInstanceSSLRequest
|
|
6961
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6962
|
+
* @return DescribeDBInstanceSSLResponse
|
|
6963
|
+
*/
|
|
6222
6964
|
describeDBInstanceSSLWithOptions(request: DescribeDBInstanceSSLRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceSSLResponse>;
|
|
6965
|
+
/**
|
|
6966
|
+
* Before you call this operation, make sure that the following requirements are met:
|
|
6967
|
+
* * The instance is in the Running state.
|
|
6968
|
+
* * The instance is a replica set instance.
|
|
6969
|
+
* * The instance runs MongoDB 3.4 or later.
|
|
6970
|
+
*
|
|
6971
|
+
* @param request DescribeDBInstanceSSLRequest
|
|
6972
|
+
* @return DescribeDBInstanceSSLResponse
|
|
6973
|
+
*/
|
|
6223
6974
|
describeDBInstanceSSL(request: DescribeDBInstanceSSLRequest): Promise<DescribeDBInstanceSSLResponse>;
|
|
6975
|
+
/**
|
|
6976
|
+
* You can call this operation to query whether TDE is enabled for an ApsaraDB for MongoDB instance.
|
|
6977
|
+
*
|
|
6978
|
+
* @param request DescribeDBInstanceTDEInfoRequest
|
|
6979
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6980
|
+
* @return DescribeDBInstanceTDEInfoResponse
|
|
6981
|
+
*/
|
|
6224
6982
|
describeDBInstanceTDEInfoWithOptions(request: DescribeDBInstanceTDEInfoRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceTDEInfoResponse>;
|
|
6983
|
+
/**
|
|
6984
|
+
* You can call this operation to query whether TDE is enabled for an ApsaraDB for MongoDB instance.
|
|
6985
|
+
*
|
|
6986
|
+
* @param request DescribeDBInstanceTDEInfoRequest
|
|
6987
|
+
* @return DescribeDBInstanceTDEInfoResponse
|
|
6988
|
+
*/
|
|
6225
6989
|
describeDBInstanceTDEInfo(request: DescribeDBInstanceTDEInfoRequest): Promise<DescribeDBInstanceTDEInfoResponse>;
|
|
6990
|
+
/**
|
|
6991
|
+
* The list of replica set and standalone instances is displayed when the **DBInstanceType** parameter uses the default value **replicate**. To query the list of sharded cluster instances, you must set the **DBInstanceType** parameter to **sharding**.
|
|
6992
|
+
*
|
|
6993
|
+
* @param request DescribeDBInstancesRequest
|
|
6994
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6995
|
+
* @return DescribeDBInstancesResponse
|
|
6996
|
+
*/
|
|
6226
6997
|
describeDBInstancesWithOptions(request: DescribeDBInstancesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstancesResponse>;
|
|
6998
|
+
/**
|
|
6999
|
+
* The list of replica set and standalone instances is displayed when the **DBInstanceType** parameter uses the default value **replicate**. To query the list of sharded cluster instances, you must set the **DBInstanceType** parameter to **sharding**.
|
|
7000
|
+
*
|
|
7001
|
+
* @param request DescribeDBInstancesRequest
|
|
7002
|
+
* @return DescribeDBInstancesResponse
|
|
7003
|
+
*/
|
|
6227
7004
|
describeDBInstances(request: DescribeDBInstancesRequest): Promise<DescribeDBInstancesResponse>;
|
|
7005
|
+
/**
|
|
7006
|
+
* * If you do not specify an instance when you call this operation, the overview information of all instances in the specified region within this account is returned.
|
|
7007
|
+
* * Paged query is disabled for this operation.
|
|
7008
|
+
*
|
|
7009
|
+
* @param request DescribeDBInstancesOverviewRequest
|
|
7010
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7011
|
+
* @return DescribeDBInstancesOverviewResponse
|
|
7012
|
+
*/
|
|
6228
7013
|
describeDBInstancesOverviewWithOptions(request: DescribeDBInstancesOverviewRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstancesOverviewResponse>;
|
|
7014
|
+
/**
|
|
7015
|
+
* * If you do not specify an instance when you call this operation, the overview information of all instances in the specified region within this account is returned.
|
|
7016
|
+
* * Paged query is disabled for this operation.
|
|
7017
|
+
*
|
|
7018
|
+
* @param request DescribeDBInstancesOverviewRequest
|
|
7019
|
+
* @return DescribeDBInstancesOverviewResponse
|
|
7020
|
+
*/
|
|
6229
7021
|
describeDBInstancesOverview(request: DescribeDBInstancesOverviewRequest): Promise<DescribeDBInstancesOverviewResponse>;
|
|
6230
|
-
|
|
6231
|
-
|
|
7022
|
+
/**
|
|
7023
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7024
|
+
* * You can call this operation up to 30 times per minute. To call this operation at a higher frequency, use a Logstore. For more information, see [Manage a Logstore](~~48990~~).
|
|
7025
|
+
*
|
|
7026
|
+
* @param request DescribeErrorLogRecordsRequest
|
|
7027
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7028
|
+
* @return DescribeErrorLogRecordsResponse
|
|
7029
|
+
*/
|
|
6232
7030
|
describeErrorLogRecordsWithOptions(request: DescribeErrorLogRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeErrorLogRecordsResponse>;
|
|
7031
|
+
/**
|
|
7032
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7033
|
+
* * You can call this operation up to 30 times per minute. To call this operation at a higher frequency, use a Logstore. For more information, see [Manage a Logstore](~~48990~~).
|
|
7034
|
+
*
|
|
7035
|
+
* @param request DescribeErrorLogRecordsRequest
|
|
7036
|
+
* @return DescribeErrorLogRecordsResponse
|
|
7037
|
+
*/
|
|
6233
7038
|
describeErrorLogRecords(request: DescribeErrorLogRecordsRequest): Promise<DescribeErrorLogRecordsResponse>;
|
|
7039
|
+
describeGlobalSecurityIPGroupWithOptions(request: DescribeGlobalSecurityIPGroupRequest, runtime: $Util.RuntimeOptions): Promise<DescribeGlobalSecurityIPGroupResponse>;
|
|
7040
|
+
describeGlobalSecurityIPGroup(request: DescribeGlobalSecurityIPGroupRequest): Promise<DescribeGlobalSecurityIPGroupResponse>;
|
|
7041
|
+
describeGlobalSecurityIPGroupRelationWithOptions(request: DescribeGlobalSecurityIPGroupRelationRequest, runtime: $Util.RuntimeOptions): Promise<DescribeGlobalSecurityIPGroupRelationResponse>;
|
|
7042
|
+
describeGlobalSecurityIPGroupRelation(request: DescribeGlobalSecurityIPGroupRelationRequest): Promise<DescribeGlobalSecurityIPGroupRelationResponse>;
|
|
7043
|
+
/**
|
|
7044
|
+
* This operation is applicable to subscription instances.
|
|
7045
|
+
*
|
|
7046
|
+
* @param request DescribeInstanceAutoRenewalAttributeRequest
|
|
7047
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7048
|
+
* @return DescribeInstanceAutoRenewalAttributeResponse
|
|
7049
|
+
*/
|
|
6234
7050
|
describeInstanceAutoRenewalAttributeWithOptions(request: DescribeInstanceAutoRenewalAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeInstanceAutoRenewalAttributeResponse>;
|
|
7051
|
+
/**
|
|
7052
|
+
* This operation is applicable to subscription instances.
|
|
7053
|
+
*
|
|
7054
|
+
* @param request DescribeInstanceAutoRenewalAttributeRequest
|
|
7055
|
+
* @return DescribeInstanceAutoRenewalAttributeResponse
|
|
7056
|
+
*/
|
|
6235
7057
|
describeInstanceAutoRenewalAttribute(request: DescribeInstanceAutoRenewalAttributeRequest): Promise<DescribeInstanceAutoRenewalAttributeResponse>;
|
|
6236
7058
|
describeKernelReleaseNotesWithOptions(request: DescribeKernelReleaseNotesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeKernelReleaseNotesResponse>;
|
|
6237
7059
|
describeKernelReleaseNotes(request: DescribeKernelReleaseNotesRequest): Promise<DescribeKernelReleaseNotesResponse>;
|
|
7060
|
+
/**
|
|
7061
|
+
* This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7062
|
+
* This operation depends on the audit log feature of ApsaraDB for MongoDB. You can enable the audit log feature based on your business needs. For more information, see [Enable the audit log feature](~~59903~~)
|
|
7063
|
+
* * Starting from January 6, 2022, the official edition of the audit log feature has been launched in all regions, and new applications for the free trial edition have ended. For more information, see [Notice on official launch of the pay-as-you-go audit log feature and no more application for the free trial edition](~~377480~~)
|
|
7064
|
+
* * The official edition is charged based on the storage usage and retention period. For more information, see the [Pricing](https://www.alibabacloud.com/product/apsaradb-for-mongodb/pricing) tab of the ApsaraDB for MongoDB product page.
|
|
7065
|
+
*
|
|
7066
|
+
* @param request DescribeMongoDBLogConfigRequest
|
|
7067
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7068
|
+
* @return DescribeMongoDBLogConfigResponse
|
|
7069
|
+
*/
|
|
6238
7070
|
describeMongoDBLogConfigWithOptions(request: DescribeMongoDBLogConfigRequest, runtime: $Util.RuntimeOptions): Promise<DescribeMongoDBLogConfigResponse>;
|
|
7071
|
+
/**
|
|
7072
|
+
* This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7073
|
+
* This operation depends on the audit log feature of ApsaraDB for MongoDB. You can enable the audit log feature based on your business needs. For more information, see [Enable the audit log feature](~~59903~~)
|
|
7074
|
+
* * Starting from January 6, 2022, the official edition of the audit log feature has been launched in all regions, and new applications for the free trial edition have ended. For more information, see [Notice on official launch of the pay-as-you-go audit log feature and no more application for the free trial edition](~~377480~~)
|
|
7075
|
+
* * The official edition is charged based on the storage usage and retention period. For more information, see the [Pricing](https://www.alibabacloud.com/product/apsaradb-for-mongodb/pricing) tab of the ApsaraDB for MongoDB product page.
|
|
7076
|
+
*
|
|
7077
|
+
* @param request DescribeMongoDBLogConfigRequest
|
|
7078
|
+
* @return DescribeMongoDBLogConfigResponse
|
|
7079
|
+
*/
|
|
6239
7080
|
describeMongoDBLogConfig(request: DescribeMongoDBLogConfigRequest): Promise<DescribeMongoDBLogConfigResponse>;
|
|
6240
7081
|
describeParameterModificationHistoryWithOptions(request: DescribeParameterModificationHistoryRequest, runtime: $Util.RuntimeOptions): Promise<DescribeParameterModificationHistoryResponse>;
|
|
6241
7082
|
describeParameterModificationHistory(request: DescribeParameterModificationHistoryRequest): Promise<DescribeParameterModificationHistoryResponse>;
|
|
@@ -6245,43 +7086,253 @@ export default class Client extends OpenApi {
|
|
|
6245
7086
|
describeParameters(request: DescribeParametersRequest): Promise<DescribeParametersResponse>;
|
|
6246
7087
|
describePriceWithOptions(request: DescribePriceRequest, runtime: $Util.RuntimeOptions): Promise<DescribePriceResponse>;
|
|
6247
7088
|
describePrice(request: DescribePriceRequest): Promise<DescribePriceResponse>;
|
|
7089
|
+
/**
|
|
7090
|
+
* > To query available regions and zones where ApsaraDB for MongoDB instances can be created, call the [DescribeAvailableResource](~~149719~~) operation.
|
|
7091
|
+
*
|
|
7092
|
+
* @param request DescribeRegionsRequest
|
|
7093
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7094
|
+
* @return DescribeRegionsResponse
|
|
7095
|
+
*/
|
|
6248
7096
|
describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse>;
|
|
7097
|
+
/**
|
|
7098
|
+
* > To query available regions and zones where ApsaraDB for MongoDB instances can be created, call the [DescribeAvailableResource](~~149719~~) operation.
|
|
7099
|
+
*
|
|
7100
|
+
* @param request DescribeRegionsRequest
|
|
7101
|
+
* @return DescribeRegionsResponse
|
|
7102
|
+
*/
|
|
6249
7103
|
describeRegions(request: DescribeRegionsRequest): Promise<DescribeRegionsResponse>;
|
|
7104
|
+
/**
|
|
7105
|
+
* This operation is applicable to subscription instances.
|
|
7106
|
+
*
|
|
7107
|
+
* @param request DescribeRenewalPriceRequest
|
|
7108
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7109
|
+
* @return DescribeRenewalPriceResponse
|
|
7110
|
+
*/
|
|
6250
7111
|
describeRenewalPriceWithOptions(request: DescribeRenewalPriceRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRenewalPriceResponse>;
|
|
7112
|
+
/**
|
|
7113
|
+
* This operation is applicable to subscription instances.
|
|
7114
|
+
*
|
|
7115
|
+
* @param request DescribeRenewalPriceRequest
|
|
7116
|
+
* @return DescribeRenewalPriceResponse
|
|
7117
|
+
*/
|
|
6251
7118
|
describeRenewalPrice(request: DescribeRenewalPriceRequest): Promise<DescribeRenewalPriceResponse>;
|
|
7119
|
+
/**
|
|
7120
|
+
* This operation is applicable to replica set instances and standalone instances, but not to sharded cluster instances.
|
|
7121
|
+
*
|
|
7122
|
+
* @param request DescribeReplicaSetRoleRequest
|
|
7123
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7124
|
+
* @return DescribeReplicaSetRoleResponse
|
|
7125
|
+
*/
|
|
6252
7126
|
describeReplicaSetRoleWithOptions(request: DescribeReplicaSetRoleRequest, runtime: $Util.RuntimeOptions): Promise<DescribeReplicaSetRoleResponse>;
|
|
7127
|
+
/**
|
|
7128
|
+
* This operation is applicable to replica set instances and standalone instances, but not to sharded cluster instances.
|
|
7129
|
+
*
|
|
7130
|
+
* @param request DescribeReplicaSetRoleRequest
|
|
7131
|
+
* @return DescribeReplicaSetRoleResponse
|
|
7132
|
+
*/
|
|
6253
7133
|
describeReplicaSetRole(request: DescribeReplicaSetRoleRequest): Promise<DescribeReplicaSetRoleResponse>;
|
|
7134
|
+
/**
|
|
7135
|
+
* > For more information, see [View the zone of a node](~~123825~~).
|
|
7136
|
+
* This operation is applicable only to replica set and sharded cluster instances, but not to standalone instances.
|
|
7137
|
+
*
|
|
7138
|
+
* @param request DescribeRoleZoneInfoRequest
|
|
7139
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7140
|
+
* @return DescribeRoleZoneInfoResponse
|
|
7141
|
+
*/
|
|
6254
7142
|
describeRoleZoneInfoWithOptions(request: DescribeRoleZoneInfoRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRoleZoneInfoResponse>;
|
|
7143
|
+
/**
|
|
7144
|
+
* > For more information, see [View the zone of a node](~~123825~~).
|
|
7145
|
+
* This operation is applicable only to replica set and sharded cluster instances, but not to standalone instances.
|
|
7146
|
+
*
|
|
7147
|
+
* @param request DescribeRoleZoneInfoRequest
|
|
7148
|
+
* @return DescribeRoleZoneInfoResponse
|
|
7149
|
+
*/
|
|
6255
7150
|
describeRoleZoneInfo(request: DescribeRoleZoneInfoRequest): Promise<DescribeRoleZoneInfoResponse>;
|
|
7151
|
+
/**
|
|
7152
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7153
|
+
* * You can call this operation up to 30 times per minute. To call this operation at a higher frequency, use a Logstore. For more information, see [Manage a Logstore](~~48990~~).
|
|
7154
|
+
*
|
|
7155
|
+
* @param request DescribeRunningLogRecordsRequest
|
|
7156
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7157
|
+
* @return DescribeRunningLogRecordsResponse
|
|
7158
|
+
*/
|
|
6256
7159
|
describeRunningLogRecordsWithOptions(request: DescribeRunningLogRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRunningLogRecordsResponse>;
|
|
7160
|
+
/**
|
|
7161
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7162
|
+
* * You can call this operation up to 30 times per minute. To call this operation at a higher frequency, use a Logstore. For more information, see [Manage a Logstore](~~48990~~).
|
|
7163
|
+
*
|
|
7164
|
+
* @param request DescribeRunningLogRecordsRequest
|
|
7165
|
+
* @return DescribeRunningLogRecordsResponse
|
|
7166
|
+
*/
|
|
6257
7167
|
describeRunningLogRecords(request: DescribeRunningLogRecordsRequest): Promise<DescribeRunningLogRecordsResponse>;
|
|
6258
7168
|
describeSecurityGroupConfigurationWithOptions(request: DescribeSecurityGroupConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSecurityGroupConfigurationResponse>;
|
|
6259
7169
|
describeSecurityGroupConfiguration(request: DescribeSecurityGroupConfigurationRequest): Promise<DescribeSecurityGroupConfigurationResponse>;
|
|
6260
7170
|
describeSecurityIpsWithOptions(request: DescribeSecurityIpsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSecurityIpsResponse>;
|
|
6261
7171
|
describeSecurityIps(request: DescribeSecurityIpsRequest): Promise<DescribeSecurityIpsResponse>;
|
|
7172
|
+
/**
|
|
7173
|
+
* This operation supports sharded cluster instances only.
|
|
7174
|
+
*
|
|
7175
|
+
* @param request DescribeShardingNetworkAddressRequest
|
|
7176
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7177
|
+
* @return DescribeShardingNetworkAddressResponse
|
|
7178
|
+
*/
|
|
6262
7179
|
describeShardingNetworkAddressWithOptions(request: DescribeShardingNetworkAddressRequest, runtime: $Util.RuntimeOptions): Promise<DescribeShardingNetworkAddressResponse>;
|
|
7180
|
+
/**
|
|
7181
|
+
* This operation supports sharded cluster instances only.
|
|
7182
|
+
*
|
|
7183
|
+
* @param request DescribeShardingNetworkAddressRequest
|
|
7184
|
+
* @return DescribeShardingNetworkAddressResponse
|
|
7185
|
+
*/
|
|
6263
7186
|
describeShardingNetworkAddress(request: DescribeShardingNetworkAddressRequest): Promise<DescribeShardingNetworkAddressResponse>;
|
|
7187
|
+
/**
|
|
7188
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7189
|
+
* * You can call this operation up to 30 times per minute. To call this operation at a higher frequency, use a Logstore. For more information, see [Manage a Logstore](~~48990~~).
|
|
7190
|
+
*
|
|
7191
|
+
* @param request DescribeSlowLogRecordsRequest
|
|
7192
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7193
|
+
* @return DescribeSlowLogRecordsResponse
|
|
7194
|
+
*/
|
|
6264
7195
|
describeSlowLogRecordsWithOptions(request: DescribeSlowLogRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSlowLogRecordsResponse>;
|
|
7196
|
+
/**
|
|
7197
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7198
|
+
* * You can call this operation up to 30 times per minute. To call this operation at a higher frequency, use a Logstore. For more information, see [Manage a Logstore](~~48990~~).
|
|
7199
|
+
*
|
|
7200
|
+
* @param request DescribeSlowLogRecordsRequest
|
|
7201
|
+
* @return DescribeSlowLogRecordsResponse
|
|
7202
|
+
*/
|
|
6265
7203
|
describeSlowLogRecords(request: DescribeSlowLogRecordsRequest): Promise<DescribeSlowLogRecordsResponse>;
|
|
6266
7204
|
describeTagsWithOptions(request: DescribeTagsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeTagsResponse>;
|
|
6267
7205
|
describeTags(request: DescribeTagsRequest): Promise<DescribeTagsResponse>;
|
|
7206
|
+
/**
|
|
7207
|
+
* You can use the custom key obtained by calling the DescribeUserEncryptionKeyList operation to enable TDE. For more information, see [ModifyDBInstanceTDE](~~131267~~).
|
|
7208
|
+
*
|
|
7209
|
+
* @param request DescribeUserEncryptionKeyListRequest
|
|
7210
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7211
|
+
* @return DescribeUserEncryptionKeyListResponse
|
|
7212
|
+
*/
|
|
6268
7213
|
describeUserEncryptionKeyListWithOptions(request: DescribeUserEncryptionKeyListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeUserEncryptionKeyListResponse>;
|
|
7214
|
+
/**
|
|
7215
|
+
* You can use the custom key obtained by calling the DescribeUserEncryptionKeyList operation to enable TDE. For more information, see [ModifyDBInstanceTDE](~~131267~~).
|
|
7216
|
+
*
|
|
7217
|
+
* @param request DescribeUserEncryptionKeyListRequest
|
|
7218
|
+
* @return DescribeUserEncryptionKeyListResponse
|
|
7219
|
+
*/
|
|
6269
7220
|
describeUserEncryptionKeyList(request: DescribeUserEncryptionKeyListRequest): Promise<DescribeUserEncryptionKeyListResponse>;
|
|
7221
|
+
/**
|
|
7222
|
+
* Before you call this operation, make sure that the instance meets the following requirements:
|
|
7223
|
+
* * The billing method of the instance is subscription.
|
|
7224
|
+
* * The instance has expired and is in the **Locking** state.
|
|
7225
|
+
*
|
|
7226
|
+
* @param request DestroyInstanceRequest
|
|
7227
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7228
|
+
* @return DestroyInstanceResponse
|
|
7229
|
+
*/
|
|
6270
7230
|
destroyInstanceWithOptions(request: DestroyInstanceRequest, runtime: $Util.RuntimeOptions): Promise<DestroyInstanceResponse>;
|
|
7231
|
+
/**
|
|
7232
|
+
* Before you call this operation, make sure that the instance meets the following requirements:
|
|
7233
|
+
* * The billing method of the instance is subscription.
|
|
7234
|
+
* * The instance has expired and is in the **Locking** state.
|
|
7235
|
+
*
|
|
7236
|
+
* @param request DestroyInstanceRequest
|
|
7237
|
+
* @return DestroyInstanceResponse
|
|
7238
|
+
*/
|
|
6271
7239
|
destroyInstance(request: DestroyInstanceRequest): Promise<DestroyInstanceResponse>;
|
|
7240
|
+
/**
|
|
7241
|
+
* This operation is applicable to replica set instances and sharded cluster instances. You can call this operation to check whether resources are sufficient for creating an instance, upgrading a replica set or sharded cluster instance, or upgrading a single node of the sharded cluster instance.
|
|
7242
|
+
* > You can call this operation a maximum of 200 times per minute.
|
|
7243
|
+
*
|
|
7244
|
+
* @param request EvaluateResourceRequest
|
|
7245
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7246
|
+
* @return EvaluateResourceResponse
|
|
7247
|
+
*/
|
|
6272
7248
|
evaluateResourceWithOptions(request: EvaluateResourceRequest, runtime: $Util.RuntimeOptions): Promise<EvaluateResourceResponse>;
|
|
7249
|
+
/**
|
|
7250
|
+
* This operation is applicable to replica set instances and sharded cluster instances. You can call this operation to check whether resources are sufficient for creating an instance, upgrading a replica set or sharded cluster instance, or upgrading a single node of the sharded cluster instance.
|
|
7251
|
+
* > You can call this operation a maximum of 200 times per minute.
|
|
7252
|
+
*
|
|
7253
|
+
* @param request EvaluateResourceRequest
|
|
7254
|
+
* @return EvaluateResourceResponse
|
|
7255
|
+
*/
|
|
6273
7256
|
evaluateResource(request: EvaluateResourceRequest): Promise<EvaluateResourceResponse>;
|
|
6274
7257
|
listTagResourcesWithOptions(request: ListTagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<ListTagResourcesResponse>;
|
|
6275
7258
|
listTagResources(request: ListTagResourcesRequest): Promise<ListTagResourcesResponse>;
|
|
7259
|
+
/**
|
|
7260
|
+
* * This operation is available only for replica set instances that run MongoDB 4.2 or earlier and sharded cluster instances.
|
|
7261
|
+
* * If you have applied for a public endpoint for the ApsaraDB for MongoDB instance, you must call the [ReleasePublicNetworkAddress](~~67604~~) operation to release the public endpoint before you call the MigrateAvailableZone operation.
|
|
7262
|
+
* * Transparent data encryption (TDE) is disabled for the ApsaraDB for MongoDB instance.
|
|
7263
|
+
* * The source zone and the destination zone belong to the same region.
|
|
7264
|
+
* * A vSwitch is created in the destination zone. This prerequisite must be met if the instance resides in a virtual private cloud (VPC). For more information about how to create a vSwitch, see [Work with vSwitches](~~65387~~).
|
|
7265
|
+
*
|
|
7266
|
+
* @param request MigrateAvailableZoneRequest
|
|
7267
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7268
|
+
* @return MigrateAvailableZoneResponse
|
|
7269
|
+
*/
|
|
6276
7270
|
migrateAvailableZoneWithOptions(request: MigrateAvailableZoneRequest, runtime: $Util.RuntimeOptions): Promise<MigrateAvailableZoneResponse>;
|
|
7271
|
+
/**
|
|
7272
|
+
* * This operation is available only for replica set instances that run MongoDB 4.2 or earlier and sharded cluster instances.
|
|
7273
|
+
* * If you have applied for a public endpoint for the ApsaraDB for MongoDB instance, you must call the [ReleasePublicNetworkAddress](~~67604~~) operation to release the public endpoint before you call the MigrateAvailableZone operation.
|
|
7274
|
+
* * Transparent data encryption (TDE) is disabled for the ApsaraDB for MongoDB instance.
|
|
7275
|
+
* * The source zone and the destination zone belong to the same region.
|
|
7276
|
+
* * A vSwitch is created in the destination zone. This prerequisite must be met if the instance resides in a virtual private cloud (VPC). For more information about how to create a vSwitch, see [Work with vSwitches](~~65387~~).
|
|
7277
|
+
*
|
|
7278
|
+
* @param request MigrateAvailableZoneRequest
|
|
7279
|
+
* @return MigrateAvailableZoneResponse
|
|
7280
|
+
*/
|
|
6277
7281
|
migrateAvailableZone(request: MigrateAvailableZoneRequest): Promise<MigrateAvailableZoneResponse>;
|
|
7282
|
+
/**
|
|
7283
|
+
* This operation is applicable only to replica set instances, but not to standalone instances or sharded cluster instances.
|
|
7284
|
+
* > If you have applied for a public endpoint of the instance, you must first call the [ReleasePublicNetworkAddress](~~67604~~) operation to release the public endpoint.
|
|
7285
|
+
*
|
|
7286
|
+
* @param request MigrateToOtherZoneRequest
|
|
7287
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7288
|
+
* @return MigrateToOtherZoneResponse
|
|
7289
|
+
*/
|
|
6278
7290
|
migrateToOtherZoneWithOptions(request: MigrateToOtherZoneRequest, runtime: $Util.RuntimeOptions): Promise<MigrateToOtherZoneResponse>;
|
|
7291
|
+
/**
|
|
7292
|
+
* This operation is applicable only to replica set instances, but not to standalone instances or sharded cluster instances.
|
|
7293
|
+
* > If you have applied for a public endpoint of the instance, you must first call the [ReleasePublicNetworkAddress](~~67604~~) operation to release the public endpoint.
|
|
7294
|
+
*
|
|
7295
|
+
* @param request MigrateToOtherZoneRequest
|
|
7296
|
+
* @return MigrateToOtherZoneResponse
|
|
7297
|
+
*/
|
|
6279
7298
|
migrateToOtherZone(request: MigrateToOtherZoneRequest): Promise<MigrateToOtherZoneResponse>;
|
|
6280
7299
|
modifyAccountDescriptionWithOptions(request: ModifyAccountDescriptionRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAccountDescriptionResponse>;
|
|
6281
7300
|
modifyAccountDescription(request: ModifyAccountDescriptionRequest): Promise<ModifyAccountDescriptionResponse>;
|
|
7301
|
+
/**
|
|
7302
|
+
* * The instance must be in the running state when you call this operation.
|
|
7303
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7304
|
+
* * You can call this operation up to 30 times per minute. To call this operation at a higher frequency, use a Logstore. For more information, see [Manage a Logstore](~~48990~~).
|
|
7305
|
+
*
|
|
7306
|
+
* @param request ModifyAuditLogFilterRequest
|
|
7307
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7308
|
+
* @return ModifyAuditLogFilterResponse
|
|
7309
|
+
*/
|
|
6282
7310
|
modifyAuditLogFilterWithOptions(request: ModifyAuditLogFilterRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAuditLogFilterResponse>;
|
|
7311
|
+
/**
|
|
7312
|
+
* * The instance must be in the running state when you call this operation.
|
|
7313
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7314
|
+
* * You can call this operation up to 30 times per minute. To call this operation at a higher frequency, use a Logstore. For more information, see [Manage a Logstore](~~48990~~).
|
|
7315
|
+
*
|
|
7316
|
+
* @param request ModifyAuditLogFilterRequest
|
|
7317
|
+
* @return ModifyAuditLogFilterResponse
|
|
7318
|
+
*/
|
|
6283
7319
|
modifyAuditLogFilter(request: ModifyAuditLogFilterRequest): Promise<ModifyAuditLogFilterResponse>;
|
|
7320
|
+
/**
|
|
7321
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7322
|
+
* * You can call this operation up to 30 times per minute. To call this operation at a higher frequency, use a Logstore. For more information, see [Manage a Logstore](~~48990~~).
|
|
7323
|
+
*
|
|
7324
|
+
* @param request ModifyAuditPolicyRequest
|
|
7325
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7326
|
+
* @return ModifyAuditPolicyResponse
|
|
7327
|
+
*/
|
|
6284
7328
|
modifyAuditPolicyWithOptions(request: ModifyAuditPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAuditPolicyResponse>;
|
|
7329
|
+
/**
|
|
7330
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7331
|
+
* * You can call this operation up to 30 times per minute. To call this operation at a higher frequency, use a Logstore. For more information, see [Manage a Logstore](~~48990~~).
|
|
7332
|
+
*
|
|
7333
|
+
* @param request ModifyAuditPolicyRequest
|
|
7334
|
+
* @return ModifyAuditPolicyResponse
|
|
7335
|
+
*/
|
|
6285
7336
|
modifyAuditPolicy(request: ModifyAuditPolicyRequest): Promise<ModifyAuditPolicyResponse>;
|
|
6286
7337
|
modifyBackupPolicyWithOptions(request: ModifyBackupPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ModifyBackupPolicyResponse>;
|
|
6287
7338
|
modifyBackupPolicy(request: ModifyBackupPolicyRequest): Promise<ModifyBackupPolicyResponse>;
|
|
@@ -6291,56 +7342,495 @@ export default class Client extends OpenApi {
|
|
|
6291
7342
|
modifyDBInstanceDescription(request: ModifyDBInstanceDescriptionRequest): Promise<ModifyDBInstanceDescriptionResponse>;
|
|
6292
7343
|
modifyDBInstanceMaintainTimeWithOptions(request: ModifyDBInstanceMaintainTimeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceMaintainTimeResponse>;
|
|
6293
7344
|
modifyDBInstanceMaintainTime(request: ModifyDBInstanceMaintainTimeRequest): Promise<ModifyDBInstanceMaintainTimeResponse>;
|
|
7345
|
+
/**
|
|
7346
|
+
* > operation is currently unavailable.
|
|
7347
|
+
* Before you call this operation, make sure that the following requirements are met:
|
|
7348
|
+
* * A replica set or sharded cluster instance is used.
|
|
7349
|
+
* * MongoDB 3.4 (the latest minor version) or 4.0 must be selected.
|
|
7350
|
+
*
|
|
7351
|
+
* @param request ModifyDBInstanceMonitorRequest
|
|
7352
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7353
|
+
* @return ModifyDBInstanceMonitorResponse
|
|
7354
|
+
*/
|
|
6294
7355
|
modifyDBInstanceMonitorWithOptions(request: ModifyDBInstanceMonitorRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceMonitorResponse>;
|
|
7356
|
+
/**
|
|
7357
|
+
* > operation is currently unavailable.
|
|
7358
|
+
* Before you call this operation, make sure that the following requirements are met:
|
|
7359
|
+
* * A replica set or sharded cluster instance is used.
|
|
7360
|
+
* * MongoDB 3.4 (the latest minor version) or 4.0 must be selected.
|
|
7361
|
+
*
|
|
7362
|
+
* @param request ModifyDBInstanceMonitorRequest
|
|
7363
|
+
* @return ModifyDBInstanceMonitorResponse
|
|
7364
|
+
*/
|
|
6295
7365
|
modifyDBInstanceMonitor(request: ModifyDBInstanceMonitorRequest): Promise<ModifyDBInstanceMonitorResponse>;
|
|
7366
|
+
/**
|
|
7367
|
+
* Before you call this operation, make sure that the following requirements are met:
|
|
7368
|
+
* * The instance is in the running state.
|
|
7369
|
+
* * The network of the instance is in hybrid access mode.
|
|
7370
|
+
* > This operation is applicable only to replica set and sharded cluster instances, but not to standalone instances.
|
|
7371
|
+
*
|
|
7372
|
+
* @param request ModifyDBInstanceNetExpireTimeRequest
|
|
7373
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7374
|
+
* @return ModifyDBInstanceNetExpireTimeResponse
|
|
7375
|
+
*/
|
|
6296
7376
|
modifyDBInstanceNetExpireTimeWithOptions(request: ModifyDBInstanceNetExpireTimeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceNetExpireTimeResponse>;
|
|
7377
|
+
/**
|
|
7378
|
+
* Before you call this operation, make sure that the following requirements are met:
|
|
7379
|
+
* * The instance is in the running state.
|
|
7380
|
+
* * The network of the instance is in hybrid access mode.
|
|
7381
|
+
* > This operation is applicable only to replica set and sharded cluster instances, but not to standalone instances.
|
|
7382
|
+
*
|
|
7383
|
+
* @param request ModifyDBInstanceNetExpireTimeRequest
|
|
7384
|
+
* @return ModifyDBInstanceNetExpireTimeResponse
|
|
7385
|
+
*/
|
|
6297
7386
|
modifyDBInstanceNetExpireTime(request: ModifyDBInstanceNetExpireTimeRequest): Promise<ModifyDBInstanceNetExpireTimeResponse>;
|
|
7387
|
+
/**
|
|
7388
|
+
* This operation is applicable only to replica set instances and sharded cluster instances.
|
|
7389
|
+
*
|
|
7390
|
+
* @param request ModifyDBInstanceNetworkTypeRequest
|
|
7391
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7392
|
+
* @return ModifyDBInstanceNetworkTypeResponse
|
|
7393
|
+
*/
|
|
6298
7394
|
modifyDBInstanceNetworkTypeWithOptions(request: ModifyDBInstanceNetworkTypeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceNetworkTypeResponse>;
|
|
7395
|
+
/**
|
|
7396
|
+
* This operation is applicable only to replica set instances and sharded cluster instances.
|
|
7397
|
+
*
|
|
7398
|
+
* @param request ModifyDBInstanceNetworkTypeRequest
|
|
7399
|
+
* @return ModifyDBInstanceNetworkTypeResponse
|
|
7400
|
+
*/
|
|
6299
7401
|
modifyDBInstanceNetworkType(request: ModifyDBInstanceNetworkTypeRequest): Promise<ModifyDBInstanceNetworkTypeResponse>;
|
|
7402
|
+
/**
|
|
7403
|
+
* ## Usage
|
|
7404
|
+
* Before you call this operation, make sure that the following requirements are met:
|
|
7405
|
+
* * The instance is in the running state.
|
|
7406
|
+
* * The instance is a replica set instance.
|
|
7407
|
+
* * The engine version of the instance is \\<ph props="intl">3.4 or 4.0\\</ph>\\<ph props="china">3.4, 4.0, or 4.2\\</ph>.
|
|
7408
|
+
* > When you enable or disable SSL encryption or update the SSL certificate, the instance restarts. We recommend that you call this operation during off-peak hours.
|
|
7409
|
+
*
|
|
7410
|
+
* @param request ModifyDBInstanceSSLRequest
|
|
7411
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7412
|
+
* @return ModifyDBInstanceSSLResponse
|
|
7413
|
+
*/
|
|
6300
7414
|
modifyDBInstanceSSLWithOptions(request: ModifyDBInstanceSSLRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceSSLResponse>;
|
|
7415
|
+
/**
|
|
7416
|
+
* ## Usage
|
|
7417
|
+
* Before you call this operation, make sure that the following requirements are met:
|
|
7418
|
+
* * The instance is in the running state.
|
|
7419
|
+
* * The instance is a replica set instance.
|
|
7420
|
+
* * The engine version of the instance is \\<ph props="intl">3.4 or 4.0\\</ph>\\<ph props="china">3.4, 4.0, or 4.2\\</ph>.
|
|
7421
|
+
* > When you enable or disable SSL encryption or update the SSL certificate, the instance restarts. We recommend that you call this operation during off-peak hours.
|
|
7422
|
+
*
|
|
7423
|
+
* @param request ModifyDBInstanceSSLRequest
|
|
7424
|
+
* @return ModifyDBInstanceSSLResponse
|
|
7425
|
+
*/
|
|
6301
7426
|
modifyDBInstanceSSL(request: ModifyDBInstanceSSLRequest): Promise<ModifyDBInstanceSSLResponse>;
|
|
7427
|
+
/**
|
|
7428
|
+
* Before you call this operation, make sure that you understand the billing methods and [pricing](https://www.alibabacloud.com/zh/product/apsaradb-for-mongodb/pricing) of ApsaraDB for MongoDB.
|
|
7429
|
+
* This operation applies only to standalone and replica set instances. To modify the specifications of sharded cluster instances, you can call the [ModifyNodeSpec](~~61911~~), [CreateNode](~~61922~~), [DeleteNode](~~61816~~), or [ModifyNodeSpecBatch](~~61923~~) operation.
|
|
7430
|
+
*
|
|
7431
|
+
* @param request ModifyDBInstanceSpecRequest
|
|
7432
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7433
|
+
* @return ModifyDBInstanceSpecResponse
|
|
7434
|
+
*/
|
|
6302
7435
|
modifyDBInstanceSpecWithOptions(request: ModifyDBInstanceSpecRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceSpecResponse>;
|
|
7436
|
+
/**
|
|
7437
|
+
* Before you call this operation, make sure that you understand the billing methods and [pricing](https://www.alibabacloud.com/zh/product/apsaradb-for-mongodb/pricing) of ApsaraDB for MongoDB.
|
|
7438
|
+
* This operation applies only to standalone and replica set instances. To modify the specifications of sharded cluster instances, you can call the [ModifyNodeSpec](~~61911~~), [CreateNode](~~61922~~), [DeleteNode](~~61816~~), or [ModifyNodeSpecBatch](~~61923~~) operation.
|
|
7439
|
+
*
|
|
7440
|
+
* @param request ModifyDBInstanceSpecRequest
|
|
7441
|
+
* @return ModifyDBInstanceSpecResponse
|
|
7442
|
+
*/
|
|
6303
7443
|
modifyDBInstanceSpec(request: ModifyDBInstanceSpecRequest): Promise<ModifyDBInstanceSpecResponse>;
|
|
7444
|
+
/**
|
|
7445
|
+
* TDE allows you to perform real-time I/O encryption and decryption on data files. Data is encrypted before it is written to a disk and is decrypted when it is read from the disk to the memory. For more information, see [Configure TDE](~~131048~~).
|
|
7446
|
+
* > You cannot disable TDE after it is enabled.
|
|
7447
|
+
* Before you call this API operation, make sure that the ApsaraDB for MongoDB instance meets the following requirements:
|
|
7448
|
+
* * The instance is a replica set or sharded cluster instance.
|
|
7449
|
+
* * The storage engine of the instance is WiredTiger.
|
|
7450
|
+
* * The database engine version of the instance is 4.0 or 4.2. If the database engine version is earlier than 4.0, you can call the [UpgradeDBInstanceEngineVersion](~~67608~~) operation to upgrade the database engine.
|
|
7451
|
+
*
|
|
7452
|
+
* @param request ModifyDBInstanceTDERequest
|
|
7453
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7454
|
+
* @return ModifyDBInstanceTDEResponse
|
|
7455
|
+
*/
|
|
6304
7456
|
modifyDBInstanceTDEWithOptions(request: ModifyDBInstanceTDERequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceTDEResponse>;
|
|
7457
|
+
/**
|
|
7458
|
+
* TDE allows you to perform real-time I/O encryption and decryption on data files. Data is encrypted before it is written to a disk and is decrypted when it is read from the disk to the memory. For more information, see [Configure TDE](~~131048~~).
|
|
7459
|
+
* > You cannot disable TDE after it is enabled.
|
|
7460
|
+
* Before you call this API operation, make sure that the ApsaraDB for MongoDB instance meets the following requirements:
|
|
7461
|
+
* * The instance is a replica set or sharded cluster instance.
|
|
7462
|
+
* * The storage engine of the instance is WiredTiger.
|
|
7463
|
+
* * The database engine version of the instance is 4.0 or 4.2. If the database engine version is earlier than 4.0, you can call the [UpgradeDBInstanceEngineVersion](~~67608~~) operation to upgrade the database engine.
|
|
7464
|
+
*
|
|
7465
|
+
* @param request ModifyDBInstanceTDERequest
|
|
7466
|
+
* @return ModifyDBInstanceTDEResponse
|
|
7467
|
+
*/
|
|
6305
7468
|
modifyDBInstanceTDE(request: ModifyDBInstanceTDERequest): Promise<ModifyDBInstanceTDEResponse>;
|
|
7469
|
+
modifyGlobalSecurityIPGroupWithOptions(request: ModifyGlobalSecurityIPGroupRequest, runtime: $Util.RuntimeOptions): Promise<ModifyGlobalSecurityIPGroupResponse>;
|
|
7470
|
+
modifyGlobalSecurityIPGroup(request: ModifyGlobalSecurityIPGroupRequest): Promise<ModifyGlobalSecurityIPGroupResponse>;
|
|
7471
|
+
modifyGlobalSecurityIPGroupNameWithOptions(request: ModifyGlobalSecurityIPGroupNameRequest, runtime: $Util.RuntimeOptions): Promise<ModifyGlobalSecurityIPGroupNameResponse>;
|
|
7472
|
+
modifyGlobalSecurityIPGroupName(request: ModifyGlobalSecurityIPGroupNameRequest): Promise<ModifyGlobalSecurityIPGroupNameResponse>;
|
|
7473
|
+
modifyGlobalSecurityIPGroupRelationWithOptions(request: ModifyGlobalSecurityIPGroupRelationRequest, runtime: $Util.RuntimeOptions): Promise<ModifyGlobalSecurityIPGroupRelationResponse>;
|
|
7474
|
+
modifyGlobalSecurityIPGroupRelation(request: ModifyGlobalSecurityIPGroupRelationRequest): Promise<ModifyGlobalSecurityIPGroupRelationResponse>;
|
|
7475
|
+
/**
|
|
7476
|
+
* Before you call this operation, make sure that you fully understand the billing methods and [pricing](https://www.alibabacloud.com/zh/product/apsaradb-for-mongodb/pricing).
|
|
7477
|
+
* This operation is applicable to subscription instances.
|
|
7478
|
+
* > When auto-renewal is enabled, your payment will be collected nine days before the expiration date of ApsaraDB for MongoDB. Ensure that your account has sufficient balance.
|
|
7479
|
+
*
|
|
7480
|
+
* @param request ModifyInstanceAutoRenewalAttributeRequest
|
|
7481
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7482
|
+
* @return ModifyInstanceAutoRenewalAttributeResponse
|
|
7483
|
+
*/
|
|
6306
7484
|
modifyInstanceAutoRenewalAttributeWithOptions(request: ModifyInstanceAutoRenewalAttributeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyInstanceAutoRenewalAttributeResponse>;
|
|
7485
|
+
/**
|
|
7486
|
+
* Before you call this operation, make sure that you fully understand the billing methods and [pricing](https://www.alibabacloud.com/zh/product/apsaradb-for-mongodb/pricing).
|
|
7487
|
+
* This operation is applicable to subscription instances.
|
|
7488
|
+
* > When auto-renewal is enabled, your payment will be collected nine days before the expiration date of ApsaraDB for MongoDB. Ensure that your account has sufficient balance.
|
|
7489
|
+
*
|
|
7490
|
+
* @param request ModifyInstanceAutoRenewalAttributeRequest
|
|
7491
|
+
* @return ModifyInstanceAutoRenewalAttributeResponse
|
|
7492
|
+
*/
|
|
6307
7493
|
modifyInstanceAutoRenewalAttribute(request: ModifyInstanceAutoRenewalAttributeRequest): Promise<ModifyInstanceAutoRenewalAttributeResponse>;
|
|
7494
|
+
/**
|
|
7495
|
+
* You can call this operation to enable or disable password-free access from the same VPC as an ApsaraDB for MongoDB instance.
|
|
7496
|
+
*
|
|
7497
|
+
* @param request ModifyInstanceVpcAuthModeRequest
|
|
7498
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7499
|
+
* @return ModifyInstanceVpcAuthModeResponse
|
|
7500
|
+
*/
|
|
6308
7501
|
modifyInstanceVpcAuthModeWithOptions(request: ModifyInstanceVpcAuthModeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyInstanceVpcAuthModeResponse>;
|
|
7502
|
+
/**
|
|
7503
|
+
* You can call this operation to enable or disable password-free access from the same VPC as an ApsaraDB for MongoDB instance.
|
|
7504
|
+
*
|
|
7505
|
+
* @param request ModifyInstanceVpcAuthModeRequest
|
|
7506
|
+
* @return ModifyInstanceVpcAuthModeResponse
|
|
7507
|
+
*/
|
|
6309
7508
|
modifyInstanceVpcAuthMode(request: ModifyInstanceVpcAuthModeRequest): Promise<ModifyInstanceVpcAuthModeResponse>;
|
|
7509
|
+
/**
|
|
7510
|
+
* Before you call this operation, make sure that you understand the billing methods and [pricing](https://www.alibabacloud.com/zh/product/apsaradb-for-mongodb/pricing) of ApsaraDB for MongoDB.
|
|
7511
|
+
* > This operation is applicable only to sharded cluster instances.
|
|
7512
|
+
*
|
|
7513
|
+
* @param request ModifyNodeSpecRequest
|
|
7514
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7515
|
+
* @return ModifyNodeSpecResponse
|
|
7516
|
+
*/
|
|
6310
7517
|
modifyNodeSpecWithOptions(request: ModifyNodeSpecRequest, runtime: $Util.RuntimeOptions): Promise<ModifyNodeSpecResponse>;
|
|
7518
|
+
/**
|
|
7519
|
+
* Before you call this operation, make sure that you understand the billing methods and [pricing](https://www.alibabacloud.com/zh/product/apsaradb-for-mongodb/pricing) of ApsaraDB for MongoDB.
|
|
7520
|
+
* > This operation is applicable only to sharded cluster instances.
|
|
7521
|
+
*
|
|
7522
|
+
* @param request ModifyNodeSpecRequest
|
|
7523
|
+
* @return ModifyNodeSpecResponse
|
|
7524
|
+
*/
|
|
6311
7525
|
modifyNodeSpec(request: ModifyNodeSpecRequest): Promise<ModifyNodeSpecResponse>;
|
|
7526
|
+
/**
|
|
7527
|
+
* Make sure that you fully understand the billing methods and [pricing](https://www.aliyun.com/price/product#/mongodb/detail) of ApsaraDB for MongoDB before you call this operation.
|
|
7528
|
+
* This operation is applicable to only sharded cluster instances.
|
|
7529
|
+
*
|
|
7530
|
+
* @param request ModifyNodeSpecBatchRequest
|
|
7531
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7532
|
+
* @return ModifyNodeSpecBatchResponse
|
|
7533
|
+
*/
|
|
6312
7534
|
modifyNodeSpecBatchWithOptions(request: ModifyNodeSpecBatchRequest, runtime: $Util.RuntimeOptions): Promise<ModifyNodeSpecBatchResponse>;
|
|
7535
|
+
/**
|
|
7536
|
+
* Make sure that you fully understand the billing methods and [pricing](https://www.aliyun.com/price/product#/mongodb/detail) of ApsaraDB for MongoDB before you call this operation.
|
|
7537
|
+
* This operation is applicable to only sharded cluster instances.
|
|
7538
|
+
*
|
|
7539
|
+
* @param request ModifyNodeSpecBatchRequest
|
|
7540
|
+
* @return ModifyNodeSpecBatchResponse
|
|
7541
|
+
*/
|
|
6313
7542
|
modifyNodeSpecBatch(request: ModifyNodeSpecBatchRequest): Promise<ModifyNodeSpecBatchResponse>;
|
|
7543
|
+
/**
|
|
7544
|
+
* ## Precautions
|
|
7545
|
+
* * The instance must be in the Running state when you call this operation.
|
|
7546
|
+
* * If you call this operation to modify specific instance parameters and the modification for part of the parameters can take effect only after an instance restart, the instance is automatically restarted after this operation is called. You can call the [DescribeParameterTemplates](~~67618~~) operation to query the parameters that take effect only after the instance is restarted.
|
|
7547
|
+
*
|
|
7548
|
+
* @param request ModifyParametersRequest
|
|
7549
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7550
|
+
* @return ModifyParametersResponse
|
|
7551
|
+
*/
|
|
6314
7552
|
modifyParametersWithOptions(request: ModifyParametersRequest, runtime: $Util.RuntimeOptions): Promise<ModifyParametersResponse>;
|
|
7553
|
+
/**
|
|
7554
|
+
* ## Precautions
|
|
7555
|
+
* * The instance must be in the Running state when you call this operation.
|
|
7556
|
+
* * If you call this operation to modify specific instance parameters and the modification for part of the parameters can take effect only after an instance restart, the instance is automatically restarted after this operation is called. You can call the [DescribeParameterTemplates](~~67618~~) operation to query the parameters that take effect only after the instance is restarted.
|
|
7557
|
+
*
|
|
7558
|
+
* @param request ModifyParametersRequest
|
|
7559
|
+
* @return ModifyParametersResponse
|
|
7560
|
+
*/
|
|
6315
7561
|
modifyParameters(request: ModifyParametersRequest): Promise<ModifyParametersResponse>;
|
|
7562
|
+
/**
|
|
7563
|
+
* Resource Management allows you to build an organizational structure for resources based on your business requirements. You can use resource directories, folders, accounts, and resource groups to hierarchically organize and manage resources. For more information, see [What is Resource Management?](~~94475~~)
|
|
7564
|
+
*
|
|
7565
|
+
* @param request ModifyResourceGroupRequest
|
|
7566
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7567
|
+
* @return ModifyResourceGroupResponse
|
|
7568
|
+
*/
|
|
6316
7569
|
modifyResourceGroupWithOptions(request: ModifyResourceGroupRequest, runtime: $Util.RuntimeOptions): Promise<ModifyResourceGroupResponse>;
|
|
7570
|
+
/**
|
|
7571
|
+
* Resource Management allows you to build an organizational structure for resources based on your business requirements. You can use resource directories, folders, accounts, and resource groups to hierarchically organize and manage resources. For more information, see [What is Resource Management?](~~94475~~)
|
|
7572
|
+
*
|
|
7573
|
+
* @param request ModifyResourceGroupRequest
|
|
7574
|
+
* @return ModifyResourceGroupResponse
|
|
7575
|
+
*/
|
|
6317
7576
|
modifyResourceGroup(request: ModifyResourceGroupRequest): Promise<ModifyResourceGroupResponse>;
|
|
7577
|
+
/**
|
|
7578
|
+
* > For a sharded cluster instance, the bound ECS security group takes effect only for mongos nodes.
|
|
7579
|
+
*
|
|
7580
|
+
* @param request ModifySecurityGroupConfigurationRequest
|
|
7581
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7582
|
+
* @return ModifySecurityGroupConfigurationResponse
|
|
7583
|
+
*/
|
|
6318
7584
|
modifySecurityGroupConfigurationWithOptions(request: ModifySecurityGroupConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<ModifySecurityGroupConfigurationResponse>;
|
|
7585
|
+
/**
|
|
7586
|
+
* > For a sharded cluster instance, the bound ECS security group takes effect only for mongos nodes.
|
|
7587
|
+
*
|
|
7588
|
+
* @param request ModifySecurityGroupConfigurationRequest
|
|
7589
|
+
* @return ModifySecurityGroupConfigurationResponse
|
|
7590
|
+
*/
|
|
6319
7591
|
modifySecurityGroupConfiguration(request: ModifySecurityGroupConfigurationRequest): Promise<ModifySecurityGroupConfigurationResponse>;
|
|
6320
7592
|
modifySecurityIpsWithOptions(request: ModifySecurityIpsRequest, runtime: $Util.RuntimeOptions): Promise<ModifySecurityIpsResponse>;
|
|
6321
7593
|
modifySecurityIps(request: ModifySecurityIpsRequest): Promise<ModifySecurityIpsResponse>;
|
|
7594
|
+
/**
|
|
7595
|
+
* * This operation can be used to release the internal endpoint of a shard or Configserver node in a sharded cluster instance. For more information, see [Release the endpoint of a shard or Configserver node](~~134067~~).
|
|
7596
|
+
* * To release the public endpoint of a shard or Configserver node in a sharded cluster instance, you can call the [ReleasePublicNetworkAddress](~~67604~~) operation.
|
|
7597
|
+
*
|
|
7598
|
+
* @param request ReleaseNodePrivateNetworkAddressRequest
|
|
7599
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7600
|
+
* @return ReleaseNodePrivateNetworkAddressResponse
|
|
7601
|
+
*/
|
|
6322
7602
|
releaseNodePrivateNetworkAddressWithOptions(request: ReleaseNodePrivateNetworkAddressRequest, runtime: $Util.RuntimeOptions): Promise<ReleaseNodePrivateNetworkAddressResponse>;
|
|
7603
|
+
/**
|
|
7604
|
+
* * This operation can be used to release the internal endpoint of a shard or Configserver node in a sharded cluster instance. For more information, see [Release the endpoint of a shard or Configserver node](~~134067~~).
|
|
7605
|
+
* * To release the public endpoint of a shard or Configserver node in a sharded cluster instance, you can call the [ReleasePublicNetworkAddress](~~67604~~) operation.
|
|
7606
|
+
*
|
|
7607
|
+
* @param request ReleaseNodePrivateNetworkAddressRequest
|
|
7608
|
+
* @return ReleaseNodePrivateNetworkAddressResponse
|
|
7609
|
+
*/
|
|
6323
7610
|
releaseNodePrivateNetworkAddress(request: ReleaseNodePrivateNetworkAddressRequest): Promise<ReleaseNodePrivateNetworkAddressResponse>;
|
|
6324
7611
|
releasePublicNetworkAddressWithOptions(request: ReleasePublicNetworkAddressRequest, runtime: $Util.RuntimeOptions): Promise<ReleasePublicNetworkAddressResponse>;
|
|
6325
7612
|
releasePublicNetworkAddress(request: ReleasePublicNetworkAddressRequest): Promise<ReleasePublicNetworkAddressResponse>;
|
|
7613
|
+
/**
|
|
7614
|
+
* Make sure that you fully understand the billing methods and [pricing](https://www.alibabacloud.com/zh/product/apsaradb-for-mongodb/pricing) of ApsaraDB for MongoDB before you call this operation.
|
|
7615
|
+
* This parameter is only applicable to Subscription instances.
|
|
7616
|
+
*
|
|
7617
|
+
* @param request RenewDBInstanceRequest
|
|
7618
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7619
|
+
* @return RenewDBInstanceResponse
|
|
7620
|
+
*/
|
|
6326
7621
|
renewDBInstanceWithOptions(request: RenewDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<RenewDBInstanceResponse>;
|
|
7622
|
+
/**
|
|
7623
|
+
* Make sure that you fully understand the billing methods and [pricing](https://www.alibabacloud.com/zh/product/apsaradb-for-mongodb/pricing) of ApsaraDB for MongoDB before you call this operation.
|
|
7624
|
+
* This parameter is only applicable to Subscription instances.
|
|
7625
|
+
*
|
|
7626
|
+
* @param request RenewDBInstanceRequest
|
|
7627
|
+
* @return RenewDBInstanceResponse
|
|
7628
|
+
*/
|
|
6327
7629
|
renewDBInstance(request: RenewDBInstanceRequest): Promise<RenewDBInstanceResponse>;
|
|
7630
|
+
/**
|
|
7631
|
+
* > This operation can reset only the password of the root account of an instance.
|
|
7632
|
+
*
|
|
7633
|
+
* @param request ResetAccountPasswordRequest
|
|
7634
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7635
|
+
* @return ResetAccountPasswordResponse
|
|
7636
|
+
*/
|
|
6328
7637
|
resetAccountPasswordWithOptions(request: ResetAccountPasswordRequest, runtime: $Util.RuntimeOptions): Promise<ResetAccountPasswordResponse>;
|
|
7638
|
+
/**
|
|
7639
|
+
* > This operation can reset only the password of the root account of an instance.
|
|
7640
|
+
*
|
|
7641
|
+
* @param request ResetAccountPasswordRequest
|
|
7642
|
+
* @return ResetAccountPasswordResponse
|
|
7643
|
+
*/
|
|
6329
7644
|
resetAccountPassword(request: ResetAccountPasswordRequest): Promise<ResetAccountPasswordResponse>;
|
|
7645
|
+
/**
|
|
7646
|
+
* This operation can also be used to restart a shard or mongos node in a sharded cluster instance.
|
|
7647
|
+
*
|
|
7648
|
+
* @param request RestartDBInstanceRequest
|
|
7649
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7650
|
+
* @return RestartDBInstanceResponse
|
|
7651
|
+
*/
|
|
6330
7652
|
restartDBInstanceWithOptions(request: RestartDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<RestartDBInstanceResponse>;
|
|
7653
|
+
/**
|
|
7654
|
+
* This operation can also be used to restart a shard or mongos node in a sharded cluster instance.
|
|
7655
|
+
*
|
|
7656
|
+
* @param request RestartDBInstanceRequest
|
|
7657
|
+
* @return RestartDBInstanceResponse
|
|
7658
|
+
*/
|
|
6331
7659
|
restartDBInstance(request: RestartDBInstanceRequest): Promise<RestartDBInstanceResponse>;
|
|
7660
|
+
/**
|
|
7661
|
+
* This operation is applicable to replica set instances, but cannot be called on standalone instances or sharded cluster instances. You can use the following methods to clone an instance: [Create an instance from a backup](~~55013~~) to clone a standalone instance. Call the [CreateShardingDBInstance](~~61884~~) operation to clone a sharded cluster instance.
|
|
7662
|
+
* > This operation overwrites the data of the current instance, and the data cannot be recovered. Exercise caution when performing this operation.
|
|
7663
|
+
*
|
|
7664
|
+
* @param request RestoreDBInstanceRequest
|
|
7665
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7666
|
+
* @return RestoreDBInstanceResponse
|
|
7667
|
+
*/
|
|
6332
7668
|
restoreDBInstanceWithOptions(request: RestoreDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<RestoreDBInstanceResponse>;
|
|
7669
|
+
/**
|
|
7670
|
+
* This operation is applicable to replica set instances, but cannot be called on standalone instances or sharded cluster instances. You can use the following methods to clone an instance: [Create an instance from a backup](~~55013~~) to clone a standalone instance. Call the [CreateShardingDBInstance](~~61884~~) operation to clone a sharded cluster instance.
|
|
7671
|
+
* > This operation overwrites the data of the current instance, and the data cannot be recovered. Exercise caution when performing this operation.
|
|
7672
|
+
*
|
|
7673
|
+
* @param request RestoreDBInstanceRequest
|
|
7674
|
+
* @return RestoreDBInstanceResponse
|
|
7675
|
+
*/
|
|
6333
7676
|
restoreDBInstance(request: RestoreDBInstanceRequest): Promise<RestoreDBInstanceResponse>;
|
|
7677
|
+
/**
|
|
7678
|
+
* The instance must be running when you call this operation.
|
|
7679
|
+
* >
|
|
7680
|
+
* * This operation is applicable to replica set instances and sharded cluster instances, but cannot be performed on standalone instances.
|
|
7681
|
+
* * On replica set instances, the switch is performed between instances. On sharded cluster instances, the switch is performed between shards.
|
|
7682
|
+
*
|
|
7683
|
+
* @param request SwitchDBInstanceHARequest
|
|
7684
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7685
|
+
* @return SwitchDBInstanceHAResponse
|
|
7686
|
+
*/
|
|
6334
7687
|
switchDBInstanceHAWithOptions(request: SwitchDBInstanceHARequest, runtime: $Util.RuntimeOptions): Promise<SwitchDBInstanceHAResponse>;
|
|
7688
|
+
/**
|
|
7689
|
+
* The instance must be running when you call this operation.
|
|
7690
|
+
* >
|
|
7691
|
+
* * This operation is applicable to replica set instances and sharded cluster instances, but cannot be performed on standalone instances.
|
|
7692
|
+
* * On replica set instances, the switch is performed between instances. On sharded cluster instances, the switch is performed between shards.
|
|
7693
|
+
*
|
|
7694
|
+
* @param request SwitchDBInstanceHARequest
|
|
7695
|
+
* @return SwitchDBInstanceHAResponse
|
|
7696
|
+
*/
|
|
6335
7697
|
switchDBInstanceHA(request: SwitchDBInstanceHARequest): Promise<SwitchDBInstanceHAResponse>;
|
|
7698
|
+
/**
|
|
7699
|
+
* You can create multiple tags and bind them to multiple instances. This allows you to classify and filter instances by tag.
|
|
7700
|
+
* * A tag consists of a key and a value. Each key must be unique in a region for an Alibaba Cloud account. Different keys can have the same value.
|
|
7701
|
+
* * If the tag you specify does not exist, this tag is automatically created and bound to the specified instance.
|
|
7702
|
+
* * If a tag that has the same key is already bound to the instance, the new tag overwrites the existing tag.
|
|
7703
|
+
* * You can bind up to 20 tags to each instance.
|
|
7704
|
+
* * You can bind tags to up to 50 instances each time you call the operation.
|
|
7705
|
+
*
|
|
7706
|
+
* @param request TagResourcesRequest
|
|
7707
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7708
|
+
* @return TagResourcesResponse
|
|
7709
|
+
*/
|
|
6336
7710
|
tagResourcesWithOptions(request: TagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<TagResourcesResponse>;
|
|
7711
|
+
/**
|
|
7712
|
+
* You can create multiple tags and bind them to multiple instances. This allows you to classify and filter instances by tag.
|
|
7713
|
+
* * A tag consists of a key and a value. Each key must be unique in a region for an Alibaba Cloud account. Different keys can have the same value.
|
|
7714
|
+
* * If the tag you specify does not exist, this tag is automatically created and bound to the specified instance.
|
|
7715
|
+
* * If a tag that has the same key is already bound to the instance, the new tag overwrites the existing tag.
|
|
7716
|
+
* * You can bind up to 20 tags to each instance.
|
|
7717
|
+
* * You can bind tags to up to 50 instances each time you call the operation.
|
|
7718
|
+
*
|
|
7719
|
+
* @param request TagResourcesRequest
|
|
7720
|
+
* @return TagResourcesResponse
|
|
7721
|
+
*/
|
|
6337
7722
|
tagResources(request: TagResourcesRequest): Promise<TagResourcesResponse>;
|
|
7723
|
+
/**
|
|
7724
|
+
* Before you call this operation, make sure that you understand the billing methods and [pricing](https://www.aliyun.com/price/product#/mongodb/detail) of ApsaraDB for MongoDB.
|
|
7725
|
+
* Before you call this API operation, make sure that the ApsaraDB for MongoDB instance meets the following requirements:
|
|
7726
|
+
* * The instance is in the Running state.
|
|
7727
|
+
* * Your instance has no unpaid billing method change orders.
|
|
7728
|
+
* * The instance type is available for purchase. For more information about unavailable instance types, see [Instance types](~~57141~~).
|
|
7729
|
+
* > To change the billing method of an instance whose instance type is no longer available to purchase, call the [ModifyDBInstanceSpec](~~61816~~) or [ModifyNodeSpec](~~61923~~) operation to first change the instance type.
|
|
7730
|
+
*
|
|
7731
|
+
* @param request TransformInstanceChargeTypeRequest
|
|
7732
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7733
|
+
* @return TransformInstanceChargeTypeResponse
|
|
7734
|
+
*/
|
|
7735
|
+
transformInstanceChargeTypeWithOptions(request: TransformInstanceChargeTypeRequest, runtime: $Util.RuntimeOptions): Promise<TransformInstanceChargeTypeResponse>;
|
|
7736
|
+
/**
|
|
7737
|
+
* Before you call this operation, make sure that you understand the billing methods and [pricing](https://www.aliyun.com/price/product#/mongodb/detail) of ApsaraDB for MongoDB.
|
|
7738
|
+
* Before you call this API operation, make sure that the ApsaraDB for MongoDB instance meets the following requirements:
|
|
7739
|
+
* * The instance is in the Running state.
|
|
7740
|
+
* * Your instance has no unpaid billing method change orders.
|
|
7741
|
+
* * The instance type is available for purchase. For more information about unavailable instance types, see [Instance types](~~57141~~).
|
|
7742
|
+
* > To change the billing method of an instance whose instance type is no longer available to purchase, call the [ModifyDBInstanceSpec](~~61816~~) or [ModifyNodeSpec](~~61923~~) operation to first change the instance type.
|
|
7743
|
+
*
|
|
7744
|
+
* @param request TransformInstanceChargeTypeRequest
|
|
7745
|
+
* @return TransformInstanceChargeTypeResponse
|
|
7746
|
+
*/
|
|
7747
|
+
transformInstanceChargeType(request: TransformInstanceChargeTypeRequest): Promise<TransformInstanceChargeTypeResponse>;
|
|
7748
|
+
/**
|
|
7749
|
+
* Before you call this operation, make sure that you understand the billing methods and [pricing](https://www.alibabacloud.com/zh/product/apsaradb-for-mongodb/pricing).
|
|
7750
|
+
* A subscription instance cannot be changed to a pay-as-you-go instance. To avoid wasting resources, proceed with caution.
|
|
7751
|
+
* Before you call this API operation, make sure that the ApsaraDB for MongoDB instance meets the following requirements:
|
|
7752
|
+
* * The instance is in the running state.
|
|
7753
|
+
* * The billing method of the instance is pay-as-you-go.
|
|
7754
|
+
* * The instance has no unpaid subscription orders.
|
|
7755
|
+
* * The instance type is available for purchase. For more information about unavailable instance types, see [Instance types](~~57141~~).
|
|
7756
|
+
* > To change the billing method of an instance whose instance type is no longer available to subscription, call the [ModifyDBInstanceSpec](~~61816~~) or [ModifyNodeSpec](~~61923~~) operation to first change the instance type.
|
|
7757
|
+
*
|
|
7758
|
+
* @param request TransformToPrePaidRequest
|
|
7759
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7760
|
+
* @return TransformToPrePaidResponse
|
|
7761
|
+
*/
|
|
6338
7762
|
transformToPrePaidWithOptions(request: TransformToPrePaidRequest, runtime: $Util.RuntimeOptions): Promise<TransformToPrePaidResponse>;
|
|
7763
|
+
/**
|
|
7764
|
+
* Before you call this operation, make sure that you understand the billing methods and [pricing](https://www.alibabacloud.com/zh/product/apsaradb-for-mongodb/pricing).
|
|
7765
|
+
* A subscription instance cannot be changed to a pay-as-you-go instance. To avoid wasting resources, proceed with caution.
|
|
7766
|
+
* Before you call this API operation, make sure that the ApsaraDB for MongoDB instance meets the following requirements:
|
|
7767
|
+
* * The instance is in the running state.
|
|
7768
|
+
* * The billing method of the instance is pay-as-you-go.
|
|
7769
|
+
* * The instance has no unpaid subscription orders.
|
|
7770
|
+
* * The instance type is available for purchase. For more information about unavailable instance types, see [Instance types](~~57141~~).
|
|
7771
|
+
* > To change the billing method of an instance whose instance type is no longer available to subscription, call the [ModifyDBInstanceSpec](~~61816~~) or [ModifyNodeSpec](~~61923~~) operation to first change the instance type.
|
|
7772
|
+
*
|
|
7773
|
+
* @param request TransformToPrePaidRequest
|
|
7774
|
+
* @return TransformToPrePaidResponse
|
|
7775
|
+
*/
|
|
6339
7776
|
transformToPrePaid(request: TransformToPrePaidRequest): Promise<TransformToPrePaidResponse>;
|
|
7777
|
+
/**
|
|
7778
|
+
* >
|
|
7779
|
+
* * You can remove up to 20 tags at a time.
|
|
7780
|
+
* * If you remove a tag from all instances, the tag is automatically deleted.
|
|
7781
|
+
*
|
|
7782
|
+
* @param request UntagResourcesRequest
|
|
7783
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7784
|
+
* @return UntagResourcesResponse
|
|
7785
|
+
*/
|
|
6340
7786
|
untagResourcesWithOptions(request: UntagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<UntagResourcesResponse>;
|
|
7787
|
+
/**
|
|
7788
|
+
* >
|
|
7789
|
+
* * You can remove up to 20 tags at a time.
|
|
7790
|
+
* * If you remove a tag from all instances, the tag is automatically deleted.
|
|
7791
|
+
*
|
|
7792
|
+
* @param request UntagResourcesRequest
|
|
7793
|
+
* @return UntagResourcesResponse
|
|
7794
|
+
*/
|
|
6341
7795
|
untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse>;
|
|
7796
|
+
/**
|
|
7797
|
+
* The instance must be in the running state when you call this operation.
|
|
7798
|
+
* > * The available database versions depend on the storage engine used by the instance. For more information, see [Upgrades of MongoDB major versions](~~398673~~). You can also call the [DescribeAvailableEngineVersion](~~141355~~) operation to query the available database versions.
|
|
7799
|
+
* > * You cannot downgrade the MongoDB version of an instance after you upgrade it.
|
|
7800
|
+
* > * The instance is automatically restarted for two to three times during the upgrade process. Make sure that you upgrade the instance during off-peak hours.
|
|
7801
|
+
*
|
|
7802
|
+
* @param request UpgradeDBInstanceEngineVersionRequest
|
|
7803
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7804
|
+
* @return UpgradeDBInstanceEngineVersionResponse
|
|
7805
|
+
*/
|
|
6342
7806
|
upgradeDBInstanceEngineVersionWithOptions(request: UpgradeDBInstanceEngineVersionRequest, runtime: $Util.RuntimeOptions): Promise<UpgradeDBInstanceEngineVersionResponse>;
|
|
7807
|
+
/**
|
|
7808
|
+
* The instance must be in the running state when you call this operation.
|
|
7809
|
+
* > * The available database versions depend on the storage engine used by the instance. For more information, see [Upgrades of MongoDB major versions](~~398673~~). You can also call the [DescribeAvailableEngineVersion](~~141355~~) operation to query the available database versions.
|
|
7810
|
+
* > * You cannot downgrade the MongoDB version of an instance after you upgrade it.
|
|
7811
|
+
* > * The instance is automatically restarted for two to three times during the upgrade process. Make sure that you upgrade the instance during off-peak hours.
|
|
7812
|
+
*
|
|
7813
|
+
* @param request UpgradeDBInstanceEngineVersionRequest
|
|
7814
|
+
* @return UpgradeDBInstanceEngineVersionResponse
|
|
7815
|
+
*/
|
|
6343
7816
|
upgradeDBInstanceEngineVersion(request: UpgradeDBInstanceEngineVersionRequest): Promise<UpgradeDBInstanceEngineVersionResponse>;
|
|
7817
|
+
/**
|
|
7818
|
+
* When you call the UpgradeDBInstanceKernelVersion operation, the instance must be in the Running state.
|
|
7819
|
+
* > * The UpgradeDBInstanceKernelVersion operation is applicable to replica set and sharded cluster instances, but not to standalone instances.
|
|
7820
|
+
* > * The instance will be restarted once during the upgrade. Call this operation during off-peak hours.
|
|
7821
|
+
*
|
|
7822
|
+
* @param request UpgradeDBInstanceKernelVersionRequest
|
|
7823
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7824
|
+
* @return UpgradeDBInstanceKernelVersionResponse
|
|
7825
|
+
*/
|
|
6344
7826
|
upgradeDBInstanceKernelVersionWithOptions(request: UpgradeDBInstanceKernelVersionRequest, runtime: $Util.RuntimeOptions): Promise<UpgradeDBInstanceKernelVersionResponse>;
|
|
7827
|
+
/**
|
|
7828
|
+
* When you call the UpgradeDBInstanceKernelVersion operation, the instance must be in the Running state.
|
|
7829
|
+
* > * The UpgradeDBInstanceKernelVersion operation is applicable to replica set and sharded cluster instances, but not to standalone instances.
|
|
7830
|
+
* > * The instance will be restarted once during the upgrade. Call this operation during off-peak hours.
|
|
7831
|
+
*
|
|
7832
|
+
* @param request UpgradeDBInstanceKernelVersionRequest
|
|
7833
|
+
* @return UpgradeDBInstanceKernelVersionResponse
|
|
7834
|
+
*/
|
|
6345
7835
|
upgradeDBInstanceKernelVersion(request: UpgradeDBInstanceKernelVersionRequest): Promise<UpgradeDBInstanceKernelVersionResponse>;
|
|
6346
7836
|
}
|