ksyun-sdk-node 1.0.5 → 1.4.8

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.
Files changed (133) hide show
  1. package/.claude/settings.local.json +12 -0
  2. package/dist/base/BaseClient.js +133 -52
  3. package/dist/index.js +9 -12
  4. package/dist/lib/fetch.js +4 -5
  5. package/dist/lib/sign.js +31 -33
  6. package/dist/lib/signautreV4.js +167 -0
  7. package/dist/service/Actiontrail/v20190401/index.js +34 -37
  8. package/dist/service/Aicp/v20240612/index.js +511 -0
  9. package/dist/service/Bill/v20180601/index.js +49 -88
  10. package/dist/service/Bill/v20220601/index.js +64 -0
  11. package/dist/service/Bill_union/v20200101/index.js +151 -77
  12. package/dist/service/Bill_union/v20221222/index.js +142 -0
  13. package/dist/service/Bill_union/v20250801/index.js +66 -0
  14. package/dist/service/Bws/v20160304/index.js +111 -94
  15. package/dist/service/Cdn/v20160901/index.js +89 -0
  16. package/dist/service/Cdn/v20200630/index.js +410 -0
  17. package/dist/service/Cdn/v20200901/index.js +162 -0
  18. package/dist/service/Cdn/v20211201/index.js +45 -0
  19. package/dist/service/Cdn/v20250503/index.js +71 -0
  20. package/dist/service/Cen/v20160304/index.js +460 -0
  21. package/dist/service/Clickhouse/v20210101/index.js +546 -0
  22. package/dist/service/Ebs/v20160304/index.js +265 -268
  23. package/dist/service/Eip/v20160304/index.js +104 -107
  24. package/dist/service/Epc/v20151101/index.js +1735 -784
  25. package/dist/service/Iam/v20151101/index.js +872 -711
  26. package/dist/service/Iam/v20240513/index.js +47 -0
  27. package/dist/service/Iam/v20240703/index.js +44 -0
  28. package/dist/service/Kad/v20161122/index.js +84 -87
  29. package/dist/service/Kce/v20180314/index.js +320 -0
  30. package/dist/service/Kce/v20190806/index.js +482 -0
  31. package/dist/service/Kce/v20201231/index.js +63 -0
  32. package/dist/service/Kcf/v20211215/index.js +203 -0
  33. package/dist/service/Kcm/v20160304/index.js +120 -0
  34. package/dist/service/Kcrs/v20211109/index.js +851 -0
  35. package/dist/service/Kcs/v20160701/index.js +1106 -0
  36. package/dist/service/Kcs/v20170401/index.js +81 -0
  37. package/dist/service/Kead/v20200101/index.js +28 -31
  38. package/dist/service/Kec/v20160304/index.js +1695 -1466
  39. package/dist/service/Kes/v20201215/index.js +171 -0
  40. package/dist/service/Ket/v20170101/index.js +141 -0
  41. package/dist/service/Kkms/v20160304/index.js +167 -0
  42. package/dist/service/Klog/v20200731/index.js +331 -0
  43. package/dist/service/Kls/v20170101/index.js +194 -0
  44. package/dist/service/Kmr/v20210902/index.js +422 -0
  45. package/dist/service/Kmr/v20231231/index.js +154 -0
  46. package/dist/service/Kmr/v20240814/index.js +370 -0
  47. package/dist/service/Krds/v20160701/index.js +1302 -0
  48. package/dist/service/Krds/v20200825/index.js +174 -0
  49. package/dist/service/Memcached/v20180627/index.js +249 -0
  50. package/dist/service/Mongodb/v20170101/index.js +516 -501
  51. package/dist/service/Monitor/v20100525/index.js +70 -0
  52. package/dist/service/Monitor/v20181114/index.js +49 -0
  53. package/dist/service/Monitor/v20210101/index.js +216 -0
  54. package/dist/service/Monitor/v20220101/index.js +58 -0
  55. package/dist/service/Monitor/v20250101/index.js +71 -0
  56. package/dist/service/Rabbitmq/v20191017/index.js +242 -0
  57. package/dist/service/Resourcemanager/v20210320/index.js +113 -116
  58. package/dist/service/Sks/v20151101/index.js +72 -75
  59. package/dist/service/Slb/v20160304/index.js +1299 -790
  60. package/dist/service/Sts/v20151101/index.js +26 -29
  61. package/dist/service/Tagv2/v20200901/index.js +174 -0
  62. package/dist/service/Tidb/v20210520/index.js +363 -0
  63. package/dist/service/Trade/v20200114/index.js +23 -26
  64. package/dist/service/Trade/v20200831/index.js +25 -28
  65. package/dist/service/Vpc/v20160304/index.js +2015 -1045
  66. package/dist/service/Waf/v20200707/index.js +248 -0
  67. package/example/iam.js +2 -1
  68. package/example/res.js +2 -1
  69. package/package.json +1 -1
  70. package/src/base/BaseClient.js +131 -35
  71. package/src/lib/signautreV4.js +166 -0
  72. package/src/service/Actiontrail/v20190401/index.js +42 -42
  73. package/src/service/Aicp/v20240612/index.js +503 -0
  74. package/src/service/Bill/v20180601/index.js +61 -102
  75. package/src/service/Bill/v20220601/index.js +56 -0
  76. package/src/service/Bill_union/v20200101/index.js +181 -109
  77. package/src/service/Bill_union/v20221222/index.js +134 -0
  78. package/src/service/Bill_union/v20250801/index.js +58 -0
  79. package/src/service/Bws/v20160304/index.js +139 -119
  80. package/src/service/Cdn/v20160901/index.js +81 -0
  81. package/src/service/Cdn/v20200630/index.js +402 -0
  82. package/src/service/Cdn/v20200901/index.js +154 -0
  83. package/src/service/Cdn/v20211201/index.js +37 -0
  84. package/src/service/Cdn/v20250503/index.js +63 -0
  85. package/src/service/Cen/v20160304/index.js +452 -0
  86. package/src/service/Clickhouse/v20210101/index.js +538 -0
  87. package/src/service/Ebs/v20160304/index.js +365 -368
  88. package/src/service/Eip/v20160304/index.js +135 -136
  89. package/src/service/Epc/v20151101/index.js +1984 -1033
  90. package/src/service/Iam/v20151101/index.js +1155 -993
  91. package/src/service/Iam/v20240513/index.js +39 -0
  92. package/src/service/Iam/v20240703/index.js +36 -0
  93. package/src/service/Kad/v20161122/index.js +112 -112
  94. package/src/service/Kce/v20180314/index.js +312 -0
  95. package/src/service/Kce/v20190806/index.js +474 -0
  96. package/src/service/Kce/v20201231/index.js +55 -0
  97. package/src/service/Kcf/v20211215/index.js +195 -0
  98. package/src/service/Kcm/v20160304/index.js +112 -0
  99. package/src/service/Kcrs/v20211109/index.js +843 -0
  100. package/src/service/Kcs/v20160701/index.js +1098 -0
  101. package/src/service/Kcs/v20170401/index.js +73 -0
  102. package/src/service/Kead/v20200101/index.js +36 -36
  103. package/src/service/Kec/v20160304/index.js +2061 -1838
  104. package/src/service/Kes/v20201215/index.js +163 -0
  105. package/src/service/Ket/v20170101/index.js +133 -0
  106. package/src/service/Kkms/v20160304/index.js +159 -0
  107. package/src/service/Klog/v20200731/index.js +323 -0
  108. package/src/service/Kls/v20170101/index.js +186 -0
  109. package/src/service/Kmr/v20210902/index.js +414 -0
  110. package/src/service/Kmr/v20231231/index.js +146 -0
  111. package/src/service/Kmr/v20240814/index.js +362 -0
  112. package/src/service/Krds/v20160701/index.js +1294 -0
  113. package/src/service/Krds/v20200825/index.js +166 -0
  114. package/src/service/Memcached/v20180627/index.js +241 -0
  115. package/src/service/Mongodb/v20170101/index.js +672 -654
  116. package/src/service/Monitor/v20100525/index.js +62 -0
  117. package/src/service/Monitor/v20181114/index.js +41 -0
  118. package/src/service/Monitor/v20210101/index.js +208 -0
  119. package/src/service/Monitor/v20220101/index.js +50 -0
  120. package/src/service/Monitor/v20250101/index.js +63 -0
  121. package/src/service/Rabbitmq/v20191017/index.js +234 -0
  122. package/src/service/Resourcemanager/v20210320/index.js +157 -158
  123. package/src/service/Sks/v20151101/index.js +95 -96
  124. package/src/service/Slb/v20160304/index.js +1471 -959
  125. package/src/service/Sts/v20151101/index.js +34 -34
  126. package/src/service/Tagv2/v20200901/index.js +166 -0
  127. package/src/service/Tidb/v20210520/index.js +355 -0
  128. package/src/service/Trade/v20200114/index.js +31 -31
  129. package/src/service/Trade/v20200831/index.js +33 -33
  130. package/src/service/Vpc/v20160304/index.js +2404 -1432
  131. package/src/service/Waf/v20200707/index.js +240 -0
  132. package/src/service/Bill_union/v20211209/index.js +0 -35
  133. package/src/service/Slb/v20171210/index.js +0 -39
@@ -1,1044 +1,1995 @@
1
1
  "use strict";
2
2
 
3
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
4
-
3
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
4
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
5
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
5
6
  const BaseClient = require("../../../base/BaseClient.js");
