@alicloud/dds20151201 3.6.9 → 3.6.11
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 +1628 -134
- package/dist/client.js +2372 -284
- package/dist/client.js.map +1 -1
- package/package.json +5 -5
- package/src/client.ts +2769 -401
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,58 @@ 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
|
+
resourceOwnerAccount?: string;
|
|
4619
|
+
resourceOwnerId?: number;
|
|
4620
|
+
securityToken?: string;
|
|
4621
|
+
static names(): {
|
|
4622
|
+
[key: string]: string;
|
|
4623
|
+
};
|
|
4624
|
+
static types(): {
|
|
4625
|
+
[key: string]: any;
|
|
4626
|
+
};
|
|
4627
|
+
constructor(map?: {
|
|
4628
|
+
[key: string]: any;
|
|
4629
|
+
});
|
|
4630
|
+
}
|
|
4631
|
+
export declare class TransformInstanceChargeTypeResponseBody extends $tea.Model {
|
|
4632
|
+
orderId?: string;
|
|
4633
|
+
requestId?: string;
|
|
4634
|
+
static names(): {
|
|
4635
|
+
[key: string]: string;
|
|
4636
|
+
};
|
|
4637
|
+
static types(): {
|
|
4638
|
+
[key: string]: any;
|
|
4639
|
+
};
|
|
4640
|
+
constructor(map?: {
|
|
4641
|
+
[key: string]: any;
|
|
4642
|
+
});
|
|
4643
|
+
}
|
|
4644
|
+
export declare class TransformInstanceChargeTypeResponse extends $tea.Model {
|
|
4645
|
+
headers: {
|
|
4646
|
+
[key: string]: string;
|
|
4647
|
+
};
|
|
4648
|
+
statusCode: number;
|
|
4649
|
+
body: TransformInstanceChargeTypeResponseBody;
|
|
4650
|
+
static names(): {
|
|
4651
|
+
[key: string]: string;
|
|
4652
|
+
};
|
|
4653
|
+
static types(): {
|
|
4654
|
+
[key: string]: any;
|
|
4655
|
+
};
|
|
4656
|
+
constructor(map?: {
|
|
4657
|
+
[key: string]: any;
|
|
4658
|
+
});
|
|
4659
|
+
}
|
|
4254
4660
|
export declare class TransformToPrePaidRequest extends $tea.Model {
|
|
4255
4661
|
autoPay?: boolean;
|
|
4256
4662
|
autoRenew?: string;
|
|
@@ -4442,6 +4848,34 @@ export declare class UpgradeDBInstanceKernelVersionResponse extends $tea.Model {
|
|
|
4442
4848
|
[key: string]: any;
|
|
4443
4849
|
});
|
|
4444
4850
|
}
|
|
4851
|
+
export declare class CreateDBInstanceRequestTag extends $tea.Model {
|
|
4852
|
+
key?: string;
|
|
4853
|
+
value?: string;
|
|
4854
|
+
static names(): {
|
|
4855
|
+
[key: string]: string;
|
|
4856
|
+
};
|
|
4857
|
+
static types(): {
|
|
4858
|
+
[key: string]: any;
|
|
4859
|
+
};
|
|
4860
|
+
constructor(map?: {
|
|
4861
|
+
[key: string]: any;
|
|
4862
|
+
});
|
|
4863
|
+
}
|
|
4864
|
+
export declare class CreateGlobalSecurityIPGroupResponseBodyGlobalSecurityIPGroup extends $tea.Model {
|
|
4865
|
+
GIpList?: string;
|
|
4866
|
+
globalIgName?: string;
|
|
4867
|
+
globalSecurityGroupId?: string;
|
|
4868
|
+
regionId?: string;
|
|
4869
|
+
static names(): {
|
|
4870
|
+
[key: string]: string;
|
|
4871
|
+
};
|
|
4872
|
+
static types(): {
|
|
4873
|
+
[key: string]: any;
|
|
4874
|
+
};
|
|
4875
|
+
constructor(map?: {
|
|
4876
|
+
[key: string]: any;
|
|
4877
|
+
});
|
|
4878
|
+
}
|
|
4445
4879
|
export declare class CreateShardingDBInstanceRequestConfigServer extends $tea.Model {
|
|
4446
4880
|
class?: string;
|
|
4447
4881
|
storage?: number;
|
|
@@ -4481,6 +4915,19 @@ export declare class CreateShardingDBInstanceRequestReplicaSet extends $tea.Mode
|
|
|
4481
4915
|
[key: string]: any;
|
|
4482
4916
|
});
|
|
4483
4917
|
}
|
|
4918
|
+
export declare class CreateShardingDBInstanceRequestTag extends $tea.Model {
|
|
4919
|
+
key?: string;
|
|
4920
|
+
value?: string;
|
|
4921
|
+
static names(): {
|
|
4922
|
+
[key: string]: string;
|
|
4923
|
+
};
|
|
4924
|
+
static types(): {
|
|
4925
|
+
[key: string]: any;
|
|
4926
|
+
};
|
|
4927
|
+
constructor(map?: {
|
|
4928
|
+
[key: string]: any;
|
|
4929
|
+
});
|
|
4930
|
+
}
|
|
4484
4931
|
export declare class DescribeAccountsResponseBodyAccountsAccount extends $tea.Model {
|
|
4485
4932
|
accountDescription?: string;
|
|
4486
4933
|
accountName?: string;
|
|
@@ -4556,6 +5003,20 @@ export declare class DescribeAuditRecordsResponseBodyItems extends $tea.Model {
|
|
|
4556
5003
|
[key: string]: any;
|
|
4557
5004
|
});
|
|
4558
5005
|
}
|
|
5006
|
+
export declare class DescribeAvailabilityZonesResponseBodyAvailableZones extends $tea.Model {
|
|
5007
|
+
regionId?: string;
|
|
5008
|
+
zoneId?: string;
|
|
5009
|
+
zoneName?: string;
|
|
5010
|
+
static names(): {
|
|
5011
|
+
[key: string]: string;
|
|
5012
|
+
};
|
|
5013
|
+
static types(): {
|
|
5014
|
+
[key: string]: any;
|
|
5015
|
+
};
|
|
5016
|
+
constructor(map?: {
|
|
5017
|
+
[key: string]: any;
|
|
5018
|
+
});
|
|
5019
|
+
}
|
|
4559
5020
|
export declare class DescribeAvailableEngineVersionResponseBodyEngineVersions extends $tea.Model {
|
|
4560
5021
|
engineVersion?: string[];
|
|
4561
5022
|
static names(): {
|
|
@@ -4948,6 +5409,7 @@ export declare class DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstanc
|
|
|
4948
5409
|
});
|
|
4949
5410
|
}
|
|
4950
5411
|
export declare class DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstance extends $tea.Model {
|
|
5412
|
+
burstingEnabled?: boolean;
|
|
4951
5413
|
capacityUnit?: string;
|
|
4952
5414
|
chargeType?: string;
|
|
4953
5415
|
configserverList?: DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstanceConfigserverList;
|
|
@@ -4956,10 +5418,14 @@ export declare class DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstanc
|
|
|
4956
5418
|
DBInstanceClass?: string;
|
|
4957
5419
|
DBInstanceDescription?: string;
|
|
4958
5420
|
DBInstanceId?: string;
|
|
5421
|
+
DBInstanceOrderStatus?: string;
|
|
4959
5422
|
DBInstanceReleaseProtection?: boolean;
|
|
4960
5423
|
DBInstanceStatus?: string;
|
|
4961
5424
|
DBInstanceStorage?: number;
|
|
4962
5425
|
DBInstanceType?: string;
|
|
5426
|
+
destroyTime?: string;
|
|
5427
|
+
encrypted?: boolean;
|
|
5428
|
+
encryptionKey?: string;
|
|
4963
5429
|
engine?: string;
|
|
4964
5430
|
engineVersion?: string;
|
|
4965
5431
|
expireTime?: string;
|
|
@@ -4974,6 +5440,7 @@ export declare class DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstanc
|
|
|
4974
5440
|
mongosList?: DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstanceMongosList;
|
|
4975
5441
|
networkType?: string;
|
|
4976
5442
|
protocolType?: string;
|
|
5443
|
+
provisionedIops?: number;
|
|
4977
5444
|
readonlyReplicas?: string;
|
|
4978
5445
|
regionId?: string;
|
|
4979
5446
|
replacateId?: string;
|
|
@@ -4984,6 +5451,8 @@ export declare class DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstanc
|
|
|
4984
5451
|
secondaryZoneId?: string;
|
|
4985
5452
|
shardList?: DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstanceShardList;
|
|
4986
5453
|
storageEngine?: string;
|
|
5454
|
+
storageType?: string;
|
|
5455
|
+
syncPercent?: string;
|
|
4987
5456
|
tags?: DescribeDBInstanceAttributeResponseBodyDBInstancesDBInstanceTags;
|
|
4988
5457
|
VPCCloudInstanceIds?: string;
|
|
4989
5458
|
VPCId?: string;
|
|
@@ -5286,58 +5755,12 @@ export declare class DescribeDBInstancesOverviewResponseBodyDBInstances extends
|
|
|
5286
5755
|
[key: string]: any;
|
|
5287
5756
|
});
|
|
5288
5757
|
}
|
|
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;
|
|
5758
|
+
export declare class DescribeErrorLogRecordsResponseBodyItemsLogRecords extends $tea.Model {
|
|
5759
|
+
category?: string;
|
|
5760
|
+
connInfo?: string;
|
|
5761
|
+
content?: string;
|
|
5324
5762
|
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;
|
|
5763
|
+
id?: number;
|
|
5341
5764
|
static names(): {
|
|
5342
5765
|
[key: string]: string;
|
|
5343
5766
|
};
|
|
@@ -5348,8 +5771,8 @@ export declare class DescribeDedicatedClusterInstanceListResponseBodyInstancesDb
|
|
|
5348
5771
|
[key: string]: any;
|
|
5349
5772
|
});
|
|
5350
5773
|
}
|
|
5351
|
-
export declare class
|
|
5352
|
-
|
|
5774
|
+
export declare class DescribeErrorLogRecordsResponseBodyItems extends $tea.Model {
|
|
5775
|
+
logRecords?: DescribeErrorLogRecordsResponseBodyItemsLogRecords[];
|
|
5353
5776
|
static names(): {
|
|
5354
5777
|
[key: string]: string;
|
|
5355
5778
|
};
|
|
@@ -5360,12 +5783,12 @@ export declare class DescribeDedicatedClusterInstanceListResponseBodyInstances e
|
|
|
5360
5783
|
[key: string]: any;
|
|
5361
5784
|
});
|
|
5362
5785
|
}
|
|
5363
|
-
export declare class
|
|
5364
|
-
|
|
5365
|
-
|
|
5366
|
-
|
|
5367
|
-
|
|
5368
|
-
|
|
5786
|
+
export declare class DescribeGlobalSecurityIPGroupResponseBodyGlobalSecurityIPGroup extends $tea.Model {
|
|
5787
|
+
DBInstances?: string[];
|
|
5788
|
+
GIpList?: string;
|
|
5789
|
+
globalIgName?: string;
|
|
5790
|
+
globalSecurityGroupId?: string;
|
|
5791
|
+
regionId?: string;
|
|
5369
5792
|
static names(): {
|
|
5370
5793
|
[key: string]: string;
|
|
5371
5794
|
};
|
|
@@ -5376,8 +5799,11 @@ export declare class DescribeErrorLogRecordsResponseBodyItemsLogRecords extends
|
|
|
5376
5799
|
[key: string]: any;
|
|
5377
5800
|
});
|
|
5378
5801
|
}
|
|
5379
|
-
export declare class
|
|
5380
|
-
|
|
5802
|
+
export declare class DescribeGlobalSecurityIPGroupRelationResponseBodyGlobalSecurityIPGroupRel extends $tea.Model {
|
|
5803
|
+
GIpList?: string;
|
|
5804
|
+
globalIgName?: string;
|
|
5805
|
+
globalSecurityGroupId?: string;
|
|
5806
|
+
regionId?: string;
|
|
5381
5807
|
static names(): {
|
|
5382
5808
|
[key: string]: string;
|
|
5383
5809
|
};
|
|
@@ -5527,6 +5953,7 @@ export declare class DescribeParametersResponseBodyConfigParameters extends $tea
|
|
|
5527
5953
|
});
|
|
5528
5954
|
}
|
|
5529
5955
|
export declare class DescribeParametersResponseBodyRunningParametersParameter extends $tea.Model {
|
|
5956
|
+
characterType?: string;
|
|
5530
5957
|
checkingCode?: string;
|
|
5531
5958
|
forceRestart?: string;
|
|
5532
5959
|
modifiableStatus?: string;
|
|
@@ -5555,11 +5982,27 @@ export declare class DescribeParametersResponseBodyRunningParameters extends $te
|
|
|
5555
5982
|
[key: string]: any;
|
|
5556
5983
|
});
|
|
5557
5984
|
}
|
|
5985
|
+
export declare class DescribePriceResponseBodyOrderCouponsCouponPromotionRuleIdList extends $tea.Model {
|
|
5986
|
+
promotionRuleId?: number[];
|
|
5987
|
+
static names(): {
|
|
5988
|
+
[key: string]: string;
|
|
5989
|
+
};
|
|
5990
|
+
static types(): {
|
|
5991
|
+
[key: string]: any;
|
|
5992
|
+
};
|
|
5993
|
+
constructor(map?: {
|
|
5994
|
+
[key: string]: any;
|
|
5995
|
+
});
|
|
5996
|
+
}
|
|
5558
5997
|
export declare class DescribePriceResponseBodyOrderCouponsCoupon extends $tea.Model {
|
|
5998
|
+
activityCategory?: string;
|
|
5559
5999
|
couponNo?: string;
|
|
5560
6000
|
description?: string;
|
|
5561
6001
|
isSelected?: string;
|
|
5562
6002
|
name?: string;
|
|
6003
|
+
optionCode?: string;
|
|
6004
|
+
promotionOptionCode?: string;
|
|
6005
|
+
promotionRuleIdList?: DescribePriceResponseBodyOrderCouponsCouponPromotionRuleIdList;
|
|
5563
6006
|
static names(): {
|
|
5564
6007
|
[key: string]: string;
|
|
5565
6008
|
};
|
|
@@ -5913,7 +6356,6 @@ export declare class DescribeRunningLogRecordsResponseBodyItemsLogRecords extend
|
|
|
5913
6356
|
connInfo?: string;
|
|
5914
6357
|
content?: string;
|
|
5915
6358
|
createTime?: string;
|
|
5916
|
-
id?: number;
|
|
5917
6359
|
static names(): {
|
|
5918
6360
|
[key: string]: string;
|
|
5919
6361
|
};
|
|
@@ -6149,6 +6591,21 @@ export declare class ListTagResourcesResponseBodyTagResources extends $tea.Model
|
|
|
6149
6591
|
[key: string]: any;
|
|
6150
6592
|
});
|
|
6151
6593
|
}
|
|
6594
|
+
export declare class ModifyGlobalSecurityIPGroupNameResponseBodyGlobalSecurityIPGroup extends $tea.Model {
|
|
6595
|
+
GIpList?: string;
|
|
6596
|
+
globalIgName?: string;
|
|
6597
|
+
globalSecurityGroupId?: string;
|
|
6598
|
+
regionId?: string;
|
|
6599
|
+
static names(): {
|
|
6600
|
+
[key: string]: string;
|
|
6601
|
+
};
|
|
6602
|
+
static types(): {
|
|
6603
|
+
[key: string]: any;
|
|
6604
|
+
};
|
|
6605
|
+
constructor(map?: {
|
|
6606
|
+
[key: string]: any;
|
|
6607
|
+
});
|
|
6608
|
+
}
|
|
6152
6609
|
export declare class TagResourcesRequestTag extends $tea.Model {
|
|
6153
6610
|
key?: string;
|
|
6154
6611
|
value?: string;
|
|
@@ -6167,45 +6624,309 @@ export default class Client extends OpenApi {
|
|
|
6167
6624
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
6168
6625
|
[key: string]: string;
|
|
6169
6626
|
}, endpoint: string): string;
|
|
6627
|
+
/**
|
|
6628
|
+
* This operation applies only to sharded cluster instances. For more information, see [Apply for an endpoint for a shard or Configserver node](~~134037~~).
|
|
6629
|
+
* > 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.
|
|
6630
|
+
*
|
|
6631
|
+
* @param request AllocateNodePrivateNetworkAddressRequest
|
|
6632
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6633
|
+
* @return AllocateNodePrivateNetworkAddressResponse
|
|
6634
|
+
*/
|
|
6170
6635
|
allocateNodePrivateNetworkAddressWithOptions(request: AllocateNodePrivateNetworkAddressRequest, runtime: $Util.RuntimeOptions): Promise<AllocateNodePrivateNetworkAddressResponse>;
|
|
6636
|
+
/**
|
|
6637
|
+
* This operation applies only to sharded cluster instances. For more information, see [Apply for an endpoint for a shard or Configserver node](~~134037~~).
|
|
6638
|
+
* > 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.
|
|
6639
|
+
*
|
|
6640
|
+
* @param request AllocateNodePrivateNetworkAddressRequest
|
|
6641
|
+
* @return AllocateNodePrivateNetworkAddressResponse
|
|
6642
|
+
*/
|
|
6171
6643
|
allocateNodePrivateNetworkAddress(request: AllocateNodePrivateNetworkAddressRequest): Promise<AllocateNodePrivateNetworkAddressResponse>;
|
|
6172
6644
|
allocatePublicNetworkAddressWithOptions(request: AllocatePublicNetworkAddressRequest, runtime: $Util.RuntimeOptions): Promise<AllocatePublicNetworkAddressResponse>;
|
|
6173
6645
|
allocatePublicNetworkAddress(request: AllocatePublicNetworkAddressRequest): Promise<AllocatePublicNetworkAddressResponse>;
|
|
6646
|
+
/**
|
|
6647
|
+
* 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.
|
|
6648
|
+
*
|
|
6649
|
+
* @param request CheckCloudResourceAuthorizedRequest
|
|
6650
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6651
|
+
* @return CheckCloudResourceAuthorizedResponse
|
|
6652
|
+
*/
|
|
6174
6653
|
checkCloudResourceAuthorizedWithOptions(request: CheckCloudResourceAuthorizedRequest, runtime: $Util.RuntimeOptions): Promise<CheckCloudResourceAuthorizedResponse>;
|
|
6654
|
+
/**
|
|
6655
|
+
* 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.
|
|
6656
|
+
*
|
|
6657
|
+
* @param request CheckCloudResourceAuthorizedRequest
|
|
6658
|
+
* @return CheckCloudResourceAuthorizedResponse
|
|
6659
|
+
*/
|
|
6175
6660
|
checkCloudResourceAuthorized(request: CheckCloudResourceAuthorizedRequest): Promise<CheckCloudResourceAuthorizedResponse>;
|
|
6661
|
+
/**
|
|
6662
|
+
* You can call this operation to check whether an ApsaraDB for MongoDB instance meets the data recovery conditions.
|
|
6663
|
+
*
|
|
6664
|
+
* @param request CheckRecoveryConditionRequest
|
|
6665
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6666
|
+
* @return CheckRecoveryConditionResponse
|
|
6667
|
+
*/
|
|
6176
6668
|
checkRecoveryConditionWithOptions(request: CheckRecoveryConditionRequest, runtime: $Util.RuntimeOptions): Promise<CheckRecoveryConditionResponse>;
|
|
6669
|
+
/**
|
|
6670
|
+
* You can call this operation to check whether an ApsaraDB for MongoDB instance meets the data recovery conditions.
|
|
6671
|
+
*
|
|
6672
|
+
* @param request CheckRecoveryConditionRequest
|
|
6673
|
+
* @return CheckRecoveryConditionResponse
|
|
6674
|
+
*/
|
|
6177
6675
|
checkRecoveryCondition(request: CheckRecoveryConditionRequest): Promise<CheckRecoveryConditionResponse>;
|
|
6676
|
+
/**
|
|
6677
|
+
* ## Usage
|
|
6678
|
+
* When you call this operation, the instance must be in the Running state.
|
|
6679
|
+
*
|
|
6680
|
+
* @param request CreateBackupRequest
|
|
6681
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6682
|
+
* @return CreateBackupResponse
|
|
6683
|
+
*/
|
|
6178
6684
|
createBackupWithOptions(request: CreateBackupRequest, runtime: $Util.RuntimeOptions): Promise<CreateBackupResponse>;
|
|
6685
|
+
/**
|
|
6686
|
+
* ## Usage
|
|
6687
|
+
* When you call this operation, the instance must be in the Running state.
|
|
6688
|
+
*
|
|
6689
|
+
* @param request CreateBackupRequest
|
|
6690
|
+
* @return CreateBackupResponse
|
|
6691
|
+
*/
|
|
6179
6692
|
createBackup(request: CreateBackupRequest): Promise<CreateBackupResponse>;
|
|
6693
|
+
/**
|
|
6694
|
+
* Creates or clones an ApsaraDB for MongoDB replica set instance.
|
|
6695
|
+
*
|
|
6696
|
+
* @param request CreateDBInstanceRequest
|
|
6697
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6698
|
+
* @return CreateDBInstanceResponse
|
|
6699
|
+
*/
|
|
6180
6700
|
createDBInstanceWithOptions(request: CreateDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<CreateDBInstanceResponse>;
|
|
6701
|
+
/**
|
|
6702
|
+
* Creates or clones an ApsaraDB for MongoDB replica set instance.
|
|
6703
|
+
*
|
|
6704
|
+
* @param request CreateDBInstanceRequest
|
|
6705
|
+
* @return CreateDBInstanceResponse
|
|
6706
|
+
*/
|
|
6181
6707
|
createDBInstance(request: CreateDBInstanceRequest): Promise<CreateDBInstanceResponse>;
|
|
6708
|
+
createGlobalSecurityIPGroupWithOptions(request: CreateGlobalSecurityIPGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateGlobalSecurityIPGroupResponse>;
|
|
6709
|
+
createGlobalSecurityIPGroup(request: CreateGlobalSecurityIPGroupRequest): Promise<CreateGlobalSecurityIPGroupResponse>;
|
|
6710
|
+
/**
|
|
6711
|
+
* 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.
|
|
6712
|
+
* This operation is applicable only to sharded cluster instances.
|
|
6713
|
+
*
|
|
6714
|
+
* @param request CreateNodeRequest
|
|
6715
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6716
|
+
* @return CreateNodeResponse
|
|
6717
|
+
*/
|
|
6182
6718
|
createNodeWithOptions(request: CreateNodeRequest, runtime: $Util.RuntimeOptions): Promise<CreateNodeResponse>;
|
|
6719
|
+
/**
|
|
6720
|
+
* 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.
|
|
6721
|
+
* This operation is applicable only to sharded cluster instances.
|
|
6722
|
+
*
|
|
6723
|
+
* @param request CreateNodeRequest
|
|
6724
|
+
* @return CreateNodeResponse
|
|
6725
|
+
*/
|
|
6183
6726
|
createNode(request: CreateNodeRequest): Promise<CreateNodeResponse>;
|
|
6727
|
+
/**
|
|
6728
|
+
* The ID of the request.
|
|
6729
|
+
*
|
|
6730
|
+
* @param request CreateNodeBatchRequest
|
|
6731
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6732
|
+
* @return CreateNodeBatchResponse
|
|
6733
|
+
*/
|
|
6184
6734
|
createNodeBatchWithOptions(request: CreateNodeBatchRequest, runtime: $Util.RuntimeOptions): Promise<CreateNodeBatchResponse>;
|
|
6735
|
+
/**
|
|
6736
|
+
* The ID of the request.
|
|
6737
|
+
*
|
|
6738
|
+
* @param request CreateNodeBatchRequest
|
|
6739
|
+
* @return CreateNodeBatchResponse
|
|
6740
|
+
*/
|
|
6185
6741
|
createNodeBatch(request: CreateNodeBatchRequest): Promise<CreateNodeBatchResponse>;
|
|
6742
|
+
/**
|
|
6743
|
+
* * 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.
|
|
6744
|
+
* * For more information about the instance types of ApsaraDB for MongoDB, see [Instance types](~~57141~~).
|
|
6745
|
+
* * To create standalone instances and replica set instances, you can call the [CreateDBInstance](~~61763~~) operation.
|
|
6746
|
+
*
|
|
6747
|
+
* @param request CreateShardingDBInstanceRequest
|
|
6748
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6749
|
+
* @return CreateShardingDBInstanceResponse
|
|
6750
|
+
*/
|
|
6186
6751
|
createShardingDBInstanceWithOptions(request: CreateShardingDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<CreateShardingDBInstanceResponse>;
|
|
6752
|
+
/**
|
|
6753
|
+
* * 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.
|
|
6754
|
+
* * For more information about the instance types of ApsaraDB for MongoDB, see [Instance types](~~57141~~).
|
|
6755
|
+
* * To create standalone instances and replica set instances, you can call the [CreateDBInstance](~~61763~~) operation.
|
|
6756
|
+
*
|
|
6757
|
+
* @param request CreateShardingDBInstanceRequest
|
|
6758
|
+
* @return CreateShardingDBInstanceResponse
|
|
6759
|
+
*/
|
|
6187
6760
|
createShardingDBInstance(request: CreateShardingDBInstanceRequest): Promise<CreateShardingDBInstanceResponse>;
|
|
6761
|
+
/**
|
|
6762
|
+
* Before you call this operation, make sure that the instance meets the following requirements:
|
|
6763
|
+
* * The instance is in the running state.
|
|
6764
|
+
* * A pay-as-you-go instance is used.
|
|
6765
|
+
* > After you release an ApsaraDB for MongoDB instance, data in the instance can no longer be recovered. Proceed with caution.
|
|
6766
|
+
*
|
|
6767
|
+
* @param request DeleteDBInstanceRequest
|
|
6768
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6769
|
+
* @return DeleteDBInstanceResponse
|
|
6770
|
+
*/
|
|
6188
6771
|
deleteDBInstanceWithOptions(request: DeleteDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDBInstanceResponse>;
|
|
6772
|
+
/**
|
|
6773
|
+
* Before you call this operation, make sure that the instance meets the following requirements:
|
|
6774
|
+
* * The instance is in the running state.
|
|
6775
|
+
* * A pay-as-you-go instance is used.
|
|
6776
|
+
* > After you release an ApsaraDB for MongoDB instance, data in the instance can no longer be recovered. Proceed with caution.
|
|
6777
|
+
*
|
|
6778
|
+
* @param request DeleteDBInstanceRequest
|
|
6779
|
+
* @return DeleteDBInstanceResponse
|
|
6780
|
+
*/
|
|
6189
6781
|
deleteDBInstance(request: DeleteDBInstanceRequest): Promise<DeleteDBInstanceResponse>;
|
|
6782
|
+
deleteGlobalSecurityIPGroupWithOptions(request: DeleteGlobalSecurityIPGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteGlobalSecurityIPGroupResponse>;
|
|
6783
|
+
deleteGlobalSecurityIPGroup(request: DeleteGlobalSecurityIPGroupRequest): Promise<DeleteGlobalSecurityIPGroupResponse>;
|
|
6784
|
+
/**
|
|
6785
|
+
* Before you call this operation, make sure that the following requirements are met:
|
|
6786
|
+
* * The instance is in the running state.
|
|
6787
|
+
* * The instance is a sharded cluster instance.
|
|
6788
|
+
* * The billing method of the instance is pay-as-you-go.
|
|
6789
|
+
* * The number of the shard or mongos nodes in the instance is greater than two.
|
|
6790
|
+
*
|
|
6791
|
+
* @param request DeleteNodeRequest
|
|
6792
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6793
|
+
* @return DeleteNodeResponse
|
|
6794
|
+
*/
|
|
6190
6795
|
deleteNodeWithOptions(request: DeleteNodeRequest, runtime: $Util.RuntimeOptions): Promise<DeleteNodeResponse>;
|
|
6796
|
+
/**
|
|
6797
|
+
* Before you call this operation, make sure that the following requirements are met:
|
|
6798
|
+
* * The instance is in the running state.
|
|
6799
|
+
* * The instance is a sharded cluster instance.
|
|
6800
|
+
* * The billing method of the instance is pay-as-you-go.
|
|
6801
|
+
* * The number of the shard or mongos nodes in the instance is greater than two.
|
|
6802
|
+
*
|
|
6803
|
+
* @param request DeleteNodeRequest
|
|
6804
|
+
* @return DeleteNodeResponse
|
|
6805
|
+
*/
|
|
6191
6806
|
deleteNode(request: DeleteNodeRequest): Promise<DeleteNodeResponse>;
|
|
6807
|
+
/**
|
|
6808
|
+
* > You can call this operation to query only the information of the root account.
|
|
6809
|
+
*
|
|
6810
|
+
* @param request DescribeAccountsRequest
|
|
6811
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6812
|
+
* @return DescribeAccountsResponse
|
|
6813
|
+
*/
|
|
6192
6814
|
describeAccountsWithOptions(request: DescribeAccountsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAccountsResponse>;
|
|
6815
|
+
/**
|
|
6816
|
+
* > You can call this operation to query only the information of the root account.
|
|
6817
|
+
*
|
|
6818
|
+
* @param request DescribeAccountsRequest
|
|
6819
|
+
* @return DescribeAccountsResponse
|
|
6820
|
+
*/
|
|
6193
6821
|
describeAccounts(request: DescribeAccountsRequest): Promise<DescribeAccountsResponse>;
|
|
6194
6822
|
describeActiveOperationTaskCountWithOptions(request: DescribeActiveOperationTaskCountRequest, runtime: $Util.RuntimeOptions): Promise<DescribeActiveOperationTaskCountResponse>;
|
|
6195
6823
|
describeActiveOperationTaskCount(request: DescribeActiveOperationTaskCountRequest): Promise<DescribeActiveOperationTaskCountResponse>;
|
|
6196
6824
|
describeActiveOperationTaskTypeWithOptions(request: DescribeActiveOperationTaskTypeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeActiveOperationTaskTypeResponse>;
|
|
6197
6825
|
describeActiveOperationTaskType(request: DescribeActiveOperationTaskTypeRequest): Promise<DescribeActiveOperationTaskTypeResponse>;
|
|
6826
|
+
/**
|
|
6827
|
+
* * The instance must be in the running state when you call this operation.
|
|
6828
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
6829
|
+
* * 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~~).
|
|
6830
|
+
*
|
|
6831
|
+
* @param request DescribeAuditLogFilterRequest
|
|
6832
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6833
|
+
* @return DescribeAuditLogFilterResponse
|
|
6834
|
+
*/
|
|
6198
6835
|
describeAuditLogFilterWithOptions(request: DescribeAuditLogFilterRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAuditLogFilterResponse>;
|
|
6836
|
+
/**
|
|
6837
|
+
* * The instance must be in the running state when you call this operation.
|
|
6838
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
6839
|
+
* * 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~~).
|
|
6840
|
+
*
|
|
6841
|
+
* @param request DescribeAuditLogFilterRequest
|
|
6842
|
+
* @return DescribeAuditLogFilterResponse
|
|
6843
|
+
*/
|
|
6199
6844
|
describeAuditLogFilter(request: DescribeAuditLogFilterRequest): Promise<DescribeAuditLogFilterResponse>;
|
|
6845
|
+
/**
|
|
6846
|
+
* * The instance must be in the running state when you call this operation.
|
|
6847
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
6848
|
+
* * 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~~).
|
|
6849
|
+
*
|
|
6850
|
+
* @param request DescribeAuditPolicyRequest
|
|
6851
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6852
|
+
* @return DescribeAuditPolicyResponse
|
|
6853
|
+
*/
|
|
6200
6854
|
describeAuditPolicyWithOptions(request: DescribeAuditPolicyRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAuditPolicyResponse>;
|
|
6855
|
+
/**
|
|
6856
|
+
* * The instance must be in the running state when you call this operation.
|
|
6857
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
6858
|
+
* * 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~~).
|
|
6859
|
+
*
|
|
6860
|
+
* @param request DescribeAuditPolicyRequest
|
|
6861
|
+
* @return DescribeAuditPolicyResponse
|
|
6862
|
+
*/
|
|
6201
6863
|
describeAuditPolicy(request: DescribeAuditPolicyRequest): Promise<DescribeAuditPolicyResponse>;
|
|
6864
|
+
/**
|
|
6865
|
+
* * When you call this operation, ensure that the audit log feature of the instance is enabled. Otherwise, the operation returns an empty audit log.
|
|
6866
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
6867
|
+
* * 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~~).
|
|
6868
|
+
*
|
|
6869
|
+
* @param request DescribeAuditRecordsRequest
|
|
6870
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6871
|
+
* @return DescribeAuditRecordsResponse
|
|
6872
|
+
*/
|
|
6202
6873
|
describeAuditRecordsWithOptions(request: DescribeAuditRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAuditRecordsResponse>;
|
|
6874
|
+
/**
|
|
6875
|
+
* * When you call this operation, ensure that the audit log feature of the instance is enabled. Otherwise, the operation returns an empty audit log.
|
|
6876
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
6877
|
+
* * 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~~).
|
|
6878
|
+
*
|
|
6879
|
+
* @param request DescribeAuditRecordsRequest
|
|
6880
|
+
* @return DescribeAuditRecordsResponse
|
|
6881
|
+
*/
|
|
6203
6882
|
describeAuditRecords(request: DescribeAuditRecordsRequest): Promise<DescribeAuditRecordsResponse>;
|
|
6883
|
+
/**
|
|
6884
|
+
* You can call this operation to query zones in which you can create an ApsaraDB for MongoDB instance.
|
|
6885
|
+
*
|
|
6886
|
+
* @param request DescribeAvailabilityZonesRequest
|
|
6887
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6888
|
+
* @return DescribeAvailabilityZonesResponse
|
|
6889
|
+
*/
|
|
6890
|
+
describeAvailabilityZonesWithOptions(request: DescribeAvailabilityZonesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAvailabilityZonesResponse>;
|
|
6891
|
+
/**
|
|
6892
|
+
* You can call this operation to query zones in which you can create an ApsaraDB for MongoDB instance.
|
|
6893
|
+
*
|
|
6894
|
+
* @param request DescribeAvailabilityZonesRequest
|
|
6895
|
+
* @return DescribeAvailabilityZonesResponse
|
|
6896
|
+
*/
|
|
6897
|
+
describeAvailabilityZones(request: DescribeAvailabilityZonesRequest): Promise<DescribeAvailabilityZonesResponse>;
|
|
6204
6898
|
describeAvailableEngineVersionWithOptions(request: DescribeAvailableEngineVersionRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAvailableEngineVersionResponse>;
|
|
6205
6899
|
describeAvailableEngineVersion(request: DescribeAvailableEngineVersionRequest): Promise<DescribeAvailableEngineVersionResponse>;
|
|
6206
6900
|
describeAvailableResourceWithOptions(request: DescribeAvailableResourceRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAvailableResourceResponse>;
|
|
6207
6901
|
describeAvailableResource(request: DescribeAvailableResourceRequest): Promise<DescribeAvailableResourceResponse>;
|
|
6902
|
+
/**
|
|
6903
|
+
* ## Precautions
|
|
6904
|
+
* 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~~).
|
|
6905
|
+
* Before you call this operation, make sure that the ApsaraDB for MongoDB instance meets the following requirements:
|
|
6906
|
+
* * The instance was created after March 26, 2019.
|
|
6907
|
+
* * 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.
|
|
6908
|
+
* * The instance is a replica set instance.
|
|
6909
|
+
* * The version of the database engine is 3.4, 4.0, or 4.2.
|
|
6910
|
+
* * The storage engine of the instance is WiredTiger.
|
|
6911
|
+
*
|
|
6912
|
+
* @param request DescribeBackupDBsRequest
|
|
6913
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6914
|
+
* @return DescribeBackupDBsResponse
|
|
6915
|
+
*/
|
|
6208
6916
|
describeBackupDBsWithOptions(request: DescribeBackupDBsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBackupDBsResponse>;
|
|
6917
|
+
/**
|
|
6918
|
+
* ## Precautions
|
|
6919
|
+
* 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~~).
|
|
6920
|
+
* Before you call this operation, make sure that the ApsaraDB for MongoDB instance meets the following requirements:
|
|
6921
|
+
* * The instance was created after March 26, 2019.
|
|
6922
|
+
* * 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.
|
|
6923
|
+
* * The instance is a replica set instance.
|
|
6924
|
+
* * The version of the database engine is 3.4, 4.0, or 4.2.
|
|
6925
|
+
* * The storage engine of the instance is WiredTiger.
|
|
6926
|
+
*
|
|
6927
|
+
* @param request DescribeBackupDBsRequest
|
|
6928
|
+
* @return DescribeBackupDBsResponse
|
|
6929
|
+
*/
|
|
6209
6930
|
describeBackupDBs(request: DescribeBackupDBsRequest): Promise<DescribeBackupDBsResponse>;
|
|
6210
6931
|
describeBackupPolicyWithOptions(request: DescribeBackupPolicyRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBackupPolicyResponse>;
|
|
6211
6932
|
describeBackupPolicy(request: DescribeBackupPolicyRequest): Promise<DescribeBackupPolicyResponse>;
|
|
@@ -6213,29 +6934,153 @@ export default class Client extends OpenApi {
|
|
|
6213
6934
|
describeBackups(request: DescribeBackupsRequest): Promise<DescribeBackupsResponse>;
|
|
6214
6935
|
describeDBInstanceAttributeWithOptions(request: DescribeDBInstanceAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceAttributeResponse>;
|
|
6215
6936
|
describeDBInstanceAttribute(request: DescribeDBInstanceAttributeRequest): Promise<DescribeDBInstanceAttributeResponse>;
|
|
6937
|
+
/**
|
|
6938
|
+
* ## Usage
|
|
6939
|
+
* 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.
|
|
6940
|
+
*
|
|
6941
|
+
* @param request DescribeDBInstanceEncryptionKeyRequest
|
|
6942
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6943
|
+
* @return DescribeDBInstanceEncryptionKeyResponse
|
|
6944
|
+
*/
|
|
6216
6945
|
describeDBInstanceEncryptionKeyWithOptions(request: DescribeDBInstanceEncryptionKeyRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceEncryptionKeyResponse>;
|
|
6946
|
+
/**
|
|
6947
|
+
* ## Usage
|
|
6948
|
+
* 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.
|
|
6949
|
+
*
|
|
6950
|
+
* @param request DescribeDBInstanceEncryptionKeyRequest
|
|
6951
|
+
* @return DescribeDBInstanceEncryptionKeyResponse
|
|
6952
|
+
*/
|
|
6217
6953
|
describeDBInstanceEncryptionKey(request: DescribeDBInstanceEncryptionKeyRequest): Promise<DescribeDBInstanceEncryptionKeyResponse>;
|
|
6218
6954
|
describeDBInstanceMonitorWithOptions(request: DescribeDBInstanceMonitorRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceMonitorResponse>;
|
|
6219
6955
|
describeDBInstanceMonitor(request: DescribeDBInstanceMonitorRequest): Promise<DescribeDBInstanceMonitorResponse>;
|
|
6220
6956
|
describeDBInstancePerformanceWithOptions(request: DescribeDBInstancePerformanceRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstancePerformanceResponse>;
|
|
6221
6957
|
describeDBInstancePerformance(request: DescribeDBInstancePerformanceRequest): Promise<DescribeDBInstancePerformanceResponse>;
|
|
6958
|
+
/**
|
|
6959
|
+
* Before you call this operation, make sure that the following requirements are met:
|
|
6960
|
+
* * The instance is in the Running state.
|
|
6961
|
+
* * The instance is a replica set instance.
|
|
6962
|
+
* * The instance runs MongoDB 3.4 or later.
|
|
6963
|
+
*
|
|
6964
|
+
* @param request DescribeDBInstanceSSLRequest
|
|
6965
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6966
|
+
* @return DescribeDBInstanceSSLResponse
|
|
6967
|
+
*/
|
|
6222
6968
|
describeDBInstanceSSLWithOptions(request: DescribeDBInstanceSSLRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceSSLResponse>;
|
|
6969
|
+
/**
|
|
6970
|
+
* Before you call this operation, make sure that the following requirements are met:
|
|
6971
|
+
* * The instance is in the Running state.
|
|
6972
|
+
* * The instance is a replica set instance.
|
|
6973
|
+
* * The instance runs MongoDB 3.4 or later.
|
|
6974
|
+
*
|
|
6975
|
+
* @param request DescribeDBInstanceSSLRequest
|
|
6976
|
+
* @return DescribeDBInstanceSSLResponse
|
|
6977
|
+
*/
|
|
6223
6978
|
describeDBInstanceSSL(request: DescribeDBInstanceSSLRequest): Promise<DescribeDBInstanceSSLResponse>;
|
|
6979
|
+
/**
|
|
6980
|
+
* You can call this operation to query whether TDE is enabled for an ApsaraDB for MongoDB instance.
|
|
6981
|
+
*
|
|
6982
|
+
* @param request DescribeDBInstanceTDEInfoRequest
|
|
6983
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6984
|
+
* @return DescribeDBInstanceTDEInfoResponse
|
|
6985
|
+
*/
|
|
6224
6986
|
describeDBInstanceTDEInfoWithOptions(request: DescribeDBInstanceTDEInfoRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceTDEInfoResponse>;
|
|
6987
|
+
/**
|
|
6988
|
+
* You can call this operation to query whether TDE is enabled for an ApsaraDB for MongoDB instance.
|
|
6989
|
+
*
|
|
6990
|
+
* @param request DescribeDBInstanceTDEInfoRequest
|
|
6991
|
+
* @return DescribeDBInstanceTDEInfoResponse
|
|
6992
|
+
*/
|
|
6225
6993
|
describeDBInstanceTDEInfo(request: DescribeDBInstanceTDEInfoRequest): Promise<DescribeDBInstanceTDEInfoResponse>;
|
|
6994
|
+
/**
|
|
6995
|
+
* 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**.
|
|
6996
|
+
*
|
|
6997
|
+
* @param request DescribeDBInstancesRequest
|
|
6998
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6999
|
+
* @return DescribeDBInstancesResponse
|
|
7000
|
+
*/
|
|
6226
7001
|
describeDBInstancesWithOptions(request: DescribeDBInstancesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstancesResponse>;
|
|
7002
|
+
/**
|
|
7003
|
+
* 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**.
|
|
7004
|
+
*
|
|
7005
|
+
* @param request DescribeDBInstancesRequest
|
|
7006
|
+
* @return DescribeDBInstancesResponse
|
|
7007
|
+
*/
|
|
6227
7008
|
describeDBInstances(request: DescribeDBInstancesRequest): Promise<DescribeDBInstancesResponse>;
|
|
7009
|
+
/**
|
|
7010
|
+
* * 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.
|
|
7011
|
+
* * Paged query is disabled for this operation.
|
|
7012
|
+
*
|
|
7013
|
+
* @param request DescribeDBInstancesOverviewRequest
|
|
7014
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7015
|
+
* @return DescribeDBInstancesOverviewResponse
|
|
7016
|
+
*/
|
|
6228
7017
|
describeDBInstancesOverviewWithOptions(request: DescribeDBInstancesOverviewRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstancesOverviewResponse>;
|
|
7018
|
+
/**
|
|
7019
|
+
* * 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.
|
|
7020
|
+
* * Paged query is disabled for this operation.
|
|
7021
|
+
*
|
|
7022
|
+
* @param request DescribeDBInstancesOverviewRequest
|
|
7023
|
+
* @return DescribeDBInstancesOverviewResponse
|
|
7024
|
+
*/
|
|
6229
7025
|
describeDBInstancesOverview(request: DescribeDBInstancesOverviewRequest): Promise<DescribeDBInstancesOverviewResponse>;
|
|
6230
|
-
|
|
6231
|
-
|
|
7026
|
+
/**
|
|
7027
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7028
|
+
* * 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~~).
|
|
7029
|
+
*
|
|
7030
|
+
* @param request DescribeErrorLogRecordsRequest
|
|
7031
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7032
|
+
* @return DescribeErrorLogRecordsResponse
|
|
7033
|
+
*/
|
|
6232
7034
|
describeErrorLogRecordsWithOptions(request: DescribeErrorLogRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeErrorLogRecordsResponse>;
|
|
7035
|
+
/**
|
|
7036
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7037
|
+
* * 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~~).
|
|
7038
|
+
*
|
|
7039
|
+
* @param request DescribeErrorLogRecordsRequest
|
|
7040
|
+
* @return DescribeErrorLogRecordsResponse
|
|
7041
|
+
*/
|
|
6233
7042
|
describeErrorLogRecords(request: DescribeErrorLogRecordsRequest): Promise<DescribeErrorLogRecordsResponse>;
|
|
7043
|
+
describeGlobalSecurityIPGroupWithOptions(request: DescribeGlobalSecurityIPGroupRequest, runtime: $Util.RuntimeOptions): Promise<DescribeGlobalSecurityIPGroupResponse>;
|
|
7044
|
+
describeGlobalSecurityIPGroup(request: DescribeGlobalSecurityIPGroupRequest): Promise<DescribeGlobalSecurityIPGroupResponse>;
|
|
7045
|
+
describeGlobalSecurityIPGroupRelationWithOptions(request: DescribeGlobalSecurityIPGroupRelationRequest, runtime: $Util.RuntimeOptions): Promise<DescribeGlobalSecurityIPGroupRelationResponse>;
|
|
7046
|
+
describeGlobalSecurityIPGroupRelation(request: DescribeGlobalSecurityIPGroupRelationRequest): Promise<DescribeGlobalSecurityIPGroupRelationResponse>;
|
|
7047
|
+
/**
|
|
7048
|
+
* This operation is applicable to subscription instances.
|
|
7049
|
+
*
|
|
7050
|
+
* @param request DescribeInstanceAutoRenewalAttributeRequest
|
|
7051
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7052
|
+
* @return DescribeInstanceAutoRenewalAttributeResponse
|
|
7053
|
+
*/
|
|
6234
7054
|
describeInstanceAutoRenewalAttributeWithOptions(request: DescribeInstanceAutoRenewalAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeInstanceAutoRenewalAttributeResponse>;
|
|
7055
|
+
/**
|
|
7056
|
+
* This operation is applicable to subscription instances.
|
|
7057
|
+
*
|
|
7058
|
+
* @param request DescribeInstanceAutoRenewalAttributeRequest
|
|
7059
|
+
* @return DescribeInstanceAutoRenewalAttributeResponse
|
|
7060
|
+
*/
|
|
6235
7061
|
describeInstanceAutoRenewalAttribute(request: DescribeInstanceAutoRenewalAttributeRequest): Promise<DescribeInstanceAutoRenewalAttributeResponse>;
|
|
6236
7062
|
describeKernelReleaseNotesWithOptions(request: DescribeKernelReleaseNotesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeKernelReleaseNotesResponse>;
|
|
6237
7063
|
describeKernelReleaseNotes(request: DescribeKernelReleaseNotesRequest): Promise<DescribeKernelReleaseNotesResponse>;
|
|
7064
|
+
/**
|
|
7065
|
+
* This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7066
|
+
* 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~~)
|
|
7067
|
+
* * 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~~)
|
|
7068
|
+
* * 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.
|
|
7069
|
+
*
|
|
7070
|
+
* @param request DescribeMongoDBLogConfigRequest
|
|
7071
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7072
|
+
* @return DescribeMongoDBLogConfigResponse
|
|
7073
|
+
*/
|
|
6238
7074
|
describeMongoDBLogConfigWithOptions(request: DescribeMongoDBLogConfigRequest, runtime: $Util.RuntimeOptions): Promise<DescribeMongoDBLogConfigResponse>;
|
|
7075
|
+
/**
|
|
7076
|
+
* This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7077
|
+
* 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~~)
|
|
7078
|
+
* * 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~~)
|
|
7079
|
+
* * 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.
|
|
7080
|
+
*
|
|
7081
|
+
* @param request DescribeMongoDBLogConfigRequest
|
|
7082
|
+
* @return DescribeMongoDBLogConfigResponse
|
|
7083
|
+
*/
|
|
6239
7084
|
describeMongoDBLogConfig(request: DescribeMongoDBLogConfigRequest): Promise<DescribeMongoDBLogConfigResponse>;
|
|
6240
7085
|
describeParameterModificationHistoryWithOptions(request: DescribeParameterModificationHistoryRequest, runtime: $Util.RuntimeOptions): Promise<DescribeParameterModificationHistoryResponse>;
|
|
6241
7086
|
describeParameterModificationHistory(request: DescribeParameterModificationHistoryRequest): Promise<DescribeParameterModificationHistoryResponse>;
|
|
@@ -6245,43 +7090,253 @@ export default class Client extends OpenApi {
|
|
|
6245
7090
|
describeParameters(request: DescribeParametersRequest): Promise<DescribeParametersResponse>;
|
|
6246
7091
|
describePriceWithOptions(request: DescribePriceRequest, runtime: $Util.RuntimeOptions): Promise<DescribePriceResponse>;
|
|
6247
7092
|
describePrice(request: DescribePriceRequest): Promise<DescribePriceResponse>;
|
|
7093
|
+
/**
|
|
7094
|
+
* > To query available regions and zones where ApsaraDB for MongoDB instances can be created, call the [DescribeAvailableResource](~~149719~~) operation.
|
|
7095
|
+
*
|
|
7096
|
+
* @param request DescribeRegionsRequest
|
|
7097
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7098
|
+
* @return DescribeRegionsResponse
|
|
7099
|
+
*/
|
|
6248
7100
|
describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse>;
|
|
7101
|
+
/**
|
|
7102
|
+
* > To query available regions and zones where ApsaraDB for MongoDB instances can be created, call the [DescribeAvailableResource](~~149719~~) operation.
|
|
7103
|
+
*
|
|
7104
|
+
* @param request DescribeRegionsRequest
|
|
7105
|
+
* @return DescribeRegionsResponse
|
|
7106
|
+
*/
|
|
6249
7107
|
describeRegions(request: DescribeRegionsRequest): Promise<DescribeRegionsResponse>;
|
|
7108
|
+
/**
|
|
7109
|
+
* This operation is applicable to subscription instances.
|
|
7110
|
+
*
|
|
7111
|
+
* @param request DescribeRenewalPriceRequest
|
|
7112
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7113
|
+
* @return DescribeRenewalPriceResponse
|
|
7114
|
+
*/
|
|
6250
7115
|
describeRenewalPriceWithOptions(request: DescribeRenewalPriceRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRenewalPriceResponse>;
|
|
7116
|
+
/**
|
|
7117
|
+
* This operation is applicable to subscription instances.
|
|
7118
|
+
*
|
|
7119
|
+
* @param request DescribeRenewalPriceRequest
|
|
7120
|
+
* @return DescribeRenewalPriceResponse
|
|
7121
|
+
*/
|
|
6251
7122
|
describeRenewalPrice(request: DescribeRenewalPriceRequest): Promise<DescribeRenewalPriceResponse>;
|
|
7123
|
+
/**
|
|
7124
|
+
* This operation is applicable to replica set instances and standalone instances, but not to sharded cluster instances.
|
|
7125
|
+
*
|
|
7126
|
+
* @param request DescribeReplicaSetRoleRequest
|
|
7127
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7128
|
+
* @return DescribeReplicaSetRoleResponse
|
|
7129
|
+
*/
|
|
6252
7130
|
describeReplicaSetRoleWithOptions(request: DescribeReplicaSetRoleRequest, runtime: $Util.RuntimeOptions): Promise<DescribeReplicaSetRoleResponse>;
|
|
7131
|
+
/**
|
|
7132
|
+
* This operation is applicable to replica set instances and standalone instances, but not to sharded cluster instances.
|
|
7133
|
+
*
|
|
7134
|
+
* @param request DescribeReplicaSetRoleRequest
|
|
7135
|
+
* @return DescribeReplicaSetRoleResponse
|
|
7136
|
+
*/
|
|
6253
7137
|
describeReplicaSetRole(request: DescribeReplicaSetRoleRequest): Promise<DescribeReplicaSetRoleResponse>;
|
|
7138
|
+
/**
|
|
7139
|
+
* > For more information, see [View the zone of a node](~~123825~~).
|
|
7140
|
+
* This operation is applicable only to replica set and sharded cluster instances, but not to standalone instances.
|
|
7141
|
+
*
|
|
7142
|
+
* @param request DescribeRoleZoneInfoRequest
|
|
7143
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7144
|
+
* @return DescribeRoleZoneInfoResponse
|
|
7145
|
+
*/
|
|
6254
7146
|
describeRoleZoneInfoWithOptions(request: DescribeRoleZoneInfoRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRoleZoneInfoResponse>;
|
|
7147
|
+
/**
|
|
7148
|
+
* > For more information, see [View the zone of a node](~~123825~~).
|
|
7149
|
+
* This operation is applicable only to replica set and sharded cluster instances, but not to standalone instances.
|
|
7150
|
+
*
|
|
7151
|
+
* @param request DescribeRoleZoneInfoRequest
|
|
7152
|
+
* @return DescribeRoleZoneInfoResponse
|
|
7153
|
+
*/
|
|
6255
7154
|
describeRoleZoneInfo(request: DescribeRoleZoneInfoRequest): Promise<DescribeRoleZoneInfoResponse>;
|
|
7155
|
+
/**
|
|
7156
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7157
|
+
* * 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~~).
|
|
7158
|
+
*
|
|
7159
|
+
* @param request DescribeRunningLogRecordsRequest
|
|
7160
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7161
|
+
* @return DescribeRunningLogRecordsResponse
|
|
7162
|
+
*/
|
|
6256
7163
|
describeRunningLogRecordsWithOptions(request: DescribeRunningLogRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRunningLogRecordsResponse>;
|
|
7164
|
+
/**
|
|
7165
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7166
|
+
* * 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~~).
|
|
7167
|
+
*
|
|
7168
|
+
* @param request DescribeRunningLogRecordsRequest
|
|
7169
|
+
* @return DescribeRunningLogRecordsResponse
|
|
7170
|
+
*/
|
|
6257
7171
|
describeRunningLogRecords(request: DescribeRunningLogRecordsRequest): Promise<DescribeRunningLogRecordsResponse>;
|
|
6258
7172
|
describeSecurityGroupConfigurationWithOptions(request: DescribeSecurityGroupConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSecurityGroupConfigurationResponse>;
|
|
6259
7173
|
describeSecurityGroupConfiguration(request: DescribeSecurityGroupConfigurationRequest): Promise<DescribeSecurityGroupConfigurationResponse>;
|
|
6260
7174
|
describeSecurityIpsWithOptions(request: DescribeSecurityIpsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSecurityIpsResponse>;
|
|
6261
7175
|
describeSecurityIps(request: DescribeSecurityIpsRequest): Promise<DescribeSecurityIpsResponse>;
|
|
7176
|
+
/**
|
|
7177
|
+
* This operation supports sharded cluster instances only.
|
|
7178
|
+
*
|
|
7179
|
+
* @param request DescribeShardingNetworkAddressRequest
|
|
7180
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7181
|
+
* @return DescribeShardingNetworkAddressResponse
|
|
7182
|
+
*/
|
|
6262
7183
|
describeShardingNetworkAddressWithOptions(request: DescribeShardingNetworkAddressRequest, runtime: $Util.RuntimeOptions): Promise<DescribeShardingNetworkAddressResponse>;
|
|
7184
|
+
/**
|
|
7185
|
+
* This operation supports sharded cluster instances only.
|
|
7186
|
+
*
|
|
7187
|
+
* @param request DescribeShardingNetworkAddressRequest
|
|
7188
|
+
* @return DescribeShardingNetworkAddressResponse
|
|
7189
|
+
*/
|
|
6263
7190
|
describeShardingNetworkAddress(request: DescribeShardingNetworkAddressRequest): Promise<DescribeShardingNetworkAddressResponse>;
|
|
7191
|
+
/**
|
|
7192
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7193
|
+
* * 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~~).
|
|
7194
|
+
*
|
|
7195
|
+
* @param request DescribeSlowLogRecordsRequest
|
|
7196
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7197
|
+
* @return DescribeSlowLogRecordsResponse
|
|
7198
|
+
*/
|
|
6264
7199
|
describeSlowLogRecordsWithOptions(request: DescribeSlowLogRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSlowLogRecordsResponse>;
|
|
7200
|
+
/**
|
|
7201
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7202
|
+
* * 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~~).
|
|
7203
|
+
*
|
|
7204
|
+
* @param request DescribeSlowLogRecordsRequest
|
|
7205
|
+
* @return DescribeSlowLogRecordsResponse
|
|
7206
|
+
*/
|
|
6265
7207
|
describeSlowLogRecords(request: DescribeSlowLogRecordsRequest): Promise<DescribeSlowLogRecordsResponse>;
|
|
6266
7208
|
describeTagsWithOptions(request: DescribeTagsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeTagsResponse>;
|
|
6267
7209
|
describeTags(request: DescribeTagsRequest): Promise<DescribeTagsResponse>;
|
|
7210
|
+
/**
|
|
7211
|
+
* You can use the custom key obtained by calling the DescribeUserEncryptionKeyList operation to enable TDE. For more information, see [ModifyDBInstanceTDE](~~131267~~).
|
|
7212
|
+
*
|
|
7213
|
+
* @param request DescribeUserEncryptionKeyListRequest
|
|
7214
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7215
|
+
* @return DescribeUserEncryptionKeyListResponse
|
|
7216
|
+
*/
|
|
6268
7217
|
describeUserEncryptionKeyListWithOptions(request: DescribeUserEncryptionKeyListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeUserEncryptionKeyListResponse>;
|
|
7218
|
+
/**
|
|
7219
|
+
* You can use the custom key obtained by calling the DescribeUserEncryptionKeyList operation to enable TDE. For more information, see [ModifyDBInstanceTDE](~~131267~~).
|
|
7220
|
+
*
|
|
7221
|
+
* @param request DescribeUserEncryptionKeyListRequest
|
|
7222
|
+
* @return DescribeUserEncryptionKeyListResponse
|
|
7223
|
+
*/
|
|
6269
7224
|
describeUserEncryptionKeyList(request: DescribeUserEncryptionKeyListRequest): Promise<DescribeUserEncryptionKeyListResponse>;
|
|
7225
|
+
/**
|
|
7226
|
+
* Before you call this operation, make sure that the instance meets the following requirements:
|
|
7227
|
+
* * The billing method of the instance is subscription.
|
|
7228
|
+
* * The instance has expired and is in the **Locking** state.
|
|
7229
|
+
*
|
|
7230
|
+
* @param request DestroyInstanceRequest
|
|
7231
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7232
|
+
* @return DestroyInstanceResponse
|
|
7233
|
+
*/
|
|
6270
7234
|
destroyInstanceWithOptions(request: DestroyInstanceRequest, runtime: $Util.RuntimeOptions): Promise<DestroyInstanceResponse>;
|
|
7235
|
+
/**
|
|
7236
|
+
* Before you call this operation, make sure that the instance meets the following requirements:
|
|
7237
|
+
* * The billing method of the instance is subscription.
|
|
7238
|
+
* * The instance has expired and is in the **Locking** state.
|
|
7239
|
+
*
|
|
7240
|
+
* @param request DestroyInstanceRequest
|
|
7241
|
+
* @return DestroyInstanceResponse
|
|
7242
|
+
*/
|
|
6271
7243
|
destroyInstance(request: DestroyInstanceRequest): Promise<DestroyInstanceResponse>;
|
|
7244
|
+
/**
|
|
7245
|
+
* 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.
|
|
7246
|
+
* > You can call this operation a maximum of 200 times per minute.
|
|
7247
|
+
*
|
|
7248
|
+
* @param request EvaluateResourceRequest
|
|
7249
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7250
|
+
* @return EvaluateResourceResponse
|
|
7251
|
+
*/
|
|
6272
7252
|
evaluateResourceWithOptions(request: EvaluateResourceRequest, runtime: $Util.RuntimeOptions): Promise<EvaluateResourceResponse>;
|
|
7253
|
+
/**
|
|
7254
|
+
* 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.
|
|
7255
|
+
* > You can call this operation a maximum of 200 times per minute.
|
|
7256
|
+
*
|
|
7257
|
+
* @param request EvaluateResourceRequest
|
|
7258
|
+
* @return EvaluateResourceResponse
|
|
7259
|
+
*/
|
|
6273
7260
|
evaluateResource(request: EvaluateResourceRequest): Promise<EvaluateResourceResponse>;
|
|
6274
7261
|
listTagResourcesWithOptions(request: ListTagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<ListTagResourcesResponse>;
|
|
6275
7262
|
listTagResources(request: ListTagResourcesRequest): Promise<ListTagResourcesResponse>;
|
|
7263
|
+
/**
|
|
7264
|
+
* * This operation is available only for replica set instances that run MongoDB 4.2 or earlier and sharded cluster instances.
|
|
7265
|
+
* * 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.
|
|
7266
|
+
* * Transparent data encryption (TDE) is disabled for the ApsaraDB for MongoDB instance.
|
|
7267
|
+
* * The source zone and the destination zone belong to the same region.
|
|
7268
|
+
* * 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~~).
|
|
7269
|
+
*
|
|
7270
|
+
* @param request MigrateAvailableZoneRequest
|
|
7271
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7272
|
+
* @return MigrateAvailableZoneResponse
|
|
7273
|
+
*/
|
|
6276
7274
|
migrateAvailableZoneWithOptions(request: MigrateAvailableZoneRequest, runtime: $Util.RuntimeOptions): Promise<MigrateAvailableZoneResponse>;
|
|
7275
|
+
/**
|
|
7276
|
+
* * This operation is available only for replica set instances that run MongoDB 4.2 or earlier and sharded cluster instances.
|
|
7277
|
+
* * 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.
|
|
7278
|
+
* * Transparent data encryption (TDE) is disabled for the ApsaraDB for MongoDB instance.
|
|
7279
|
+
* * The source zone and the destination zone belong to the same region.
|
|
7280
|
+
* * 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~~).
|
|
7281
|
+
*
|
|
7282
|
+
* @param request MigrateAvailableZoneRequest
|
|
7283
|
+
* @return MigrateAvailableZoneResponse
|
|
7284
|
+
*/
|
|
6277
7285
|
migrateAvailableZone(request: MigrateAvailableZoneRequest): Promise<MigrateAvailableZoneResponse>;
|
|
7286
|
+
/**
|
|
7287
|
+
* This operation is applicable only to replica set instances, but not to standalone instances or sharded cluster instances.
|
|
7288
|
+
* > If you have applied for a public endpoint of the instance, you must first call the [ReleasePublicNetworkAddress](~~67604~~) operation to release the public endpoint.
|
|
7289
|
+
*
|
|
7290
|
+
* @param request MigrateToOtherZoneRequest
|
|
7291
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7292
|
+
* @return MigrateToOtherZoneResponse
|
|
7293
|
+
*/
|
|
6278
7294
|
migrateToOtherZoneWithOptions(request: MigrateToOtherZoneRequest, runtime: $Util.RuntimeOptions): Promise<MigrateToOtherZoneResponse>;
|
|
7295
|
+
/**
|
|
7296
|
+
* This operation is applicable only to replica set instances, but not to standalone instances or sharded cluster instances.
|
|
7297
|
+
* > If you have applied for a public endpoint of the instance, you must first call the [ReleasePublicNetworkAddress](~~67604~~) operation to release the public endpoint.
|
|
7298
|
+
*
|
|
7299
|
+
* @param request MigrateToOtherZoneRequest
|
|
7300
|
+
* @return MigrateToOtherZoneResponse
|
|
7301
|
+
*/
|
|
6279
7302
|
migrateToOtherZone(request: MigrateToOtherZoneRequest): Promise<MigrateToOtherZoneResponse>;
|
|
6280
7303
|
modifyAccountDescriptionWithOptions(request: ModifyAccountDescriptionRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAccountDescriptionResponse>;
|
|
6281
7304
|
modifyAccountDescription(request: ModifyAccountDescriptionRequest): Promise<ModifyAccountDescriptionResponse>;
|
|
7305
|
+
/**
|
|
7306
|
+
* * The instance must be in the running state when you call this operation.
|
|
7307
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7308
|
+
* * 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~~).
|
|
7309
|
+
*
|
|
7310
|
+
* @param request ModifyAuditLogFilterRequest
|
|
7311
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7312
|
+
* @return ModifyAuditLogFilterResponse
|
|
7313
|
+
*/
|
|
6282
7314
|
modifyAuditLogFilterWithOptions(request: ModifyAuditLogFilterRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAuditLogFilterResponse>;
|
|
7315
|
+
/**
|
|
7316
|
+
* * The instance must be in the running state when you call this operation.
|
|
7317
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7318
|
+
* * 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~~).
|
|
7319
|
+
*
|
|
7320
|
+
* @param request ModifyAuditLogFilterRequest
|
|
7321
|
+
* @return ModifyAuditLogFilterResponse
|
|
7322
|
+
*/
|
|
6283
7323
|
modifyAuditLogFilter(request: ModifyAuditLogFilterRequest): Promise<ModifyAuditLogFilterResponse>;
|
|
7324
|
+
/**
|
|
7325
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7326
|
+
* * 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~~).
|
|
7327
|
+
*
|
|
7328
|
+
* @param request ModifyAuditPolicyRequest
|
|
7329
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7330
|
+
* @return ModifyAuditPolicyResponse
|
|
7331
|
+
*/
|
|
6284
7332
|
modifyAuditPolicyWithOptions(request: ModifyAuditPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAuditPolicyResponse>;
|
|
7333
|
+
/**
|
|
7334
|
+
* * This operation is applicable only to **general-purpose local-disk** and **dedicated local-disk** instances.
|
|
7335
|
+
* * 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~~).
|
|
7336
|
+
*
|
|
7337
|
+
* @param request ModifyAuditPolicyRequest
|
|
7338
|
+
* @return ModifyAuditPolicyResponse
|
|
7339
|
+
*/
|
|
6285
7340
|
modifyAuditPolicy(request: ModifyAuditPolicyRequest): Promise<ModifyAuditPolicyResponse>;
|
|
6286
7341
|
modifyBackupPolicyWithOptions(request: ModifyBackupPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ModifyBackupPolicyResponse>;
|
|
6287
7342
|
modifyBackupPolicy(request: ModifyBackupPolicyRequest): Promise<ModifyBackupPolicyResponse>;
|
|
@@ -6291,56 +7346,495 @@ export default class Client extends OpenApi {
|
|
|
6291
7346
|
modifyDBInstanceDescription(request: ModifyDBInstanceDescriptionRequest): Promise<ModifyDBInstanceDescriptionResponse>;
|
|
6292
7347
|
modifyDBInstanceMaintainTimeWithOptions(request: ModifyDBInstanceMaintainTimeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceMaintainTimeResponse>;
|
|
6293
7348
|
modifyDBInstanceMaintainTime(request: ModifyDBInstanceMaintainTimeRequest): Promise<ModifyDBInstanceMaintainTimeResponse>;
|
|
7349
|
+
/**
|
|
7350
|
+
* > 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.
|
|
7351
|
+
* Before you call this operation, make sure that the following requirements are met:
|
|
7352
|
+
* * The instance is a replica set or sharded cluster instance.
|
|
7353
|
+
* * The instance runs MongoDB 3.4 (the latest minor version) or 4.0.
|
|
7354
|
+
*
|
|
7355
|
+
* @param request ModifyDBInstanceMonitorRequest
|
|
7356
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7357
|
+
* @return ModifyDBInstanceMonitorResponse
|
|
7358
|
+
*/
|
|
6294
7359
|
modifyDBInstanceMonitorWithOptions(request: ModifyDBInstanceMonitorRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceMonitorResponse>;
|
|
7360
|
+
/**
|
|
7361
|
+
* > 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.
|
|
7362
|
+
* Before you call this operation, make sure that the following requirements are met:
|
|
7363
|
+
* * The instance is a replica set or sharded cluster instance.
|
|
7364
|
+
* * The instance runs MongoDB 3.4 (the latest minor version) or 4.0.
|
|
7365
|
+
*
|
|
7366
|
+
* @param request ModifyDBInstanceMonitorRequest
|
|
7367
|
+
* @return ModifyDBInstanceMonitorResponse
|
|
7368
|
+
*/
|
|
6295
7369
|
modifyDBInstanceMonitor(request: ModifyDBInstanceMonitorRequest): Promise<ModifyDBInstanceMonitorResponse>;
|
|
7370
|
+
/**
|
|
7371
|
+
* Before you call this operation, make sure that the following requirements are met:
|
|
7372
|
+
* * The instance is in the running state.
|
|
7373
|
+
* * The network of the instance is in hybrid access mode.
|
|
7374
|
+
* > This operation is applicable only to replica set and sharded cluster instances, but not to standalone instances.
|
|
7375
|
+
*
|
|
7376
|
+
* @param request ModifyDBInstanceNetExpireTimeRequest
|
|
7377
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7378
|
+
* @return ModifyDBInstanceNetExpireTimeResponse
|
|
7379
|
+
*/
|
|
6296
7380
|
modifyDBInstanceNetExpireTimeWithOptions(request: ModifyDBInstanceNetExpireTimeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceNetExpireTimeResponse>;
|
|
7381
|
+
/**
|
|
7382
|
+
* Before you call this operation, make sure that the following requirements are met:
|
|
7383
|
+
* * The instance is in the running state.
|
|
7384
|
+
* * The network of the instance is in hybrid access mode.
|
|
7385
|
+
* > This operation is applicable only to replica set and sharded cluster instances, but not to standalone instances.
|
|
7386
|
+
*
|
|
7387
|
+
* @param request ModifyDBInstanceNetExpireTimeRequest
|
|
7388
|
+
* @return ModifyDBInstanceNetExpireTimeResponse
|
|
7389
|
+
*/
|
|
6297
7390
|
modifyDBInstanceNetExpireTime(request: ModifyDBInstanceNetExpireTimeRequest): Promise<ModifyDBInstanceNetExpireTimeResponse>;
|
|
7391
|
+
/**
|
|
7392
|
+
* This operation is applicable only to replica set instances and sharded cluster instances.
|
|
7393
|
+
*
|
|
7394
|
+
* @param request ModifyDBInstanceNetworkTypeRequest
|
|
7395
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7396
|
+
* @return ModifyDBInstanceNetworkTypeResponse
|
|
7397
|
+
*/
|
|
6298
7398
|
modifyDBInstanceNetworkTypeWithOptions(request: ModifyDBInstanceNetworkTypeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceNetworkTypeResponse>;
|
|
7399
|
+
/**
|
|
7400
|
+
* This operation is applicable only to replica set instances and sharded cluster instances.
|
|
7401
|
+
*
|
|
7402
|
+
* @param request ModifyDBInstanceNetworkTypeRequest
|
|
7403
|
+
* @return ModifyDBInstanceNetworkTypeResponse
|
|
7404
|
+
*/
|
|
6299
7405
|
modifyDBInstanceNetworkType(request: ModifyDBInstanceNetworkTypeRequest): Promise<ModifyDBInstanceNetworkTypeResponse>;
|
|
7406
|
+
/**
|
|
7407
|
+
* ## Usage
|
|
7408
|
+
* Before you call this operation, make sure that the following requirements are met:
|
|
7409
|
+
* * The instance is in the running state.
|
|
7410
|
+
* * The instance is a replica set instance.
|
|
7411
|
+
* * 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>.
|
|
7412
|
+
* > 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.
|
|
7413
|
+
*
|
|
7414
|
+
* @param request ModifyDBInstanceSSLRequest
|
|
7415
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7416
|
+
* @return ModifyDBInstanceSSLResponse
|
|
7417
|
+
*/
|
|
6300
7418
|
modifyDBInstanceSSLWithOptions(request: ModifyDBInstanceSSLRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceSSLResponse>;
|
|
7419
|
+
/**
|
|
7420
|
+
* ## Usage
|
|
7421
|
+
* Before you call this operation, make sure that the following requirements are met:
|
|
7422
|
+
* * The instance is in the running state.
|
|
7423
|
+
* * The instance is a replica set instance.
|
|
7424
|
+
* * 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>.
|
|
7425
|
+
* > 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.
|
|
7426
|
+
*
|
|
7427
|
+
* @param request ModifyDBInstanceSSLRequest
|
|
7428
|
+
* @return ModifyDBInstanceSSLResponse
|
|
7429
|
+
*/
|
|
6301
7430
|
modifyDBInstanceSSL(request: ModifyDBInstanceSSLRequest): Promise<ModifyDBInstanceSSLResponse>;
|
|
7431
|
+
/**
|
|
7432
|
+
* 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.
|
|
7433
|
+
* 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.
|
|
7434
|
+
*
|
|
7435
|
+
* @param request ModifyDBInstanceSpecRequest
|
|
7436
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7437
|
+
* @return ModifyDBInstanceSpecResponse
|
|
7438
|
+
*/
|
|
6302
7439
|
modifyDBInstanceSpecWithOptions(request: ModifyDBInstanceSpecRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceSpecResponse>;
|
|
7440
|
+
/**
|
|
7441
|
+
* 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.
|
|
7442
|
+
* 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.
|
|
7443
|
+
*
|
|
7444
|
+
* @param request ModifyDBInstanceSpecRequest
|
|
7445
|
+
* @return ModifyDBInstanceSpecResponse
|
|
7446
|
+
*/
|
|
6303
7447
|
modifyDBInstanceSpec(request: ModifyDBInstanceSpecRequest): Promise<ModifyDBInstanceSpecResponse>;
|
|
7448
|
+
/**
|
|
7449
|
+
* 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~~).
|
|
7450
|
+
* > You cannot disable TDE after it is enabled.
|
|
7451
|
+
* Before you call this API operation, make sure that the ApsaraDB for MongoDB instance meets the following requirements:
|
|
7452
|
+
* * The instance is a replica set or sharded cluster instance.
|
|
7453
|
+
* * The storage engine of the instance is WiredTiger.
|
|
7454
|
+
* * 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.
|
|
7455
|
+
*
|
|
7456
|
+
* @param request ModifyDBInstanceTDERequest
|
|
7457
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7458
|
+
* @return ModifyDBInstanceTDEResponse
|
|
7459
|
+
*/
|
|
6304
7460
|
modifyDBInstanceTDEWithOptions(request: ModifyDBInstanceTDERequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceTDEResponse>;
|
|
7461
|
+
/**
|
|
7462
|
+
* 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~~).
|
|
7463
|
+
* > You cannot disable TDE after it is enabled.
|
|
7464
|
+
* Before you call this API operation, make sure that the ApsaraDB for MongoDB instance meets the following requirements:
|
|
7465
|
+
* * The instance is a replica set or sharded cluster instance.
|
|
7466
|
+
* * The storage engine of the instance is WiredTiger.
|
|
7467
|
+
* * 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.
|
|
7468
|
+
*
|
|
7469
|
+
* @param request ModifyDBInstanceTDERequest
|
|
7470
|
+
* @return ModifyDBInstanceTDEResponse
|
|
7471
|
+
*/
|
|
6305
7472
|
modifyDBInstanceTDE(request: ModifyDBInstanceTDERequest): Promise<ModifyDBInstanceTDEResponse>;
|
|
7473
|
+
modifyGlobalSecurityIPGroupWithOptions(request: ModifyGlobalSecurityIPGroupRequest, runtime: $Util.RuntimeOptions): Promise<ModifyGlobalSecurityIPGroupResponse>;
|
|
7474
|
+
modifyGlobalSecurityIPGroup(request: ModifyGlobalSecurityIPGroupRequest): Promise<ModifyGlobalSecurityIPGroupResponse>;
|
|
7475
|
+
modifyGlobalSecurityIPGroupNameWithOptions(request: ModifyGlobalSecurityIPGroupNameRequest, runtime: $Util.RuntimeOptions): Promise<ModifyGlobalSecurityIPGroupNameResponse>;
|
|
7476
|
+
modifyGlobalSecurityIPGroupName(request: ModifyGlobalSecurityIPGroupNameRequest): Promise<ModifyGlobalSecurityIPGroupNameResponse>;
|
|
7477
|
+
modifyGlobalSecurityIPGroupRelationWithOptions(request: ModifyGlobalSecurityIPGroupRelationRequest, runtime: $Util.RuntimeOptions): Promise<ModifyGlobalSecurityIPGroupRelationResponse>;
|
|
7478
|
+
modifyGlobalSecurityIPGroupRelation(request: ModifyGlobalSecurityIPGroupRelationRequest): Promise<ModifyGlobalSecurityIPGroupRelationResponse>;
|
|
7479
|
+
/**
|
|
7480
|
+
* 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).
|
|
7481
|
+
* This operation is applicable to subscription instances.
|
|
7482
|
+
* > 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.
|
|
7483
|
+
*
|
|
7484
|
+
* @param request ModifyInstanceAutoRenewalAttributeRequest
|
|
7485
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7486
|
+
* @return ModifyInstanceAutoRenewalAttributeResponse
|
|
7487
|
+
*/
|
|
6306
7488
|
modifyInstanceAutoRenewalAttributeWithOptions(request: ModifyInstanceAutoRenewalAttributeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyInstanceAutoRenewalAttributeResponse>;
|
|
7489
|
+
/**
|
|
7490
|
+
* 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).
|
|
7491
|
+
* This operation is applicable to subscription instances.
|
|
7492
|
+
* > 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.
|
|
7493
|
+
*
|
|
7494
|
+
* @param request ModifyInstanceAutoRenewalAttributeRequest
|
|
7495
|
+
* @return ModifyInstanceAutoRenewalAttributeResponse
|
|
7496
|
+
*/
|
|
6307
7497
|
modifyInstanceAutoRenewalAttribute(request: ModifyInstanceAutoRenewalAttributeRequest): Promise<ModifyInstanceAutoRenewalAttributeResponse>;
|
|
7498
|
+
/**
|
|
7499
|
+
* You can call this operation to enable or disable password-free access from the same VPC as an ApsaraDB for MongoDB instance.
|
|
7500
|
+
*
|
|
7501
|
+
* @param request ModifyInstanceVpcAuthModeRequest
|
|
7502
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7503
|
+
* @return ModifyInstanceVpcAuthModeResponse
|
|
7504
|
+
*/
|
|
6308
7505
|
modifyInstanceVpcAuthModeWithOptions(request: ModifyInstanceVpcAuthModeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyInstanceVpcAuthModeResponse>;
|
|
7506
|
+
/**
|
|
7507
|
+
* You can call this operation to enable or disable password-free access from the same VPC as an ApsaraDB for MongoDB instance.
|
|
7508
|
+
*
|
|
7509
|
+
* @param request ModifyInstanceVpcAuthModeRequest
|
|
7510
|
+
* @return ModifyInstanceVpcAuthModeResponse
|
|
7511
|
+
*/
|
|
6309
7512
|
modifyInstanceVpcAuthMode(request: ModifyInstanceVpcAuthModeRequest): Promise<ModifyInstanceVpcAuthModeResponse>;
|
|
7513
|
+
/**
|
|
7514
|
+
* 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.
|
|
7515
|
+
* > This operation is applicable only to sharded cluster instances.
|
|
7516
|
+
*
|
|
7517
|
+
* @param request ModifyNodeSpecRequest
|
|
7518
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7519
|
+
* @return ModifyNodeSpecResponse
|
|
7520
|
+
*/
|
|
6310
7521
|
modifyNodeSpecWithOptions(request: ModifyNodeSpecRequest, runtime: $Util.RuntimeOptions): Promise<ModifyNodeSpecResponse>;
|
|
7522
|
+
/**
|
|
7523
|
+
* 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.
|
|
7524
|
+
* > This operation is applicable only to sharded cluster instances.
|
|
7525
|
+
*
|
|
7526
|
+
* @param request ModifyNodeSpecRequest
|
|
7527
|
+
* @return ModifyNodeSpecResponse
|
|
7528
|
+
*/
|
|
6311
7529
|
modifyNodeSpec(request: ModifyNodeSpecRequest): Promise<ModifyNodeSpecResponse>;
|
|
7530
|
+
/**
|
|
7531
|
+
* 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.
|
|
7532
|
+
* This operation is applicable to only sharded cluster instances.
|
|
7533
|
+
*
|
|
7534
|
+
* @param request ModifyNodeSpecBatchRequest
|
|
7535
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7536
|
+
* @return ModifyNodeSpecBatchResponse
|
|
7537
|
+
*/
|
|
6312
7538
|
modifyNodeSpecBatchWithOptions(request: ModifyNodeSpecBatchRequest, runtime: $Util.RuntimeOptions): Promise<ModifyNodeSpecBatchResponse>;
|
|
7539
|
+
/**
|
|
7540
|
+
* 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.
|
|
7541
|
+
* This operation is applicable to only sharded cluster instances.
|
|
7542
|
+
*
|
|
7543
|
+
* @param request ModifyNodeSpecBatchRequest
|
|
7544
|
+
* @return ModifyNodeSpecBatchResponse
|
|
7545
|
+
*/
|
|
6313
7546
|
modifyNodeSpecBatch(request: ModifyNodeSpecBatchRequest): Promise<ModifyNodeSpecBatchResponse>;
|
|
7547
|
+
/**
|
|
7548
|
+
* ## Precautions
|
|
7549
|
+
* * The instance must be in the Running state when you call this operation.
|
|
7550
|
+
* * 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.
|
|
7551
|
+
*
|
|
7552
|
+
* @param request ModifyParametersRequest
|
|
7553
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7554
|
+
* @return ModifyParametersResponse
|
|
7555
|
+
*/
|
|
6314
7556
|
modifyParametersWithOptions(request: ModifyParametersRequest, runtime: $Util.RuntimeOptions): Promise<ModifyParametersResponse>;
|
|
7557
|
+
/**
|
|
7558
|
+
* ## Precautions
|
|
7559
|
+
* * The instance must be in the Running state when you call this operation.
|
|
7560
|
+
* * 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.
|
|
7561
|
+
*
|
|
7562
|
+
* @param request ModifyParametersRequest
|
|
7563
|
+
* @return ModifyParametersResponse
|
|
7564
|
+
*/
|
|
6315
7565
|
modifyParameters(request: ModifyParametersRequest): Promise<ModifyParametersResponse>;
|
|
7566
|
+
/**
|
|
7567
|
+
* 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~~)
|
|
7568
|
+
*
|
|
7569
|
+
* @param request ModifyResourceGroupRequest
|
|
7570
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7571
|
+
* @return ModifyResourceGroupResponse
|
|
7572
|
+
*/
|
|
6316
7573
|
modifyResourceGroupWithOptions(request: ModifyResourceGroupRequest, runtime: $Util.RuntimeOptions): Promise<ModifyResourceGroupResponse>;
|
|
7574
|
+
/**
|
|
7575
|
+
* 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~~)
|
|
7576
|
+
*
|
|
7577
|
+
* @param request ModifyResourceGroupRequest
|
|
7578
|
+
* @return ModifyResourceGroupResponse
|
|
7579
|
+
*/
|
|
6317
7580
|
modifyResourceGroup(request: ModifyResourceGroupRequest): Promise<ModifyResourceGroupResponse>;
|
|
7581
|
+
/**
|
|
7582
|
+
* > For a sharded cluster instance, the bound ECS security group takes effect only for mongos nodes.
|
|
7583
|
+
*
|
|
7584
|
+
* @param request ModifySecurityGroupConfigurationRequest
|
|
7585
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7586
|
+
* @return ModifySecurityGroupConfigurationResponse
|
|
7587
|
+
*/
|
|
6318
7588
|
modifySecurityGroupConfigurationWithOptions(request: ModifySecurityGroupConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<ModifySecurityGroupConfigurationResponse>;
|
|
7589
|
+
/**
|
|
7590
|
+
* > For a sharded cluster instance, the bound ECS security group takes effect only for mongos nodes.
|
|
7591
|
+
*
|
|
7592
|
+
* @param request ModifySecurityGroupConfigurationRequest
|
|
7593
|
+
* @return ModifySecurityGroupConfigurationResponse
|
|
7594
|
+
*/
|
|
6319
7595
|
modifySecurityGroupConfiguration(request: ModifySecurityGroupConfigurationRequest): Promise<ModifySecurityGroupConfigurationResponse>;
|
|
6320
7596
|
modifySecurityIpsWithOptions(request: ModifySecurityIpsRequest, runtime: $Util.RuntimeOptions): Promise<ModifySecurityIpsResponse>;
|
|
6321
7597
|
modifySecurityIps(request: ModifySecurityIpsRequest): Promise<ModifySecurityIpsResponse>;
|
|
7598
|
+
/**
|
|
7599
|
+
* * 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~~).
|
|
7600
|
+
* * To release the public endpoint of a shard or Configserver node in a sharded cluster instance, you can call the [ReleasePublicNetworkAddress](~~67604~~) operation.
|
|
7601
|
+
*
|
|
7602
|
+
* @param request ReleaseNodePrivateNetworkAddressRequest
|
|
7603
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7604
|
+
* @return ReleaseNodePrivateNetworkAddressResponse
|
|
7605
|
+
*/
|
|
6322
7606
|
releaseNodePrivateNetworkAddressWithOptions(request: ReleaseNodePrivateNetworkAddressRequest, runtime: $Util.RuntimeOptions): Promise<ReleaseNodePrivateNetworkAddressResponse>;
|
|
7607
|
+
/**
|
|
7608
|
+
* * 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~~).
|
|
7609
|
+
* * To release the public endpoint of a shard or Configserver node in a sharded cluster instance, you can call the [ReleasePublicNetworkAddress](~~67604~~) operation.
|
|
7610
|
+
*
|
|
7611
|
+
* @param request ReleaseNodePrivateNetworkAddressRequest
|
|
7612
|
+
* @return ReleaseNodePrivateNetworkAddressResponse
|
|
7613
|
+
*/
|
|
6323
7614
|
releaseNodePrivateNetworkAddress(request: ReleaseNodePrivateNetworkAddressRequest): Promise<ReleaseNodePrivateNetworkAddressResponse>;
|
|
6324
7615
|
releasePublicNetworkAddressWithOptions(request: ReleasePublicNetworkAddressRequest, runtime: $Util.RuntimeOptions): Promise<ReleasePublicNetworkAddressResponse>;
|
|
6325
7616
|
releasePublicNetworkAddress(request: ReleasePublicNetworkAddressRequest): Promise<ReleasePublicNetworkAddressResponse>;
|
|
7617
|
+
/**
|
|
7618
|
+
* 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.
|
|
7619
|
+
* This parameter is only applicable to Subscription instances.
|
|
7620
|
+
*
|
|
7621
|
+
* @param request RenewDBInstanceRequest
|
|
7622
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7623
|
+
* @return RenewDBInstanceResponse
|
|
7624
|
+
*/
|
|
6326
7625
|
renewDBInstanceWithOptions(request: RenewDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<RenewDBInstanceResponse>;
|
|
7626
|
+
/**
|
|
7627
|
+
* 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.
|
|
7628
|
+
* This parameter is only applicable to Subscription instances.
|
|
7629
|
+
*
|
|
7630
|
+
* @param request RenewDBInstanceRequest
|
|
7631
|
+
* @return RenewDBInstanceResponse
|
|
7632
|
+
*/
|
|
6327
7633
|
renewDBInstance(request: RenewDBInstanceRequest): Promise<RenewDBInstanceResponse>;
|
|
7634
|
+
/**
|
|
7635
|
+
* > This operation can reset only the password of the root account of an instance.
|
|
7636
|
+
*
|
|
7637
|
+
* @param request ResetAccountPasswordRequest
|
|
7638
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7639
|
+
* @return ResetAccountPasswordResponse
|
|
7640
|
+
*/
|
|
6328
7641
|
resetAccountPasswordWithOptions(request: ResetAccountPasswordRequest, runtime: $Util.RuntimeOptions): Promise<ResetAccountPasswordResponse>;
|
|
7642
|
+
/**
|
|
7643
|
+
* > This operation can reset only the password of the root account of an instance.
|
|
7644
|
+
*
|
|
7645
|
+
* @param request ResetAccountPasswordRequest
|
|
7646
|
+
* @return ResetAccountPasswordResponse
|
|
7647
|
+
*/
|
|
6329
7648
|
resetAccountPassword(request: ResetAccountPasswordRequest): Promise<ResetAccountPasswordResponse>;
|
|
7649
|
+
/**
|
|
7650
|
+
* This operation can also be used to restart a shard or mongos node in a sharded cluster instance.
|
|
7651
|
+
*
|
|
7652
|
+
* @param request RestartDBInstanceRequest
|
|
7653
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7654
|
+
* @return RestartDBInstanceResponse
|
|
7655
|
+
*/
|
|
6330
7656
|
restartDBInstanceWithOptions(request: RestartDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<RestartDBInstanceResponse>;
|
|
7657
|
+
/**
|
|
7658
|
+
* This operation can also be used to restart a shard or mongos node in a sharded cluster instance.
|
|
7659
|
+
*
|
|
7660
|
+
* @param request RestartDBInstanceRequest
|
|
7661
|
+
* @return RestartDBInstanceResponse
|
|
7662
|
+
*/
|
|
6331
7663
|
restartDBInstance(request: RestartDBInstanceRequest): Promise<RestartDBInstanceResponse>;
|
|
7664
|
+
/**
|
|
7665
|
+
* 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.
|
|
7666
|
+
* > This operation overwrites the data of the current instance, and the data cannot be recovered. Exercise caution when performing this operation.
|
|
7667
|
+
*
|
|
7668
|
+
* @param request RestoreDBInstanceRequest
|
|
7669
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7670
|
+
* @return RestoreDBInstanceResponse
|
|
7671
|
+
*/
|
|
6332
7672
|
restoreDBInstanceWithOptions(request: RestoreDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<RestoreDBInstanceResponse>;
|
|
7673
|
+
/**
|
|
7674
|
+
* 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.
|
|
7675
|
+
* > This operation overwrites the data of the current instance, and the data cannot be recovered. Exercise caution when performing this operation.
|
|
7676
|
+
*
|
|
7677
|
+
* @param request RestoreDBInstanceRequest
|
|
7678
|
+
* @return RestoreDBInstanceResponse
|
|
7679
|
+
*/
|
|
6333
7680
|
restoreDBInstance(request: RestoreDBInstanceRequest): Promise<RestoreDBInstanceResponse>;
|
|
7681
|
+
/**
|
|
7682
|
+
* The instance must be running when you call this operation.
|
|
7683
|
+
* >
|
|
7684
|
+
* * This operation is applicable to replica set instances and sharded cluster instances, but cannot be performed on standalone instances.
|
|
7685
|
+
* * On replica set instances, the switch is performed between instances. On sharded cluster instances, the switch is performed between shards.
|
|
7686
|
+
*
|
|
7687
|
+
* @param request SwitchDBInstanceHARequest
|
|
7688
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7689
|
+
* @return SwitchDBInstanceHAResponse
|
|
7690
|
+
*/
|
|
6334
7691
|
switchDBInstanceHAWithOptions(request: SwitchDBInstanceHARequest, runtime: $Util.RuntimeOptions): Promise<SwitchDBInstanceHAResponse>;
|
|
7692
|
+
/**
|
|
7693
|
+
* The instance must be running when you call this operation.
|
|
7694
|
+
* >
|
|
7695
|
+
* * This operation is applicable to replica set instances and sharded cluster instances, but cannot be performed on standalone instances.
|
|
7696
|
+
* * On replica set instances, the switch is performed between instances. On sharded cluster instances, the switch is performed between shards.
|
|
7697
|
+
*
|
|
7698
|
+
* @param request SwitchDBInstanceHARequest
|
|
7699
|
+
* @return SwitchDBInstanceHAResponse
|
|
7700
|
+
*/
|
|
6335
7701
|
switchDBInstanceHA(request: SwitchDBInstanceHARequest): Promise<SwitchDBInstanceHAResponse>;
|
|
7702
|
+
/**
|
|
7703
|
+
* You can create multiple tags and bind them to multiple instances. This allows you to classify and filter instances by tag.
|
|
7704
|
+
* * 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.
|
|
7705
|
+
* * If the tag you specify does not exist, this tag is automatically created and bound to the specified instance.
|
|
7706
|
+
* * If a tag that has the same key is already bound to the instance, the new tag overwrites the existing tag.
|
|
7707
|
+
* * You can bind up to 20 tags to each instance.
|
|
7708
|
+
* * You can bind tags to up to 50 instances each time you call the operation.
|
|
7709
|
+
*
|
|
7710
|
+
* @param request TagResourcesRequest
|
|
7711
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7712
|
+
* @return TagResourcesResponse
|
|
7713
|
+
*/
|
|
6336
7714
|
tagResourcesWithOptions(request: TagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<TagResourcesResponse>;
|
|
7715
|
+
/**
|
|
7716
|
+
* You can create multiple tags and bind them to multiple instances. This allows you to classify and filter instances by tag.
|
|
7717
|
+
* * 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.
|
|
7718
|
+
* * If the tag you specify does not exist, this tag is automatically created and bound to the specified instance.
|
|
7719
|
+
* * If a tag that has the same key is already bound to the instance, the new tag overwrites the existing tag.
|
|
7720
|
+
* * You can bind up to 20 tags to each instance.
|
|
7721
|
+
* * You can bind tags to up to 50 instances each time you call the operation.
|
|
7722
|
+
*
|
|
7723
|
+
* @param request TagResourcesRequest
|
|
7724
|
+
* @return TagResourcesResponse
|
|
7725
|
+
*/
|
|
6337
7726
|
tagResources(request: TagResourcesRequest): Promise<TagResourcesResponse>;
|
|
7727
|
+
/**
|
|
7728
|
+
* 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.
|
|
7729
|
+
* Before you call this API operation, make sure that the ApsaraDB for MongoDB instance meets the following requirements:
|
|
7730
|
+
* * The instance is in the Running state.
|
|
7731
|
+
* * Your instance has no unpaid billing method change orders.
|
|
7732
|
+
* * The instance type is available for purchase. For more information about unavailable instance types, see [Instance types](~~57141~~).
|
|
7733
|
+
* > 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.
|
|
7734
|
+
*
|
|
7735
|
+
* @param request TransformInstanceChargeTypeRequest
|
|
7736
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7737
|
+
* @return TransformInstanceChargeTypeResponse
|
|
7738
|
+
*/
|
|
7739
|
+
transformInstanceChargeTypeWithOptions(request: TransformInstanceChargeTypeRequest, runtime: $Util.RuntimeOptions): Promise<TransformInstanceChargeTypeResponse>;
|
|
7740
|
+
/**
|
|
7741
|
+
* 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.
|
|
7742
|
+
* Before you call this API operation, make sure that the ApsaraDB for MongoDB instance meets the following requirements:
|
|
7743
|
+
* * The instance is in the Running state.
|
|
7744
|
+
* * Your instance has no unpaid billing method change orders.
|
|
7745
|
+
* * The instance type is available for purchase. For more information about unavailable instance types, see [Instance types](~~57141~~).
|
|
7746
|
+
* > 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.
|
|
7747
|
+
*
|
|
7748
|
+
* @param request TransformInstanceChargeTypeRequest
|
|
7749
|
+
* @return TransformInstanceChargeTypeResponse
|
|
7750
|
+
*/
|
|
7751
|
+
transformInstanceChargeType(request: TransformInstanceChargeTypeRequest): Promise<TransformInstanceChargeTypeResponse>;
|
|
7752
|
+
/**
|
|
7753
|
+
* 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).
|
|
7754
|
+
* A subscription instance cannot be changed to a pay-as-you-go instance. To avoid wasting resources, proceed with caution.
|
|
7755
|
+
* Before you call this API operation, make sure that the ApsaraDB for MongoDB instance meets the following requirements:
|
|
7756
|
+
* * The instance is in the running state.
|
|
7757
|
+
* * The billing method of the instance is pay-as-you-go.
|
|
7758
|
+
* * The instance has no unpaid subscription orders.
|
|
7759
|
+
* * The instance type is available for purchase. For more information about unavailable instance types, see [Instance types](~~57141~~).
|
|
7760
|
+
* > 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.
|
|
7761
|
+
*
|
|
7762
|
+
* @param request TransformToPrePaidRequest
|
|
7763
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7764
|
+
* @return TransformToPrePaidResponse
|
|
7765
|
+
*/
|
|
6338
7766
|
transformToPrePaidWithOptions(request: TransformToPrePaidRequest, runtime: $Util.RuntimeOptions): Promise<TransformToPrePaidResponse>;
|
|
7767
|
+
/**
|
|
7768
|
+
* 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).
|
|
7769
|
+
* A subscription instance cannot be changed to a pay-as-you-go instance. To avoid wasting resources, proceed with caution.
|
|
7770
|
+
* Before you call this API operation, make sure that the ApsaraDB for MongoDB instance meets the following requirements:
|
|
7771
|
+
* * The instance is in the running state.
|
|
7772
|
+
* * The billing method of the instance is pay-as-you-go.
|
|
7773
|
+
* * The instance has no unpaid subscription orders.
|
|
7774
|
+
* * The instance type is available for purchase. For more information about unavailable instance types, see [Instance types](~~57141~~).
|
|
7775
|
+
* > 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.
|
|
7776
|
+
*
|
|
7777
|
+
* @param request TransformToPrePaidRequest
|
|
7778
|
+
* @return TransformToPrePaidResponse
|
|
7779
|
+
*/
|
|
6339
7780
|
transformToPrePaid(request: TransformToPrePaidRequest): Promise<TransformToPrePaidResponse>;
|
|
7781
|
+
/**
|
|
7782
|
+
* >
|
|
7783
|
+
* * You can remove up to 20 tags at a time.
|
|
7784
|
+
* * If you remove a tag from all instances, the tag is automatically deleted.
|
|
7785
|
+
*
|
|
7786
|
+
* @param request UntagResourcesRequest
|
|
7787
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7788
|
+
* @return UntagResourcesResponse
|
|
7789
|
+
*/
|
|
6340
7790
|
untagResourcesWithOptions(request: UntagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<UntagResourcesResponse>;
|
|
7791
|
+
/**
|
|
7792
|
+
* >
|
|
7793
|
+
* * You can remove up to 20 tags at a time.
|
|
7794
|
+
* * If you remove a tag from all instances, the tag is automatically deleted.
|
|
7795
|
+
*
|
|
7796
|
+
* @param request UntagResourcesRequest
|
|
7797
|
+
* @return UntagResourcesResponse
|
|
7798
|
+
*/
|
|
6341
7799
|
untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse>;
|
|
7800
|
+
/**
|
|
7801
|
+
* The instance must be in the running state when you call this operation.
|
|
7802
|
+
* > * 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.
|
|
7803
|
+
* > * You cannot downgrade the MongoDB version of an instance after you upgrade it.
|
|
7804
|
+
* > * 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.
|
|
7805
|
+
*
|
|
7806
|
+
* @param request UpgradeDBInstanceEngineVersionRequest
|
|
7807
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7808
|
+
* @return UpgradeDBInstanceEngineVersionResponse
|
|
7809
|
+
*/
|
|
6342
7810
|
upgradeDBInstanceEngineVersionWithOptions(request: UpgradeDBInstanceEngineVersionRequest, runtime: $Util.RuntimeOptions): Promise<UpgradeDBInstanceEngineVersionResponse>;
|
|
7811
|
+
/**
|
|
7812
|
+
* The instance must be in the running state when you call this operation.
|
|
7813
|
+
* > * 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.
|
|
7814
|
+
* > * You cannot downgrade the MongoDB version of an instance after you upgrade it.
|
|
7815
|
+
* > * 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.
|
|
7816
|
+
*
|
|
7817
|
+
* @param request UpgradeDBInstanceEngineVersionRequest
|
|
7818
|
+
* @return UpgradeDBInstanceEngineVersionResponse
|
|
7819
|
+
*/
|
|
6343
7820
|
upgradeDBInstanceEngineVersion(request: UpgradeDBInstanceEngineVersionRequest): Promise<UpgradeDBInstanceEngineVersionResponse>;
|
|
7821
|
+
/**
|
|
7822
|
+
* When you call the UpgradeDBInstanceKernelVersion operation, the instance must be in the Running state.
|
|
7823
|
+
* > * The UpgradeDBInstanceKernelVersion operation is applicable to replica set and sharded cluster instances, but not to standalone instances.
|
|
7824
|
+
* > * The instance will be restarted once during the upgrade. Call this operation during off-peak hours.
|
|
7825
|
+
*
|
|
7826
|
+
* @param request UpgradeDBInstanceKernelVersionRequest
|
|
7827
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7828
|
+
* @return UpgradeDBInstanceKernelVersionResponse
|
|
7829
|
+
*/
|
|
6344
7830
|
upgradeDBInstanceKernelVersionWithOptions(request: UpgradeDBInstanceKernelVersionRequest, runtime: $Util.RuntimeOptions): Promise<UpgradeDBInstanceKernelVersionResponse>;
|
|
7831
|
+
/**
|
|
7832
|
+
* When you call the UpgradeDBInstanceKernelVersion operation, the instance must be in the Running state.
|
|
7833
|
+
* > * The UpgradeDBInstanceKernelVersion operation is applicable to replica set and sharded cluster instances, but not to standalone instances.
|
|
7834
|
+
* > * The instance will be restarted once during the upgrade. Call this operation during off-peak hours.
|
|
7835
|
+
*
|
|
7836
|
+
* @param request UpgradeDBInstanceKernelVersionRequest
|
|
7837
|
+
* @return UpgradeDBInstanceKernelVersionResponse
|
|
7838
|
+
*/
|
|
6345
7839
|
upgradeDBInstanceKernelVersion(request: UpgradeDBInstanceKernelVersionRequest): Promise<UpgradeDBInstanceKernelVersionResponse>;
|
|
6346
7840
|
}
|