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