ksyun-sdk-node 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/service/Bws/v20160304/index.js +140 -0
- package/dist/service/Eip/v20160304/index.js +157 -0
- package/dist/service/Epc/v20151101/index.js +1044 -0
- package/dist/service/Kec/v20160304/index.js +39 -35
- package/dist/service/Mongodb/v20170101/index.js +668 -0
- package/dist/service/Sks/v20151101/index.js +115 -0
- package/dist/service/Slb/v20160304/index.js +973 -0
- package/dist/service/Slb/v20171210/index.js +50 -0
- package/dist/service/Vpc/v20160304/index.js +1445 -0
- package/package.json +1 -1
- package/src/service/Bws/v20160304/index.js +129 -0
- package/src/service/Eip/v20160304/index.js +147 -0
- package/src/service/Epc/v20151101/index.js +1036 -0
- package/src/service/Kec/v20160304/index.js +31 -29
- package/src/service/Mongodb/v20170101/index.js +657 -0
- package/src/service/Sks/v20151101/index.js +105 -0
- package/src/service/Slb/v20160304/index.js +962 -0
- package/src/service/Slb/v20171210/index.js +39 -0
- package/src/service/Vpc/v20160304/index.js +1435 -0
|
@@ -78,7 +78,10 @@ module.exports = class Client extends BaseClient {
|
|
|
78
78
|
'InstanceNameSuffix': 'String',
|
|
79
79
|
'ProjectId': 'Int',
|
|
80
80
|
'DataDisk': 'Filter',
|
|
81
|
-
'NetworkInterface': 'Filter'
|
|
81
|
+
'NetworkInterface': 'Filter',
|
|
82
|
+
'Userdata': 'String',
|
|
83
|
+
'SystemDisk.DiskType': 'String',
|
|
84
|
+
'SystemDisk.DiskSize': 'Int'
|
|
82
85
|
}
|
|
83
86
|
},
|
|
84
87
|
'StartInstances': {
|
|
@@ -174,7 +177,9 @@ module.exports = class Client extends BaseClient {
|
|
|
174
177
|
'SystemDisk.DiskType': 'String',
|
|
175
178
|
'DataDisk': 'Filter',
|
|
176
179
|
'StopInstance': 'Boolean',
|
|
177
|
-
'AutoRestart': 'Boolean'
|
|
180
|
+
'AutoRestart': 'Boolean',
|
|
181
|
+
'SystemDisk.DiskSize': 'Int',
|
|
182
|
+
'SystemDisk.ResizeType': 'String'
|
|
178
183
|
}
|
|
179
184
|
},
|
|
180
185
|
'TerminateInstances': {
|
|
@@ -245,10 +250,12 @@ module.exports = class Client extends BaseClient {
|
|
|
245
250
|
'paramsType': {
|
|
246
251
|
'InstanceId': 'String',
|
|
247
252
|
'ImageId': 'String',
|
|
248
|
-
'SystemDisk': '
|
|
253
|
+
'SystemDisk.DiskSize': 'Int',
|
|
249
254
|
'InstancePassword': 'String',
|
|
250
255
|
'KeyId': 'Filter',
|
|
251
|
-
'KeepImageLogin': 'Boolean'
|
|
256
|
+
'KeepImageLogin': 'Boolean',
|
|
257
|
+
'SystemDisk.DiskType': 'String',
|
|
258
|
+
'SystemDisk.ResizeType': 'String'
|
|
252
259
|
}
|
|
253
260
|
},
|
|
254
261
|
'CreateImage': {
|
|
@@ -431,7 +438,7 @@ module.exports = class Client extends BaseClient {
|
|
|
431
438
|
}
|
|
432
439
|
},
|
|
433
440
|
'paramsType': {
|
|
434
|
-
'LocalVolumeSnapshotId': '
|
|
441
|
+
'LocalVolumeSnapshotId': 'Filter'
|
|
435
442
|
}
|
|
436
443
|
},
|
|
437
444
|
'ModifyDataGuardGroups': {
|
|
@@ -632,7 +639,7 @@ module.exports = class Client extends BaseClient {
|
|
|
632
639
|
'KeepImageLogin': 'Boolean',
|
|
633
640
|
'KeyId': 'Filter',
|
|
634
641
|
'DataDisk': 'Filter',
|
|
635
|
-
'SystemDisk': '
|
|
642
|
+
'SystemDisk.DiskSize': 'String',
|
|
636
643
|
'AddressBandWidth': 'Int',
|
|
637
644
|
'BandWidthShareId': 'String',
|
|
638
645
|
'LineId': 'String',
|
|
@@ -641,7 +648,9 @@ module.exports = class Client extends BaseClient {
|
|
|
641
648
|
'InstanceNameSuffix': 'String',
|
|
642
649
|
'UserData': 'String',
|
|
643
650
|
'InstanceNameTimeSuffix': 'Boolean',
|
|
644
|
-
'Tag': 'Filter'
|
|
651
|
+
'Tag': 'Filter',
|
|
652
|
+
'SystemDisk.DiskType': 'String',
|
|
653
|
+
'SystemDisk.ResizeType': 'String'
|
|
645
654
|
}
|
|
646
655
|
},
|
|
647
656
|
'DeleteScalingConfiguration': {
|
|
@@ -1408,7 +1417,7 @@ module.exports = class Client extends BaseClient {
|
|
|
1408
1417
|
'paramsType': {
|
|
1409
1418
|
'ImageId': 'String',
|
|
1410
1419
|
'InstanceType': 'String',
|
|
1411
|
-
'SystemDisk': 'String',
|
|
1420
|
+
'SystemDisk.DiskSize': 'String',
|
|
1412
1421
|
'DataDiskGb': 'Int',
|
|
1413
1422
|
'SubnetId': 'String',
|
|
1414
1423
|
'DataDisk': 'Filter',
|
|
@@ -1428,7 +1437,9 @@ module.exports = class Client extends BaseClient {
|
|
|
1428
1437
|
'AddressChargeType': 'String',
|
|
1429
1438
|
'AddressPurchaseTime': 'Int',
|
|
1430
1439
|
'AddressProjectId': 'String',
|
|
1431
|
-
'ModelName': 'String'
|
|
1440
|
+
'ModelName': 'String',
|
|
1441
|
+
'SystemDisk.DiskType': 'String',
|
|
1442
|
+
'SystemDisk.ResizeType': 'String'
|
|
1432
1443
|
}
|
|
1433
1444
|
},
|
|
1434
1445
|
'TerminateModels': {
|
|
@@ -1608,7 +1619,7 @@ module.exports = class Client extends BaseClient {
|
|
|
1608
1619
|
'KeepImageLogin': 'Boolean',
|
|
1609
1620
|
'KeyId': 'Filter',
|
|
1610
1621
|
'DataDisk': 'Filter',
|
|
1611
|
-
'SystemDisk': '
|
|
1622
|
+
'SystemDisk.DiskSize': 'Int',
|
|
1612
1623
|
'AddressBandWidth': 'Int',
|
|
1613
1624
|
'BandWidthShareId': 'String',
|
|
1614
1625
|
'LineId': 'String',
|
|
@@ -1620,7 +1631,9 @@ module.exports = class Client extends BaseClient {
|
|
|
1620
1631
|
'Tag': 'Filter',
|
|
1621
1632
|
'LoginSetAfter': 'Boolean',
|
|
1622
1633
|
'IpBindAfter': 'Boolean',
|
|
1623
|
-
'InstanceNameRandom': 'Boolean'
|
|
1634
|
+
'InstanceNameRandom': 'Boolean',
|
|
1635
|
+
'SystemDisk.DiskType': 'String',
|
|
1636
|
+
'SystemDisk.ResizeType': 'String'
|
|
1624
1637
|
}
|
|
1625
1638
|
},
|
|
1626
1639
|
'DescribeSpotPriceHistory': {
|
|
@@ -1747,57 +1760,48 @@ module.exports = class Client extends BaseClient {
|
|
|
1747
1760
|
'InstanceId': 'Filter'
|
|
1748
1761
|
}
|
|
1749
1762
|
},
|
|
1750
|
-
'
|
|
1763
|
+
'PreMigrateInstance': {
|
|
1751
1764
|
'url': '/',
|
|
1752
1765
|
'method': 'GET',
|
|
1753
1766
|
'config': {
|
|
1754
1767
|
'query': {
|
|
1755
1768
|
'Version': '2016-03-04',
|
|
1756
|
-
'Action': '
|
|
1769
|
+
'Action': 'PreMigrateInstance'
|
|
1757
1770
|
},
|
|
1758
1771
|
'headers': {
|
|
1759
|
-
'Content-Type': 'application/
|
|
1760
|
-
}
|
|
1761
|
-
},
|
|
1762
|
-
'paramsType': {}
|
|
1763
|
-
},
|
|
1764
|
-
'ValidatedDiskEncrypt': {
|
|
1765
|
-
'url': '/',
|
|
1766
|
-
'method': 'GET',
|
|
1767
|
-
'config': {
|
|
1768
|
-
'query': {
|
|
1769
|
-
'Version': '2016-03-04',
|
|
1770
|
-
'Action': 'ValidatedDiskEncrypt'
|
|
1771
|
-
},
|
|
1772
|
-
'headers': {
|
|
1773
|
-
'Content-Type': 'application/json'
|
|
1772
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
1774
1773
|
}
|
|
1775
1774
|
},
|
|
1776
1775
|
'paramsType': {
|
|
1777
|
-
'
|
|
1776
|
+
'InstanceId': 'String',
|
|
1777
|
+
'InstanceType': 'String',
|
|
1778
|
+
'SystemDiskType': 'String',
|
|
1779
|
+
'DataDiskType': 'String'
|
|
1778
1780
|
}
|
|
1779
1781
|
},
|
|
1780
|
-
'
|
|
1782
|
+
'CancelPreMigrateInstance': {
|
|
1781
1783
|
'url': '/',
|
|
1782
1784
|
'method': 'GET',
|
|
1783
1785
|
'config': {
|
|
1784
1786
|
'query': {
|
|
1785
1787
|
'Version': '2016-03-04',
|
|
1786
|
-
'Action': '
|
|
1788
|
+
'Action': 'CancelPreMigrateInstance'
|
|
1787
1789
|
},
|
|
1788
1790
|
'headers': {
|
|
1789
|
-
'Content-Type': 'application/
|
|
1791
|
+
'Content-Type': 'application/x-www-form-urlencoded'
|
|
1790
1792
|
}
|
|
1791
1793
|
},
|
|
1792
|
-
'paramsType': {
|
|
1794
|
+
'paramsType': {
|
|
1795
|
+
'InstanceId': 'String'
|
|
1796
|
+
}
|
|
1793
1797
|
},
|
|
1794
|
-
'
|
|
1798
|
+
'DescribeInstanceKmr': {
|
|
1795
1799
|
'url': '/',
|
|
1796
1800
|
'method': 'GET',
|
|
1797
1801
|
'config': {
|
|
1798
1802
|
'query': {
|
|
1799
1803
|
'Version': '2016-03-04',
|
|
1800
|
-
'Action': '
|
|
1804
|
+
'Action': 'DescribeInstanceKmr'
|
|
1801
1805
|
},
|
|
1802
1806
|
'headers': {
|
|
1803
1807
|
'Content-Type': 'application/json'
|