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,1435 +1,2407 @@
1
1
  const BaseClient = require("../../../base/BaseClient.js");
2
2
 
3
3
  module.exports = class Client extends BaseClient {
4
- _baseConfig = {
5
- 'protocol': 'http://',
6
- 'endpoint': 'vpc.api.ksyun.com',
7
- 'config': {
8
- 'timeout': 60, //设置timeout
9
- 'headers': {
10
- 'Accept': 'application/json'
11
- },
12
- 'credentials': {
13
- 'region': 'cn-shanghai-3',
14
- 'service': 'vpc',
15
- },
16
- },
17
- }
18
- _apiList = {
19
- 'CreateVpc': {
20
- 'url': '/',
21
- 'method': 'GET',
22
- 'config': {
23
- 'query': {
24
- 'Version': '2016-03-04',
25
- 'Action': 'CreateVpc',
26
- },
27
- 'headers': {
28
- 'Content-Type': 'application/x-www-form-urlencoded'
29
- },
30
- },
31
- 'paramsType': {
32
- 'VpcName': 'String',
33
- 'CidrBlock': 'String',
34
- 'ProvidedIpv6CidrBlock': 'Boolean',
35
- }
36
- },
37
- 'DeleteVpc': {
38
- 'url': '/',
39
- 'method': 'GET',
40
- 'config': {
41
- 'query': {
42
- 'Version': '2016-03-04',
43
- 'Action': 'DeleteVpc',
44
- },
45
- 'headers': {
46
- 'Content-Type': 'application/x-www-form-urlencoded'
47
- },
48
- },
49
- 'paramsType': {
50
- 'VpcId': 'String',
51
- }
52
- },
53
- 'DescribeVpcs': {
54
- 'url': '/',
55
- 'method': 'GET',
56
- 'config': {
57
- 'query': {
58
- 'Version': '2016-03-04',
59
- 'Action': 'DescribeVpcs',
60
- },
61
- 'headers': {
62
- 'Content-Type': 'application/x-www-form-urlencoded'
63
- },
64
- },
65
- 'paramsType': {
66
- 'VpcId': 'Filter',
67
- 'MaxResults': 'Int',
68
- 'NextToken': 'String',
69
- }
70
- },
71
- 'CreateSubnet': {
72
- 'url': '/',
73
- 'method': 'GET',
74
- 'config': {
75
- 'query': {
76
- 'Version': '2016-03-04',
77
- 'Action': 'CreateSubnet',
78
- },
79
- 'headers': {
80
- 'Content-Type': 'application/x-www-form-urlencoded'
81
- },
82
- },
83
- 'paramsType': {
84
- 'VpcId': 'String',
85
- 'SubnetName': 'String',
86
- 'CidrBlock': 'String',
87
- 'ProvidedIpv6CidrBlock': 'Boolean',
88
- 'SubnetType': 'String',
89
- 'DhcpIpFrom': 'String',
90
- 'DhcpIpTo': 'String',
91
- 'Dns1': 'String',
92
- 'Dns2': 'String',
93
- 'GatewayIp': 'String',
94
- 'SecondaryCidrId': 'String',
95
- 'AvailabilityZone': 'String',
96
- }
97
- },
98
- 'DeleteSubnet': {
99
- 'url': '/',
100
- 'method': 'GET',
101
- 'config': {
102
- 'query': {
103
- 'Version': '2016-03-04',
104
- 'Action': 'DeleteSubnet',
105
- },
106
- 'headers': {
107
- 'Content-Type': 'application/x-www-form-urlencoded'
108
- },
109
- },
110
- 'paramsType': {
111
- 'SubnetId': 'String',
112
- }
113
- },
114
- 'DescribeSubnets': {
115
- 'url': '/',
116
- 'method': 'GET',
117
- 'config': {
118
- 'query': {
119
- 'Version': '2016-03-04',
120
- 'Action': 'DescribeSubnets',
121
- },
122
- 'headers': {
123
- 'Content-Type': 'application/x-www-form-urlencoded'
124
- },
125
- },
126
- 'paramsType': {
127
- 'SubnetId': 'Filter',
128
- 'Filter': 'Filter',
129
- 'MaxResults': 'Int',
130
- 'NextToken': 'String',
131
- }
132
- },
133
- 'AssociateNetworkAcl': {
134
- 'url': '/',
135
- 'method': 'GET',
136
- 'config': {
137
- 'query': {
138
- 'Version': '2016-03-04',
139
- 'Action': 'AssociateNetworkAcl',
140
- },
141
- 'headers': {
142
- 'Content-Type': 'application/x-www-form-urlencoded'
143
- },
144
- },
145
- 'paramsType': {
146
- 'SubnetId': 'String',
147
- 'NetworkAclId': 'String',
148
- }
149
- },
150
- 'DisassociateNetworkAcl': {
151
- 'url': '/',
152
- 'method': 'GET',
153
- 'config': {
154
- 'query': {
155
- 'Version': '2016-03-04',
156
- 'Action': 'DisassociateNetworkAcl',
157
- },
158
- 'headers': {
159
- 'Content-Type': 'application/x-www-form-urlencoded'
160
- },
161
- },
162
- 'paramsType': {
163
- 'SubnetId': 'String',
164
- 'NetworkAclId': 'String',
165
- }
166
- },
167
- 'CreateRoute': {
168
- 'url': '/',
169
- 'method': 'GET',
170
- 'config': {
171
- 'query': {
172
- 'Version': '2016-03-04',
173
- 'Action': 'CreateRoute',
174
- },
175
- 'headers': {
176
- 'Content-Type': 'application/x-www-form-urlencoded'
177
- },
178
- },
179
- 'paramsType': {
180
- 'VpcId': 'String',
181
- 'RouteType': 'String',
182
- 'DestinationCidrBlock': 'String',
183
- 'InstanceId': 'String',
184
- 'VpcPeeringConnectionId': 'String',
185
- 'DirectConnectGatewayId': 'String',
186
- 'VpnTunnelId': 'String',
187
- 'NetworkInterfaceId': 'String',
188
- }
189
- },
190
- 'DeleteRoute': {
191
- 'url': '/',
192
- 'method': 'GET',
193
- 'config': {
194
- 'query': {
195
- 'Version': '2016-03-04',
196
- 'Action': 'DeleteRoute',
197
- },
198
- 'headers': {
199
- 'Content-Type': 'application/x-www-form-urlencoded'
200
- },
201
- },
202
- 'paramsType': {
203
- 'RouteId': 'String',
204
- }
205
- },
206
- 'DescribeRoutes': {
207
- 'url': '/',
208
- 'method': 'GET',
209
- 'config': {
210
- 'query': {
211
- 'Version': '2016-03-04',
212
- 'Action': 'DescribeRoutes',
213
- },
214
- 'headers': {
215
- 'Content-Type': 'application/x-www-form-urlencoded'
216
- },
217
- },
218
- 'paramsType': {
219
- 'RouteId': 'Filter',
220
- 'Filter': 'Filter',
221
- 'MaxResults': 'Int',
222
- 'NextToken': 'String',
223
- }
224
- },
225
- 'CreateNetworkAcl': {
226
- 'url': '/',
227
- 'method': 'GET',
228
- 'config': {
229
- 'query': {
230
- 'Version': '2016-03-04',
231
- 'Action': 'CreateNetworkAcl',
232
- },
233
- 'headers': {
234
- 'Content-Type': 'application/x-www-form-urlencoded'
235
- },
236
- },
237
- 'paramsType': {
238
- 'VpcId': 'String',
239
- 'NetworkAclName': 'String',
240
- 'Description': 'String',
241
- }
242
- },
243
- 'DeleteNetworkAcl': {
244
- 'url': '/',
245
- 'method': 'GET',
246
- 'config': {
247
- 'query': {
248
- 'Version': '2016-03-04',
249
- 'Action': 'DeleteNetworkAcl',
250
- },
251
- 'headers': {
252
- 'Content-Type': 'application/x-www-form-urlencoded'
253
- },
254
- },
255
- 'paramsType': {
256
- 'NetworkAclId': 'String',
257
- }
258
- },
259
- 'CreateNetworkAclEntry': {
260
- 'url': '/',
261
- 'method': 'GET',
262
- 'config': {
263
- 'query': {
264
- 'Version': '2016-03-04',
265
- 'Action': 'CreateNetworkAclEntry',
266
- },
267
- 'headers': {
268
- 'Content-Type': 'application/x-www-form-urlencoded'
269
- },
270
- },
271
- 'paramsType': {
272
- 'NetworkAclId': 'String',
273
- 'Direction': 'String',
274
- 'RuleNumber': 'Int',
275
- 'Protocol': 'String',
276
- 'IcmpType': 'Int',
277
- 'IcmpCode': 'Int',
278
- 'RuleAction': 'String',
279
- 'PortRangeFrom': 'Int',
280
- 'PortRangeTo': 'Int',
281
- 'CidrBlock': 'String',
282
- 'Description': 'String',
283
- }
284
- },
285
- 'DeleteNetworkAclEntry': {
286
- 'url': '/',
287
- 'method': 'GET',
288
- 'config': {
289
- 'query': {
290
- 'Version': '2016-03-04',
291
- 'Action': 'DeleteNetworkAclEntry',
292
- },
293
- 'headers': {
294
- 'Content-Type': 'application/x-www-form-urlencoded'
295
- },
296
- },
297
- 'paramsType': {
298
- 'NetworkAclId': 'String',
299
- 'NetworkAclEntryId': 'String',
300
- }
301
- },
302
- 'DescribeNetworkAcls': {
303
- 'url': '/',
304
- 'method': 'GET',
305
- 'config': {
306
- 'query': {
307
- 'Version': '2016-03-04',
308
- 'Action': 'DescribeNetworkAcls',
309
- },
310
- 'headers': {
311
- 'Content-Type': 'application/x-www-form-urlencoded'
312
- },
313
- },
314
- 'paramsType': {
315
- 'NetworkAclId': 'Filter',
316
- 'Filter': 'Filter',
317
- 'MaxResults': 'Int',
318
- 'NextToken': 'String',
319
- }
320
- },
321
- 'CreateSecurityGroup': {
322
- 'url': '/',
323
- 'method': 'GET',
324
- 'config': {
325
- 'query': {
326
- 'Version': '2016-03-04',
327
- 'Action': 'CreateSecurityGroup',
328
- },
329
- 'headers': {
330
- 'Content-Type': 'application/x-www-form-urlencoded'
331
- },
332
- },
333
- 'paramsType': {
334
- 'VpcId': 'String',
335
- 'SecurityGroupName': 'String',
336
- 'Description': 'String',
337
- }
338
- },
339
- 'DeleteSecurityGroup': {
340
- 'url': '/',
341
- 'method': 'GET',
342
- 'config': {
343
- 'query': {
344
- 'Version': '2016-03-04',
345
- 'Action': 'DeleteSecurityGroup',
346
- },
347
- 'headers': {
348
- 'Content-Type': 'application/x-www-form-urlencoded'
349
- },
350
- },
351
- 'paramsType': {
352
- 'SecurityGroupId': 'String',
353
- }
354
- },
355
- 'AuthorizeSecurityGroupEntry': {
356
- 'url': '/',
357
- 'method': 'GET',
358
- 'config': {
359
- 'query': {
360
- 'Version': '2016-03-04',
361
- 'Action': 'AuthorizeSecurityGroupEntry',
362
- },
363
- 'headers': {
364
- 'Content-Type': 'application/x-www-form-urlencoded'
365
- },
366
- },
367
- 'paramsType': {
368
- 'Description': 'String',
369
- 'SecurityGroupId': 'String',
370
- 'CidrBlock': 'String',
371
- 'Direction': 'String',
372
- 'Protocol': 'String',
373
- 'IcmpType': 'Int',
374
- 'IcmpCode': 'Int',
375
- 'PortRangeFrom': 'Int',
376
- 'PortRangeTo': 'Int',
377
- 'RuleTag': 'String',
378
- }
379
- },
380
- 'RevokeSecurityGroupEntry': {
381
- 'url': '/',
382
- 'method': 'GET',
383
- 'config': {
384
- 'query': {
385
- 'Version': '2016-03-04',
386
- 'Action': 'RevokeSecurityGroupEntry',
387
- },
388
- 'headers': {
389
- 'Content-Type': 'application/x-www-form-urlencoded'
390
- },
391
- },
392
- 'paramsType': {
393
- 'SecurityGroupId': 'String',
394
- 'SecurityGroupEntryId': 'String',
395
- }
396
- },
397
- 'DescribeSecurityGroups': {
398
- 'url': '/',
399
- 'method': 'GET',
400
- 'config': {
401
- 'query': {
402
- 'Version': '2016-03-04',
403
- 'Action': 'DescribeSecurityGroups',
404
- },
405
- 'headers': {
406
- 'Content-Type': 'application/x-www-form-urlencoded'
407
- },
408
- },
409
- 'paramsType': {
410
- 'SecurityGroupId': 'Filter',
411
- 'Filter': 'Filter',
412
- 'MaxResults': 'Int',
413
- 'NextToken': 'String',
414
- }
415
- },
416
- 'CreateNat': {
417
- 'url': '/',
418
- 'method': 'GET',
419
- 'config': {
420
- 'query': {
421
- 'Version': '2016-03-04',
422
- 'Action': 'CreateNat',
423
- },
424
- 'headers': {
425
- 'Content-Type': 'application/x-www-form-urlencoded'
426
- },
427
- },
428
- 'paramsType': {
429
- 'VpcId': 'String',
430
- 'NatLineId': 'String',
431
- 'BandWidth': 'Int',
432
- 'NatName': 'String',
433
- 'NatType': 'String',
434
- 'NatIpNumber': 'Int',
435
- 'NatMode': 'String',
436
- 'ProjectId': 'String',
437
- 'ChargeType': 'String',
438
- 'PurchaseTime': 'Int',
439
- }
440
- },
441
- 'DeleteNat': {
442
- 'url': '/',
443
- 'method': 'GET',
444
- 'config': {
445
- 'query': {
446
- 'Version': '2016-03-04',
447
- 'Action': 'DeleteNat',
448
- },
449
- 'headers': {
450
- 'Content-Type': 'application/x-www-form-urlencoded'
451
- },
452
- },
453
- 'paramsType': {
454
- 'NatId': 'String',
455
- }
456
- },
457
- 'DescribeNats': {
458
- 'url': '/',
459
- 'method': 'GET',
460
- 'config': {
461
- 'query': {
462
- 'Version': '2016-03-04',
463
- 'Action': 'DescribeNats',
464
- },
465
- 'headers': {
466
- 'Content-Type': 'application/x-www-form-urlencoded'
467
- },
468
- },
469
- 'paramsType': {
470
- 'ProjectId': 'Filter',
471
- 'NatId': 'Filter',
472
- 'Filter': 'Filter',
473
- 'MaxResults': 'Int',
474
- 'NextToken': 'String',
475
- }
476
- },
477
- 'AssociateNat': {
478
- 'url': '/',
479
- 'method': 'GET',
480
- 'config': {
481
- 'query': {
482
- 'Version': '2016-03-04',
483
- 'Action': 'AssociateNat',
484
- },
485
- 'headers': {
486
- 'Content-Type': 'application/x-www-form-urlencoded'
487
- },
488
- },
489
- 'paramsType': {
490
- 'NatId': 'String',
491
- 'SubnetId': 'String',
492
- }
493
- },
494
- 'DisassociateNat': {
495
- 'url': '/',
496
- 'method': 'GET',
497
- 'config': {
498
- 'query': {
499
- 'Version': '2016-03-04',
500
- 'Action': 'DisassociateNat',
501
- },
502
- 'headers': {
503
- 'Content-Type': 'application/x-www-form-urlencoded'
504
- },
505
- },
506
- 'paramsType': {
507
- 'NatId': 'String',
508
- 'SubnetId': 'String',
509
- }
510
- },
511
- 'DescribeInternetGateways': {
512
- 'url': '/',
513
- 'method': 'GET',
514
- 'config': {
515
- 'query': {
516
- 'Version': '2016-03-04',
517
- 'Action': 'DescribeInternetGateways',
518
- },
519
- 'headers': {
520
- 'Content-Type': 'application/x-www-form-urlencoded'
521
- },
522
- },
523
- 'paramsType': {
524
- 'InternetGatewayId': 'Filter',
525
- 'Filter': 'Filter',
526
- 'MaxResults': 'Int',
527
- 'NextToken': 'String',
528
- }
529
- },
530
- 'CreateVpcPeeringConnection': {
531
- 'url': '/',
532
- 'method': 'GET',
533
- 'config': {
534
- 'query': {
535
- 'Version': '2016-03-04',
536
- 'Action': 'CreateVpcPeeringConnection',
537
- },
538
- 'headers': {
539
- 'Content-Type': 'application/x-www-form-urlencoded'
540
- },
541
- },
542
- 'paramsType': {
543
- 'VpcId': 'String',
544
- 'PeeringName': 'String',
545
- 'PeerVpcId': 'String',
546
- 'Region': 'String',
547
- 'PeerRegion': 'String',
548
- 'PeerAccountId': 'String',
549
- 'BandWidth': 'Int',
550
- 'ProjectId': 'String',
551
- 'ChargeType': 'String',
552
- }
553
- },
554
- 'DeleteVpcPeeringConnection': {
555
- 'url': '/',
556
- 'method': 'GET',
557
- 'config': {
558
- 'query': {
559
- 'Version': '2016-03-04',
560
- 'Action': 'DeleteVpcPeeringConnection',
561
- },
562
- 'headers': {
563
- 'Content-Type': 'application/x-www-form-urlencoded'
564
- },
565
- },
566
- 'paramsType': {
567
- 'VpcPeeringConnectionId': 'String',
568
- }
569
- },
570
- 'DescribeVpcPeeringConnections': {
571
- 'url': '/',
572
- 'method': 'GET',
573
- 'config': {
574
- 'query': {
575
- 'Version': '2016-03-04',
576
- 'Action': 'DescribeVpcPeeringConnections',
577
- },
578
- 'headers': {
579
- 'Content-Type': 'application/x-www-form-urlencoded'
580
- },
581
- },
582
- 'paramsType': {
583
- 'ProjectId': 'Filter',
584
- 'VpcPeeringConnectionId': 'Filter',
585
- 'Filter': 'Filter',
586
- 'MaxResults': 'Int',
587
- 'NextToken': 'String',
588
- }
589
- },
590
- 'ModifyNetworkAcl': {
591
- 'url': '/',
592
- 'method': 'GET',
593
- 'config': {
594
- 'query': {
595
- 'Version': '2016-03-04',
596
- 'Action': 'ModifyNetworkAcl',
597
- },
598
- 'headers': {
599
- 'Content-Type': 'application/x-www-form-urlencoded'
600
- },
601
- },
602
- 'paramsType': {
603
- 'NetworkAclId': 'String',
604
- 'NetworkAclName': 'String',
605
- 'Description': 'String',
606
- }
607
- },
608
- 'ModifySecurityGroup': {
609
- 'url': '/',
610
- 'method': 'GET',
611
- 'config': {
612
- 'query': {
613
- 'Version': '2016-03-04',
614
- 'Action': 'ModifySecurityGroup',
615
- },
616
- 'headers': {
617
- 'Content-Type': 'application/x-www-form-urlencoded'
618
- },
619
- },
620
- 'paramsType': {
621
- 'SecurityGroupId': 'String',
622
- 'SecurityGroupName': 'String',
623
- 'Description': 'String',
624
- }
625
- },
626
- 'ModifySubnet': {
627
- 'url': '/',
628
- 'method': 'GET',
629
- 'config': {
630
- 'query': {
631
- 'Version': '2016-03-04',
632
- 'Action': 'ModifySubnet',
633
- },
634
- 'headers': {
635
- 'Content-Type': 'application/x-www-form-urlencoded'
636
- },
637
- },
638
- 'paramsType': {
639
- 'SubnetId': 'String',
640
- 'SubnetName': 'String',
641
- 'Dns1': 'String',
642
- 'Dns2': 'String',
643
- }
644
- },
645
- 'ModifyNat': {
646
- 'url': '/',
647
- 'method': 'GET',
648
- 'config': {
649
- 'query': {
650
- 'Version': '2016-03-04',
651
- 'Action': 'ModifyNat',
652
- },
653
- 'headers': {
654
- 'Content-Type': 'application/x-www-form-urlencoded'
655
- },
656
- },
657
- 'paramsType': {
658
- 'NatId': 'String',
659
- 'NatName': 'String',
660
- 'BandWidth': 'Int',
661
- }
662
- },
663
- 'DescribeNetworkInterfaces': {
664
- 'url': '/',
665
- 'method': 'GET',
666
- 'config': {
667
- 'query': {
668
- 'Version': '2016-03-04',
669
- 'Action': 'DescribeNetworkInterfaces',
670
- },
671
- 'headers': {
672
- 'Content-Type': 'application/x-www-form-urlencoded'
673
- },
674
- },
675
- 'paramsType': {
676
- 'NetworkInterfaceId': 'Filter',
677
- 'Filter': 'Filter',
678
- 'MaxResults': 'Int',
679
- 'NextToken': 'String',
680
- }
681
- },
682
- 'DescribeSubnetAvailableAddresses': {
683
- 'url': '/',
684
- 'method': 'GET',
685
- 'config': {
686
- 'query': {
687
- 'Version': '2016-03-04',
688
- 'Action': 'DescribeSubnetAvailableAddresses',
689
- },
690
- 'headers': {
691
- 'Content-Type': 'application/x-www-form-urlencoded'
692
- },
693
- },
694
- 'paramsType': {
695
- 'Filter': 'Filter',
696
- 'MaxResults': 'Int',
697
- 'NextToken': 'String',
698
- }
699
- },
700
- 'ModifyVpc': {
701
- 'url': '/',
702
- 'method': 'GET',
703
- 'config': {
704
- 'query': {
705
- 'Version': '2016-03-04',
706
- 'Action': 'ModifyVpc',
707
- },
708
- 'headers': {
709
- 'Content-Type': 'application/x-www-form-urlencoded'
710
- },
711
- },
712
- 'paramsType': {
713
- 'VpcName': 'String',
714
- 'VpcId': 'String',
715
- }
716
- },
717
- 'AcceptVpcPeeringConnection': {
718
- 'url': '/',
719
- 'method': 'GET',
720
- 'config': {
721
- 'query': {
722
- 'Version': '2016-03-04',
723
- 'Action': 'AcceptVpcPeeringConnection',
724
- },
725
- 'headers': {
726
- 'Content-Type': 'application/x-www-form-urlencoded'
727
- },
728
- },
729
- 'paramsType': {
730
- 'VpcPeeringConnectionId': 'String',
731
- }
732
- },
733
- 'RejectVpcPeeringConnection': {
734
- 'url': '/',
735
- 'method': 'GET',
736
- 'config': {
737
- 'query': {
738
- 'Version': '2016-03-04',
739
- 'Action': 'RejectVpcPeeringConnection',
740
- },
741
- 'headers': {
742
- 'Content-Type': 'application/x-www-form-urlencoded'
743
- },
744
- },
745
- 'paramsType': {
746
- 'VpcPeeringConnectionId': 'String',
747
- }
748
- },
749
- 'ModifyVpcPeeringConnection': {
750
- 'url': '/',
751
- 'method': 'GET',
752
- 'config': {
753
- 'query': {
754
- 'Version': '2016-03-04',
755
- 'Action': 'ModifyVpcPeeringConnection',
756
- },
757
- 'headers': {
758
- 'Content-Type': 'application/x-www-form-urlencoded'
759
- },
760
- },
761
- 'paramsType': {
762
- 'VpcPeeringConnectionId': 'String',
763
- 'PeeringName': 'String',
764
- 'BandWidth': 'Int',
765
- }
766
- },
767
- 'DescribeAvailabilityZones': {
768
- 'url': '/',
769
- 'method': 'GET',
770
- 'config': {
771
- 'query': {
772
- 'Version': '2016-03-04',
773
- 'Action': 'DescribeAvailabilityZones',
774
- },
775
- 'headers': {
776
- 'Content-Type': 'application/x-www-form-urlencoded'
777
- },
778
- },
779
- 'paramsType': {
780
- }
781
- },
782
- 'DescribeDirectConnects': {
783
- 'url': '/',
784
- 'method': 'GET',
785
- 'config': {
786
- 'query': {
787
- 'Version': '2016-03-04',
788
- 'Action': 'DescribeDirectConnects',
789
- },
790
- 'headers': {
791
- 'Content-Type': 'application/x-www-form-urlencoded'
792
- },
793
- },
794
- 'paramsType': {
795
- 'DirectConnectId': 'Filter',
796
- 'MaxResults': 'Int',
797
- 'NextToken': 'String',
798
- }
799
- },
800
- 'CreateDirectConnectInterface': {
801
- 'url': '/',
802
- 'method': 'GET',
803
- 'config': {
804
- 'query': {
805
- 'Version': '2016-03-04',
806
- 'Action': 'CreateDirectConnectInterface',
807
- },
808
- 'headers': {
809
- 'Content-Type': 'application/x-www-form-urlencoded'
810
- },
811
- },
812
- 'paramsType': {
813
- 'DirectConnectId': 'String',
814
- 'VlanId': 'Int',
815
- 'RouteType': 'String',
816
- 'DirectConnectInterfaceName': 'String',
817
- 'DirectConnectInterfaceAccountId': 'String',
818
- 'CustomerPeerIp': 'String',
819
- 'LocalPeerIp': 'String',
820
- 'HaDirectConnectId': 'String',
821
- 'HaCustomerPeerIp': 'String',
822
- 'HaLocalPeerIp': 'String',
823
- 'BgpPeer': 'String',
824
- 'ReliabilityMethod': 'String',
825
- 'BfdConfigId': 'String',
826
- 'BgpClientToken': 'String',
827
- }
828
- },
829
- 'DeleteDirectConnectInterface': {
830
- 'url': '/',
831
- 'method': 'GET',
832
- 'config': {
833
- 'query': {
834
- 'Version': '2016-03-04',
835
- 'Action': 'DeleteDirectConnectInterface',
836
- },
837
- 'headers': {
838
- 'Content-Type': 'application/x-www-form-urlencoded'
839
- },
840
- },
841
- 'paramsType': {
842
- 'DirectConnectInterfaceId': 'String',
843
- }
844
- },
845
- 'DescribeDirectConnectInterfaces': {
846
- 'url': '/',
847
- 'method': 'GET',
848
- 'config': {
849
- 'query': {
850
- 'Version': '2016-03-04',
851
- 'Action': 'DescribeDirectConnectInterfaces',
852
- },
853
- 'headers': {
854
- 'Content-Type': 'application/x-www-form-urlencoded'
855
- },
856
- },
857
- 'paramsType': {
858
- 'DirectConnectInterfaceId': 'Filter',
859
- 'MaxResults': 'Int',
860
- 'NextToken': 'String',
861
- }
862
- },
863
- 'CreateDirectConnectGateway': {
864
- 'url': '/',
865
- 'method': 'GET',
866
- 'config': {
867
- 'query': {
868
- 'Version': '2016-03-04',
869
- 'Action': 'CreateDirectConnectGateway',
870
- },
871
- 'headers': {
872
- 'Content-Type': 'application/x-www-form-urlencoded'
873
- },
874
- },
875
- 'paramsType': {
876
- 'VpcId': 'String',
877
- 'DirectConnectGatewayName': 'String',
878
- }
879
- },
880
- 'DeleteDirectConnectGateway': {
881
- 'url': '/',
882
- 'method': 'GET',
883
- 'config': {
884
- 'query': {
885
- 'Version': '2016-03-04',
886
- 'Action': 'DeleteDirectConnectGateway',
887
- },
888
- 'headers': {
889
- 'Content-Type': 'application/x-www-form-urlencoded'
890
- },
891
- },
892
- 'paramsType': {
893
- 'DirectConnectGatewayId': 'String',
894
- }
895
- },
896
- 'DescribeDirectConnectGateways': {
897
- 'url': '/',
898
- 'method': 'GET',
899
- 'config': {
900
- 'query': {
901
- 'Version': '2016-03-04',
902
- 'Action': 'DescribeDirectConnectGateways',
903
- },
904
- 'headers': {
905
- 'Content-Type': 'application/x-www-form-urlencoded'
906
- },
907
- },
908
- 'paramsType': {
909
- 'DirectConnectGatewayId': 'Filter',
910
- 'Filter': 'Filter',
911
- 'MaxResults': 'Int',
912
- 'NextToken': 'String',
913
- }
914
- },
915
- 'AttachDirectConnectGateway': {
916
- 'url': '/',
917
- 'method': 'GET',
918
- 'config': {
919
- 'query': {
920
- 'Version': '2016-03-04',
921
- 'Action': 'AttachDirectConnectGateway',
922
- },
923
- 'headers': {
924
- 'Content-Type': 'application/x-www-form-urlencoded'
925
- },
926
- },
927
- 'paramsType': {
928
- 'DirectConnectGatewayId': 'String',
929
- 'DirectConnectInterfaceId': 'String',
930
- }
931
- },
932
- 'DetachDirectConnectGateway': {
933
- 'url': '/',
934
- 'method': 'GET',
935
- 'config': {
936
- 'query': {
937
- 'Version': '2016-03-04',
938
- 'Action': 'DetachDirectConnectGateway',
939
- },
940
- 'headers': {
941
- 'Content-Type': 'application/x-www-form-urlencoded'
942
- },
943
- },
944
- 'paramsType': {
945
- 'DirectConnectGatewayId': 'String',
946
- 'DirectConnectInterfaceId': 'String',
947
- }
948
- },
949
- 'ModifyDirectConnectInterface': {
950
- 'url': '/',
951
- 'method': 'GET',
952
- 'config': {
953
- 'query': {
954
- 'Version': '2016-03-04',
955
- 'Action': 'ModifyDirectConnectInterface',
956
- },
957
- 'headers': {
958
- 'Content-Type': 'application/x-www-form-urlencoded'
959
- },
960
- },
961
- 'paramsType': {
962
- 'DirectConnectInterfaceId': 'String',
963
- 'DirectConnectInterfaceName': 'String',
964
- }
965
- },
966
- 'ModifyDirectConnectGateway': {
967
- 'url': '/',
968
- 'method': 'GET',
969
- 'config': {
970
- 'query': {
971
- 'Version': '2016-03-04',
972
- 'Action': 'ModifyDirectConnectGateway',
973
- },
974
- 'headers': {
975
- 'Content-Type': 'application/x-www-form-urlencoded'
976
- },
977
- },
978
- 'paramsType': {
979
- 'DirectConnectGatewayId': 'String',
980
- 'DirectConnectGatewayName': 'String',
981
- }
982
- },
983
- 'CreateVpnGateway': {
984
- 'url': '/',
985
- 'method': 'GET',
986
- 'config': {
987
- 'query': {
988
- 'Version': '2016-03-04',
989
- 'Action': 'CreateVpnGateway',
990
- },
991
- 'headers': {
992
- 'Content-Type': 'application/x-www-form-urlencoded'
993
- },
994
- },
995
- 'paramsType': {
996
- 'VpcId': 'String',
997
- 'BandWidth': 'Int',
998
- 'VpnGatewayName': 'String',
999
- 'ProjectId': 'String',
1000
- 'ChargeType': 'String',
1001
- 'PurchaseTime': 'Int',
1002
- }
1003
- },
1004
- 'ModifyVpnGateway': {
1005
- 'url': '/',
1006
- 'method': 'GET',
1007
- 'config': {
1008
- 'query': {
1009
- 'Version': '2016-03-04',
1010
- 'Action': 'ModifyVpnGateway',
1011
- },
1012
- 'headers': {
1013
- 'Content-Type': 'application/x-www-form-urlencoded'
1014
- },
1015
- },
1016
- 'paramsType': {
1017
- 'VpnGatewayId': 'String',
1018
- 'BandWidth': 'Int',
1019
- 'VpnGatewayName': 'String',
1020
- }
1021
- },
1022
- 'DeleteVpnGateway': {
1023
- 'url': '/',
1024
- 'method': 'GET',
1025
- 'config': {
1026
- 'query': {
1027
- 'Version': '2016-03-04',
1028
- 'Action': 'DeleteVpnGateway',
1029
- },
1030
- 'headers': {
1031
- 'Content-Type': 'application/x-www-form-urlencoded'
1032
- },
1033
- },
1034
- 'paramsType': {
1035
- 'VpnGatewayId': 'String',
1036
- }
1037
- },
1038
- 'DescribeVpnGateways': {
1039
- 'url': '/',
1040
- 'method': 'GET',
1041
- 'config': {
1042
- 'query': {
1043
- 'Version': '2016-03-04',
1044
- 'Action': 'DescribeVpnGateways',
1045
- },
1046
- 'headers': {
1047
- 'Content-Type': 'application/x-www-form-urlencoded'
1048
- },
1049
- },
1050
- 'paramsType': {
1051
- 'ProjectId': 'Filter',
1052
- 'VpnGatewayId': 'Filter',
1053
- 'Filter': 'Filter',
1054
- 'MaxResults': 'Int',
1055
- 'NextToken': 'String',
1056
- }
1057
- },
1058
- 'CreateVpnTunnel': {
1059
- 'url': '/',
1060
- 'method': 'POST',
1061
- 'config': {
1062
- 'query': {
1063
- 'Version': '2016-03-04',
1064
- 'Action': 'CreateVpnTunnel',
1065
- },
1066
- 'headers': {
1067
- 'Content-Type': 'application/x-www-form-urlencoded'
1068
- },
1069
- },
1070
- 'paramsType': {
1071
- 'CustomerGatewayId': 'String',
1072
- 'VpnGatewayId': 'String',
1073
- 'VpnTunnelName': 'String',
1074
- 'IpsecAuthenAlgorithm': 'String',
1075
- 'IpsecEncryAlgorithm': 'String',
1076
- 'IkeAuthenAlgorithm': 'String',
1077
- 'IkeEncryAlgorithm': 'String',
1078
- 'Type': 'String',
1079
- 'PreSharedKey': 'String',
1080
- 'IpsecLifetimeSecond': 'Int',
1081
- 'IpsecLifetimeTraffic': 'Int',
1082
- 'IkeDHGroup': 'String',
1083
- 'EnableNatTraversal': 'Boolean',
1084
- 'VpnGreIp': 'String',
1085
- 'HaVpnGreIp': 'String',
1086
- 'CustomerGreIp': 'String',
1087
- 'HaCustomerGreIp': 'String',
1088
- }
1089
- },
1090
- 'ModifyVpnTunnel': {
1091
- 'url': '/',
1092
- 'method': 'GET',
1093
- 'config': {
1094
- 'query': {
1095
- 'Version': '2016-03-04',
1096
- 'Action': 'ModifyVpnTunnel',
1097
- },
1098
- 'headers': {
1099
- 'Content-Type': 'application/x-www-form-urlencoded'
1100
- },
1101
- },
1102
- 'paramsType': {
1103
- 'VpnTunnelId': 'String',
1104
- 'VpnTunnelName': 'String',
1105
- }
1106
- },
1107
- 'DeleteVpnTunnel': {
1108
- 'url': '/',
1109
- 'method': 'GET',
1110
- 'config': {
1111
- 'query': {
1112
- 'Version': '2016-03-04',
1113
- 'Action': 'DeleteVpnTunnel',
1114
- },
1115
- 'headers': {
1116
- 'Content-Type': 'application/x-www-form-urlencoded'
1117
- },
1118
- },
1119
- 'paramsType': {
1120
- 'VpnTunnelId': 'String',
1121
- }
1122
- },
1123
- 'DescribeVpnTunnels': {
1124
- 'url': '/',
1125
- 'method': 'GET',
1126
- 'config': {
1127
- 'query': {
1128
- 'Version': '2016-03-04',
1129
- 'Action': 'DescribeVpnTunnels',
1130
- },
1131
- 'headers': {
1132
- 'Content-Type': 'application/x-www-form-urlencoded'
1133
- },
1134
- },
1135
- 'paramsType': {
1136
- 'VpnTunnelId': 'Filter',
1137
- 'Filter': 'Filter',
1138
- 'MaxResults': 'Int',
1139
- 'NextToken': 'String',
1140
- }
1141
- },
1142
- 'CreateCustomerGateway': {
1143
- 'url': '/',
1144
- 'method': 'GET',
1145
- 'config': {
1146
- 'query': {
1147
- 'Version': '2016-03-04',
1148
- 'Action': 'CreateCustomerGateway',
1149
- },
1150
- 'headers': {
1151
- 'Content-Type': 'application/x-www-form-urlencoded'
1152
- },
1153
- },
1154
- 'paramsType': {
1155
- 'CustomerGatewayName': 'String',
1156
- 'CustomerGatewayAddress': 'String',
1157
- 'HaCustomerGatewayAddress': 'String',
1158
- }
1159
- },
1160
- 'ModifyCustomerGateway': {
1161
- 'url': '/',
1162
- 'method': 'GET',
1163
- 'config': {
1164
- 'query': {
1165
- 'Version': '2016-03-04',
1166
- 'Action': 'ModifyCustomerGateway',
1167
- },
1168
- 'headers': {
1169
- 'Content-Type': 'application/x-www-form-urlencoded'
1170
- },
1171
- },
1172
- 'paramsType': {
1173
- 'CustomerGatewayId': 'String',
1174
- 'CustomerGatewayName': 'String',
1175
- }
1176
- },
1177
- 'DeleteCustomerGateway': {
1178
- 'url': '/',
1179
- 'method': 'GET',
1180
- 'config': {
1181
- 'query': {
1182
- 'Version': '2016-03-04',
1183
- 'Action': 'DeleteCustomerGateway',
1184
- },
1185
- 'headers': {
1186
- 'Content-Type': 'application/x-www-form-urlencoded'
1187
- },
1188
- },
1189
- 'paramsType': {
1190
- 'CustomerGatewayId': 'String',
1191
- }
1192
- },
1193
- 'ModifyDirectConnect': {
1194
- 'url': '/',
1195
- 'method': 'GET',
1196
- 'config': {
1197
- 'query': {
1198
- 'Version': '2016-03-04',
1199
- 'Action': 'ModifyDirectConnect',
1200
- },
1201
- 'headers': {
1202
- 'Content-Type': 'application/x-www-form-urlencoded'
1203
- },
1204
- },
1205
- 'paramsType': {
1206
- 'DirectConnectId': 'String',
1207
- 'DirectConnectName': 'String',
1208
- }
1209
- },
1210
- 'DescribeCustomerGateways': {
1211
- 'url': '/',
1212
- 'method': 'GET',
1213
- 'config': {
1214
- 'query': {
1215
- 'Version': '2016-03-04',
1216
- 'Action': 'DescribeCustomerGateways',
1217
- },
1218
- 'headers': {
1219
- 'Content-Type': 'application/x-www-form-urlencoded'
1220
- },
1221
- },
1222
- 'paramsType': {
1223
- 'CustomerGatewayId': 'Filter',
1224
- 'MaxResults': 'Int',
1225
- 'NextToken': 'String',
1226
- }
1227
- },
1228
- 'DescribeSubnetAllocatedIpAddresses': {
1229
- 'url': '/',
1230
- 'method': 'GET',
1231
- 'config': {
1232
- 'query': {
1233
- 'Version': '2016-03-04',
1234
- 'Action': 'DescribeSubnetAllocatedIpAddresses',
1235
- },
1236
- 'headers': {
1237
- 'Content-Type': 'application/x-www-form-urlencoded'
1238
- },
1239
- },
1240
- 'paramsType': {
1241
- 'Filter': 'Filter',
1242
- 'MaxResults': 'Int',
1243
- 'NextToken': 'String',
1244
- }
1245
- },
1246
- 'DeleteNetworkInterface': {
1247
- 'url': '/',
1248
- 'method': 'GET',
1249
- 'config': {
1250
- 'query': {
1251
- 'Version': '2016-03-04',
1252
- 'Action': 'DeleteNetworkInterface',
1253
- },
1254
- 'headers': {
1255
- 'Content-Type': 'application/x-www-form-urlencoded'
1256
- },
1257
- },
1258
- 'paramsType': {
1259
- 'NetworkInterfaceId': 'String',
1260
- }
1261
- },
1262
- 'CreateNetworkInterface': {
1263
- 'url': '/',
1264
- 'method': 'GET',
1265
- 'config': {
1266
- 'query': {
1267
- 'Version': '2016-03-04',
1268
- 'Action': 'CreateNetworkInterface',
1269
- },
1270
- 'headers': {
1271
- 'Content-Type': 'application/x-www-form-urlencoded'
1272
- },
1273
- },
1274
- 'paramsType': {
1275
- 'SubnetId': 'String',
1276
- 'NetworkInterfaceName': 'String',
1277
- 'PrivateIpAddress': 'String',
1278
- 'SecurityGroupId': 'Filter',
1279
- }
1280
- },
1281
- 'ModifyNetworkInterface': {
1282
- 'url': '/',
1283
- 'method': 'GET',
1284
- 'config': {
1285
- 'query': {
1286
- 'Version': '2016-03-04',
1287
- 'Action': 'ModifyNetworkInterface',
1288
- },
1289
- 'headers': {
1290
- 'Content-Type': 'application/x-www-form-urlencoded'
1291
- },
1292
- },
1293
- 'paramsType': {
1294
- 'NetworkInterfaceName': 'String',
1295
- 'NetworkInterfaceId': 'String',
1296
- }
1297
- },
1298
- 'DeleteDirectConnectGatewayRoute': {
1299
- 'url': '/',
1300
- 'method': 'GET',
1301
- 'config': {
1302
- 'query': {
1303
- 'Version': '2016-03-04',
1304
- 'Action': 'DeleteDirectConnectGatewayRoute',
1305
- },
1306
- 'headers': {
1307
- 'Content-Type': 'application/x-www-form-urlencoded'
1308
- },
1309
- },
1310
- 'paramsType': {
1311
- 'DirectConnectGatewayRouteId': 'String',
1312
- }
1313
- },
1314
- 'DescribeDirectConnectGatewayRoute': {
1315
- 'url': '/',
1316
- 'method': 'GET',
1317
- 'config': {
1318
- 'query': {
1319
- 'Version': '2016-03-04',
1320
- 'Action': 'DescribeDirectConnectGatewayRoute',
1321
- },
1322
- 'headers': {
1323
- 'Content-Type': 'application/json'
1324
- },
1325
- },
1326
- 'paramsType': {
1327
- 'DirectConnectGatewayId': 'String',
1328
- 'MaxResults': 'Int',
1329
- 'Filter': 'Filter',
1330
- 'NextToken': 'String',
1331
- }
1332
- },
1333
- 'PublishDirectConnectRoute': {
1334
- 'url': '/',
1335
- 'method': 'GET',
1336
- 'config': {
1337
- 'query': {
1338
- 'Version': '2016-03-04',
1339
- 'Action': 'PublishDirectConnectRoute',
1340
- },
1341
- 'headers': {
1342
- 'Content-Type': 'application/x-www-form-urlencoded'
1343
- },
1344
- },
1345
- 'paramsType': {
1346
- 'DirectConnectGatewayRouteId': 'String',
1347
- }
1348
- },
1349
- 'UnpublishDirectConnectRoute': {
1350
- 'url': '/',
1351
- 'method': 'GET',
1352
- 'config': {
1353
- 'query': {
1354
- 'Version': '2016-03-04',
1355
- 'Action': 'UnpublishDirectConnectRoute',
1356
- },
1357
- 'headers': {
1358
- 'Content-Type': 'application/x-www-form-urlencoded'
1359
- },
1360
- },
1361
- 'paramsType': {
1362
- 'DirectConnectGatewayRouteId': 'String',
1363
- }
1364
- },
1365
- 'AddSecondaryCidrBlock': {
1366
- 'url': '/',
1367
- 'method': 'GET',
1368
- 'config': {
1369
- 'query': {
1370
- 'Version': '2016-03-04',
1371
- 'Action': 'AddSecondaryCidrBlock',
1372
- },
1373
- 'headers': {
1374
- 'Content-Type': 'application/x-www-form-urlencoded'
1375
- },
1376
- },
1377
- 'paramsType': {
1378
- 'VpcId': 'String',
1379
- 'CidrBlock': 'String',
1380
- }
1381
- },
1382
- 'DeleteSecondaryCidrBlock': {
1383
- 'url': '/',
1384
- 'method': 'GET',
1385
- 'config': {
1386
- 'query': {
1387
- 'Version': '2016-03-04',
1388
- 'Action': 'DeleteSecondaryCidrBlock',
1389
- },
1390
- 'headers': {
1391
- 'Content-Type': 'application/x-www-form-urlencoded'
1392
- },
1393
- },
1394
- 'paramsType': {
1395
- 'VpcId': 'String',
1396
- 'SecondaryCidrId': 'String',
1397
- }
1398
- },
1399
- 'AssignPrivateIpAddress': {
1400
- 'url': '/',
1401
- 'method': 'GET',
1402
- 'config': {
1403
- 'query': {
1404
- 'Version': '2016-03-04',
1405
- 'Action': 'AssignPrivateIpAddress',
1406
- },
1407
- 'headers': {
1408
- 'Content-Type': 'application/x-www-form-urlencoded'
1409
- },
1410
- },
1411
- 'paramsType': {
1412
- 'NetworkInterfaceId': 'String',
1413
- 'PrivateIpAddress': 'Filter',
1414
- 'SecondaryPrivateIpAddressCount': 'Int',
1415
- }
1416
- },
1417
- 'UnassignPrivateIpAddress': {
1418
- 'url': '/',
1419
- 'method': 'GET',
1420
- 'config': {
1421
- 'query': {
1422
- 'Version': '2016-03-04',
1423
- 'Action': 'UnassignPrivateIpAddress',
1424
- },
1425
- 'headers': {
1426
- 'Content-Type': 'application/x-www-form-urlencoded'
1427
- },
1428
- },
1429
- 'paramsType': {
1430
- 'NetworkInterfaceId': 'String',
1431
- 'PrivateIpAddress': 'Filter',
1432
- }
1433
- },
1434
- }
1435
- }
4
+ _baseConfig = {
5
+ protocol: "http://",
6
+ endpoint: "vpc.api.ksyun.com",
7
+ config: {
8
+ timeout: 60, //设置timeout
9
+ headers: {
10
+ Accept: "application/json",
11
+ },
12
+ credentials: {
13
+ region: "cn-shanghai-3",
14
+ service: "vpc",
15
+ },
16
+ },
17
+ };
18
+ _apiList = {
19
+ CreateVpc: {
20
+ url: "/",
21
+ method: "GET",
22
+ config: {
23
+ query: {
24
+ Version: "2016-03-04",
25
+ Action: "CreateVpc",
26
+ },
27
+ headers: {
28
+ "Content-Type": "application/x-www-form-urlencoded",
29
+ },
30
+ },
31
+ paramsType: {
32
+ VpcName: "String",
33
+ CidrBlock: "String",
34
+ ProvidedIpv6CidrBlock: "Boolean",
35
+ },
36
+ },
37
+ DeleteVpc: {
38
+ url: "/",
39
+ method: "GET",
40
+ config: {
41
+ query: {
42
+ Version: "2016-03-04",
43
+ Action: "DeleteVpc",
44
+ },
45
+ headers: {
46
+ "Content-Type": "application/x-www-form-urlencoded",
47
+ },
48
+ },
49
+ paramsType: {
50
+ VpcId: "String",
51
+ },
52
+ },
53
+ DescribeVpcs: {
54
+ url: "/",
55
+ method: "GET",
56
+ config: {
57
+ query: {
58
+ Version: "2016-03-04",
59
+ Action: "DescribeVpcs",
60
+ },
61
+ headers: {
62
+ "Content-Type": "application/x-www-form-urlencoded",
63
+ },
64
+ },
65
+ paramsType: {
66
+ VpcId: "Filter",
67
+ MaxResults: "Int",
68
+ NextToken: "String",
69
+ },
70
+ },
71
+ CreateSubnet: {
72
+ url: "/",
73
+ method: "GET",
74
+ config: {
75
+ query: {
76
+ Version: "2016-03-04",
77
+ Action: "CreateSubnet",
78
+ },
79
+ headers: {
80
+ "Content-Type": "application/x-www-form-urlencoded",
81
+ },
82
+ },
83
+ paramsType: {
84
+ VpcId: "String",
85
+ SubnetName: "String",
86
+ CidrBlock: "String",
87
+ ProvidedIpv6CidrBlock: "Boolean",
88
+ SubnetType: "String",
89
+ DhcpIpFrom: "String",
90
+ DhcpIpTo: "String",
91
+ Dns1: "String",
92
+ Dns2: "String",
93
+ GatewayIp: "String",
94
+ SecondaryCidrId: "String",
95
+ AvailabilityZone: "String",
96
+ VisitInternet: "Boolean",
97
+ },
98
+ },
99
+ DeleteSubnet: {
100
+ url: "/",
101
+ method: "GET",
102
+ config: {
103
+ query: {
104
+ Version: "2016-03-04",
105
+ Action: "DeleteSubnet",
106
+ },
107
+ headers: {
108
+ "Content-Type": "application/x-www-form-urlencoded",
109
+ },
110
+ },
111
+ paramsType: {
112
+ SubnetId: "String",
113
+ },
114
+ },
115
+ DescribeSubnets: {
116
+ url: "/",
117
+ method: "GET",
118
+ config: {
119
+ query: {
120
+ Version: "2016-03-04",
121
+ Action: "DescribeSubnets",
122
+ },
123
+ headers: {
124
+ "Content-Type": "application/x-www-form-urlencoded",
125
+ },
126
+ },
127
+ paramsType: {
128
+ SubnetId: "Filter",
129
+ Filter: "Filter",
130
+ MaxResults: "Int",
131
+ NextToken: "String",
132
+ },
133
+ },
134
+ AssociateNetworkAcl: {
135
+ url: "/",
136
+ method: "GET",
137
+ config: {
138
+ query: {
139
+ Version: "2016-03-04",
140
+ Action: "AssociateNetworkAcl",
141
+ },
142
+ headers: {
143
+ "Content-Type": "application/x-www-form-urlencoded",
144
+ },
145
+ },
146
+ paramsType: {
147
+ SubnetId: "String",
148
+ NetworkAclId: "String",
149
+ },
150
+ },
151
+ DisassociateNetworkAcl: {
152
+ url: "/",
153
+ method: "GET",
154
+ config: {
155
+ query: {
156
+ Version: "2016-03-04",
157
+ Action: "DisassociateNetworkAcl",
158
+ },
159
+ headers: {
160
+ "Content-Type": "application/x-www-form-urlencoded",
161
+ },
162
+ },
163
+ paramsType: {
164
+ SubnetId: "String",
165
+ NetworkAclId: "String",
166
+ },
167
+ },
168
+ CreateRoute: {
169
+ url: "/",
170
+ method: "GET",
171
+ config: {
172
+ query: {
173
+ Version: "2016-03-04",
174
+ Action: "CreateRoute",
175
+ },
176
+ headers: {
177
+ "Content-Type": "application/x-www-form-urlencoded",
178
+ },
179
+ },
180
+ paramsType: {
181
+ VpcId: "String",
182
+ RouteType: "String",
183
+ DestinationCidrBlock: "String",
184
+ InstanceId: "String",
185
+ VpcPeeringConnectionId: "String",
186
+ DirectConnectGatewayId: "String",
187
+ VpnTunnelId: "String",
188
+ VpnGatewayId: "String",
189
+ NetworkInterfaceId: "String",
190
+ HaVipId: "String",
191
+ HaVipMasterNetworkInterfaceId: "String",
192
+ CenId: "String",
193
+ Description: "String",
194
+ RouteTableId: "String",
195
+ },
196
+ },
197
+ DeleteRoute: {
198
+ url: "/",
199
+ method: "GET",
200
+ config: {
201
+ query: {
202
+ Version: "2016-03-04",
203
+ Action: "DeleteRoute",
204
+ },
205
+ headers: {
206
+ "Content-Type": "application/x-www-form-urlencoded",
207
+ },
208
+ },
209
+ paramsType: {
210
+ RouteId: "String",
211
+ },
212
+ },
213
+ DescribeRoutes: {
214
+ url: "/",
215
+ method: "GET",
216
+ config: {
217
+ query: {
218
+ Version: "2016-03-04",
219
+ Action: "DescribeRoutes",
220
+ },
221
+ headers: {
222
+ "Content-Type": "application/x-www-form-urlencoded",
223
+ },
224
+ },
225
+ paramsType: {
226
+ RouteId: "Filter",
227
+ Filter: "Filter",
228
+ MaxResults: "Int",
229
+ NextToken: "String",
230
+ },
231
+ },
232
+ CreateNetworkAcl: {
233
+ url: "/",
234
+ method: "GET",
235
+ config: {
236
+ query: {
237
+ Version: "2016-03-04",
238
+ Action: "CreateNetworkAcl",
239
+ },
240
+ headers: {
241
+ "Content-Type": "application/x-www-form-urlencoded",
242
+ },
243
+ },
244
+ paramsType: {
245
+ VpcId: "String",
246
+ NetworkAclName: "String",
247
+ Description: "String",
248
+ },
249
+ },
250
+ DeleteNetworkAcl: {
251
+ url: "/",
252
+ method: "GET",
253
+ config: {
254
+ query: {
255
+ Version: "2016-03-04",
256
+ Action: "DeleteNetworkAcl",
257
+ },
258
+ headers: {
259
+ "Content-Type": "application/x-www-form-urlencoded",
260
+ },
261
+ },
262
+ paramsType: {
263
+ NetworkAclId: "String",
264
+ },
265
+ },
266
+ CreateNetworkAclEntry: {
267
+ url: "/",
268
+ method: "GET",
269
+ config: {
270
+ query: {
271
+ Version: "2016-03-04",
272
+ Action: "CreateNetworkAclEntry",
273
+ },
274
+ headers: {
275
+ "Content-Type": "application/x-www-form-urlencoded",
276
+ },
277
+ },
278
+ paramsType: {
279
+ NetworkAclId: "String",
280
+ Direction: "String",
281
+ RuleNumber: "Int",
282
+ Protocol: "String",
283
+ IcmpType: "Int",
284
+ IcmpCode: "Int",
285
+ RuleAction: "String",
286
+ PortRangeFrom: "Int",
287
+ PortRangeTo: "Int",
288
+ CidrBlock: "String",
289
+ Description: "String",
290
+ },
291
+ },
292
+ DeleteNetworkAclEntry: {
293
+ url: "/",
294
+ method: "GET",
295
+ config: {
296
+ query: {
297
+ Version: "2016-03-04",
298
+ Action: "DeleteNetworkAclEntry",
299
+ },
300
+ headers: {
301
+ "Content-Type": "application/x-www-form-urlencoded",
302
+ },
303
+ },
304
+ paramsType: {
305
+ NetworkAclId: "String",
306
+ NetworkAclEntryId: "String",
307
+ },
308
+ },
309
+ DescribeNetworkAcls: {
310
+ url: "/",
311
+ method: "GET",
312
+ config: {
313
+ query: {
314
+ Version: "2016-03-04",
315
+ Action: "DescribeNetworkAcls",
316
+ },
317
+ headers: {
318
+ "Content-Type": "application/x-www-form-urlencoded",
319
+ },
320
+ },
321
+ paramsType: {
322
+ NetworkAclId: "Filter",
323
+ Filter: "Filter",
324
+ MaxResults: "Int",
325
+ NextToken: "String",
326
+ },
327
+ },
328
+ CreateSecurityGroup: {
329
+ url: "/",
330
+ method: "GET",
331
+ config: {
332
+ query: {
333
+ Version: "2016-03-04",
334
+ Action: "CreateSecurityGroup",
335
+ },
336
+ headers: {
337
+ "Content-Type": "application/x-www-form-urlencoded",
338
+ },
339
+ },
340
+ paramsType: {
341
+ VpcId: "String",
342
+ SecurityGroupName: "String",
343
+ Description: "String",
344
+ },
345
+ },
346
+ DeleteSecurityGroup: {
347
+ url: "/",
348
+ method: "GET",
349
+ config: {
350
+ query: {
351
+ Version: "2016-03-04",
352
+ Action: "DeleteSecurityGroup",
353
+ },
354
+ headers: {
355
+ "Content-Type": "application/x-www-form-urlencoded",
356
+ },
357
+ },
358
+ paramsType: {
359
+ SecurityGroupId: "String",
360
+ },
361
+ },
362
+ AuthorizeSecurityGroupEntry: {
363
+ url: "/",
364
+ method: "GET",
365
+ config: {
366
+ query: {
367
+ Version: "2016-03-04",
368
+ Action: "AuthorizeSecurityGroupEntry",
369
+ },
370
+ headers: {
371
+ "Content-Type": "application/x-www-form-urlencoded",
372
+ },
373
+ },
374
+ paramsType: {
375
+ Description: "String",
376
+ SecurityGroupId: "String",
377
+ CidrBlock: "String",
378
+ Direction: "String",
379
+ Protocol: "String",
380
+ IcmpType: "Int",
381
+ IcmpCode: "Int",
382
+ PortRangeFrom: "Int",
383
+ PortRangeTo: "Int",
384
+ RuleTag: "String",
385
+ Priority: "Int",
386
+ Policy: "String",
387
+ },
388
+ },
389
+ RevokeSecurityGroupEntry: {
390
+ url: "/",
391
+ method: "GET",
392
+ config: {
393
+ query: {
394
+ Version: "2016-03-04",
395
+ Action: "RevokeSecurityGroupEntry",
396
+ },
397
+ headers: {
398
+ "Content-Type": "application/x-www-form-urlencoded",
399
+ },
400
+ },
401
+ paramsType: {
402
+ SecurityGroupId: "String",
403
+ SecurityGroupEntryId: "String",
404
+ },
405
+ },
406
+ DescribeSecurityGroups: {
407
+ url: "/",
408
+ method: "GET",
409
+ config: {
410
+ query: {
411
+ Version: "2016-03-04",
412
+ Action: "DescribeSecurityGroups",
413
+ },
414
+ headers: {
415
+ "Content-Type": "application/x-www-form-urlencoded",
416
+ },
417
+ },
418
+ paramsType: {
419
+ SecurityGroupId: "Filter",
420
+ Filter: "Filter",
421
+ MaxResults: "Int",
422
+ NextToken: "String",
423
+ },
424
+ },
425
+ CreateNat: {
426
+ url: "/",
427
+ method: "GET",
428
+ config: {
429
+ query: {
430
+ Version: "2016-03-04",
431
+ Action: "CreateNat",
432
+ },
433
+ headers: {
434
+ "Content-Type": "application/x-www-form-urlencoded",
435
+ },
436
+ },
437
+ paramsType: {
438
+ VpcId: "String",
439
+ NatLineId: "String",
440
+ BandWidth: "Int",
441
+ NatName: "String",
442
+ NatType: "String",
443
+ NatIpNumber: "Int",
444
+ NatMode: "String",
445
+ ProjectId: "String",
446
+ ChargeType: "String",
447
+ PurchaseTime: "Int",
448
+ },
449
+ },
450
+ DeleteNat: {
451
+ url: "/",
452
+ method: "GET",
453
+ config: {
454
+ query: {
455
+ Version: "2016-03-04",
456
+ Action: "DeleteNat",
457
+ },
458
+ headers: {
459
+ "Content-Type": "application/x-www-form-urlencoded",
460
+ },
461
+ },
462
+ paramsType: {
463
+ NatId: "String",
464
+ },
465
+ },
466
+ DescribeNats: {
467
+ url: "/",
468
+ method: "GET",
469
+ config: {
470
+ query: {
471
+ Version: "2016-03-04",
472
+ Action: "DescribeNats",
473
+ },
474
+ headers: {
475
+ "Content-Type": "application/x-www-form-urlencoded",
476
+ },
477
+ },
478
+ paramsType: {
479
+ ProjectId: "Filter",
480
+ NatId: "Filter",
481
+ Filter: "Filter",
482
+ IsContainTag: "Boolean",
483
+ TagKey: "Filter",
484
+ TagKV: "Filter",
485
+ MaxResults: "Int",
486
+ NextToken: "String",
487
+ },
488
+ },
489
+ AssociateNat: {
490
+ url: "/",
491
+ method: "GET",
492
+ config: {
493
+ query: {
494
+ Version: "2016-03-04",
495
+ Action: "AssociateNat",
496
+ },
497
+ headers: {
498
+ "Content-Type": "application/x-www-form-urlencoded",
499
+ },
500
+ },
501
+ paramsType: {
502
+ NatId: "String",
503
+ SubnetId: "String",
504
+ NatIpId: "Filter",
505
+ },
506
+ },
507
+ DisassociateNat: {
508
+ url: "/",
509
+ method: "GET",
510
+ config: {
511
+ query: {
512
+ Version: "2016-03-04",
513
+ Action: "DisassociateNat",
514
+ },
515
+ headers: {
516
+ "Content-Type": "application/x-www-form-urlencoded",
517
+ },
518
+ },
519
+ paramsType: {
520
+ NatId: "String",
521
+ SubnetId: "String",
522
+ },
523
+ },
524
+ DescribeInternetGateways: {
525
+ url: "/",
526
+ method: "GET",
527
+ config: {
528
+ query: {
529
+ Version: "2016-03-04",
530
+ Action: "DescribeInternetGateways",
531
+ },
532
+ headers: {
533
+ "Content-Type": "application/x-www-form-urlencoded",
534
+ },
535
+ },
536
+ paramsType: {
537
+ InternetGatewayId: "Filter",
538
+ Filter: "Filter",
539
+ MaxResults: "Int",
540
+ NextToken: "String",
541
+ },
542
+ },
543
+ CreateVpcPeeringConnection: {
544
+ url: "/",
545
+ method: "GET",
546
+ config: {
547
+ query: {
548
+ Version: "2016-03-04",
549
+ Action: "CreateVpcPeeringConnection",
550
+ },
551
+ headers: {
552
+ "Content-Type": "application/x-www-form-urlencoded",
553
+ },
554
+ },
555
+ paramsType: {
556
+ VpcId: "String",
557
+ PeeringName: "String",
558
+ PeerVpcId: "String",
559
+ PeerRegion: "String",
560
+ PeerAccountId: "String",
561
+ BandWidth: "Int",
562
+ PurchaseTime: "Int",
563
+ ProjectId: "String",
564
+ ChargeType: "String",
565
+ },
566
+ },
567
+ DeleteVpcPeeringConnection: {
568
+ url: "/",
569
+ method: "GET",
570
+ config: {
571
+ query: {
572
+ Version: "2016-03-04",
573
+ Action: "DeleteVpcPeeringConnection",
574
+ },
575
+ headers: {
576
+ "Content-Type": "application/x-www-form-urlencoded",
577
+ },
578
+ },
579
+ paramsType: {
580
+ VpcPeeringConnectionId: "String",
581
+ },
582
+ },
583
+ DescribeVpcPeeringConnections: {
584
+ url: "/",
585
+ method: "GET",
586
+ config: {
587
+ query: {
588
+ Version: "2016-03-04",
589
+ Action: "DescribeVpcPeeringConnections",
590
+ },
591
+ headers: {
592
+ "Content-Type": "application/x-www-form-urlencoded",
593
+ },
594
+ },
595
+ paramsType: {
596
+ ProjectId: "Filter",
597
+ VpcPeeringConnectionId: "Filter",
598
+ Filter: "Filter",
599
+ MaxResults: "Int",
600
+ NextToken: "String",
601
+ },
602
+ },
603
+ ModifyNetworkAcl: {
604
+ url: "/",
605
+ method: "GET",
606
+ config: {
607
+ query: {
608
+ Version: "2016-03-04",
609
+ Action: "ModifyNetworkAcl",
610
+ },
611
+ headers: {
612
+ "Content-Type": "application/x-www-form-urlencoded",
613
+ },
614
+ },
615
+ paramsType: {
616
+ NetworkAclId: "String",
617
+ NetworkAclName: "String",
618
+ Description: "String",
619
+ },
620
+ },
621
+ ModifySecurityGroup: {
622
+ url: "/",
623
+ method: "GET",
624
+ config: {
625
+ query: {
626
+ Version: "2016-03-04",
627
+ Action: "ModifySecurityGroup",
628
+ },
629
+ headers: {
630
+ "Content-Type": "application/x-www-form-urlencoded",
631
+ },
632
+ },
633
+ paramsType: {
634
+ SecurityGroupId: "String",
635
+ SecurityGroupName: "String",
636
+ Description: "String",
637
+ },
638
+ },
639
+ ModifySubnet: {
640
+ url: "/",
641
+ method: "GET",
642
+ config: {
643
+ query: {
644
+ Version: "2016-03-04",
645
+ Action: "ModifySubnet",
646
+ },
647
+ headers: {
648
+ "Content-Type": "application/x-www-form-urlencoded",
649
+ },
650
+ },
651
+ paramsType: {
652
+ SubnetId: "String",
653
+ SubnetName: "String",
654
+ Dns1: "String",
655
+ Dns2: "String",
656
+ },
657
+ },
658
+ ModifyNat: {
659
+ url: "/",
660
+ method: "GET",
661
+ config: {
662
+ query: {
663
+ Version: "2016-03-04",
664
+ Action: "ModifyNat",
665
+ },
666
+ headers: {
667
+ "Content-Type": "application/x-www-form-urlencoded",
668
+ },
669
+ },
670
+ paramsType: {
671
+ NatId: "String",
672
+ NatName: "String",
673
+ BandWidth: "Int",
674
+ },
675
+ },
676
+ DescribeNetworkInterfaces: {
677
+ url: "/",
678
+ method: "GET",
679
+ config: {
680
+ query: {
681
+ Version: "2016-03-04",
682
+ Action: "DescribeNetworkInterfaces",
683
+ },
684
+ headers: {
685
+ "Content-Type": "application/x-www-form-urlencoded",
686
+ },
687
+ },
688
+ paramsType: {
689
+ NetworkInterfaceId: "Filter",
690
+ Filter: "Filter",
691
+ MaxResults: "Int",
692
+ NextToken: "String",
693
+ },
694
+ },
695
+ DescribeSubnetAvailableAddresses: {
696
+ url: "/",
697
+ method: "GET",
698
+ config: {
699
+ query: {
700
+ Version: "2016-03-04",
701
+ Action: "DescribeSubnetAvailableAddresses",
702
+ },
703
+ headers: {
704
+ "Content-Type": "application/x-www-form-urlencoded",
705
+ },
706
+ },
707
+ paramsType: {
708
+ Filter: "Filter",
709
+ MaxResults: "Int",
710
+ NextToken: "String",
711
+ },
712
+ },
713
+ ModifyVpc: {
714
+ url: "/",
715
+ method: "GET",
716
+ config: {
717
+ query: {
718
+ Version: "2016-03-04",
719
+ Action: "ModifyVpc",
720
+ },
721
+ headers: {
722
+ "Content-Type": "application/x-www-form-urlencoded",
723
+ },
724
+ },
725
+ paramsType: {
726
+ VpcName: "String",
727
+ VpcId: "String",
728
+ },
729
+ },
730
+ AcceptVpcPeeringConnection: {
731
+ url: "/",
732
+ method: "GET",
733
+ config: {
734
+ query: {
735
+ Version: "2016-03-04",
736
+ Action: "AcceptVpcPeeringConnection",
737
+ },
738
+ headers: {
739
+ "Content-Type": "application/x-www-form-urlencoded",
740
+ },
741
+ },
742
+ paramsType: {
743
+ VpcPeeringConnectionId: "String",
744
+ },
745
+ },
746
+ RejectVpcPeeringConnection: {
747
+ url: "/",
748
+ method: "GET",
749
+ config: {
750
+ query: {
751
+ Version: "2016-03-04",
752
+ Action: "RejectVpcPeeringConnection",
753
+ },
754
+ headers: {
755
+ "Content-Type": "application/x-www-form-urlencoded",
756
+ },
757
+ },
758
+ paramsType: {
759
+ VpcPeeringConnectionId: "String",
760
+ },
761
+ },
762
+ ModifyVpcPeeringConnection: {
763
+ url: "/",
764
+ method: "GET",
765
+ config: {
766
+ query: {
767
+ Version: "2016-03-04",
768
+ Action: "ModifyVpcPeeringConnection",
769
+ },
770
+ headers: {
771
+ "Content-Type": "application/x-www-form-urlencoded",
772
+ },
773
+ },
774
+ paramsType: {
775
+ VpcPeeringConnectionId: "String",
776
+ PeeringName: "String",
777
+ BandWidth: "Int",
778
+ },
779
+ },
780
+ DescribeAvailabilityZones: {
781
+ url: "/",
782
+ method: "GET",
783
+ config: {
784
+ query: {
785
+ Version: "2016-03-04",
786
+ Action: "DescribeAvailabilityZones",
787
+ },
788
+ headers: {
789
+ "Content-Type": "application/x-www-form-urlencoded",
790
+ },
791
+ },
792
+ paramsType: {},
793
+ },
794
+ DescribeDirectConnects: {
795
+ url: "/",
796
+ method: "GET",
797
+ config: {
798
+ query: {
799
+ Version: "2016-03-04",
800
+ Action: "DescribeDirectConnects",
801
+ },
802
+ headers: {
803
+ "Content-Type": "application/x-www-form-urlencoded",
804
+ },
805
+ },
806
+ paramsType: {
807
+ DirectConnectId: "Filter",
808
+ MaxResults: "Int",
809
+ NextToken: "String",
810
+ },
811
+ },
812
+ CreateDirectConnectInterface: {
813
+ url: "/",
814
+ method: "GET",
815
+ config: {
816
+ query: {
817
+ Version: "2016-03-04",
818
+ Action: "CreateDirectConnectInterface",
819
+ },
820
+ headers: {
821
+ "Content-Type": "application/x-www-form-urlencoded",
822
+ },
823
+ },
824
+ paramsType: {
825
+ DirectConnectId: "String",
826
+ VlanId: "Int",
827
+ RouteType: "String",
828
+ DirectConnectInterfaceName: "String",
829
+ DirectConnectInterfaceAccountId: "String",
830
+ CustomerPeerIp: "String",
831
+ LocalPeerIp: "String",
832
+ HaDirectConnectId: "String",
833
+ HaCustomerPeerIp: "String",
834
+ HaLocalPeerIp: "String",
835
+ BgpPeer: "String",
836
+ ReliabilityMethod: "String",
837
+ BfdConfigId: "String",
838
+ BgpClientToken: "String",
839
+ EnableIpv6: "Boolean",
840
+ CustomerIpv6PeerIp: "String",
841
+ LocalIpv6PeerIp: "String",
842
+ },
843
+ },
844
+ DeleteDirectConnectInterface: {
845
+ url: "/",
846
+ method: "GET",
847
+ config: {
848
+ query: {
849
+ Version: "2016-03-04",
850
+ Action: "DeleteDirectConnectInterface",
851
+ },
852
+ headers: {
853
+ "Content-Type": "application/x-www-form-urlencoded",
854
+ },
855
+ },
856
+ paramsType: {
857
+ DirectConnectInterfaceId: "String",
858
+ },
859
+ },
860
+ DescribeDirectConnectInterfaces: {
861
+ url: "/",
862
+ method: "GET",
863
+ config: {
864
+ query: {
865
+ Version: "2016-03-04",
866
+ Action: "DescribeDirectConnectInterfaces",
867
+ },
868
+ headers: {
869
+ "Content-Type": "application/x-www-form-urlencoded",
870
+ },
871
+ },
872
+ paramsType: {
873
+ DirectConnectInterfaceId: "Filter",
874
+ MaxResults: "Int",
875
+ NextToken: "String",
876
+ },
877
+ },
878
+ CreateDirectConnectGateway: {
879
+ url: "/",
880
+ method: "GET",
881
+ config: {
882
+ query: {
883
+ Version: "2016-03-04",
884
+ Action: "CreateDirectConnectGateway",
885
+ },
886
+ headers: {
887
+ "Content-Type": "application/x-www-form-urlencoded",
888
+ },
889
+ },
890
+ paramsType: {
891
+ VpcId: "String",
892
+ DirectConnectGatewayName: "String",
893
+ },
894
+ },
895
+ DeleteDirectConnectGateway: {
896
+ url: "/",
897
+ method: "GET",
898
+ config: {
899
+ query: {
900
+ Version: "2016-03-04",
901
+ Action: "DeleteDirectConnectGateway",
902
+ },
903
+ headers: {
904
+ "Content-Type": "application/x-www-form-urlencoded",
905
+ },
906
+ },
907
+ paramsType: {
908
+ DirectConnectGatewayId: "String",
909
+ },
910
+ },
911
+ DescribeDirectConnectGateways: {
912
+ url: "/",
913
+ method: "GET",
914
+ config: {
915
+ query: {
916
+ Version: "2016-03-04",
917
+ Action: "DescribeDirectConnectGateways",
918
+ },
919
+ headers: {
920
+ "Content-Type": "application/x-www-form-urlencoded",
921
+ },
922
+ },
923
+ paramsType: {
924
+ DirectConnectGatewayId: "Filter",
925
+ Filter: "Filter",
926
+ MaxResults: "Int",
927
+ NextToken: "String",
928
+ },
929
+ },
930
+ AttachDirectConnectGateway: {
931
+ url: "/",
932
+ method: "GET",
933
+ config: {
934
+ query: {
935
+ Version: "2016-03-04",
936
+ Action: "AttachDirectConnectGateway",
937
+ },
938
+ headers: {
939
+ "Content-Type": "application/x-www-form-urlencoded",
940
+ },
941
+ },
942
+ paramsType: {
943
+ DirectConnectGatewayId: "String",
944
+ DirectConnectInterfaceId: "String",
945
+ },
946
+ },
947
+ DetachDirectConnectGateway: {
948
+ url: "/",
949
+ method: "GET",
950
+ config: {
951
+ query: {
952
+ Version: "2016-03-04",
953
+ Action: "DetachDirectConnectGateway",
954
+ },
955
+ headers: {
956
+ "Content-Type": "application/x-www-form-urlencoded",
957
+ },
958
+ },
959
+ paramsType: {
960
+ DirectConnectGatewayId: "String",
961
+ DirectConnectInterfaceId: "String",
962
+ },
963
+ },
964
+ ModifyDirectConnectInterface: {
965
+ url: "/",
966
+ method: "GET",
967
+ config: {
968
+ query: {
969
+ Version: "2016-03-04",
970
+ Action: "ModifyDirectConnectInterface",
971
+ },
972
+ headers: {
973
+ "Content-Type": "application/x-www-form-urlencoded",
974
+ },
975
+ },
976
+ paramsType: {
977
+ DirectConnectInterfaceId: "String",
978
+ DirectConnectInterfaceName: "String",
979
+ },
980
+ },
981
+ ModifyDirectConnectGateway: {
982
+ url: "/",
983
+ method: "GET",
984
+ config: {
985
+ query: {
986
+ Version: "2016-03-04",
987
+ Action: "ModifyDirectConnectGateway",
988
+ },
989
+ headers: {
990
+ "Content-Type": "application/x-www-form-urlencoded",
991
+ },
992
+ },
993
+ paramsType: {
994
+ DirectConnectGatewayId: "String",
995
+ DirectConnectGatewayName: "String",
996
+ },
997
+ },
998
+ CreateVpnGateway: {
999
+ url: "/",
1000
+ method: "GET",
1001
+ config: {
1002
+ query: {
1003
+ Version: "2016-03-04",
1004
+ Action: "CreateVpnGateway",
1005
+ },
1006
+ headers: {
1007
+ "Content-Type": "application/x-www-form-urlencoded",
1008
+ },
1009
+ },
1010
+ paramsType: {
1011
+ VpcId: "String",
1012
+ BandWidth: "Int",
1013
+ VpnGatewayName: "String",
1014
+ ProjectId: "String",
1015
+ ChargeType: "String",
1016
+ PurchaseTime: "Int",
1017
+ VpnGatewayVersion: "String",
1018
+ },
1019
+ },
1020
+ ModifyVpnGateway: {
1021
+ url: "/",
1022
+ method: "GET",
1023
+ config: {
1024
+ query: {
1025
+ Version: "2016-03-04",
1026
+ Action: "ModifyVpnGateway",
1027
+ },
1028
+ headers: {
1029
+ "Content-Type": "application/x-www-form-urlencoded",
1030
+ },
1031
+ },
1032
+ paramsType: {
1033
+ VpnGatewayId: "String",
1034
+ BandWidth: "Int",
1035
+ VpnGatewayName: "String",
1036
+ },
1037
+ },
1038
+ DeleteVpnGateway: {
1039
+ url: "/",
1040
+ method: "GET",
1041
+ config: {
1042
+ query: {
1043
+ Version: "2016-03-04",
1044
+ Action: "DeleteVpnGateway",
1045
+ },
1046
+ headers: {
1047
+ "Content-Type": "application/x-www-form-urlencoded",
1048
+ },
1049
+ },
1050
+ paramsType: {
1051
+ VpnGatewayId: "String",
1052
+ },
1053
+ },
1054
+ DescribeVpnGateways: {
1055
+ url: "/",
1056
+ method: "GET",
1057
+ config: {
1058
+ query: {
1059
+ Version: "2016-03-04",
1060
+ Action: "DescribeVpnGateways",
1061
+ },
1062
+ headers: {
1063
+ "Content-Type": "application/x-www-form-urlencoded",
1064
+ },
1065
+ },
1066
+ paramsType: {
1067
+ ProjectId: "Filter",
1068
+ VpnGatewayId: "Filter",
1069
+ Filter: "Filter",
1070
+ MaxResults: "Int",
1071
+ NextToken: "String",
1072
+ },
1073
+ },
1074
+ CreateVpnTunnel: {
1075
+ url: "/",
1076
+ method: "POST",
1077
+ config: {
1078
+ query: {
1079
+ Version: "2016-03-04",
1080
+ Action: "CreateVpnTunnel",
1081
+ },
1082
+ headers: {
1083
+ "Content-Type": "application/x-www-form-urlencoded",
1084
+ },
1085
+ },
1086
+ paramsType: {
1087
+ CustomerGatewayId: "String",
1088
+ VpnGatewayId: "String",
1089
+ VpnTunnelName: "String",
1090
+ IpsecAuthenAlgorithm: "String",
1091
+ IpsecEncryAlgorithm: "String",
1092
+ IkeAuthenAlgorithm: "String",
1093
+ IkeEncryAlgorithm: "String",
1094
+ Type: "String",
1095
+ OpenHealthCheck: "Boolean",
1096
+ PreSharedKey: "String",
1097
+ IpsecLifetimeSecond: "Int",
1098
+ IpsecLifetimeTraffic: "Int",
1099
+ IkeDHGroup: "String",
1100
+ EnableNatTraversal: "Boolean",
1101
+ VpnGreIp: "String",
1102
+ HaVpnGreIp: "String",
1103
+ CustomerGreIp: "String",
1104
+ HaCustomerGreIp: "String",
1105
+ HaMode: "String",
1106
+ LocalPeerIp: "String",
1107
+ CustomerPeerIp: "String",
1108
+ IkeVersion: "String",
1109
+ },
1110
+ },
1111
+ ModifyVpnTunnel: {
1112
+ url: "/",
1113
+ method: "GET",
1114
+ config: {
1115
+ query: {
1116
+ Version: "2016-03-04",
1117
+ Action: "ModifyVpnTunnel",
1118
+ },
1119
+ headers: {
1120
+ "Content-Type": "application/x-www-form-urlencoded",
1121
+ },
1122
+ },
1123
+ paramsType: {
1124
+ VpnTunnelId: "String",
1125
+ VpnTunnelName: "String",
1126
+ },
1127
+ },
1128
+ DeleteVpnTunnel: {
1129
+ url: "/",
1130
+ method: "GET",
1131
+ config: {
1132
+ query: {
1133
+ Version: "2016-03-04",
1134
+ Action: "DeleteVpnTunnel",
1135
+ },
1136
+ headers: {
1137
+ "Content-Type": "application/x-www-form-urlencoded",
1138
+ },
1139
+ },
1140
+ paramsType: {
1141
+ VpnTunnelId: "String",
1142
+ },
1143
+ },
1144
+ DescribeVpnTunnels: {
1145
+ url: "/",
1146
+ method: "GET",
1147
+ config: {
1148
+ query: {
1149
+ Version: "2016-03-04",
1150
+ Action: "DescribeVpnTunnels",
1151
+ },
1152
+ headers: {
1153
+ "Content-Type": "application/x-www-form-urlencoded",
1154
+ },
1155
+ },
1156
+ paramsType: {
1157
+ VpnTunnelId: "Filter",
1158
+ Filter: "Filter",
1159
+ MaxResults: "Int",
1160
+ NextToken: "String",
1161
+ },
1162
+ },
1163
+ CreateCustomerGateway: {
1164
+ url: "/",
1165
+ method: "GET",
1166
+ config: {
1167
+ query: {
1168
+ Version: "2016-03-04",
1169
+ Action: "CreateCustomerGateway",
1170
+ },
1171
+ headers: {
1172
+ "Content-Type": "application/x-www-form-urlencoded",
1173
+ },
1174
+ },
1175
+ paramsType: {
1176
+ CustomerGatewayName: "String",
1177
+ CustomerGatewayAddress: "String",
1178
+ HaCustomerGatewayAddress: "String",
1179
+ },
1180
+ },
1181
+ ModifyCustomerGateway: {
1182
+ url: "/",
1183
+ method: "GET",
1184
+ config: {
1185
+ query: {
1186
+ Version: "2016-03-04",
1187
+ Action: "ModifyCustomerGateway",
1188
+ },
1189
+ headers: {
1190
+ "Content-Type": "application/x-www-form-urlencoded",
1191
+ },
1192
+ },
1193
+ paramsType: {
1194
+ CustomerGatewayId: "String",
1195
+ CustomerGatewayName: "String",
1196
+ },
1197
+ },
1198
+ DeleteCustomerGateway: {
1199
+ url: "/",
1200
+ method: "GET",
1201
+ config: {
1202
+ query: {
1203
+ Version: "2016-03-04",
1204
+ Action: "DeleteCustomerGateway",
1205
+ },
1206
+ headers: {
1207
+ "Content-Type": "application/x-www-form-urlencoded",
1208
+ },
1209
+ },
1210
+ paramsType: {
1211
+ CustomerGatewayId: "String",
1212
+ },
1213
+ },
1214
+ ModifyDirectConnect: {
1215
+ url: "/",
1216
+ method: "GET",
1217
+ config: {
1218
+ query: {
1219
+ Version: "2016-03-04",
1220
+ Action: "ModifyDirectConnect",
1221
+ },
1222
+ headers: {
1223
+ "Content-Type": "application/x-www-form-urlencoded",
1224
+ },
1225
+ },
1226
+ paramsType: {
1227
+ DirectConnectId: "String",
1228
+ DirectConnectName: "String",
1229
+ },
1230
+ },
1231
+ DescribeCustomerGateways: {
1232
+ url: "/",
1233
+ method: "GET",
1234
+ config: {
1235
+ query: {
1236
+ Version: "2016-03-04",
1237
+ Action: "DescribeCustomerGateways",
1238
+ },
1239
+ headers: {
1240
+ "Content-Type": "application/x-www-form-urlencoded",
1241
+ },
1242
+ },
1243
+ paramsType: {
1244
+ CustomerGatewayId: "Filter",
1245
+ MaxResults: "Int",
1246
+ NextToken: "String",
1247
+ },
1248
+ },
1249
+ DescribeSubnetAllocatedIpAddresses: {
1250
+ url: "/",
1251
+ method: "GET",
1252
+ config: {
1253
+ query: {
1254
+ Version: "2016-03-04",
1255
+ Action: "DescribeSubnetAllocatedIpAddresses",
1256
+ },
1257
+ headers: {
1258
+ "Content-Type": "application/x-www-form-urlencoded",
1259
+ },
1260
+ },
1261
+ paramsType: {
1262
+ Filter: "Filter",
1263
+ MaxResults: "Int",
1264
+ NextToken: "String",
1265
+ },
1266
+ },
1267
+ AddNatIp: {
1268
+ url: "/",
1269
+ method: "GET",
1270
+ config: {
1271
+ query: {
1272
+ Version: "2016-03-04",
1273
+ Action: "AddNatIp",
1274
+ },
1275
+ headers: {
1276
+ "Content-Type": "application/x-www-form-urlencoded",
1277
+ },
1278
+ },
1279
+ paramsType: {
1280
+ NatId: "String",
1281
+ AddNumber: "Int",
1282
+ },
1283
+ },
1284
+ DeleteNatIp: {
1285
+ url: "/",
1286
+ method: "GET",
1287
+ config: {
1288
+ query: {
1289
+ Version: "2016-03-04",
1290
+ Action: "DeleteNatIp",
1291
+ },
1292
+ headers: {
1293
+ "Content-Type": "application/x-www-form-urlencoded",
1294
+ },
1295
+ },
1296
+ paramsType: {
1297
+ NatId: "String",
1298
+ NatIpId: "String",
1299
+ },
1300
+ },
1301
+ AssociateVpcCidrBlock: {
1302
+ url: "/",
1303
+ method: "GET",
1304
+ config: {
1305
+ query: {
1306
+ Version: "2016-03-04",
1307
+ Action: "AssociateVpcCidrBlock",
1308
+ },
1309
+ headers: {
1310
+ "Content-Type": "application/x-www-form-urlencoded",
1311
+ },
1312
+ },
1313
+ paramsType: {
1314
+ VpcId: "String",
1315
+ },
1316
+ },
1317
+ DescribeIpv6PublicIpAddresses: {
1318
+ url: "/",
1319
+ method: "GET",
1320
+ config: {
1321
+ query: {
1322
+ Version: "2016-03-04",
1323
+ Action: "DescribeIpv6PublicIpAddresses",
1324
+ },
1325
+ headers: {
1326
+ "Content-Type": "application/x-www-form-urlencoded",
1327
+ },
1328
+ },
1329
+ paramsType: {
1330
+ Ipv6PublicIpAddressId: "Filter",
1331
+ Filter: "Filter",
1332
+ MaxResults: "Int",
1333
+ NextToken: "String",
1334
+ },
1335
+ },
1336
+ DescribeIpv6NetworkInterfaces: {
1337
+ url: "/",
1338
+ method: "GET",
1339
+ config: {
1340
+ query: {
1341
+ Version: "2016-03-04",
1342
+ Action: "DescribeIpv6NetworkInterfaces",
1343
+ },
1344
+ headers: {
1345
+ "Content-Type": "application/x-www-form-urlencoded",
1346
+ },
1347
+ },
1348
+ paramsType: {
1349
+ NetworkInterfaceId: "Filter",
1350
+ Filter: "Filter",
1351
+ MaxResults: "Int",
1352
+ NextToken: "String",
1353
+ },
1354
+ },
1355
+ CreateIpv6PublicIp: {
1356
+ url: "/",
1357
+ method: "GET",
1358
+ config: {
1359
+ query: {
1360
+ Version: "2016-03-04",
1361
+ Action: "CreateIpv6PublicIp",
1362
+ },
1363
+ headers: {
1364
+ "Content-Type": "application/x-www-form-urlencoded",
1365
+ },
1366
+ },
1367
+ paramsType: {
1368
+ NetworkInterfaceId: "String",
1369
+ BandWidth: "Int",
1370
+ Ipv6PublicIpAddress: "String",
1371
+ ChargeType: "String",
1372
+ PurchaseTime: "Int",
1373
+ },
1374
+ },
1375
+ ReleaseIpv6PublicIp: {
1376
+ url: "/",
1377
+ method: "GET",
1378
+ config: {
1379
+ query: {
1380
+ Version: "2016-03-04",
1381
+ Action: "ReleaseIpv6PublicIp",
1382
+ },
1383
+ headers: {
1384
+ "Content-Type": "application/x-www-form-urlencoded",
1385
+ },
1386
+ },
1387
+ paramsType: {
1388
+ Ipv6PublicIpAddressId: "String",
1389
+ },
1390
+ },
1391
+ AlterIpv6PublicIpState: {
1392
+ url: "/",
1393
+ method: "GET",
1394
+ config: {
1395
+ query: {
1396
+ Version: "2016-03-04",
1397
+ Action: "AlterIpv6PublicIpState",
1398
+ },
1399
+ headers: {
1400
+ "Content-Type": "application/x-www-form-urlencoded",
1401
+ },
1402
+ },
1403
+ paramsType: {
1404
+ Ipv6PublicIpAddressId: "String",
1405
+ State: "String",
1406
+ },
1407
+ },
1408
+ ModifyIpv6PublicIp: {
1409
+ url: "/",
1410
+ method: "GET",
1411
+ config: {
1412
+ query: {
1413
+ Version: "2016-03-04",
1414
+ Action: "ModifyIpv6PublicIp",
1415
+ },
1416
+ headers: {
1417
+ "Content-Type": "application/x-www-form-urlencoded",
1418
+ },
1419
+ },
1420
+ paramsType: {
1421
+ Ipv6PublicIpAddressId: "String",
1422
+ BandWidth: "Int",
1423
+ },
1424
+ },
1425
+ ModifyPrivateIpAddressAttribute: {
1426
+ url: "/",
1427
+ method: "GET",
1428
+ config: {
1429
+ query: {
1430
+ Version: "2016-03-04",
1431
+ Action: "ModifyPrivateIpAddressAttribute",
1432
+ },
1433
+ headers: {
1434
+ "Content-Type": "application/x-www-form-urlencoded",
1435
+ },
1436
+ },
1437
+ paramsType: {
1438
+ SubnetId: "String",
1439
+ PrivateIpAddress: "String",
1440
+ Status: "String",
1441
+ AllocateStatus: "String",
1442
+ },
1443
+ },
1444
+ DescribeDirectConnectRoutes: {
1445
+ url: "/",
1446
+ method: "GET",
1447
+ config: {
1448
+ query: {
1449
+ Version: "2016-03-04",
1450
+ Action: "DescribeDirectConnectRoutes",
1451
+ },
1452
+ headers: {
1453
+ "Content-Type": "application/x-www-form-urlencoded",
1454
+ },
1455
+ },
1456
+ paramsType: {
1457
+ DirectConnectRouteId: "Filter",
1458
+ MaxResults: "Int",
1459
+ Filter: "Filter",
1460
+ NextToken: "String",
1461
+ },
1462
+ },
1463
+ DetachDirectConnectGatewayWithVpc: {
1464
+ url: "/",
1465
+ method: "GET",
1466
+ config: {
1467
+ query: {
1468
+ Version: "2016-03-04",
1469
+ Action: "DetachDirectConnectGatewayWithVpc",
1470
+ },
1471
+ headers: {
1472
+ "Content-Type": "application/x-www-form-urlencoded",
1473
+ },
1474
+ },
1475
+ paramsType: {
1476
+ DirectConnectGatewayId: "String",
1477
+ VpcId: "String",
1478
+ },
1479
+ },
1480
+ AttachDirectConnectGatewayWithVpc: {
1481
+ url: "/",
1482
+ method: "GET",
1483
+ config: {
1484
+ query: {
1485
+ Version: "2016-03-04",
1486
+ Action: "AttachDirectConnectGatewayWithVpc",
1487
+ },
1488
+ headers: {
1489
+ "Content-Type": "application/x-www-form-urlencoded",
1490
+ },
1491
+ },
1492
+ paramsType: {
1493
+ DirectConnectGatewayId: "String",
1494
+ VpcId: "String",
1495
+ },
1496
+ },
1497
+ AllocateSubnetIpv6CidrBlock: {
1498
+ url: "/",
1499
+ method: "GET",
1500
+ config: {
1501
+ query: {
1502
+ Version: "2016-03-04",
1503
+ Action: "AllocateSubnetIpv6CidrBlock",
1504
+ },
1505
+ headers: {
1506
+ "Content-Type": "application/x-www-form-urlencoded",
1507
+ },
1508
+ },
1509
+ paramsType: {
1510
+ SubnetId: "String",
1511
+ },
1512
+ },
1513
+ CreateRouteTable: {
1514
+ url: "/",
1515
+ method: "GET",
1516
+ config: {
1517
+ query: {
1518
+ Version: "2016-03-04",
1519
+ Action: "CreateRouteTable",
1520
+ },
1521
+ headers: {
1522
+ "Content-Type": "application/x-www-form-urlencoded",
1523
+ },
1524
+ },
1525
+ paramsType: {
1526
+ VpcId: "String",
1527
+ RouteTableName: "String",
1528
+ Description: "String",
1529
+ },
1530
+ },
1531
+ DeleteRouteTable: {
1532
+ url: "/",
1533
+ method: "GET",
1534
+ config: {
1535
+ query: {
1536
+ Version: "2016-03-04",
1537
+ Action: "DeleteRouteTable",
1538
+ },
1539
+ headers: {
1540
+ "Content-Type": "application/x-www-form-urlencoded",
1541
+ },
1542
+ },
1543
+ paramsType: {
1544
+ RouteTableId: "String",
1545
+ },
1546
+ },
1547
+ ModifyRouteTable: {
1548
+ url: "/",
1549
+ method: "GET",
1550
+ config: {
1551
+ query: {
1552
+ Version: "2016-03-04",
1553
+ Action: "ModifyRouteTable",
1554
+ },
1555
+ headers: {
1556
+ "Content-Type": "application/x-www-form-urlencoded",
1557
+ },
1558
+ },
1559
+ paramsType: {
1560
+ RouteTableId: "String",
1561
+ RouteTableName: "String",
1562
+ Description: "String",
1563
+ },
1564
+ },
1565
+ DescribeRouteTables: {
1566
+ url: "/",
1567
+ method: "GET",
1568
+ config: {
1569
+ query: {
1570
+ Version: "2016-03-04",
1571
+ Action: "DescribeRouteTables",
1572
+ },
1573
+ headers: {
1574
+ "Content-Type": "application/x-www-form-urlencoded",
1575
+ },
1576
+ },
1577
+ paramsType: {
1578
+ RouteTableId: "Filter",
1579
+ Filter: "Filter",
1580
+ MaxResults: "Int",
1581
+ NextToken: "String",
1582
+ },
1583
+ },
1584
+ AssociateRouteTable: {
1585
+ url: "/",
1586
+ method: "GET",
1587
+ config: {
1588
+ query: {
1589
+ Version: "2016-03-04",
1590
+ Action: "AssociateRouteTable",
1591
+ },
1592
+ headers: {
1593
+ "Content-Type": "application/x-www-form-urlencoded",
1594
+ },
1595
+ },
1596
+ paramsType: {
1597
+ SubnetId: "String",
1598
+ RouteTableId: "String",
1599
+ },
1600
+ },
1601
+ DeleteNetworkInterface: {
1602
+ url: "/",
1603
+ method: "GET",
1604
+ config: {
1605
+ query: {
1606
+ Version: "2016-03-04",
1607
+ Action: "DeleteNetworkInterface",
1608
+ },
1609
+ headers: {
1610
+ "Content-Type": "application/x-www-form-urlencoded",
1611
+ },
1612
+ },
1613
+ paramsType: {
1614
+ NetworkInterfaceId: "String",
1615
+ },
1616
+ },
1617
+ CreateNetworkInterface: {
1618
+ url: "/",
1619
+ method: "GET",
1620
+ config: {
1621
+ query: {
1622
+ Version: "2016-03-04",
1623
+ Action: "CreateNetworkInterface",
1624
+ },
1625
+ headers: {
1626
+ "Content-Type": "application/x-www-form-urlencoded",
1627
+ },
1628
+ },
1629
+ paramsType: {
1630
+ SubnetId: "String",
1631
+ NetworkInterfaceName: "String",
1632
+ PrivateIpAddress: "String",
1633
+ SecurityGroupId: "Filter",
1634
+ },
1635
+ },
1636
+ ModifyNetworkInterface: {
1637
+ url: "/",
1638
+ method: "GET",
1639
+ config: {
1640
+ query: {
1641
+ Version: "2016-03-04",
1642
+ Action: "ModifyNetworkInterface",
1643
+ },
1644
+ headers: {
1645
+ "Content-Type": "application/x-www-form-urlencoded",
1646
+ },
1647
+ },
1648
+ paramsType: {
1649
+ NetworkInterfaceName: "String",
1650
+ NetworkInterfaceId: "String",
1651
+ },
1652
+ },
1653
+ CreateNatRateLimit: {
1654
+ url: "/",
1655
+ method: "GET",
1656
+ config: {
1657
+ query: {
1658
+ Version: "2016-03-04",
1659
+ Action: "CreateNatRateLimit",
1660
+ },
1661
+ headers: {
1662
+ "Content-Type": "application/x-www-form-urlencoded",
1663
+ },
1664
+ },
1665
+ paramsType: {
1666
+ NetworkInterfaceId: "String",
1667
+ BandwidthLimit: "Int",
1668
+ inBandwidthLimit: "Int",
1669
+ },
1670
+ },
1671
+ DescribeNatRateLimit: {
1672
+ url: "/",
1673
+ method: "GET",
1674
+ config: {
1675
+ query: {
1676
+ Version: "2016-03-04",
1677
+ Action: "DescribeNatRateLimit",
1678
+ },
1679
+ headers: {
1680
+ "Content-Type": "application/x-www-form-urlencoded",
1681
+ },
1682
+ },
1683
+ paramsType: {
1684
+ NatId: "String",
1685
+ Filter: "Filter",
1686
+ },
1687
+ },
1688
+ ModifyNatRateLimit: {
1689
+ url: "/",
1690
+ method: "GET",
1691
+ config: {
1692
+ query: {
1693
+ Version: "2016-03-04",
1694
+ Action: "ModifyNatRateLimit",
1695
+ },
1696
+ headers: {
1697
+ "Content-Type": "application/x-www-form-urlencoded",
1698
+ },
1699
+ },
1700
+ paramsType: {
1701
+ NatRateLimitId: "String",
1702
+ BandwidthLimit: "Int",
1703
+ InBandwidthLimit: "Int",
1704
+ },
1705
+ },
1706
+ DeleteNatRateLimit: {
1707
+ url: "/",
1708
+ method: "GET",
1709
+ config: {
1710
+ query: {
1711
+ Version: "2016-03-04",
1712
+ Action: "DeleteNatRateLimit",
1713
+ },
1714
+ headers: {
1715
+ "Content-Type": "application/x-www-form-urlencoded",
1716
+ },
1717
+ },
1718
+ paramsType: {
1719
+ NatRateLimitId: "String",
1720
+ },
1721
+ },
1722
+ CreateDnat: {
1723
+ url: "/",
1724
+ method: "GET",
1725
+ config: {
1726
+ query: {
1727
+ Version: "2016-03-04",
1728
+ Action: "CreateDnat",
1729
+ },
1730
+ headers: {
1731
+ "Content-Type": "application/x-www-form-urlencoded",
1732
+ },
1733
+ },
1734
+ paramsType: {
1735
+ NatId: "String",
1736
+ NatIp: "String",
1737
+ DnatName: "String",
1738
+ PublicPort: "String",
1739
+ PrivateIpAddress: "String",
1740
+ IpProtocol: "String",
1741
+ PrivatePort: "String",
1742
+ Description: "String",
1743
+ },
1744
+ },
1745
+ DeleteDnat: {
1746
+ url: "/",
1747
+ method: "GET",
1748
+ config: {
1749
+ query: {
1750
+ Version: "2016-03-04",
1751
+ Action: "DeleteDnat",
1752
+ },
1753
+ headers: {
1754
+ "Content-Type": "application/x-www-form-urlencoded",
1755
+ },
1756
+ },
1757
+ paramsType: {
1758
+ DnatId: "String",
1759
+ },
1760
+ },
1761
+ DescribeDnats: {
1762
+ url: "/",
1763
+ method: "GET",
1764
+ config: {
1765
+ query: {
1766
+ Version: "2016-03-04",
1767
+ Action: "DescribeDnats",
1768
+ },
1769
+ headers: {
1770
+ "Content-Type": "application/x-www-form-urlencoded",
1771
+ },
1772
+ },
1773
+ paramsType: {
1774
+ DnatId: "Filter",
1775
+ Filter: "Filter",
1776
+ MaxResults: "Int",
1777
+ NextToken: "String",
1778
+ },
1779
+ },
1780
+ ModifyDnat: {
1781
+ url: "/",
1782
+ method: "GET",
1783
+ config: {
1784
+ query: {
1785
+ Version: "2016-03-04",
1786
+ Action: "ModifyDnat",
1787
+ },
1788
+ headers: {
1789
+ "Content-Type": "application/x-www-form-urlencoded",
1790
+ },
1791
+ },
1792
+ paramsType: {
1793
+ NatId: "String",
1794
+ DnatId: "String",
1795
+ NatIp: "String",
1796
+ DnatName: "String",
1797
+ PublicPort: "String",
1798
+ PrivateIpAddress: "String",
1799
+ IpProtocol: "String",
1800
+ PrivatePort: "String",
1801
+ Description: "String",
1802
+ },
1803
+ },
1804
+ AssociateInstance: {
1805
+ url: "/",
1806
+ method: "GET",
1807
+ config: {
1808
+ query: {
1809
+ Version: "2016-03-04",
1810
+ Action: "AssociateInstance",
1811
+ },
1812
+ headers: {
1813
+ "Content-Type": "application/x-www-form-urlencoded",
1814
+ },
1815
+ },
1816
+ paramsType: {
1817
+ NetworkInterfaceId: "String",
1818
+ NatId: "String",
1819
+ NatIpId: "Filter",
1820
+ },
1821
+ },
1822
+ DisassociateInstance: {
1823
+ url: "/",
1824
+ method: "GET",
1825
+ config: {
1826
+ query: {
1827
+ Version: "2016-03-04",
1828
+ Action: "DisassociateInstance",
1829
+ },
1830
+ headers: {
1831
+ "Content-Type": "application/x-www-form-urlencoded",
1832
+ },
1833
+ },
1834
+ paramsType: {
1835
+ NetworkInterfaceId: "String",
1836
+ NatId: "String",
1837
+ },
1838
+ },
1839
+ CreateHaVip: {
1840
+ url: "/",
1841
+ method: "GET",
1842
+ config: {
1843
+ query: {
1844
+ Version: "2016-03-04",
1845
+ Action: "CreateHaVip",
1846
+ },
1847
+ headers: {
1848
+ "Content-Type": "application/x-www-form-urlencoded",
1849
+ },
1850
+ },
1851
+ paramsType: {
1852
+ SubnetId: "String",
1853
+ IpAddress: "String",
1854
+ },
1855
+ },
1856
+ DeleteHaVip: {
1857
+ url: "/",
1858
+ method: "GET",
1859
+ config: {
1860
+ query: {
1861
+ Version: "2016-03-04",
1862
+ Action: "DeleteHaVip",
1863
+ },
1864
+ headers: {
1865
+ "Content-Type": "application/x-www-form-urlencoded",
1866
+ },
1867
+ },
1868
+ paramsType: {
1869
+ HaVipId: "String",
1870
+ },
1871
+ },
1872
+ AssociateHaVip: {
1873
+ url: "/",
1874
+ method: "GET",
1875
+ config: {
1876
+ query: {
1877
+ Version: "2016-03-04",
1878
+ Action: "AssociateHaVip",
1879
+ },
1880
+ headers: {
1881
+ "Content-Type": "application/x-www-form-urlencoded",
1882
+ },
1883
+ },
1884
+ paramsType: {
1885
+ NetworkInterfaceId: "String",
1886
+ HaVipId: "String",
1887
+ },
1888
+ },
1889
+ UnAssociateHaVip: {
1890
+ url: "/",
1891
+ method: "GET",
1892
+ config: {
1893
+ query: {
1894
+ Version: "2016-03-04",
1895
+ Action: "UnAssociateHaVip",
1896
+ },
1897
+ headers: {
1898
+ "Content-Type": "application/x-www-form-urlencoded",
1899
+ },
1900
+ },
1901
+ paramsType: {
1902
+ NetworkInterfaceId: "String",
1903
+ HaVipId: "String",
1904
+ },
1905
+ },
1906
+ DescribeHaVip: {
1907
+ url: "/",
1908
+ method: "GET",
1909
+ config: {
1910
+ query: {
1911
+ Version: "2016-03-04",
1912
+ Action: "DescribeHaVip",
1913
+ },
1914
+ headers: {
1915
+ "Content-Type": "application/x-www-form-urlencoded",
1916
+ },
1917
+ },
1918
+ paramsType: {
1919
+ HaVipId: "Filter",
1920
+ Filter: "Filter",
1921
+ MaxResults: "Int",
1922
+ NextToken: "String",
1923
+ },
1924
+ },
1925
+ CreateDirectConnectGatewayRoute: {
1926
+ url: "/",
1927
+ method: "GET",
1928
+ config: {
1929
+ query: {
1930
+ Version: "2016-03-04",
1931
+ Action: "CreateDirectConnectGatewayRoute",
1932
+ },
1933
+ headers: {
1934
+ "Content-Type": "application/x-www-form-urlencoded",
1935
+ },
1936
+ },
1937
+ paramsType: {
1938
+ DirectConnectGatewayId: "String",
1939
+ DestinationCidrBlock: "String",
1940
+ NextHopType: "String",
1941
+ Priority: "Int",
1942
+ NextHopInstance: "String",
1943
+ EnableIpv6: "Boolean",
1944
+ },
1945
+ },
1946
+ DeleteDirectConnectGatewayRoute: {
1947
+ url: "/",
1948
+ method: "GET",
1949
+ config: {
1950
+ query: {
1951
+ Version: "2016-03-04",
1952
+ Action: "DeleteDirectConnectGatewayRoute",
1953
+ },
1954
+ headers: {
1955
+ "Content-Type": "application/x-www-form-urlencoded",
1956
+ },
1957
+ },
1958
+ paramsType: {
1959
+ DirectConnectGatewayRouteId: "String",
1960
+ },
1961
+ },
1962
+ DescribeDirectConnectGatewayRoute: {
1963
+ url: "/",
1964
+ method: "GET",
1965
+ config: {
1966
+ query: {
1967
+ Version: "2016-03-04",
1968
+ Action: "DescribeDirectConnectGatewayRoute",
1969
+ },
1970
+ headers: {
1971
+ "Content-Type": "application/json",
1972
+ },
1973
+ },
1974
+ paramsType: {
1975
+ DirectConnectGatewayId: "String",
1976
+ MaxResults: "Int",
1977
+ Filter: "Filter",
1978
+ NextToken: "String",
1979
+ },
1980
+ },
1981
+ PublishDirectConnectRoute: {
1982
+ url: "/",
1983
+ method: "GET",
1984
+ config: {
1985
+ query: {
1986
+ Version: "2016-03-04",
1987
+ Action: "PublishDirectConnectRoute",
1988
+ },
1989
+ headers: {
1990
+ "Content-Type": "application/x-www-form-urlencoded",
1991
+ },
1992
+ },
1993
+ paramsType: {
1994
+ DirectConnectGatewayRouteId: "String",
1995
+ },
1996
+ },
1997
+ UnpublishDirectConnectRoute: {
1998
+ url: "/",
1999
+ method: "GET",
2000
+ config: {
2001
+ query: {
2002
+ Version: "2016-03-04",
2003
+ Action: "UnpublishDirectConnectRoute",
2004
+ },
2005
+ headers: {
2006
+ "Content-Type": "application/x-www-form-urlencoded",
2007
+ },
2008
+ },
2009
+ paramsType: {
2010
+ DirectConnectGatewayRouteId: "String",
2011
+ },
2012
+ },
2013
+ AddSecondaryCidrBlock: {
2014
+ url: "/",
2015
+ method: "GET",
2016
+ config: {
2017
+ query: {
2018
+ Version: "2016-03-04",
2019
+ Action: "AddSecondaryCidrBlock",
2020
+ },
2021
+ headers: {
2022
+ "Content-Type": "application/x-www-form-urlencoded",
2023
+ },
2024
+ },
2025
+ paramsType: {
2026
+ VpcId: "String",
2027
+ CidrBlock: "String",
2028
+ },
2029
+ },
2030
+ DeleteSecondaryCidrBlock: {
2031
+ url: "/",
2032
+ method: "GET",
2033
+ config: {
2034
+ query: {
2035
+ Version: "2016-03-04",
2036
+ Action: "DeleteSecondaryCidrBlock",
2037
+ },
2038
+ headers: {
2039
+ "Content-Type": "application/x-www-form-urlencoded",
2040
+ },
2041
+ },
2042
+ paramsType: {
2043
+ VpcId: "String",
2044
+ SecondaryCidrId: "String",
2045
+ },
2046
+ },
2047
+ AssignPrivateIpAddress: {
2048
+ url: "/",
2049
+ method: "GET",
2050
+ config: {
2051
+ query: {
2052
+ Version: "2016-03-04",
2053
+ Action: "AssignPrivateIpAddress",
2054
+ },
2055
+ headers: {
2056
+ "Content-Type": "application/x-www-form-urlencoded",
2057
+ },
2058
+ },
2059
+ paramsType: {
2060
+ NetworkInterfaceId: "String",
2061
+ PrivateIpAddress: "Filter",
2062
+ SecondaryPrivateIpAddressCount: "Int",
2063
+ },
2064
+ },
2065
+ UnassignPrivateIpAddress: {
2066
+ url: "/",
2067
+ method: "GET",
2068
+ config: {
2069
+ query: {
2070
+ Version: "2016-03-04",
2071
+ Action: "UnassignPrivateIpAddress",
2072
+ },
2073
+ headers: {
2074
+ "Content-Type": "application/x-www-form-urlencoded",
2075
+ },
2076
+ },
2077
+ paramsType: {
2078
+ NetworkInterfaceId: "String",
2079
+ PrivateIpAddress: "Filter",
2080
+ },
2081
+ },
2082
+ BatchCreateNatRateLimit: {
2083
+ url: "/",
2084
+ method: "GET",
2085
+ config: {
2086
+ query: {
2087
+ Version: "2016-03-04",
2088
+ Action: "BatchCreateNatRateLimit",
2089
+ },
2090
+ headers: {
2091
+ "Content-Type": "application/x-www-form-urlencoded",
2092
+ },
2093
+ },
2094
+ paramsType: {
2095
+ BandwidthLimit: "Int",
2096
+ InBandwidthLimit: "Int",
2097
+ NetworkInterfaceId: "Filter",
2098
+ },
2099
+ },
2100
+ BatchModifyNatRateLimit: {
2101
+ url: "/",
2102
+ method: "GET",
2103
+ config: {
2104
+ query: {
2105
+ Version: "2016-03-04",
2106
+ Action: "BatchModifyNatRateLimit",
2107
+ },
2108
+ headers: {
2109
+ "Content-Type": "application/x-www-form-urlencoded",
2110
+ },
2111
+ },
2112
+ paramsType: {
2113
+ BandwidthLimit: "String",
2114
+ InBandwidthLimit: "Int",
2115
+ NatRateLimitId: "Filter",
2116
+ },
2117
+ },
2118
+ BatchDeleteNatRateLimit: {
2119
+ url: "/",
2120
+ method: "GET",
2121
+ config: {
2122
+ query: {
2123
+ Version: "2016-03-04",
2124
+ Action: "BatchDeleteNatRateLimit",
2125
+ },
2126
+ headers: {
2127
+ "Content-Type": "application/x-www-form-urlencoded",
2128
+ },
2129
+ },
2130
+ paramsType: {
2131
+ NatRateLimitId: "Filter",
2132
+ },
2133
+ },
2134
+ DescribeVpnGatewayRoutes: {
2135
+ url: "/",
2136
+ method: "GET",
2137
+ config: {
2138
+ query: {
2139
+ Version: "2016-03-04",
2140
+ Action: "DescribeVpnGatewayRoutes",
2141
+ },
2142
+ headers: {
2143
+ "Content-Type": "application/x-www-form-urlencoded",
2144
+ },
2145
+ },
2146
+ paramsType: {
2147
+ VpnGatewayId: "String",
2148
+ Filter: "Filter",
2149
+ MaxResults: "Int",
2150
+ NextToken: "String",
2151
+ },
2152
+ },
2153
+ CreateVpnGatewayRoute: {
2154
+ url: "/",
2155
+ method: "POST",
2156
+ config: {
2157
+ query: {
2158
+ Version: "2016-03-04",
2159
+ Action: "CreateVpnGatewayRoute",
2160
+ },
2161
+ headers: {
2162
+ "Content-Type": "application/x-www-form-urlencoded",
2163
+ },
2164
+ },
2165
+ paramsType: {
2166
+ VpnGatewayId: "String",
2167
+ DestinationCidrBlock: "String",
2168
+ NextHopInstanceId: "String",
2169
+ NextHopType: "String",
2170
+ Description: "String",
2171
+ },
2172
+ },
2173
+ DeleteVpnGatewayRoute: {
2174
+ url: "/",
2175
+ method: "GET",
2176
+ config: {
2177
+ query: {
2178
+ Version: "2016-03-04",
2179
+ Action: "DeleteVpnGatewayRoute",
2180
+ },
2181
+ headers: {
2182
+ "Content-Type": "application/x-www-form-urlencoded",
2183
+ },
2184
+ },
2185
+ paramsType: {
2186
+ VpnGatewayRouteId: "String",
2187
+ },
2188
+ },
2189
+ DescribeVpnTunnelIpsecStatus: {
2190
+ url: "/",
2191
+ method: "GET",
2192
+ config: {
2193
+ query: {
2194
+ Version: "2016-03-04",
2195
+ Action: "DescribeVpnTunnelIpsecStatus",
2196
+ },
2197
+ headers: {
2198
+ "Content-Type": "application/x-www-form-urlencoded",
2199
+ },
2200
+ },
2201
+ paramsType: {
2202
+ IsMaster: "Int",
2203
+ VpnTunnelId: "Filter",
2204
+ },
2205
+ },
2206
+ QueryNatTopVifMonitor: {
2207
+ url: "/",
2208
+ method: "GET",
2209
+ config: {
2210
+ query: {
2211
+ Version: "2016-03-04",
2212
+ Action: "QueryNatTopVifMonitor",
2213
+ },
2214
+ headers: {
2215
+ "Content-Type": "application/x-www-form-urlencoded",
2216
+ },
2217
+ },
2218
+ paramsType: {
2219
+ NatId: "String",
2220
+ StartTime: "String",
2221
+ EndTime: "String",
2222
+ SortType: "String",
2223
+ InstanceType: "String",
2224
+ ip: "String",
2225
+ },
2226
+ },
2227
+ ModifyNatIpStatus: {
2228
+ url: "/",
2229
+ method: "GET",
2230
+ config: {
2231
+ query: {
2232
+ Version: "2016-03-04",
2233
+ Action: "ModifyNatIpStatus",
2234
+ },
2235
+ headers: {
2236
+ "Content-Type": "application/x-www-form-urlencoded",
2237
+ },
2238
+ },
2239
+ paramsType: {
2240
+ NatIpId: "String",
2241
+ Enabled: "Boolean",
2242
+ },
2243
+ },
2244
+ QueryPeerTopVifMonitor: {
2245
+ url: "/",
2246
+ method: "GET",
2247
+ config: {
2248
+ query: {
2249
+ Version: "2016-03-04",
2250
+ Action: "QueryPeerTopVifMonitor",
2251
+ },
2252
+ headers: {
2253
+ "Content-Type": "application/x-www-form-urlencoded",
2254
+ },
2255
+ },
2256
+ paramsType: {
2257
+ vpcId: "String",
2258
+ StartTime: "String",
2259
+ EndTime: "String",
2260
+ SortType: "String",
2261
+ ip: "String",
2262
+ },
2263
+ },
2264
+ ModifyVpnGatewayRoute: {
2265
+ url: "/",
2266
+ method: "POST",
2267
+ config: {
2268
+ query: {
2269
+ Version: "2016-03-04",
2270
+ Action: "ModifyVpnGatewayRoute",
2271
+ },
2272
+ headers: {
2273
+ "Content-Type": "application/x-www-form-urlencoded",
2274
+ },
2275
+ },
2276
+ paramsType: {
2277
+ VpnGatewayRouteId: "String",
2278
+ Description: "String",
2279
+ },
2280
+ },
2281
+ DescribeDirectConnectInterfacesBgpStatus: {
2282
+ url: "/",
2283
+ method: "GET",
2284
+ config: {
2285
+ query: {
2286
+ Version: "2016-03-04",
2287
+ Action: "DescribeDirectConnectInterfacesBgpStatus",
2288
+ },
2289
+ headers: {
2290
+ "Content-Type": "application/json",
2291
+ },
2292
+ },
2293
+ paramsType: {
2294
+ "DirectConnectInterfaceId.N": "String",
2295
+ },
2296
+ },
2297
+ DeactiveFlowLog: {
2298
+ url: "/",
2299
+ method: "GET",
2300
+ config: {
2301
+ query: {
2302
+ Version: "2016-03-04",
2303
+ Action: "DeactiveFlowLog",
2304
+ },
2305
+ headers: {
2306
+ "Content-Type": "application/x-www-form-urlencoded",
2307
+ },
2308
+ },
2309
+ paramsType: {
2310
+ FlowLogId: "String",
2311
+ },
2312
+ },
2313
+ ActiveFlowLog: {
2314
+ url: "/",
2315
+ method: "GET",
2316
+ config: {
2317
+ query: {
2318
+ Version: "2016-03-04",
2319
+ Action: "ActiveFlowLog",
2320
+ },
2321
+ headers: {
2322
+ "Content-Type": "application/x-www-form-urlencoded",
2323
+ },
2324
+ },
2325
+ paramsType: {
2326
+ FlowLogId: "String",
2327
+ },
2328
+ },
2329
+ DeleteFlowLog: {
2330
+ url: "/",
2331
+ method: "GET",
2332
+ config: {
2333
+ query: {
2334
+ Version: "2016-03-04",
2335
+ Action: "DeleteFlowLog",
2336
+ },
2337
+ headers: {
2338
+ "Content-Type": "application/x-www-form-urlencoded",
2339
+ },
2340
+ },
2341
+ paramsType: {
2342
+ FlowLogId: "String",
2343
+ },
2344
+ },
2345
+ ModifyFlowLog: {
2346
+ url: "/",
2347
+ method: "GET",
2348
+ config: {
2349
+ query: {
2350
+ Version: "2016-03-04",
2351
+ Action: "ModifyFlowLog",
2352
+ },
2353
+ headers: {
2354
+ "Content-Type": "application/x-www-form-urlencoded",
2355
+ },
2356
+ },
2357
+ paramsType: {
2358
+ FlowLogId: "String",
2359
+ FlowLogName: "String",
2360
+ WindowTime: "Int",
2361
+ Description: "String",
2362
+ },
2363
+ },
2364
+ DescribeFlowLogs: {
2365
+ url: "/",
2366
+ method: "GET",
2367
+ config: {
2368
+ query: {
2369
+ Version: "2016-03-04",
2370
+ Action: "DescribeFlowLogs",
2371
+ },
2372
+ headers: {
2373
+ "Content-Type": "application/x-www-form-urlencoded",
2374
+ },
2375
+ },
2376
+ paramsType: {
2377
+ FlowLogId: "Filter",
2378
+ Filter: "Filter",
2379
+ MaxResults: "Int",
2380
+ NextToken: "String",
2381
+ },
2382
+ },
2383
+ CreateFlowLog: {
2384
+ url: "/",
2385
+ method: "GET",
2386
+ config: {
2387
+ query: {
2388
+ Version: "2016-03-04",
2389
+ Action: "CreateFlowLog",
2390
+ },
2391
+ headers: {
2392
+ "Content-Type": "application/x-www-form-urlencoded",
2393
+ },
2394
+ },
2395
+ paramsType: {
2396
+ FlowLogName: "String",
2397
+ ResourceType: "String",
2398
+ ResourceId: "String",
2399
+ TrafficType: "String",
2400
+ ProjectName: "String",
2401
+ LogPoolName: "String",
2402
+ WindowTime: "Int",
2403
+ Description: "String",
2404
+ },
2405
+ },
2406
+ };
2407
+ };