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