6
-
7
7
  module.exports = class Client extends BaseClient {
8
8
  constructor(...args) {
9
9
  super(...args);
10
-
11
10
  _defineProperty(this, "_baseConfig", {
12
- 'protocol': 'http://',
13
- 'endpoint': 'epc.api.ksyun.com',
14
- 'config': {
15
- 'timeout': 60,
11
+ protocol: "http://",
12
+ endpoint: "epc.api.ksyun.com",
13
+ config: {
14
+ timeout: 60,
16
15
  //设置timeout
17
- 'headers': {
18
- 'Accept': 'application/json'
16
+ headers: {
17
+ Accept: "application/json"
19
18
  },
20
- 'credentials': {
21
- 'region': 'cn-shanghai-3',
22
- 'service': 'epc'
19
+ credentials: {
20
+ region: "cn-shanghai-3",
21
+ service: "epc"
23
22
  }
24
23
  }
25
24
  });
26
-
27
25
  _defineProperty(this, "_apiList", {
28
- 'CreateEpc': {
29
- 'url': '/',
30
- 'method': 'GET',
31
- 'config': {
32
- 'query': {
33
- 'Version': '2015-11-01',
34
- 'Action': 'CreateEpc'
35
- },
36
- 'headers': {
37
- 'Content-Type': 'application/x-www-form-urlencoded'
38
- }
39
- },
40
- 'paramsType': {
41
- 'HostType': 'String',
42
- 'AvailabilityZone': 'String',
43
- 'Raid': 'String',
44
- 'RaidId': 'String',
45
- 'ImageId': 'String',
46
- 'NetworkInterfaceMode': 'String',
47
- 'SubnetId': 'String',
48
- 'PrivateIpAddress': 'String',
49
- 'keyId': 'String',
50
- 'SecurityGroupId': 'Filter',
51
- 'DNS1': 'String',
52
- 'DNS2': 'String',
53
- 'HostName': 'String',
54
- 'ProjectId': 'String',
55
- 'ChargeType': 'String',
56
- 'Sn': 'String',
57
- 'PurchaseTime': 'Int',
58
- 'Password': 'String',
59
- 'SecurityAgent': 'String',
60
- 'CloudMonitorAgent': 'String',
61
- 'ExtensionSubnetId': 'String',
62
- 'ExtensionPrivateIpAddress': 'String',
63
- 'ExtensionDNS1': 'String',
64
- 'ExtensionDNS2': 'String',
65
- 'Description': 'String',
66
- 'AddressBandWidth': 'String',
67
- 'LineId': 'String',
68
- 'BandWidthShareId': 'String',
69
- 'AddressChargeType': 'String',
70
- 'AddressPurchaseTime': 'String',
71
- 'AddressProjectId': 'String',
72
- 'SystemFileType': 'String',
73
- 'DataFileType': 'String',
74
- 'DataDiskCatalogue': 'String',
75
- 'DataDiskCatalogueSuffix': 'String',
76
- 'HyperThreading': 'String',
77
- 'NvmeDataFileType': 'String',
78
- 'NvmeDataDiskCatalogue': 'String',
79
- 'NvmeDataDiskCatalogueSuffix': 'String',
80
- 'bondAttribute': 'String',
81
- 'ContainerAgent': 'String',
82
- 'KesAgent': 'String',
83
- 'KmrAgent': 'String',
84
- 'ComputerName': 'String',
85
- 'OverclockingAttribute': 'String',
86
- 'GpuImageDriverId': 'String',
87
- 'SystemVolumeType': 'String',
88
- 'SystemVolumeSize': 'String'
89
- }
90
- },
91
- 'StartEpc': {
92
- 'url': '/',
93
- 'method': 'GET',
94
- 'config': {
95
- 'query': {
96
- 'Version': '2015-11-01',
97
- 'Action': 'StartEpc'
98
- },
99
- 'headers': {
100
- 'Content-Type': 'application/json'
101
- }
102
- },
103
- 'paramsType': {
104
- 'HostId': 'String'
105
- }
106
- },
107
- 'RebootEpc': {
108
- 'url': '/',
109
- 'method': 'GET',
110
- 'config': {
111
- 'query': {
112
- 'Version': '2015-11-01',
113
- 'Action': 'RebootEpc'
114
- },
115
- 'headers': {
116
- 'Content-Type': 'application/json'
117
- }
118
- },
119
- 'paramsType': {
120
- 'HostId': 'String'
121
- }
122
- },
123
- 'DeleteEpc': {
124
- 'url': '/',
125
- 'method': 'GET',
126
- 'config': {
127
- 'query': {
128
- 'Version': '2015-11-01',
129
- 'Action': 'DeleteEpc'
130
- },
131
- 'headers': {
132
- 'Content-Type': 'application/json'
133
- }
134
- },
135
- 'paramsType': {
136
- 'HostId': 'String'
137
- }
138
- },
139
- 'ReinstallEpc': {
140
- 'url': '/',
141
- 'method': 'GET',
142
- 'config': {
143
- 'query': {
144
- 'Version': '2015-11-01',
145
- 'Action': 'ReinstallEpc'
146
- },
147
- 'headers': {
148
- 'Content-Type': 'application/x-www-form-urlencoded'
149
- }
150
- },
151
- 'paramsType': {
152
- 'HostId': 'String',
153
- 'ImageId': 'String',
154
- 'keyId': 'String',
155
- 'Password': 'String',
156
- 'NetworkInterfaceMode': 'String',
157
- 'SecurityAgent': 'String',
158
- 'CloudMonitorAgent': 'String',
159
- 'Raid': 'String',
160
- 'RaidId': 'String',
161
- 'HostName': 'String',
162
- 'SystemFileType': 'String',
163
- 'DataFileType': 'String',
164
- 'DataDiskCatalogue': 'String',
165
- 'DataDiskCatalogueSuffix': 'String',
166
- 'HyperThreading': 'String',
167
- 'NvmeDataFileType': 'String',
168
- 'NvmeDataDiskCatalogue': 'String',
169
- 'NvmeDataDiskCatalogueSuffix': 'String',
170
- 'bondAttribute': 'String',
171
- 'KesAgent': 'String',
172
- 'KmrAgent': 'String',
173
- 'ComputerName': 'String',
174
- 'OverclockingAttribute': 'String',
175
- 'DelayStart': 'Int',
176
- 'AvailabilityZone': 'String',
177
- 'GpuImageDriverId': 'String'
26
+ CreateEpc: {
27
+ url: "/",
28
+ method: "GET",
29
+ config: {
30
+ query: {
31
+ Version: "2015-11-01",
32
+ Action: "CreateEpc"
33
+ },
34
+ headers: {
35
+ "Content-Type": "application/x-www-form-urlencoded"
36
+ }
37
+ },
38
+ paramsType: {
39
+ HostType: "String",
40
+ AvailabilityZone: "String",
41
+ Raid: "String",
42
+ RaidId: "String",
43
+ ImageId: "String",
44
+ NetworkInterfaceMode: "String",
45
+ SubnetId: "String",
46
+ PrivateIpAddress: "String",
47
+ keyId: "String",
48
+ SecurityGroupId: "Filter",
49
+ DNS1: "String",
50
+ DNS2: "String",
51
+ HostName: "String",
52
+ ProjectId: "String",
53
+ ChargeType: "String",
54
+ PurchaseTime: "Int",
55
+ Password: "String",
56
+ CloudMonitorAgent: "String",
57
+ ExtensionSubnetId: "String",
58
+ ExtensionPrivateIpAddress: "String",
59
+ ExtensionDNS1: "String",
60
+ ExtensionDNS2: "String",
61
+ Description: "String",
62
+ AddressBandWidth: "String",
63
+ LineId: "String",
64
+ BandWidthShareId: "String",
65
+ AddressChargeType: "String",
66
+ AddressPurchaseTime: "String",
67
+ AddressProjectId: "String",
68
+ SystemFileType: "String",
69
+ DataFileType: "String",
70
+ DataDiskCatalogue: "String",
71
+ DataDiskCatalogueSuffix: "String",
72
+ HyperThreading: "String",
73
+ NvmeDataFileType: "String",
74
+ NvmeDataDiskCatalogue: "String",
75
+ NvmeDataDiskCatalogueSuffix: "String",
76
+ BondAttribute: "String",
77
+ ContainerAgent: "String",
78
+ KesAgent: "String",
79
+ KmrAgent: "String",
80
+ ComputerName: "String",
81
+ OverclockingAttribute: "String",
82
+ GpuImageDriverId: "String",
83
+ SystemVolumeType: "String",
84
+ SystemVolumeSize: "String",
85
+ RoceNetwork: "String",
86
+ ZoneId: "String",
87
+ ZoneType: "String",
88
+ UseHotStandby: "String",
89
+ TimedRegularization: "String",
90
+ PasswordInherit: "String",
91
+ DataDiskMount: "String",
92
+ StorageRoceNetworkCardName: "String",
93
+ "Anaconda.N": "String",
94
+ "Framework.N": "String",
95
+ "Engine.N": "String",
96
+ "AiModel.N": "String",
97
+ UserData: "String",
98
+ StorageRoceNetworkInterfaceMode: "String"
99
+ }
100
+ },
101
+ StartEpc: {
102
+ url: "/",
103
+ method: "GET",
104
+ config: {
105
+ query: {
106
+ Version: "2015-11-01",
107
+ Action: "StartEpc"
108
+ },
109
+ headers: {
110
+ "Content-Type": "application/x-www-form-urlencoded"
111
+ }
112
+ },
113
+ paramsType: {
114
+ HostId: "String"
115
+ }
116
+ },
117
+ RebootEpc: {
118
+ url: "/",
119
+ method: "GET",
120
+ config: {
121
+ query: {
122
+ Version: "2015-11-01",
123
+ Action: "RebootEpc"
124
+ },
125
+ headers: {
126
+ "Content-Type": "application/x-www-form-urlencoded"
127
+ }
128
+ },
129
+ paramsType: {
130
+ HostId: "String"
131
+ }
132
+ },
133
+ DeleteEpc: {
134
+ url: "/",
135
+ method: "GET",
136
+ config: {
137
+ query: {
138
+ Version: "2015-11-01",
139
+ Action: "DeleteEpc"
140
+ },
141
+ headers: {
142
+ "Content-Type": "application/x-www-form-urlencoded"
143
+ }
144
+ },
145
+ paramsType: {
146
+ HostId: "String"
147
+ }
148
+ },
149
+ ReinstallEpc: {
150
+ url: "/",
151
+ method: "GET",
152
+ config: {
153
+ query: {
154
+ Version: "2015-11-01",
155
+ Action: "ReinstallEpc"
156
+ },
157
+ headers: {
158
+ "Content-Type": "application/x-www-form-urlencoded"
159
+ }
160
+ },
161
+ paramsType: {
162
+ HostId: "String",
163
+ ImageId: "String",
164
+ keyId: "String",
165
+ Password: "String",
166
+ NetworkInterfaceMode: "String",
167
+ CloudMonitorAgent: "String",
168
+ Raid: "String",
169
+ RaidId: "String",
170
+ HostName: "String",
171
+ SystemFileType: "String",
172
+ DataFileType: "String",
173
+ DataDiskCatalogue: "String",
174
+ DataDiskCatalogueSuffix: "String",
175
+ HyperThreading: "String",
176
+ NvmeDataFileType: "String",
177
+ NvmeDataDiskCatalogue: "String",
178
+ NvmeDataDiskCatalogueSuffix: "String",
179
+ BondAttribute: "String",
180
+ KesAgent: "String",
181
+ KmrAgent: "String",
182
+ ComputerName: "String",
183
+ OverclockingAttribute: "String",
184
+ DelayStart: "Int",
185
+ AvailabilityZone: "String",
186
+ GpuImageDriverId: "String",
187
+ ContainerAgent: "String",
188
+ PasswordInherit: "String",
189
+ DataDiskMount: "String",
190
+ StorageRoceNetworkCardName: "String"
191
+ }
192
+ },
193
+ ModifySecurityGroup: {
194
+ url: "/",
195
+ method: "GET",
196
+ config: {
197
+ query: {
198
+ Version: "2015-11-01",
199
+ Action: "ModifySecurityGroup"
200
+ },
201
+ headers: {
202
+ "Content-Type": "application/x-www-form-urlencoded"
203
+ }
204
+ },
205
+ paramsType: {
206
+ HostId: "String",
207
+ NetworkInterfaceId: "String",
208
+ SecurityGroupId: "Filter"
178
209
  }
179
210
  },
180
- 'ModifySecurityGroup': {
181
- 'url': '/',
182
- 'method': 'GET',
183
- 'config': {
184
- 'query': {
185
- 'Version': '2015-11-01',
186
- 'Action': 'ModifySecurityGroup'
211
+ CreateKey: {
212
+ url: "/",
213
+ method: "GET",
214
+ config: {
215
+ query: {
216
+ Version: "2015-11-01",
217
+ Action: "CreateKey"
187
218
  },
188
- 'headers': {
189
- 'Content-Type': 'application/json'
219
+ headers: {
220
+ "Content-Type": "application/x-www-form-urlencoded"
190
221
  }
191
222
  },
192
- 'paramsType': {
193
- 'HostId': 'String',
194
- 'NetworkInterfaceId': 'String',
195
- 'SecurityGroupId': 'Filter'
223
+ paramsType: {
224
+ KeyName: "String",
225
+ Description: "String"
196
226
  }
197
227
  },
198
- 'ImportKey': {
199
- 'url': '/',
200
- 'method': 'GET',
201
- 'config': {
202
- 'query': {
203
- 'Version': '2015-11-01',
204
- 'Action': 'ImportKey'
228
+ DescribeEpcs: {
229
+ url: "/",
230
+ method: "GET",
231
+ config: {
232
+ query: {
233
+ Version: "2015-11-01",
234
+ Action: "DescribeEpcs"
205
235
  },
206
- 'headers': {
207
- 'Content-Type': 'application/x-www-form-urlencoded'
236
+ headers: {
237
+ "Content-Type": "application/x-www-form-urlencoded"
208
238
  }
209
239
  },
210
- 'paramsType': {
211
- 'KeyName': 'String',
212
- 'PublicKey': 'String',
213
- 'Description': 'String'
240
+ paramsType: {
241
+ ProjectId: "Filter",
242
+ HostId: "Filter",
243
+ Filter: "Filter",
244
+ MaxResults: "Int",
245
+ NextToken: "String"
214
246
  }
215
247
  },
216
- 'DeleteKey': {
217
- 'url': '/',
218
- 'method': 'GET',
219
- 'config': {
220
- 'query': {
221
- 'Version': '2015-11-01',
222
- 'Action': 'DeleteKey'
248
+ GetDynamicCode: {
249
+ url: "/",
250
+ method: "GET",
251
+ config: {
252
+ query: {
253
+ Version: "2015-11-01",
254
+ Action: "GetDynamicCode"
223
255
  },
224
- 'headers': {
225
- 'Content-Type': 'application/x-www-form-urlencoded'
256
+ headers: {
257
+ "Content-Type": "application/x-www-form-urlencoded"
226
258
  }
227
259
  },
228
- 'paramsType': {
229
- 'KeyId': 'String'
260
+ paramsType: {
261
+ RemoteManagementId: "String"
230
262
  }
231
263
  },
232
- 'CreateKey': {
233
- 'url': '/',
234
- 'method': 'GET',
235
- 'config': {
236
- 'query': {
237
- 'Version': '2015-11-01',
238
- 'Action': 'CreateKey'
264
+ DescribeVpns: {
265
+ url: "/",
266
+ method: "GET",
267
+ config: {
268
+ query: {
269
+ Version: "2015-11-01",
270
+ Action: "DescribeVpns"
239
271
  },
240
- 'headers': {
241
- 'Content-Type': 'application/x-www-form-urlencoded'
272
+ headers: {
273
+ "Content-Type": "application/x-www-form-urlencoded"
242
274
  }
243
275
  },
244
- 'paramsType': {
245
- 'KeyName': 'String',
246
- 'Description': 'String'
276
+ paramsType: {
277
+ DynamicCode: "String",
278
+ Pin: "String",
279
+ RemoteManagementId: "String"
247
280
  }
248
281
  },
249
- 'DescribeKeys': {
250
- 'url': '/',
251
- 'method': 'GET',
252
- 'config': {
253
- 'query': {
254
- 'Version': '2015-11-01',
255
- 'Action': 'DescribeKeys'
282
+ CreateImage: {
283
+ url: "/",
284
+ method: "GET",
285
+ config: {
286
+ query: {
287
+ Version: "2015-11-01",
288
+ Action: "CreateImage"
256
289
  },
257
- 'headers': {
258
- 'Content-Type': 'application/x-www-form-urlencoded'
290
+ headers: {
291
+ "Content-Type": "application/x-www-form-urlencoded"
259
292
  }
260
293
  },
261
- 'paramsType': {
262
- 'KeyId': 'Filter'
294
+ paramsType: {
295
+ HostId: "String",
296
+ ImageName: "String",
297
+ ImageMode: "String",
298
+ ImageInitialization: "String"
263
299
  }
264
300
  },
265
- 'DescribeEpcs': {
266
- 'url': '/',
267
- 'method': 'GET',
268
- 'config': {
269
- 'query': {
270
- 'Version': '2015-11-01',
271
- 'Action': 'DescribeEpcs'
301
+ ModifyImage: {
302
+ url: "/",
303
+ method: "GET",
304
+ config: {
305
+ query: {
306
+ Version: "2015-11-01",
307
+ Action: "ModifyImage"
272
308
  },
273
- 'headers': {
274
- 'Content-Type': 'application/x-www-form-urlencoded'
309
+ headers: {
310
+ "Content-Type": "application/x-www-form-urlencoded"
275
311
  }
276
312
  },
277
- 'paramsType': {
278
- 'ProjectId': 'Filter',
279
- 'HostId': 'Filter',
280
- 'Filter': 'Filter',
281
- 'MaxResults': 'Int',
282
- 'NextToken': 'String'
313
+ paramsType: {
314
+ ImageName: "String",
315
+ ImageId: "String"
283
316
  }
284
317
  },
285
- 'GetDynamicCode': {
286
- 'url': '/',
287
- 'method': 'GET',
288
- 'config': {
289
- 'query': {
290
- 'Version': '2015-11-01',
291
- 'Action': 'GetDynamicCode'
318
+ DeleteImage: {
319
+ url: "/",
320
+ method: "GET",
321
+ config: {
322
+ query: {
323
+ Version: "2015-11-01",
324
+ Action: "DeleteImage"
292
325
  },
293
- 'headers': {
294
- 'Content-Type': 'application/x-www-form-urlencoded'
326
+ headers: {
327
+ "Content-Type": "application/x-www-form-urlencoded"
295
328
  }
296
329
  },
297
- 'paramsType': {
298
- 'RemoteManagementId': 'String'
330
+ paramsType: {
331
+ ImageId: "String"
299
332
  }
300
333
  },
301
- 'DescribeVpns': {
302
- 'url': '/',
303
- 'method': 'GET',
304
- 'config': {
305
- 'query': {
306
- 'Version': '2015-11-01',
307
- 'Action': 'DescribeVpns'
334
+ DescribeImages: {
335
+ url: "/",
336
+ method: "GET",
337
+ config: {
338
+ query: {
339
+ Version: "2015-11-01",
340
+ Action: "DescribeImages"
308
341
  },
309
- 'headers': {
310
- 'Content-Type': 'application/x-www-form-urlencoded'
342
+ headers: {
343
+ "Content-Type": "application/x-www-form-urlencoded"
311
344
  }
312
345
  },
313
- 'paramsType': {
314
- 'DynamicCode': 'String',
315
- 'Pin': 'String',
316
- 'RemoteManagementId': 'String'
346
+ paramsType: {
347
+ MaxResults: "Int",
348
+ NextToken: "String",
349
+ "ImageId.N": "String"
317
350
  }
318
351
  },
319
- 'CreateImage': {
320
- 'url': '/',
321
- 'method': 'GET',
322
- 'config': {
323
- 'query': {
324
- 'Version': '2015-11-01',
325
- 'Action': 'CreateImage'
352
+ ModifyDns: {
353
+ url: "/",
354
+ method: "GET",
355
+ config: {
356
+ query: {
357
+ Version: "2015-11-01",
358
+ Action: "ModifyDns"
326
359
  },
327
- 'headers': {
328
- 'Content-Type': 'application/x-www-form-urlencoded'
360
+ headers: {
361
+ "Content-Type": "application/x-www-form-urlencoded"
329
362
  }
330
363
  },
331
- 'paramsType': {
332
- 'HostId': 'String',
333
- 'ImageName': 'String',
334
- 'ImageMode': 'String',
335
- 'ImageInitialization': 'String'
364
+ paramsType: {
365
+ NetworkInterfaceId: "String",
366
+ HostId: "String",
367
+ DNS1: "String",
368
+ DNS2: "String"
336
369
  }
337
370
  },
338
- 'ModifyImage': {
339
- 'url': '/',
340
- 'method': 'GET',
341
- 'config': {
342
- 'query': {
343
- 'Version': '2015-11-01',
344
- 'Action': 'ModifyImage'
371
+ ModifyNetworkInterfaceAttribute: {
372
+ url: "/",
373
+ method: "GET",
374
+ config: {
375
+ query: {
376
+ Version: "2015-11-01",
377
+ Action: "ModifyNetworkInterfaceAttribute"
345
378
  },
346
- 'headers': {
347
- 'Content-Type': 'application/x-www-form-urlencoded'
379
+ headers: {
380
+ "Content-Type": "application/x-www-form-urlencoded"
348
381
  }
349
382
  },
350
- 'paramsType': {
351
- 'ImageName': 'String',
352
- 'ImageId': 'String'
383
+ paramsType: {
384
+ NetworkInterfaceId: "String",
385
+ HostId: "String",
386
+ SubnetId: "String",
387
+ IpAddress: "String",
388
+ SecurityGroupIdList: "Array",
389
+ SecurityGroupId: "Filter"
353
390
  }
354
391
  },
355
- 'DeleteImage': {
356
- 'url': '/',
357
- 'method': 'GET',
358
- 'config': {
359
- 'query': {
360
- 'Version': '2015-11-01',
361
- 'Action': 'DeleteImage'
392
+ DescribePhysicalMonitor: {
393
+ url: "/",
394
+ method: "GET",
395
+ config: {
396
+ query: {
397
+ Version: "2015-11-01",
398
+ Action: "DescribePhysicalMonitor"
362
399
  },
363
- 'headers': {
364
- 'Content-Type': 'application/x-www-form-urlencoded'
400
+ headers: {
401
+ "Content-Type": "application/x-www-form-urlencoded"
365
402
  }
366
403
  },
367
- 'paramsType': {
368
- 'ImageId': 'String'
404
+ paramsType: {
405
+ HostId: "String"
369
406
  }
370
407
  },
371
- 'DescribeImages': {
372
- 'url': '/',
373
- 'method': 'GET',
374
- 'config': {
375
- 'query': {
376
- 'Version': '2015-11-01',
377
- 'Action': 'DescribeImages'
408
+ DescribeEpcManagements: {
409
+ url: "/",
410
+ method: "GET",
411
+ config: {
412
+ query: {
413
+ Version: "2015-11-01",
414
+ Action: "DescribeEpcManagements"
378
415
  },
379
- 'headers': {
380
- 'Content-Type': 'application/x-www-form-urlencoded'
416
+ headers: {
417
+ "Content-Type": "application/x-www-form-urlencoded"
381
418
  }
382
419
  },
383
- 'paramsType': {
384
- 'MaxResults': 'Int',
385
- 'NextToken': 'String'
420
+ paramsType: {
421
+ MaxResults: "Int",
422
+ NextToken: "String",
423
+ DynamicCode: "String",
424
+ Pin: "String",
425
+ EpcManagementId: "Filter",
426
+ RemoteManagementId: "String"
386
427
  }
387
428
  },
388
- 'ModifyDns': {
389
- 'url': '/',
390
- 'method': 'GET',
391
- 'config': {
392
- 'query': {
393
- 'Version': '2015-11-01',
394
- 'Action': 'ModifyDns'
429
+ DescribeRemoteManagements: {
430
+ url: "/",
431
+ method: "GET",
432
+ config: {
433
+ query: {
434
+ Version: "2015-11-01",
435
+ Action: "DescribeRemoteManagements"
395
436
  },
396
- 'headers': {
397
- 'Content-Type': 'application/x-www-form-urlencoded'
437
+ headers: {
438
+ "Content-Type": "application/x-www-form-urlencoded"
398
439
  }
399
440
  },
400
- 'paramsType': {
401
- 'NetworkInterfaceId': 'String',
402
- 'HostId': 'String',
403
- 'DNS1': 'String',
404
- 'DNS2': 'String'
441
+ paramsType: {
442
+ RemoteManagementId: "Filter"
405
443
  }
406
444
  },
407
- 'ModifyNetworkInterfaceAttribute': {
408
- 'url': '/',
409
- 'method': 'GET',
410
- 'config': {
411
- 'query': {
412
- 'Version': '2015-11-01',
413
- 'Action': 'ModifyNetworkInterfaceAttribute'
445
+ StopEpc: {
446
+ url: "/",
447
+ method: "GET",
448
+ config: {
449
+ query: {
450
+ Version: "2015-11-01",
451
+ Action: "StopEpc"
414
452
  },
415
- 'headers': {
416
- 'Content-Type': 'application/x-www-form-urlencoded'
453
+ headers: {
454
+ "Content-Type": "application/x-www-form-urlencoded"
417
455
  }
418
456
  },
419
- 'paramsType': {}
457
+ paramsType: {
458
+ HostId: "String"
459
+ }
460
+ },
461
+ ModifyEpc: {
462
+ url: "/",
463
+ method: "GET",
464
+ config: {
465
+ query: {
466
+ Version: "2015-11-01",
467
+ Action: "ModifyEpc"
468
+ },
469
+ headers: {
470
+ "Content-Type": "application/x-www-form-urlencoded"
471
+ }
472
+ },
473
+ paramsType: {
474
+ HostId: "String",
475
+ HostName: "String",
476
+ Description: "String"
477
+ }
478
+ },
479
+ ModifyRemoteManagement: {
480
+ url: "/",
481
+ method: "GET",
482
+ config: {
483
+ query: {
484
+ Version: "2015-11-01",
485
+ Action: "ModifyRemoteManagement"
486
+ },
487
+ headers: {
488
+ "Content-Type": "application/x-www-form-urlencoded"
489
+ }
490
+ },
491
+ paramsType: {
492
+ RemoteManagementId: "String",
493
+ DynamicCode: "String",
494
+ Pin: "String",
495
+ NewPhoneNumber: "String",
496
+ NewPin: "String",
497
+ Name: "String",
498
+ VersionId: "Int"
499
+ }
500
+ },
501
+ CreateRemoteManagement: {
502
+ url: "/",
503
+ method: "GET",
504
+ config: {
505
+ query: {
506
+ Version: "2015-11-01",
507
+ Action: "CreateRemoteManagement"
508
+ },
509
+ headers: {
510
+ "Content-Type": "application/x-www-form-urlencoded"
511
+ }
512
+ },
513
+ paramsType: {
514
+ DynamicCode: "String",
515
+ Pin: "String",
516
+ PhoneNumber: "String",
517
+ Name: "String",
518
+ VersionId: "Int"
519
+ }
420
520
  },
421
- 'DescribePhysicalMonitor': {
422
- 'url': '/',
423
- 'method': 'GET',
424
- 'config': {
425
- 'query': {
426
- 'Version': '2015-11-01',
427
- 'Action': 'DescribePhysicalMonitor'
521
+ ReinstallCustomerEpc: {
522
+ url: "/",
523
+ method: "GET",
524
+ config: {
525
+ query: {
526
+ Version: "2015-11-01",
527
+ Action: "ReinstallCustomerEpc"
428
528
  },
429
- 'headers': {
430
- 'Content-Type': 'application/x-www-form-urlencoded'
529
+ headers: {
530
+ "Content-Type": "application/x-www-form-urlencoded"
431
531
  }
432
532
  },
433
- 'paramsType': {
434
- 'HostId': 'String'
533
+ paramsType: {
534
+ HostId: "String",
535
+ ServerIp: "String",
536
+ Path: "String"
435
537
  }
436
538
  },
437
- 'DescribeEpcManagements': {
438
- 'url': '/',
439
- 'method': 'GET',
440
- 'config': {
441
- 'query': {
442
- 'Version': '2015-11-01',
443
- 'Action': 'DescribeEpcManagements'
539
+ DeleteRemoteManagement: {
540
+ url: "/",
541
+ method: "GET",
542
+ config: {
543
+ query: {
544
+ Version: "2015-11-01",
545
+ Action: "DeleteRemoteManagement"
444
546
  },
445
- 'headers': {
446
- 'Content-Type': 'application/x-www-form-urlencoded'
547
+ headers: {
548
+ "Content-Type": "application/x-www-form-urlencoded"
447
549
  }
448
550
  },
449
- 'paramsType': {
450
- 'MaxResults': 'Int',
451
- 'NextToken': 'String',
452
- 'DynamicCode': 'String',
453
- 'Pin': 'String',
454
- 'EpcManagementId': 'Filter',
455
- 'RemoteManagementId': 'String'
551
+ paramsType: {
552
+ RemoteManagementId: "String"
456
553
  }
457
554
  },
458
- 'DescribeRemoteManagements': {
459
- 'url': '/',
460
- 'method': 'GET',
461
- 'config': {
462
- 'query': {
463
- 'Version': '2015-11-01',
464
- 'Action': 'DescribeRemoteManagements'
555
+ ResetPassword: {
556
+ url: "/",
557
+ method: "GET",
558
+ config: {
559
+ query: {
560
+ Version: "2015-11-01",
561
+ Action: "ResetPassword"
465
562
  },
466
- 'headers': {
467
- 'Content-Type': 'application/x-www-form-urlencoded'
563
+ headers: {
564
+ "Content-Type": "application/x-www-form-urlencoded"
468
565
  }
469
566
  },
470
- 'paramsType': {
471
- 'RemoteManagementId': 'Filter'
567
+ paramsType: {
568
+ HostId: "String",
569
+ Password: "String"
472
570
  }
473
571
  },
474
- 'StopEpc': {
475
- 'url': '/',
476
- 'method': 'GET',
477
- 'config': {
478
- 'query': {
479
- 'Version': '2015-11-01',
480
- 'Action': 'StopEpc'
572
+ ModifyHyperThreading: {
573
+ url: "/",
574
+ method: "GET",
575
+ config: {
576
+ query: {
577
+ Version: "2015-11-01",
578
+ Action: "ModifyHyperThreading"
481
579
  },
482
- 'headers': {
483
- 'Content-Type': 'application/x-www-form-urlencoded'
580
+ headers: {
581
+ "Content-Type": "application/x-www-form-urlencoded"
484
582
  }
485
583
  },
486
- 'paramsType': {
487
- 'HostId': 'String'
584
+ paramsType: {
585
+ HostId: "String",
586
+ HyperThreadingStatus: "String"
488
587
  }
489
588
  },
490
- 'ModifyEpc': {
491
- 'url': '/',
492
- 'method': 'GET',
493
- 'config': {
494
- 'query': {
495
- 'Version': '2015-11-01',
496
- 'Action': 'ModifyEpc'
589
+ AssociateCluster: {
590
+ url: "/",
591
+ method: "GET",
592
+ config: {
593
+ query: {
594
+ Version: "2015-11-01",
595
+ Action: "AssociateCluster"
497
596
  },
498
- 'headers': {
499
- 'Content-Type': 'application/x-www-form-urlencoded'
597
+ headers: {
598
+ "Content-Type": "application/x-www-form-urlencoded"
500
599
  }
501
600
  },
502
- 'paramsType': {
503
- 'HostId': 'String',
504
- 'HostName': 'String',
505
- 'Description': 'String'
601
+ paramsType: {
602
+ HostId: "String",
603
+ ClusterId: "String"
506
604
  }
507
605
  },
508
- 'ModifyRemoteManagement': {
509
- 'url': '/',
510
- 'method': 'GET',
511
- 'config': {
512
- 'query': {
513
- 'Version': '2015-11-01',
514
- 'Action': 'ModifyRemoteManagement'
606
+ DisassociateCluster: {
607
+ url: "/",
608
+ method: "GET",
609
+ config: {
610
+ query: {
611
+ Version: "2015-11-01",
612
+ Action: "DisassociateCluster"
515
613
  },
516
- 'headers': {
517
- 'Content-Type': 'application/x-www-form-urlencoded'
614
+ headers: {
615
+ "Content-Type": "application/x-www-form-urlencoded"
518
616
  }
519
617
  },
520
- 'paramsType': {
521
- 'RemoteManagementId': 'String',
522
- 'DynamicCode': 'String',
523
- 'Pin': 'String',
524
- 'NewPhoneNumber': 'String',
525
- 'NewPin': 'String',
526
- 'Name': 'String',
527
- 'VersionId': 'Int'
618
+ paramsType: {
619
+ HostId: "String"
528
620
  }
529
621
  },
530
- 'CreateRemoteManagement': {
531
- 'url': '/',
532
- 'method': 'GET',
533
- 'config': {
534
- 'query': {
535
- 'Version': '2015-11-01',
536
- 'Action': 'CreateRemoteManagement'
622
+ DescribeInspections: {
623
+ url: "/",
624
+ method: "GET",
625
+ config: {
626
+ query: {
627
+ Version: "2015-11-01",
628
+ Action: "DescribeInspections"
537
629
  },
538
- 'headers': {
539
- 'Content-Type': 'application/x-www-form-urlencoded'
630
+ headers: {
631
+ "Content-Type": "application/x-www-form-urlencoded"
540
632
  }
541
633
  },
542
- 'paramsType': {
543
- 'DynamicCode': 'String',
544
- 'Pin': 'String',
545
- 'PhoneNumber': 'String',
546
- 'Name': 'String',
547
- 'VersionId': 'Int'
634
+ paramsType: {
635
+ MaxResults: "Int",
636
+ NextToken: "String",
637
+ Filter: "Filter"
548
638
  }
549
639
  },
550
- 'ReinstallCustomerEpc': {
551
- 'url': '/',
552
- 'method': 'GET',
553
- 'config': {
554
- 'query': {
555
- 'Version': '2015-11-01',
556
- 'Action': 'ReinstallCustomerEpc'
640
+ DescribeEpcStocks: {
641
+ url: "/",
642
+ method: "GET",
643
+ config: {
644
+ query: {
645
+ Version: "2015-11-01",
646
+ Action: "DescribeEpcStocks"
557
647
  },
558
- 'headers': {
559
- 'Content-Type': 'application/x-www-form-urlencoded'
648
+ headers: {
649
+ "Content-Type": "application/x-www-form-urlencoded"
560
650
  }
561
651
  },
562
- 'paramsType': {
563
- 'HostId': 'String',
564
- 'ServerIp': 'String',
565
- 'Path': 'String'
652
+ paramsType: {
653
+ Filter: "Filter"
566
654
  }
567
655
  },
568
- 'DeleteRemoteManagement': {
569
- 'url': '/',
570
- 'method': 'GET',
571
- 'config': {
572
- 'query': {
573
- 'Version': '2015-11-01',
574
- 'Action': 'DeleteRemoteManagement'
656
+ DescribeEpcDeviceAttributes: {
657
+ url: "/",
658
+ method: "GET",
659
+ config: {
660
+ query: {
661
+ Version: "2015-11-01",
662
+ Action: "DescribeEpcDeviceAttributes"
575
663
  },
576
- 'headers': {
577
- 'Content-Type': 'application/x-www-form-urlencoded'
664
+ headers: {
665
+ "Content-Type": "application/x-www-form-urlencoded"
578
666
  }
579
667
  },
580
- 'paramsType': {}
668
+ paramsType: {
669
+ Filter: "Filter",
670
+ DeviceAttributeId: "Filter",
671
+ MaxResults: "Int",
672
+ NextToken: "String"
673
+ }
674
+ },
675
+ DescribeProcesses: {
676
+ url: "/",
677
+ method: "GET",
678
+ config: {
679
+ query: {
680
+ Version: "2015-11-01",
681
+ Action: "DescribeProcesses"
682
+ },
683
+ headers: {
684
+ "Content-Type": "application/x-www-form-urlencoded"
685
+ }
686
+ },
687
+ paramsType: {
688
+ OperationProcessId: "Filter",
689
+ Filter: "Filter",
690
+ MaxResults: "Int",
691
+ NextToken: "String"
692
+ }
693
+ },
694
+ CreateProcess: {
695
+ url: "/",
696
+ method: "GET",
697
+ config: {
698
+ query: {
699
+ Version: "2015-11-01",
700
+ Action: "CreateProcess"
701
+ },
702
+ headers: {
703
+ "Content-Type": "application/x-www-form-urlencoded"
704
+ }
705
+ },
706
+ paramsType: {
707
+ ProcessId: "String",
708
+ InstanceId: "String",
709
+ Sn: "String",
710
+ AvailabilityZone: "String",
711
+ CreateTime: "String",
712
+ Attribute: "String",
713
+ Content: "String",
714
+ MachineCount: "Int",
715
+ Title: "String",
716
+ Type: "String",
717
+ Confirm: "String",
718
+ ProcessSource: "Int",
719
+ autoNocCase: "Int",
720
+ LogFileName: "Filter",
721
+ LogFile: "Filter",
722
+ LogUrl: "Filter",
723
+ AuthorizeCableReplace: "Int",
724
+ EventId: "String"
725
+ }
581
726
  },
582
- 'ModifyHyperThreading': {
583
- 'url': '/',
584
- 'method': 'GET',
585
- 'config': {
586
- 'query': {
587
- 'Version': '2015-11-01',
588
- 'Action': 'ModifyHyperThreading'
727
+ DeleteProcess: {
728
+ url: "/",
729
+ method: "GET",
730
+ config: {
731
+ query: {
732
+ Version: "2015-11-01",
733
+ Action: "DeleteProcess"
589
734
  },
590
- 'headers': {
591
- 'Content-Type': 'application/x-www-form-urlencoded'
735
+ headers: {
736
+ "Content-Type": "application/x-www-form-urlencoded"
592
737
  }
593
738
  },
594
- 'paramsType': {
595
- 'HostId': 'String',
596
- 'HyperThreadingStatus': 'String'
739
+ paramsType: {
740
+ OperationProcessId: "String"
597
741
  }
598
742
  },
599
- 'AssociateCluster': {
600
- 'url': '/',
601
- 'method': 'GET',
602
- 'config': {
603
- 'query': {
604
- 'Version': '2015-11-01',
605
- 'Action': 'AssociateCluster'
743
+ ReplyProcess: {
744
+ url: "/",
745
+ method: "GET",
746
+ config: {
747
+ query: {
748
+ Version: "2015-11-01",
749
+ Action: "ReplyProcess"
606
750
  },
607
- 'headers': {
608
- 'Content-Type': 'application/x-www-form-urlencoded'
751
+ headers: {
752
+ "Content-Type": "application/x-www-form-urlencoded"
609
753
  }
610
754
  },
611
- 'paramsType': {
612
- 'HostId': 'String',
613
- 'ClusterId': 'String'
755
+ paramsType: {
756
+ OperationProcessId: "String",
757
+ Remarks: "String"
614
758
  }
615
759
  },
616
- 'DisassociateCluster': {
617
- 'url': '/',
618
- 'method': 'GET',
619
- 'config': {
620
- 'query': {
621
- 'Version': '2015-11-01',
622
- 'Action': 'DisassociateCluster'
760
+ DescribeEpcTrashes: {
761
+ url: "/",
762
+ method: "GET",
763
+ config: {
764
+ query: {
765
+ Version: "2015-11-01",
766
+ Action: "DescribeEpcTrashes"
623
767
  },
624
- 'headers': {
625
- 'Content-Type': 'application/x-www-form-urlencoded'
768
+ headers: {
769
+ "Content-Type": "application/x-www-form-urlencoded"
626
770
  }
627
771
  },
628
- 'paramsType': {
629
- 'HostId': 'String'
772
+ paramsType: {
773
+ MaxResults: "Int",
774
+ NextToken: "String"
630
775
  }
631
776
  },
632
- 'DescribeInspections': {
633
- 'url': '/',
634
- 'method': 'GET',
635
- 'config': {
636
- 'query': {
637
- 'Version': '2015-11-01',
638
- 'Action': 'DescribeInspections'
777
+ ReturnEpc: {
778
+ url: "/",
779
+ method: "GET",
780
+ config: {
781
+ query: {
782
+ Version: "2015-11-01",
783
+ Action: "ReturnEpc"
639
784
  },
640
- 'headers': {
641
- 'Content-Type': 'application/x-www-form-urlencoded'
785
+ headers: {
786
+ "Content-Type": "application/x-www-form-urlencoded"
642
787
  }
643
788
  },
644
- 'paramsType': {
645
- 'MaxResults': 'Int',
646
- 'NextToken': 'String',
647
- 'Filter': 'Filter'
789
+ paramsType: {
790
+ HostId: "String"
648
791
  }
649
792
  },
650
- 'DescribeEpcStocks': {
651
- 'url': '/',
652
- 'method': 'GET',
653
- 'config': {
654
- 'query': {
655
- 'Version': '2015-11-01',
656
- 'Action': 'DescribeEpcStocks'
793
+ CreateResourceRequirement: {
794
+ url: "/",
795
+ method: "GET",
796
+ config: {
797
+ query: {
798
+ Version: "2015-11-01",
799
+ Action: "CreateResourceRequirement"
657
800
  },
658
- 'headers': {
659
- 'Content-Type': 'application/x-www-form-urlencoded'
801
+ headers: {
802
+ "Content-Type": "application/x-www-form-urlencoded"
660
803
  }
661
804
  },
662
- 'paramsType': {
663
- 'Filter': 'Filter'
805
+ paramsType: {
806
+ AvailabilityZone: "String",
807
+ RequirementCount: "Int",
808
+ ProjectName: "String",
809
+ UsageDate: "String",
810
+ Description: "String",
811
+ HostType: "String"
664
812
  }
665
813
  },
666
- 'DescribeEpcDeviceAttributes': {
667
- 'url': '/',
668
- 'method': 'GET',
669
- 'config': {
670
- 'query': {
671
- 'Version': '2015-11-01',
672
- 'Action': 'DescribeEpcDeviceAttributes'
814
+ AttachVolume: {
815
+ url: "/",
816
+ method: "GET",
817
+ config: {
818
+ query: {
819
+ Version: "2015-11-01",
820
+ Action: "AttachVolume"
673
821
  },
674
- 'headers': {
675
- 'Content-Type': 'application/x-www-form-urlencoded'
822
+ headers: {
823
+ "Content-Type": "application/x-www-form-urlencoded"
676
824
  }
677
825
  },
678
- 'paramsType': {
679
- 'Filter': 'Filter',
680
- 'DeviceAttributeId': 'Filter',
681
- 'MaxResults': 'Int',
682
- 'NextToken': 'String'
826
+ paramsType: {
827
+ HostId: "String",
828
+ VolumeId: "String"
683
829
  }
684
830
  },
685
- 'DescribeProcesses': {
686
- 'url': '/',
687
- 'method': 'GET',
688
- 'config': {
689
- 'query': {
690
- 'Version': '2015-11-01',
691
- 'Action': 'DescribeProcesses'
831
+ DetachVolume: {
832
+ url: "/",
833
+ method: "GET",
834
+ config: {
835
+ query: {
836
+ Version: "2015-11-01",
837
+ Action: "DetachVolume"
692
838
  },
693
- 'headers': {
694
- 'Content-Type': 'application/x-www-form-urlencoded'
839
+ headers: {
840
+ "Content-Type": "application/x-www-form-urlencoded"
695
841
  }
696
842
  },
697
- 'paramsType': {
698
- 'OperationProcessId': 'Filter',
699
- 'Filter': 'Filter',
700
- 'MaxResults': 'Int',
701
- 'NextToken': 'String'
843
+ paramsType: {
844
+ HostId: "String",
845
+ VolumeId: "String"
702
846
  }
703
847
  },
704
- 'CreateProcess': {
705
- 'url': '/',
706
- 'method': 'GET',
707
- 'config': {
708
- 'query': {
709
- 'Version': '2015-11-01',
710
- 'Action': 'CreateProcess'
848
+ DescribePrice: {
849
+ url: "/",
850
+ method: "GET",
851
+ config: {
852
+ query: {
853
+ Version: "2015-11-01",
854
+ Action: "DescribePrice"
711
855
  },
712
- 'headers': {
713
- 'Content-Type': 'application/x-www-form-urlencoded'
856
+ headers: {
857
+ "Content-Type": "application/x-www-form-urlencoded"
714
858
  }
715
859
  },
716
- 'paramsType': {
717
- 'ProcessId': 'String',
718
- 'InstanceId': 'String',
719
- 'Sn': 'String',
720
- 'AvailabilityZone': 'String',
721
- 'CreateTime': 'String',
722
- 'Attribute': 'String',
723
- 'Content': 'String',
724
- 'MachineCount': 'Int',
725
- 'Title': 'String',
726
- 'Type': 'String',
727
- 'Confirm': 'String',
728
- 'ProcessSource': 'Int'
860
+ paramsType: {
861
+ ChargeType: "String",
862
+ HostType: "String",
863
+ AvailabilityZone: "String",
864
+ PurchaseTime: "Int",
865
+ Amount: "Int"
729
866
  }
730
867
  },
731
- 'DeleteProcess': {
732
- 'url': '/',
733
- 'method': 'GET',
734
- 'config': {
735
- 'query': {
736
- 'Version': '2015-11-01',
737
- 'Action': 'DeleteProcess'
868
+ UpdateConfirm: {
869
+ url: "/",
870
+ method: "GET",
871
+ config: {
872
+ query: {
873
+ Version: "2015-11-01",
874
+ Action: "UpdateConfirm"
875
+ },
876
+ headers: {
877
+ "Content-Type": "application/x-www-form-urlencoded"
878
+ }
879
+ },
880
+ paramsType: {}
881
+ },
882
+ ModifyOverclockingAttribute: {
883
+ url: "/",
884
+ method: "GET",
885
+ config: {
886
+ query: {
887
+ Version: "2015-11-01",
888
+ Action: "ModifyOverclockingAttribute"
738
889
  },
739
- 'headers': {
740
- 'Content-Type': 'application/x-www-form-urlencoded'
890
+ headers: {
891
+ "Content-Type": "application/x-www-form-urlencoded"
741
892
  }
742
893
  },
743
- 'paramsType': {
744
- 'OperationProcessId': 'String'
894
+ paramsType: {
895
+ HostId: "String",
896
+ OverclockingAttribute: "String"
745
897
  }
746
898
  },
747
- 'ReplyProcess': {
748
- 'url': '/',
749
- 'method': 'GET',
750
- 'config': {
751
- 'query': {
752
- 'Version': '2015-11-01',
753
- 'Action': 'ReplyProcess'
899
+ CopyImage: {
900
+ url: "/",
901
+ method: "GET",
902
+ config: {
903
+ query: {
904
+ Version: "2015-11-01",
905
+ Action: "CopyImage"
754
906
  },
755
- 'headers': {
756
- 'Content-Type': 'application/x-www-form-urlencoded'
907
+ headers: {
908
+ "Content-Type": "application/x-www-form-urlencoded"
757
909
  }
758
910
  },
759
- 'paramsType': {
760
- 'OperationProcessId': 'String',
761
- 'Remarks': 'String'
911
+ paramsType: {
912
+ DestinationName: "String",
913
+ ImageId: "String",
914
+ DestinationRegion: "String",
915
+ CopyTag: "String"
762
916
  }
763
917
  },
764
- 'DescribeEpcTrashes': {
765
- 'url': '/',
766
- 'method': 'GET',
767
- 'config': {
768
- 'query': {
769
- 'Version': '2015-11-01',
770
- 'Action': 'DescribeEpcTrashes'
918
+ DescribeEpcRaidAttributes: {
919
+ url: "/",
920
+ method: "GET",
921
+ config: {
922
+ query: {
923
+ Version: "2015-11-01",
924
+ Action: "DescribeEpcRaidAttributes"
771
925
  },
772
- 'headers': {
773
- 'Content-Type': 'application/x-www-form-urlencoded'
926
+ headers: {
927
+ "Content-Type": "application/x-www-form-urlencoded"
774
928
  }
775
929
  },
776
- 'paramsType': {}
930
+ paramsType: {
931
+ Filter: "Filter",
932
+ MaxResults: "Int",
933
+ NextToken: "String"
934
+ }
935
+ },
936
+ DescribeGpuImageDriver: {
937
+ url: "/",
938
+ method: "GET",
939
+ config: {
940
+ query: {
941
+ Version: "2015-11-01",
942
+ Action: "DescribeGpuImageDriver"
943
+ },
944
+ headers: {
945
+ "Content-Type": "application/x-www-form-urlencoded"
946
+ }
947
+ },
948
+ paramsType: {
949
+ MaxResults: "Int",
950
+ NextToken: "String",
951
+ ImageId: "String",
952
+ HostType: "String"
953
+ }
954
+ },
955
+ CreateShareImage: {
956
+ url: "/",
957
+ method: "GET",
958
+ config: {
959
+ query: {
960
+ Version: "2015-11-01",
961
+ Action: "CreateShareImage"
962
+ },
963
+ headers: {
964
+ "Content-Type": "application/x-www-form-urlencoded"
965
+ }
966
+ },
967
+ paramsType: {
968
+ ImageId: "String",
969
+ AccountId: "Filter"
970
+ }
971
+ },
972
+ DeleteShareImage: {
973
+ url: "/",
974
+ method: "GET",
975
+ config: {
976
+ query: {
977
+ Version: "2015-11-01",
978
+ Action: "DeleteShareImage"
979
+ },
980
+ headers: {
981
+ "Content-Type": "application/x-www-form-urlencoded"
982
+ }
983
+ },
984
+ paramsType: {
985
+ ImageId: "String",
986
+ AccountId: "Filter"
987
+ }
988
+ },
989
+ DescribeShareImageAccountList: {
990
+ url: "/",
991
+ method: "GET",
992
+ config: {
993
+ query: {
994
+ Version: "2015-11-01",
995
+ Action: "DescribeShareImageAccountList"
996
+ },
997
+ headers: {
998
+ "Content-Type": "application/x-www-form-urlencoded"
999
+ }
1000
+ },
1001
+ paramsType: {
1002
+ ImageId: "String"
1003
+ }
1004
+ },
1005
+ DescribeShareImage: {
1006
+ url: "/",
1007
+ method: "GET",
1008
+ config: {
1009
+ query: {
1010
+ Version: "2015-11-01",
1011
+ Action: "DescribeShareImage"
1012
+ },
1013
+ headers: {
1014
+ "Content-Type": "application/x-www-form-urlencoded"
1015
+ }
1016
+ },
1017
+ paramsType: {
1018
+ MaxResults: "Int",
1019
+ NextToken: "String"
1020
+ }
1021
+ },
1022
+ AcceptShareImage: {
1023
+ url: "/",
1024
+ method: "GET",
1025
+ config: {
1026
+ query: {
1027
+ Version: "2015-11-01",
1028
+ Action: "AcceptShareImage"
1029
+ },
1030
+ headers: {
1031
+ "Content-Type": "application/x-www-form-urlencoded"
1032
+ }
1033
+ },
1034
+ paramsType: {
1035
+ ImageId: "String"
1036
+ }
1037
+ },
1038
+ RejectShareImage: {
1039
+ url: "/",
1040
+ method: "GET",
1041
+ config: {
1042
+ query: {
1043
+ Version: "2015-11-01",
1044
+ Action: "RejectShareImage"
1045
+ },
1046
+ headers: {
1047
+ "Content-Type": "application/x-www-form-urlencoded"
1048
+ }
1049
+ },
1050
+ paramsType: {
1051
+ ImageId: "String"
1052
+ }
1053
+ },
1054
+ DescribeManagedAccessory: {
1055
+ url: "/",
1056
+ method: "GET",
1057
+ config: {
1058
+ query: {
1059
+ Version: "2015-11-01",
1060
+ Action: "DescribeManagedAccessory"
1061
+ },
1062
+ headers: {
1063
+ "Content-Type": "application/x-www-form-urlencoded"
1064
+ }
1065
+ },
1066
+ paramsType: {}
1067
+ },
1068
+ AutoDeleteEpc: {
1069
+ url: "/",
1070
+ method: "GET",
1071
+ config: {
1072
+ query: {
1073
+ Version: "2015-11-01",
1074
+ Action: "AutoDeleteEpc"
1075
+ },
1076
+ headers: {
1077
+ "Content-Type": "application/x-www-form-urlencoded"
1078
+ }
1079
+ },
1080
+ paramsType: {
1081
+ HostId: "String",
1082
+ AutoDeleteTime: "String",
1083
+ AutoDeleteEip: "String"
1084
+ }
1085
+ },
1086
+ ExportImage: {
1087
+ url: "/",
1088
+ method: "GET",
1089
+ config: {
1090
+ query: {
1091
+ Version: "2015-11-01",
1092
+ Action: "ExportImage"
1093
+ },
1094
+ headers: {
1095
+ "Content-Type": "application/x-www-form-urlencoded"
1096
+ }
1097
+ },
1098
+ paramsType: {
1099
+ ImageId: "String",
1100
+ Ks3Bucket: "String",
1101
+ ObjectName: "String"
1102
+ }
1103
+ },
1104
+ QueryBuckets: {
1105
+ url: "/",
1106
+ method: "GET",
1107
+ config: {
1108
+ query: {
1109
+ Version: "2015-11-01",
1110
+ Action: "QueryBuckets"
1111
+ },
1112
+ headers: {
1113
+ "Content-Type": "application/x-www-form-urlencoded"
1114
+ }
1115
+ },
1116
+ paramsType: {}
1117
+ },
1118
+ CancelImageExport: {
1119
+ url: "/",
1120
+ method: "GET",
1121
+ config: {
1122
+ query: {
1123
+ Version: "2015-11-01",
1124
+ Action: "CancelImageExport"
1125
+ },
1126
+ headers: {
1127
+ "Content-Type": "application/x-www-form-urlencoded"
1128
+ }
1129
+ },
1130
+ paramsType: {
1131
+ ImageId: "String"
1132
+ }
1133
+ },
1134
+ UseHotStandByEpc: {
1135
+ url: "/",
1136
+ method: "POST",
1137
+ config: {
1138
+ query: {
1139
+ Version: "2015-11-01",
1140
+ Action: "UseHotStandByEpc"
1141
+ },
1142
+ headers: {
1143
+ "Content-Type": "application/x-www-form-urlencoded"
1144
+ }
1145
+ },
1146
+ paramsType: {
1147
+ HostId: "String",
1148
+ HotStandByHostId: "String",
1149
+ RetainInstanceInfo: "String"
1150
+ }
777
1151
  },
778
- 'ReturnEpc': {
779
- 'url': '/',
780
- 'method': 'GET',
781
- 'config': {
782
- 'query': {
783
- 'Version': '2015-11-01',
784
- 'Action': 'ReturnEpc'
1152
+ ActivateHotStandbyEpc: {
1153
+ url: "/",
1154
+ method: "GET",
1155
+ config: {
1156
+ query: {
1157
+ Version: "2015-11-01",
1158
+ Action: "ActivateHotStandbyEpc"
785
1159
  },
786
- 'headers': {
787
- 'Content-Type': 'application/x-www-form-urlencoded'
1160
+ headers: {
1161
+ "Content-Type": "application/x-www-form-urlencoded"
788
1162
  }
789
1163
  },
790
- 'paramsType': {
791
- 'HostId': 'String'
1164
+ paramsType: {
1165
+ HostId: "String"
792
1166
  }
793
1167
  },
794
- 'CreateResourceRequirement': {
795
- 'url': '/',
796
- 'method': 'GET',
797
- 'config': {
798
- 'query': {
799
- 'Version': '2015-11-01',
800
- 'Action': 'CreateResourceRequirement'
1168
+ BatchCreateEpc: {
1169
+ url: "/",
1170
+ method: "GET",
1171
+ config: {
1172
+ query: {
1173
+ Version: "2015-11-01",
1174
+ Action: "BatchCreateEpc"
801
1175
  },
802
- 'headers': {
803
- 'Content-Type': 'application/x-www-form-urlencoded'
1176
+ headers: {
1177
+ "Content-Type": "application/x-www-form-urlencoded"
804
1178
  }
805
1179
  },
806
- 'paramsType': {
807
- 'AvailabilityZone': 'String',
808
- 'RequirementCount': 'Int',
809
- 'ProjectName': 'String',
810
- 'UsageDate': 'String',
811
- 'Description': 'String',
812
- 'HostType': 'String'
1180
+ paramsType: {
1181
+ HostType: "String",
1182
+ AvailabilityZone: "String",
1183
+ Raid: "String",
1184
+ RaidId: "String",
1185
+ ImageId: "String",
1186
+ NetworkInterfaceMode: "String",
1187
+ SubnetId: "String",
1188
+ keyId: "String",
1189
+ SecurityGroupId: "Filter",
1190
+ DNS1: "String",
1191
+ DNS2: "String",
1192
+ HostName: "String",
1193
+ ProjectId: "String",
1194
+ ChargeType: "String",
1195
+ Sn: "String",
1196
+ PurchaseTime: "Int",
1197
+ Password: "String",
1198
+ CloudMonitorAgent: "String",
1199
+ ExtensionSubnetId: "String",
1200
+ ExtensionDNS1: "String",
1201
+ ExtensionDNS2: "String",
1202
+ Description: "String",
1203
+ AddressBandWidth: "String",
1204
+ LineId: "String",
1205
+ BandWidthShareId: "String",
1206
+ AddressChargeType: "String",
1207
+ AddressPurchaseTime: "String",
1208
+ AddressProjectId: "String",
1209
+ SystemFileType: "String",
1210
+ DataFileType: "String",
1211
+ DataDiskCatalogue: "String",
1212
+ DataDiskCatalogueSuffix: "String",
1213
+ HyperThreading: "String",
1214
+ NvmeDataFileType: "String",
1215
+ NvmeDataDiskCatalogue: "String",
1216
+ NvmeDataDiskCatalogueSuffix: "String",
1217
+ BondAttribute: "String",
1218
+ ContainerAgent: "String",
1219
+ KesAgent: "String",
1220
+ KmrAgent: "String",
1221
+ ComputerName: "String",
1222
+ OverclockingAttribute: "String",
1223
+ GpuImageDriverId: "String",
1224
+ SystemVolumeType: "String",
1225
+ SystemVolumeSize: "String",
1226
+ RoceNetwork: "String",
1227
+ ZoneId: "String",
1228
+ ZoneType: "String",
1229
+ HostNameStartNo: "Int",
1230
+ ComputerNameStartNo: "Int",
1231
+ Amount: "Int",
1232
+ TimedRegularization: "String",
1233
+ PasswordInherit: "String",
1234
+ DataDiskMount: "String",
1235
+ StorageRoceNetworkCardName: "String"
813
1236
  }
814
1237
  },
815
- 'AttachVolume': {
816
- 'url': '/',
817
- 'method': 'GET',
818
- 'config': {
819
- 'query': {
820
- 'Version': '2015-11-01',
821
- 'Action': 'AttachVolume'
1238
+ DescribeUseHotStandbyRecords: {
1239
+ url: "/",
1240
+ method: "GET",
1241
+ config: {
1242
+ query: {
1243
+ Version: "2015-11-01",
1244
+ Action: "DescribeUseHotStandbyRecords"
822
1245
  },
823
- 'headers': {
824
- 'Content-Type': 'application/x-www-form-urlencoded'
1246
+ headers: {
1247
+ "Content-Type": "application/x-www-form-urlencoded"
825
1248
  }
826
1249
  },
827
- 'paramsType': {
828
- 'HostId': 'String',
829
- 'VolumeId': 'String'
1250
+ paramsType: {
1251
+ "Filter.N": "Object",
1252
+ MaxResults: "Int",
1253
+ NextToken: "String"
830
1254
  }
831
1255
  },
832
- 'DetachVolume': {
833
- 'url': '/',
834
- 'method': 'GET',
835
- 'config': {
836
- 'query': {
837
- 'Version': '2015-11-01',
838
- 'Action': 'DetachVolume'
1256
+ DescribeGpuRoceTopology: {
1257
+ url: "/",
1258
+ method: "GET",
1259
+ config: {
1260
+ query: {
1261
+ Version: "2015-11-01",
1262
+ Action: "DescribeGpuRoceTopology"
839
1263
  },
840
- 'headers': {
841
- 'Content-Type': 'application/x-www-form-urlencoded'
1264
+ headers: {
1265
+ "Content-Type": "application/x-www-form-urlencoded"
842
1266
  }
843
1267
  },
844
- 'paramsType': {
845
- 'HostId': 'String',
846
- 'VolumeId': 'String'
1268
+ paramsType: {
1269
+ SpineName: "String"
847
1270
  }
848
1271
  },
849
- 'DescribePrice': {
850
- 'url': '/',
851
- 'method': 'GET',
852
- 'config': {
853
- 'query': {
854
- 'Version': '2015-11-01',
855
- 'Action': 'DescribePrice'
1272
+ ModifyProcess: {
1273
+ url: "/",
1274
+ method: "POST",
1275
+ config: {
1276
+ query: {
1277
+ Version: "2015-11-01",
1278
+ Action: "ModifyProcess"
856
1279
  },
857
- 'headers': {
858
- 'Content-Type': 'application/x-www-form-urlencoded'
1280
+ headers: {
1281
+ "Content-Type": "application/x-www-form-urlencoded"
859
1282
  }
860
1283
  },
861
- 'paramsType': {
862
- 'ChargeType': 'String',
863
- 'HostType': 'String',
864
- 'AvailabilityZone': 'String',
865
- 'PurchaseTime': 'Int',
866
- 'Amount': 'Int'
1284
+ paramsType: {
1285
+ OperationProcessId: "String",
1286
+ Confirm: "String",
1287
+ Status: "String",
1288
+ Content: "String"
867
1289
  }
868
1290
  },
869
- 'ModifyOverclockingAttribute': {
870
- 'url': '/',
871
- 'method': 'GET',
872
- 'config': {
873
- 'query': {
874
- 'Version': '2015-11-01',
875
- 'Action': 'ModifyOverclockingAttribute'
1291
+ ConfirmProcess: {
1292
+ url: "/",
1293
+ method: "POST",
1294
+ config: {
1295
+ query: {
1296
+ Version: "2015-11-01",
1297
+ Action: "ConfirmProcess"
876
1298
  },
877
- 'headers': {
878
- 'Content-Type': 'application/x-www-form-urlencoded'
1299
+ headers: {
1300
+ "Content-Type": "application/x-www-form-urlencoded"
879
1301
  }
880
1302
  },
881
- 'paramsType': {
882
- 'HostId': 'String',
883
- 'OverclockingAttribute': 'String'
1303
+ paramsType: {
1304
+ OperationProcessId: "String",
1305
+ UserConfirmAvailable: "String"
884
1306
  }
885
1307
  },
886
- 'CopyImage': {
887
- 'url': '/',
888
- 'method': 'GET',
889
- 'config': {
890
- 'query': {
891
- 'Version': '2015-11-01',
892
- 'Action': 'CopyImage'
1308
+ DescribeModelConfig: {
1309
+ url: "/",
1310
+ method: "GET",
1311
+ config: {
1312
+ query: {
1313
+ Version: "2015-11-01",
1314
+ Action: "DescribeModelConfig"
893
1315
  },
894
- 'headers': {
895
- 'Content-Type': 'application/x-www-form-urlencoded'
1316
+ headers: {
1317
+ "Content-Type": "application/x-www-form-urlencoded"
896
1318
  }
897
1319
  },
898
- 'paramsType': {
899
- 'DestinationName': 'String',
900
- 'ImageId': 'String',
901
- 'DestinationRegion': 'String',
902
- 'CopyTag': 'String'
1320
+ paramsType: {
1321
+ MaxResults: "Int",
1322
+ NextToken: "String",
1323
+ ImageId: "String",
1324
+ HostType: "String",
1325
+ GpuImageDriverId: "String"
903
1326
  }
904
1327
  },
905
- 'DescribeEpcRaidAttributes': {
906
- 'url': '/',
907
- 'method': 'GET',
908
- 'config': {
909
- 'query': {
910
- 'Version': '2015-11-01',
911
- 'Action': 'DescribeEpcRaidAttributes'
1328
+ DescribeRoceEvent: {
1329
+ url: "/",
1330
+ method: "GET",
1331
+ config: {
1332
+ query: {
1333
+ Version: "2015-11-01",
1334
+ Action: "DescribeRoceEvent"
912
1335
  },
913
- 'headers': {
914
- 'Content-Type': 'application/x-www-form-urlencoded'
1336
+ headers: {
1337
+ "Content-Type": "application/x-www-form-urlencoded"
915
1338
  }
916
1339
  },
917
- 'paramsType': {
918
- 'Filter': 'Filter',
919
- 'MaxResults': 'Int',
920
- 'NextToken': 'String'
1340
+ paramsType: {
1341
+ MaxResults: "Int",
1342
+ NextToken: "String",
1343
+ "Filter.N": "Object",
1344
+ "HostId.N": "String"
921
1345
  }
922
1346
  },
923
- 'DescribeGpuImageDriver': {
924
- 'url': '/',
925
- 'method': 'GET',
926
- 'config': {
927
- 'query': {
928
- 'Version': '2015-11-01',
929
- 'Action': 'DescribeGpuImageDriver'
1347
+ DescribeRoceEventDetails: {
1348
+ url: "/",
1349
+ method: "GET",
1350
+ config: {
1351
+ query: {
1352
+ Version: "2015-11-01",
1353
+ Action: "DescribeRoceEventDetails"
930
1354
  },
931
- 'headers': {
932
- 'Content-Type': 'application/x-www-form-urlencoded'
1355
+ headers: {
1356
+ "Content-Type": "application/x-www-form-urlencoded"
933
1357
  }
934
1358
  },
935
- 'paramsType': {
936
- 'MaxResults': 'Int',
937
- 'NextToken': 'String',
938
- 'ImageId': 'String',
939
- 'HostType': 'String'
1359
+ paramsType: {
1360
+ EventId: "String",
1361
+ MaxResults: "Int",
1362
+ NextToken: "String"
940
1363
  }
941
1364
  },
942
- 'CreateShareImage': {
943
- 'url': '/',
944
- 'method': 'GET',
945
- 'config': {
946
- 'query': {
947
- 'Version': '2015-11-01',
948
- 'Action': 'CreateShareImage'
1365
+ BatchCreateProcess: {
1366
+ url: "/",
1367
+ method: "POST",
1368
+ config: {
1369
+ query: {
1370
+ Version: "2015-11-01",
1371
+ Action: "BatchCreateProcess"
949
1372
  },
950
- 'headers': {
951
- 'Content-Type': 'application/x-www-form-urlencoded'
1373
+ headers: {
1374
+ "Content-Type": "application/x-www-form-urlencoded"
952
1375
  }
953
1376
  },
954
- 'paramsType': {
955
- 'ImageId': 'String',
956
- 'AccountId.N': 'String'
1377
+ paramsType: {
1378
+ InstanceId: "Filter",
1379
+ AvailabilityZone: "String",
1380
+ Attribute: "String",
1381
+ Content: "String",
1382
+ LogFileName: "Filter",
1383
+ LogFile: "Filter",
1384
+ LogUrl: "Filter",
1385
+ MachineCount: "Int",
1386
+ Title: "String",
1387
+ Type: "String",
1388
+ Confirm: "String",
1389
+ ProcessSource: "Int",
1390
+ AutoNocCase: "Int"
957
1391
  }
958
1392
  },
959
- 'DeleteShareImage': {
960
- 'url': '/',
961
- 'method': 'GET',
962
- 'config': {
963
- 'query': {
964
- 'Version': '2015-11-01',
965
- 'Action': 'DeleteShareImage'
1393
+ CreateInspectHost: {
1394
+ url: "/",
1395
+ method: "GET",
1396
+ config: {
1397
+ query: {
1398
+ Version: "2015-11-01",
1399
+ Action: "CreateInspectHost"
966
1400
  },
967
- 'headers': {
968
- 'Content-Type': 'application/x-www-form-urlencoded'
1401
+ headers: {
1402
+ "Content-Type": "application/x-www-form-urlencoded"
969
1403
  }
970
1404
  },
971
- 'paramsType': {
972
- 'ImageId': 'String',
973
- 'AccountId.N': 'String'
1405
+ paramsType: {
1406
+ InspectType: "String",
1407
+ InspectName: "String",
1408
+ HostId: "Filter"
974
1409
  }
975
1410
  },
976
- 'DescribeShareImageAccountList': {
977
- 'url': '/',
978
- 'method': 'GET',
979
- 'config': {
980
- 'query': {
981
- 'Version': '2015-11-01',
982
- 'Action': 'DescribeShareImageAccountList'
1411
+ DescribeInspectHostResults: {
1412
+ url: "/",
1413
+ method: "GET",
1414
+ config: {
1415
+ query: {
1416
+ Version: "2015-11-01",
1417
+ Action: "DescribeInspectHostResults"
983
1418
  },
984
- 'headers': {
985
- 'Content-Type': 'application/json'
1419
+ headers: {
1420
+ "Content-Type": "application/x-www-form-urlencoded"
986
1421
  }
987
1422
  },
988
- 'paramsType': {
989
- 'ImageId': 'String'
1423
+ paramsType: {
1424
+ InspectId: "Filter",
1425
+ MaxResults: "Int",
1426
+ NextToken: "String"
990
1427
  }
991
1428
  },
992
- 'DescribeShareImage': {
993
- 'url': '/',
994
- 'method': 'GET',
995
- 'config': {
996
- 'query': {
997
- 'Version': '2015-11-01',
998
- 'Action': 'DescribeShareImage'
1429
+ DescribeXidDetails: {
1430
+ url: "/",
1431
+ method: "GET",
1432
+ config: {
1433
+ query: {
1434
+ Version: "2015-11-01",
1435
+ Action: "DescribeXidDetails"
999
1436
  },
1000
- 'headers': {
1001
- 'Content-Type': 'application/x-www-form-urlencoded'
1437
+ headers: {
1438
+ "Content-Type": "application/x-www-form-urlencoded"
1002
1439
  }
1003
1440
  },
1004
- 'paramsType': {
1005
- 'MaxResults': 'Int',
1006
- 'NextToken': 'String'
1441
+ paramsType: {
1442
+ StartTime: "String",
1443
+ EndTime: "String",
1444
+ InstanceId: "String",
1445
+ Name: "String",
1446
+ MaxResults: "Int",
1447
+ NextToken: "String"
1007
1448
  }
1008
1449
  },
1009
- 'AcceptShareImage': {
1010
- 'url': '/',
1011
- 'method': 'GET',
1012
- 'config': {
1013
- 'query': {
1014
- 'Version': '2015-11-01',
1015
- 'Action': 'AcceptShareImage'
1450
+ RunSoInstances: {
1451
+ url: "/",
1452
+ method: "GET",
1453
+ config: {
1454
+ query: {
1455
+ Version: "2015-11-01",
1456
+ Action: "RunSoInstances"
1016
1457
  },
1017
- 'headers': {
1018
- 'Content-Type': 'application/x-www-form-urlencoded'
1458
+ headers: {
1459
+ "Content-Type": "application/x-www-form-urlencoded"
1019
1460
  }
1020
1461
  },
1021
- 'paramsType': {
1022
- 'ImageId': 'String'
1462
+ paramsType: {
1463
+ ImageId: "String",
1464
+ InstanceName: "String",
1465
+ InstanceTypeId: "String",
1466
+ SecurityGroupId: "Filter",
1467
+ SubnetId: "String",
1468
+ Volumes: "Object",
1469
+ ZoneId: "String",
1470
+ Description: "String",
1471
+ HostName: "String",
1472
+ InstanceChargeType: "String",
1473
+ KeepImageCredential: "Boolean",
1474
+ KeyPairName: "String",
1475
+ Password: "String",
1476
+ Period: "Int",
1477
+ SuffixIndex: "Int",
1478
+ UniqueSuffix: "Boolean",
1479
+ InstallRunCommandAgent: "Boolean",
1480
+ Count: "Int",
1481
+ SoZoneId: "String"
1023
1482
  }
1024
1483
  },
1025
- 'RejectShareImage': {
1026
- 'url': '/',
1027
- 'method': 'GET',
1028
- 'config': {
1029
- 'query': {
1030
- 'Version': '2015-11-01',
1031
- 'Action': 'RejectShareImage'
1484
+ DescribeSoImages: {
1485
+ url: "/",
1486
+ method: "GET",
1487
+ config: {
1488
+ query: {
1489
+ Version: "2015-11-01",
1490
+ Action: "DescribeSoImages"
1032
1491
  },
1033
- 'headers': {
1034
- 'Content-Type': 'application/x-www-form-urlencoded'
1492
+ headers: {
1493
+ "Content-Type": "application/x-www-form-urlencoded"
1035
1494
  }
1036
1495
  },
1037
- 'paramsType': {
1038
- 'ImageId': 'String'
1496
+ paramsType: {
1497
+ ImageId: "Filter",
1498
+ ImageName: "String",
1499
+ IsSupportCloudInit: "Boolean",
1500
+ MaxResults: "Int",
1501
+ NextToken: "String",
1502
+ OsType: "String",
1503
+ Platform: "String",
1504
+ Status: "Filter",
1505
+ Visibility: "String",
1506
+ SoZoneId: "String"
1507
+ }
1508
+ },
1509
+ RebootSoInstance: {
1510
+ url: "/",
1511
+ method: "GET",
1512
+ config: {
1513
+ query: {
1514
+ Version: "2015-11-01",
1515
+ Action: "RebootSoInstance"
1516
+ },
1517
+ headers: {
1518
+ "Content-Type": "application/x-www-form-urlencoded"
1519
+ }
1520
+ },
1521
+ paramsType: {
1522
+ ForceStop: "Boolean",
1523
+ InstanceIds: "Filter",
1524
+ SoZoneId: "String"
1525
+ }
1526
+ },
1527
+ DeleteSoImages: {
1528
+ url: "/",
1529
+ method: "GET",
1530
+ config: {
1531
+ query: {
1532
+ Version: "2015-11-01",
1533
+ Action: "DeleteSoImages"
1534
+ },
1535
+ headers: {
1536
+ "Content-Type": "application/x-www-form-urlencoded"
1537
+ }
1538
+ },
1539
+ paramsType: {
1540
+ ImageIds: "Filter",
1541
+ SoZoneId: "String"
1542
+ }
1543
+ },
1544
+ DeleteSoVpc: {
1545
+ url: "/",
1546
+ method: "GET",
1547
+ config: {
1548
+ query: {
1549
+ Version: "2015-11-01",
1550
+ Action: "DeleteSoVpc"
1551
+ },
1552
+ headers: {
1553
+ "Content-Type": "application/x-www-form-urlencoded"
1554
+ }
1555
+ },
1556
+ paramsType: {
1557
+ VpcId: "String",
1558
+ SoZoneId: "String"
1559
+ }
1560
+ },
1561
+ DescribeSoAvailableResource: {
1562
+ url: "/",
1563
+ method: "GET",
1564
+ config: {
1565
+ query: {
1566
+ Version: "2015-11-01",
1567
+ Action: "DescribeSoAvailableResource"
1568
+ },
1569
+ headers: {
1570
+ "Content-Type": "application/x-www-form-urlencoded"
1571
+ }
1572
+ },
1573
+ paramsType: {
1574
+ InstanceChargeType: "String",
1575
+ InstanceTypeId: "String",
1576
+ ZoneId: "String",
1577
+ SoZoneId: "String"
1578
+ }
1579
+ },
1580
+ DescribeSoInstances: {
1581
+ url: "/",
1582
+ method: "GET",
1583
+ config: {
1584
+ query: {
1585
+ Version: "2015-11-01",
1586
+ Action: "DescribeSoInstances"
1587
+ },
1588
+ headers: {
1589
+ "Content-Type": "application/x-www-form-urlencoded"
1590
+ }
1591
+ },
1592
+ paramsType: {
1593
+ InstanceChargeType: "String",
1594
+ InstanceTypeId: "Filter",
1595
+ KeyPairName: "String",
1596
+ MaxResults: "Int",
1597
+ NextToken: "String",
1598
+ PrimaryIpAddress: "String",
1599
+ Status: "String",
1600
+ VpcId: "String",
1601
+ ZoneId: "String",
1602
+ InstanceIds: "Filter",
1603
+ SoZoneId: "String"
1604
+ }
1605
+ },
1606
+ DeleteSoInstance: {
1607
+ url: "/",
1608
+ method: "POST",
1609
+ config: {
1610
+ query: {
1611
+ Version: "2015-11-01",
1612
+ Action: "DeleteSoInstance"
1613
+ },
1614
+ headers: {
1615
+ "Content-Type": "application/x-www-form-urlencoded"
1616
+ }
1617
+ },
1618
+ paramsType: {
1619
+ InstanceIds: "Filter",
1620
+ SoZoneId: "String"
1621
+ }
1622
+ },
1623
+ DescribeSoSecurityGroups: {
1624
+ url: "/",
1625
+ method: "GET",
1626
+ config: {
1627
+ query: {
1628
+ Version: "2015-11-01",
1629
+ Action: "DescribeSoSecurityGroups"
1630
+ },
1631
+ headers: {
1632
+ "Content-Type": "application/x-www-form-urlencoded"
1633
+ }
1634
+ },
1635
+ paramsType: {
1636
+ VpcId: "String",
1637
+ SecurityGroupIds: "Filter",
1638
+ NextToken: "String",
1639
+ MaxResults: "Int",
1640
+ SoZoneId: "String"
1641
+ }
1642
+ },
1643
+ CreateSoVpc: {
1644
+ url: "/",
1645
+ method: "GET",
1646
+ config: {
1647
+ query: {
1648
+ Version: "2015-11-01",
1649
+ Action: "CreateSoVpc"
1650
+ },
1651
+ headers: {
1652
+ "Content-Type": "application/x-www-form-urlencoded"
1653
+ }
1654
+ },
1655
+ paramsType: {
1656
+ VpcName: "String",
1657
+ Description: "String",
1658
+ CidrBlock: "String",
1659
+ DnsServers: "Filter",
1660
+ AttachVpcId: "String",
1661
+ SoZoneId: "String"
1662
+ }
1663
+ },
1664
+ DeleteSoSubnet: {
1665
+ url: "/",
1666
+ method: "GET",
1667
+ config: {
1668
+ query: {
1669
+ Version: "2015-11-01",
1670
+ Action: "DeleteSoSubnet"
1671
+ },
1672
+ headers: {
1673
+ "Content-Type": "application/x-www-form-urlencoded"
1674
+ }
1675
+ },
1676
+ paramsType: {
1677
+ SubnetId: "String",
1678
+ SoZoneId: "String"
1679
+ }
1680
+ },
1681
+ DescribeSoKeyPairs: {
1682
+ url: "/",
1683
+ method: "GET",
1684
+ config: {
1685
+ query: {
1686
+ Version: "2015-11-01",
1687
+ Action: "DescribeSoKeyPairs"
1688
+ },
1689
+ headers: {
1690
+ "Content-Type": "application/x-www-form-urlencoded"
1691
+ }
1692
+ },
1693
+ paramsType: {
1694
+ FingerPrint: "String",
1695
+ KeyPairIds: "Filter",
1696
+ KeyPairName: "String",
1697
+ KeyPairNames: "Filter",
1698
+ MaxResults: "Int",
1699
+ NextToken: "String",
1700
+ SoZoneId: "String"
1701
+ }
1702
+ },
1703
+ StartSoInstance: {
1704
+ url: "/",
1705
+ method: "POST",
1706
+ config: {
1707
+ query: {
1708
+ Version: "2015-11-01",
1709
+ Action: "StartSoInstance"
1710
+ },
1711
+ headers: {
1712
+ "Content-Type": "application/x-www-form-urlencoded"
1713
+ }
1714
+ },
1715
+ paramsType: {
1716
+ InstanceIds: "Filter",
1717
+ SoZoneId: "String"
1718
+ }
1719
+ },
1720
+ DescribeSoInstanceTypes: {
1721
+ url: "/",
1722
+ method: "GET",
1723
+ config: {
1724
+ query: {
1725
+ Version: "2015-11-01",
1726
+ Action: "DescribeSoInstanceTypes"
1727
+ },
1728
+ headers: {
1729
+ "Content-Type": "application/x-www-form-urlencoded"
1730
+ }
1731
+ },
1732
+ paramsType: {
1733
+ ImageId: "String",
1734
+ InstanceTypeId: "Filter",
1735
+ SoZoneId: "String"
1736
+ }
1737
+ },
1738
+ ModifySoSubnetAttributes: {
1739
+ url: "/",
1740
+ method: "GET",
1741
+ config: {
1742
+ query: {
1743
+ Version: "2015-11-01",
1744
+ Action: "ModifySoSubnetAttributes"
1745
+ },
1746
+ headers: {
1747
+ "Content-Type": "application/x-www-form-urlencoded"
1748
+ }
1749
+ },
1750
+ paramsType: {
1751
+ SubnetId: "String",
1752
+ SubnetName: "String",
1753
+ Description: "String",
1754
+ SoZoneId: "String"
1755
+ }
1756
+ },
1757
+ DescribeSoSubnet: {
1758
+ url: "/",
1759
+ method: "GET",
1760
+ config: {
1761
+ query: {
1762
+ Version: "2015-11-01",
1763
+ Action: "DescribeSoSubnet"
1764
+ },
1765
+ headers: {
1766
+ "Content-Type": "application/x-www-form-urlencoded"
1767
+ }
1768
+ },
1769
+ paramsType: {
1770
+ ZoneId: "String",
1771
+ SubnetName: "String",
1772
+ VpcId: "String",
1773
+ SubnetIds: "Filter",
1774
+ NextToken: "String",
1775
+ MaxResults: "Int",
1776
+ SoZoneId: "String"
1777
+ }
1778
+ },
1779
+ ModifySoKeyPairAttribute: {
1780
+ url: "/",
1781
+ method: "GET",
1782
+ config: {
1783
+ query: {
1784
+ Version: "2015-11-01",
1785
+ Action: "ModifySoKeyPairAttribute"
1786
+ },
1787
+ headers: {
1788
+ "Content-Type": "application/x-www-form-urlencoded"
1789
+ }
1790
+ },
1791
+ paramsType: {
1792
+ Description: "String",
1793
+ KeyPairId: "String",
1794
+ KeyPairName: "String",
1795
+ SoZoneId: "String"
1796
+ }
1797
+ },
1798
+ ModifySoImageAttribute: {
1799
+ url: "/",
1800
+ method: "GET",
1801
+ config: {
1802
+ query: {
1803
+ Version: "2015-11-01",
1804
+ Action: "ModifySoImageAttribute"
1805
+ },
1806
+ headers: {
1807
+ "Content-Type": "application/x-www-form-urlencoded"
1808
+ }
1809
+ },
1810
+ paramsType: {
1811
+ BootMode: "String",
1812
+ Description: "String",
1813
+ ImageId: "String",
1814
+ ImageName: "String",
1815
+ SoZoneId: "String"
1816
+ }
1817
+ },
1818
+ ModifySoVpcAttributes: {
1819
+ url: "/",
1820
+ method: "GET",
1821
+ config: {
1822
+ query: {
1823
+ Version: "2015-11-01",
1824
+ Action: "ModifySoVpcAttributes"
1825
+ },
1826
+ headers: {
1827
+ "Content-Type": "application/x-www-form-urlencoded"
1828
+ }
1829
+ },
1830
+ paramsType: {
1831
+ VpcId: "String",
1832
+ Description: "String",
1833
+ DnsServers: "Filter",
1834
+ VpcName: "String",
1835
+ SoZoneId: "String"
1836
+ }
1837
+ },
1838
+ ReplaceSoSystemVolume: {
1839
+ url: "/",
1840
+ method: "GET",
1841
+ config: {
1842
+ query: {
1843
+ Version: "2015-11-01",
1844
+ Action: "ReplaceSoSystemVolume"
1845
+ },
1846
+ headers: {
1847
+ "Content-Type": "application/x-www-form-urlencoded"
1848
+ }
1849
+ },
1850
+ paramsType: {
1851
+ ImageId: "String",
1852
+ InstanceId: "String",
1853
+ KeepImageCredential: "Boolean",
1854
+ KeyPairName: "String",
1855
+ Password: "String",
1856
+ SoZoneId: "String"
1857
+ }
1858
+ },
1859
+ CreateSoSubnet: {
1860
+ url: "/",
1861
+ method: "GET",
1862
+ config: {
1863
+ query: {
1864
+ Version: "2015-11-01",
1865
+ Action: "CreateSoSubnet"
1866
+ },
1867
+ headers: {
1868
+ "Content-Type": "application/x-www-form-urlencoded"
1869
+ }
1870
+ },
1871
+ paramsType: {
1872
+ VpcId: "String",
1873
+ ZoneId: "String",
1874
+ SubnetName: "String",
1875
+ Description: "String",
1876
+ CidrBlock: "String",
1877
+ SoZoneId: "String"
1878
+ }
1879
+ },
1880
+ DescribeSoVpcs: {
1881
+ url: "/",
1882
+ method: "GET",
1883
+ config: {
1884
+ query: {
1885
+ Version: "2015-11-01",
1886
+ Action: "DescribeSoVpcs"
1887
+ },
1888
+ headers: {
1889
+ "Content-Type": "application/x-www-form-urlencoded"
1890
+ }
1891
+ },
1892
+ paramsType: {
1893
+ VpcName: "String",
1894
+ VpcIds: "Filter",
1895
+ NextToken: "String",
1896
+ MaxResults: "Int",
1897
+ SoZoneId: "String"
1898
+ }
1899
+ },
1900
+ StopSoInstance: {
1901
+ url: "/",
1902
+ method: "POST",
1903
+ config: {
1904
+ query: {
1905
+ Version: "2015-11-01",
1906
+ Action: "StopSoInstance"
1907
+ },
1908
+ headers: {
1909
+ "Content-Type": "application/x-www-form-urlencoded"
1910
+ }
1911
+ },
1912
+ paramsType: {
1913
+ ForceStop: "Boolean",
1914
+ InstanceIds: "Filter",
1915
+ SoZoneId: "String"
1916
+ }
1917
+ },
1918
+ DeleteSoKeyPairs: {
1919
+ url: "/",
1920
+ method: "GET",
1921
+ config: {
1922
+ query: {
1923
+ Version: "2015-11-01",
1924
+ Action: "DeleteSoKeyPairs"
1925
+ },
1926
+ headers: {
1927
+ "Content-Type": "application/x-www-form-urlencoded"
1928
+ }
1929
+ },
1930
+ paramsType: {
1931
+ KeyPairNames: "Filter",
1932
+ SoZoneId: "String"
1933
+ }
1934
+ },
1935
+ CreateSoImage: {
1936
+ url: "/",
1937
+ method: "GET",
1938
+ config: {
1939
+ query: {
1940
+ Version: "2015-11-01",
1941
+ Action: "CreateSoImage"
1942
+ },
1943
+ headers: {
1944
+ "Content-Type": "application/x-www-form-urlencoded"
1945
+ }
1946
+ },
1947
+ paramsType: {
1948
+ ForceStop: "Boolean",
1949
+ InstanceIds: "Filter",
1950
+ SoZoneId: "String"
1951
+ }
1952
+ },
1953
+ ModifySoInstanceAttribute: {
1954
+ url: "/",
1955
+ method: "POST",
1956
+ config: {
1957
+ query: {
1958
+ Version: "2015-11-01",
1959
+ Action: "ModifySoInstanceAttribute"
1960
+ },
1961
+ headers: {
1962
+ "Content-Type": "application/x-www-form-urlencoded"
1963
+ }
1964
+ },
1965
+ paramsType: {
1966
+ DeletionProtection: "String",
1967
+ Description: "String",
1968
+ Hostname: "String",
1969
+ InstanceId: "String",
1970
+ InstanceName: "String",
1971
+ Password: "String",
1972
+ SoZoneId: "String"
1973
+ }
1974
+ },
1975
+ CreateSoKeyPair: {
1976
+ url: "/",
1977
+ method: "GET",
1978
+ config: {
1979
+ query: {
1980
+ Version: "2015-11-01",
1981
+ Action: "CreateSoKeyPair"
1982
+ },
1983
+ headers: {
1984
+ "Content-Type": "application/x-www-form-urlencoded"
1985
+ }
1986
+ },
1987
+ paramsType: {
1988
+ KeyPairName: "String",
1989
+ Description: "String",
1990
+ SoZoneId: "String"
1039
1991
  }
1040
1992
  }
1041
1993
  });
1042
1994
  }
1043
-
1044
1995
  };