ksyun-sdk-node 1.0.2 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1445 @@
1
+ "use strict";
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
+
5
+ const BaseClient = require("../../../base/BaseClient.js");
6
+
7
+ module.exports = class Client extends BaseClient {
8
+ constructor(...args) {
9
+ super(...args);
10
+
11
+ _defineProperty(this, "_baseConfig", {
12
+ 'protocol': 'http://',
13
+ 'endpoint': 'vpc.api.ksyun.com',
14
+ 'config': {
15
+ 'timeout': 60,
16
+ //设置timeout
17
+ 'headers': {
18
+ 'Accept': 'application/json'
19
+ },
20
+ 'credentials': {
21
+ 'region': 'cn-shanghai-3',
22
+ 'service': 'vpc'
23
+ }
24
+ }
25
+ });
26
+
27
+ _defineProperty(this, "_apiList", {
28
+ 'CreateVpc': {
29
+ 'url': '/',
30
+ 'method': 'GET',
31
+ 'config': {
32
+ 'query': {
33
+ 'Version': '2016-03-04',
34
+ 'Action': 'CreateVpc'
35
+ },
36
+ 'headers': {
37
+ 'Content-Type': 'application/x-www-form-urlencoded'
38
+ }
39
+ },
40
+ 'paramsType': {
41
+ 'VpcName': 'String',
42
+ 'CidrBlock': 'String',
43
+ 'ProvidedIpv6CidrBlock': 'Boolean'
44
+ }
45
+ },
46
+ 'DeleteVpc': {
47
+ 'url': '/',
48
+ 'method': 'GET',
49
+ 'config': {
50
+ 'query': {
51
+ 'Version': '2016-03-04',
52
+ 'Action': 'DeleteVpc'
53
+ },
54
+ 'headers': {
55
+ 'Content-Type': 'application/x-www-form-urlencoded'
56
+ }
57
+ },
58
+ 'paramsType': {
59
+ 'VpcId': 'String'
60
+ }
61
+ },
62
+ 'DescribeVpcs': {
63
+ 'url': '/',
64
+ 'method': 'GET',
65
+ 'config': {
66
+ 'query': {
67
+ 'Version': '2016-03-04',
68
+ 'Action': 'DescribeVpcs'
69
+ },
70
+ 'headers': {
71
+ 'Content-Type': 'application/x-www-form-urlencoded'
72
+ }
73
+ },
74
+ 'paramsType': {
75
+ 'VpcId': 'Filter',
76
+ 'MaxResults': 'Int',
77
+ 'NextToken': 'String'
78
+ }
79
+ },
80
+ 'CreateSubnet': {
81
+ 'url': '/',
82
+ 'method': 'GET',
83
+ 'config': {
84
+ 'query': {
85
+ 'Version': '2016-03-04',
86
+ 'Action': 'CreateSubnet'
87
+ },
88
+ 'headers': {
89
+ 'Content-Type': 'application/x-www-form-urlencoded'
90
+ }
91
+ },
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'
105
+ }
106
+ },
107
+ 'DeleteSubnet': {
108
+ 'url': '/',
109
+ 'method': 'GET',
110
+ 'config': {
111
+ 'query': {
112
+ 'Version': '2016-03-04',
113
+ 'Action': 'DeleteSubnet'
114
+ },
115
+ 'headers': {
116
+ 'Content-Type': 'application/x-www-form-urlencoded'
117
+ }
118
+ },
119
+ 'paramsType': {
120
+ 'SubnetId': 'String'
121
+ }
122
+ },
123
+ 'DescribeSubnets': {
124
+ 'url': '/',
125
+ 'method': 'GET',
126
+ 'config': {
127
+ 'query': {
128
+ 'Version': '2016-03-04',
129
+ 'Action': 'DescribeSubnets'
130
+ },
131
+ 'headers': {
132
+ 'Content-Type': 'application/x-www-form-urlencoded'
133
+ }
134
+ },
135
+ 'paramsType': {
136
+ 'SubnetId': 'Filter',
137
+ 'Filter': 'Filter',
138
+ 'MaxResults': 'Int',
139
+ 'NextToken': 'String'
140
+ }
141
+ },
142
+ 'AssociateNetworkAcl': {
143
+ 'url': '/',
144
+ 'method': 'GET',
145
+ 'config': {
146
+ 'query': {
147
+ 'Version': '2016-03-04',
148
+ 'Action': 'AssociateNetworkAcl'
149
+ },
150
+ 'headers': {
151
+ 'Content-Type': 'application/x-www-form-urlencoded'
152
+ }
153
+ },
154
+ 'paramsType': {
155
+ 'SubnetId': 'String',
156
+ 'NetworkAclId': 'String'
157
+ }
158
+ },
159
+ 'DisassociateNetworkAcl': {
160
+ 'url': '/',
161
+ 'method': 'GET',
162
+ 'config': {
163
+ 'query': {
164
+ 'Version': '2016-03-04',
165
+ 'Action': 'DisassociateNetworkAcl'
166
+ },
167
+ 'headers': {
168
+ 'Content-Type': 'application/x-www-form-urlencoded'
169
+ }
170
+ },
171
+ 'paramsType': {
172
+ 'SubnetId': 'String',
173
+ 'NetworkAclId': 'String'
174
+ }
175
+ },
176
+ 'CreateRoute': {
177
+ 'url': '/',
178
+ 'method': 'GET',
179
+ 'config': {
180
+ 'query': {
181
+ 'Version': '2016-03-04',
182
+ 'Action': 'CreateRoute'
183
+ },
184
+ 'headers': {
185
+ 'Content-Type': 'application/x-www-form-urlencoded'
186
+ }
187
+ },
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'
197
+ }
198
+ },
199
+ 'DeleteRoute': {
200
+ 'url': '/',
201
+ 'method': 'GET',
202
+ 'config': {
203
+ 'query': {
204
+ 'Version': '2016-03-04',
205
+ 'Action': 'DeleteRoute'
206
+ },
207
+ 'headers': {
208
+ 'Content-Type': 'application/x-www-form-urlencoded'
209
+ }
210
+ },
211
+ 'paramsType': {
212
+ 'RouteId': 'String'
213
+ }
214
+ },
215
+ 'DescribeRoutes': {
216
+ 'url': '/',
217
+ 'method': 'GET',
218
+ 'config': {
219
+ 'query': {
220
+ 'Version': '2016-03-04',
221
+ 'Action': 'DescribeRoutes'
222
+ },
223
+ 'headers': {
224
+ 'Content-Type': 'application/x-www-form-urlencoded'
225
+ }
226
+ },
227
+ 'paramsType': {
228
+ 'RouteId': 'Filter',
229
+ 'Filter': 'Filter',
230
+ 'MaxResults': 'Int',
231
+ 'NextToken': 'String'
232
+ }
233
+ },
234
+ 'CreateNetworkAcl': {
235
+ 'url': '/',
236
+ 'method': 'GET',
237
+ 'config': {
238
+ 'query': {
239
+ 'Version': '2016-03-04',
240
+ 'Action': 'CreateNetworkAcl'
241
+ },
242
+ 'headers': {
243
+ 'Content-Type': 'application/x-www-form-urlencoded'
244
+ }
245
+ },
246
+ 'paramsType': {
247
+ 'VpcId': 'String',
248
+ 'NetworkAclName': 'String',
249
+ 'Description': 'String'
250
+ }
251
+ },
252
+ 'DeleteNetworkAcl': {
253
+ 'url': '/',
254
+ 'method': 'GET',
255
+ 'config': {
256
+ 'query': {
257
+ 'Version': '2016-03-04',
258
+ 'Action': 'DeleteNetworkAcl'
259
+ },
260
+ 'headers': {
261
+ 'Content-Type': 'application/x-www-form-urlencoded'
262
+ }
263
+ },
264
+ 'paramsType': {
265
+ 'NetworkAclId': 'String'
266
+ }
267
+ },
268
+ 'CreateNetworkAclEntry': {
269
+ 'url': '/',
270
+ 'method': 'GET',
271
+ 'config': {
272
+ 'query': {
273
+ 'Version': '2016-03-04',
274
+ 'Action': 'CreateNetworkAclEntry'
275
+ },
276
+ 'headers': {
277
+ 'Content-Type': 'application/x-www-form-urlencoded'
278
+ }
279
+ },
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'
292
+ }
293
+ },
294
+ 'DeleteNetworkAclEntry': {
295
+ 'url': '/',
296
+ 'method': 'GET',
297
+ 'config': {
298
+ 'query': {
299
+ 'Version': '2016-03-04',
300
+ 'Action': 'DeleteNetworkAclEntry'
301
+ },
302
+ 'headers': {
303
+ 'Content-Type': 'application/x-www-form-urlencoded'
304
+ }
305
+ },
306
+ 'paramsType': {
307
+ 'NetworkAclId': 'String',
308
+ 'NetworkAclEntryId': 'String'
309
+ }
310
+ },
311
+ 'DescribeNetworkAcls': {
312
+ 'url': '/',
313
+ 'method': 'GET',
314
+ 'config': {
315
+ 'query': {
316
+ 'Version': '2016-03-04',
317
+ 'Action': 'DescribeNetworkAcls'
318
+ },
319
+ 'headers': {
320
+ 'Content-Type': 'application/x-www-form-urlencoded'
321
+ }
322
+ },
323
+ 'paramsType': {
324
+ 'NetworkAclId': 'Filter',
325
+ 'Filter': 'Filter',
326
+ 'MaxResults': 'Int',
327
+ 'NextToken': 'String'
328
+ }
329
+ },
330
+ 'CreateSecurityGroup': {
331
+ 'url': '/',
332
+ 'method': 'GET',
333
+ 'config': {
334
+ 'query': {
335
+ 'Version': '2016-03-04',
336
+ 'Action': 'CreateSecurityGroup'
337
+ },
338
+ 'headers': {
339
+ 'Content-Type': 'application/x-www-form-urlencoded'
340
+ }
341
+ },
342
+ 'paramsType': {
343
+ 'VpcId': 'String',
344
+ 'SecurityGroupName': 'String',
345
+ 'Description': 'String'
346
+ }
347
+ },
348
+ 'DeleteSecurityGroup': {
349
+ 'url': '/',
350
+ 'method': 'GET',
351
+ 'config': {
352
+ 'query': {
353
+ 'Version': '2016-03-04',
354
+ 'Action': 'DeleteSecurityGroup'
355
+ },
356
+ 'headers': {
357
+ 'Content-Type': 'application/x-www-form-urlencoded'
358
+ }
359
+ },
360
+ 'paramsType': {
361
+ 'SecurityGroupId': 'String'
362
+ }
363
+ },
364
+ 'AuthorizeSecurityGroupEntry': {
365
+ 'url': '/',
366
+ 'method': 'GET',
367
+ 'config': {
368
+ 'query': {
369
+ 'Version': '2016-03-04',
370
+ 'Action': 'AuthorizeSecurityGroupEntry'
371
+ },
372
+ 'headers': {
373
+ 'Content-Type': 'application/x-www-form-urlencoded'
374
+ }
375
+ },
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'
387
+ }
388
+ },
389
+ 'RevokeSecurityGroupEntry': {
390
+ 'url': '/',
391
+ 'method': 'GET',
392
+ 'config': {
393
+ 'query': {
394
+ 'Version': '2016-03-04',
395
+ 'Action': 'RevokeSecurityGroupEntry'
396
+ },
397
+ 'headers': {
398
+ 'Content-Type': 'application/x-www-form-urlencoded'
399
+ }
400
+ },
401
+ 'paramsType': {
402
+ 'SecurityGroupId': 'String',
403
+ 'SecurityGroupEntryId': 'String'
404
+ }
405
+ },
406
+ 'DescribeSecurityGroups': {
407
+ 'url': '/',
408
+ 'method': 'GET',
409
+ 'config': {
410
+ 'query': {
411
+ 'Version': '2016-03-04',
412
+ 'Action': 'DescribeSecurityGroups'
413
+ },
414
+ 'headers': {
415
+ 'Content-Type': 'application/x-www-form-urlencoded'
416
+ }
417
+ },
418
+ 'paramsType': {
419
+ 'SecurityGroupId': 'Filter',
420
+ 'Filter': 'Filter',
421
+ 'MaxResults': 'Int',
422
+ 'NextToken': 'String'
423
+ }
424
+ },
425
+ 'CreateNat': {
426
+ 'url': '/',
427
+ 'method': 'GET',
428
+ 'config': {
429
+ 'query': {
430
+ 'Version': '2016-03-04',
431
+ 'Action': 'CreateNat'
432
+ },
433
+ 'headers': {
434
+ 'Content-Type': 'application/x-www-form-urlencoded'
435
+ }
436
+ },
437
+ 'paramsType': {
438
+ 'VpcId': 'String',
439
+ 'NatLineId': 'String',
440
+ 'BandWidth': 'Int',
441
+ 'NatName': 'String',
442
+ 'NatType': 'String',
443
+ 'NatIpNumber': 'Int',
444
+ 'NatMode': 'String',
445
+ 'ProjectId': 'String',
446
+ 'ChargeType': 'String',
447
+ 'PurchaseTime': 'Int'
448
+ }
449
+ },
450
+ 'DeleteNat': {
451
+ 'url': '/',
452
+ 'method': 'GET',
453
+ 'config': {
454
+ 'query': {
455
+ 'Version': '2016-03-04',
456
+ 'Action': 'DeleteNat'
457
+ },
458
+ 'headers': {
459
+ 'Content-Type': 'application/x-www-form-urlencoded'
460
+ }
461
+ },
462
+ 'paramsType': {
463
+ 'NatId': 'String'
464
+ }
465
+ },
466
+ 'DescribeNats': {
467
+ 'url': '/',
468
+ 'method': 'GET',
469
+ 'config': {
470
+ 'query': {
471
+ 'Version': '2016-03-04',
472
+ 'Action': 'DescribeNats'
473
+ },
474
+ 'headers': {
475
+ 'Content-Type': 'application/x-www-form-urlencoded'
476
+ }
477
+ },
478
+ 'paramsType': {
479
+ 'ProjectId': 'Filter',
480
+ 'NatId': 'Filter',
481
+ 'Filter': 'Filter',
482
+ 'MaxResults': 'Int',
483
+ 'NextToken': 'String'
484
+ }
485
+ },
486
+ 'AssociateNat': {
487
+ 'url': '/',
488
+ 'method': 'GET',
489
+ 'config': {
490
+ 'query': {
491
+ 'Version': '2016-03-04',
492
+ 'Action': 'AssociateNat'
493
+ },
494
+ 'headers': {
495
+ 'Content-Type': 'application/x-www-form-urlencoded'
496
+ }
497
+ },
498
+ 'paramsType': {
499
+ 'NatId': 'String',
500
+ 'SubnetId': 'String'
501
+ }
502
+ },
503
+ 'DisassociateNat': {
504
+ 'url': '/',
505
+ 'method': 'GET',
506
+ 'config': {
507
+ 'query': {
508
+ 'Version': '2016-03-04',
509
+ 'Action': 'DisassociateNat'
510
+ },
511
+ 'headers': {
512
+ 'Content-Type': 'application/x-www-form-urlencoded'
513
+ }
514
+ },
515
+ 'paramsType': {
516
+ 'NatId': 'String',
517
+ 'SubnetId': 'String'
518
+ }
519
+ },
520
+ 'DescribeInternetGateways': {
521
+ 'url': '/',
522
+ 'method': 'GET',
523
+ 'config': {
524
+ 'query': {
525
+ 'Version': '2016-03-04',
526
+ 'Action': 'DescribeInternetGateways'
527
+ },
528
+ 'headers': {
529
+ 'Content-Type': 'application/x-www-form-urlencoded'
530
+ }
531
+ },
532
+ 'paramsType': {
533
+ 'InternetGatewayId': 'Filter',
534
+ 'Filter': 'Filter',
535
+ 'MaxResults': 'Int',
536
+ 'NextToken': 'String'
537
+ }
538
+ },
539
+ 'CreateVpcPeeringConnection': {
540
+ 'url': '/',
541
+ 'method': 'GET',
542
+ 'config': {
543
+ 'query': {
544
+ 'Version': '2016-03-04',
545
+ 'Action': 'CreateVpcPeeringConnection'
546
+ },
547
+ 'headers': {
548
+ 'Content-Type': 'application/x-www-form-urlencoded'
549
+ }
550
+ },
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'
561
+ }
562
+ },
563
+ 'DeleteVpcPeeringConnection': {
564
+ 'url': '/',
565
+ 'method': 'GET',
566
+ 'config': {
567
+ 'query': {
568
+ 'Version': '2016-03-04',
569
+ 'Action': 'DeleteVpcPeeringConnection'
570
+ },
571
+ 'headers': {
572
+ 'Content-Type': 'application/x-www-form-urlencoded'
573
+ }
574
+ },
575
+ 'paramsType': {
576
+ 'VpcPeeringConnectionId': 'String'
577
+ }
578
+ },
579
+ 'DescribeVpcPeeringConnections': {
580
+ 'url': '/',
581
+ 'method': 'GET',
582
+ 'config': {
583
+ 'query': {
584
+ 'Version': '2016-03-04',
585
+ 'Action': 'DescribeVpcPeeringConnections'
586
+ },
587
+ 'headers': {
588
+ 'Content-Type': 'application/x-www-form-urlencoded'
589
+ }
590
+ },
591
+ 'paramsType': {
592
+ 'ProjectId': 'Filter',
593
+ 'VpcPeeringConnectionId': 'Filter',
594
+ 'Filter': 'Filter',
595
+ 'MaxResults': 'Int',
596
+ 'NextToken': 'String'
597
+ }
598
+ },
599
+ 'ModifyNetworkAcl': {
600
+ 'url': '/',
601
+ 'method': 'GET',
602
+ 'config': {
603
+ 'query': {
604
+ 'Version': '2016-03-04',
605
+ 'Action': 'ModifyNetworkAcl'
606
+ },
607
+ 'headers': {
608
+ 'Content-Type': 'application/x-www-form-urlencoded'
609
+ }
610
+ },
611
+ 'paramsType': {
612
+ 'NetworkAclId': 'String',
613
+ 'NetworkAclName': 'String',
614
+ 'Description': 'String'
615
+ }
616
+ },
617
+ 'ModifySecurityGroup': {
618
+ 'url': '/',
619
+ 'method': 'GET',
620
+ 'config': {
621
+ 'query': {
622
+ 'Version': '2016-03-04',
623
+ 'Action': 'ModifySecurityGroup'
624
+ },
625
+ 'headers': {
626
+ 'Content-Type': 'application/x-www-form-urlencoded'
627
+ }
628
+ },
629
+ 'paramsType': {
630
+ 'SecurityGroupId': 'String',
631
+ 'SecurityGroupName': 'String',
632
+ 'Description': 'String'
633
+ }
634
+ },
635
+ 'ModifySubnet': {
636
+ 'url': '/',
637
+ 'method': 'GET',
638
+ 'config': {
639
+ 'query': {
640
+ 'Version': '2016-03-04',
641
+ 'Action': 'ModifySubnet'
642
+ },
643
+ 'headers': {
644
+ 'Content-Type': 'application/x-www-form-urlencoded'
645
+ }
646
+ },
647
+ 'paramsType': {
648
+ 'SubnetId': 'String',
649
+ 'SubnetName': 'String',
650
+ 'Dns1': 'String',
651
+ 'Dns2': 'String'
652
+ }
653
+ },
654
+ 'ModifyNat': {
655
+ 'url': '/',
656
+ 'method': 'GET',
657
+ 'config': {
658
+ 'query': {
659
+ 'Version': '2016-03-04',
660
+ 'Action': 'ModifyNat'
661
+ },
662
+ 'headers': {
663
+ 'Content-Type': 'application/x-www-form-urlencoded'
664
+ }
665
+ },
666
+ 'paramsType': {
667
+ 'NatId': 'String',
668
+ 'NatName': 'String',
669
+ 'BandWidth': 'Int'
670
+ }
671
+ },
672
+ 'DescribeNetworkInterfaces': {
673
+ 'url': '/',
674
+ 'method': 'GET',
675
+ 'config': {
676
+ 'query': {
677
+ 'Version': '2016-03-04',
678
+ 'Action': 'DescribeNetworkInterfaces'
679
+ },
680
+ 'headers': {
681
+ 'Content-Type': 'application/x-www-form-urlencoded'
682
+ }
683
+ },
684
+ 'paramsType': {
685
+ 'NetworkInterfaceId': 'Filter',
686
+ 'Filter': 'Filter',
687
+ 'MaxResults': 'Int',
688
+ 'NextToken': 'String'
689
+ }
690
+ },
691
+ 'DescribeSubnetAvailableAddresses': {
692
+ 'url': '/',
693
+ 'method': 'GET',
694
+ 'config': {
695
+ 'query': {
696
+ 'Version': '2016-03-04',
697
+ 'Action': 'DescribeSubnetAvailableAddresses'
698
+ },
699
+ 'headers': {
700
+ 'Content-Type': 'application/x-www-form-urlencoded'
701
+ }
702
+ },
703
+ 'paramsType': {
704
+ 'Filter': 'Filter',
705
+ 'MaxResults': 'Int',
706
+ 'NextToken': 'String'
707
+ }
708
+ },
709
+ 'ModifyVpc': {
710
+ 'url': '/',
711
+ 'method': 'GET',
712
+ 'config': {
713
+ 'query': {
714
+ 'Version': '2016-03-04',
715
+ 'Action': 'ModifyVpc'
716
+ },
717
+ 'headers': {
718
+ 'Content-Type': 'application/x-www-form-urlencoded'
719
+ }
720
+ },
721
+ 'paramsType': {
722
+ 'VpcName': 'String',
723
+ 'VpcId': 'String'
724
+ }
725
+ },
726
+ 'AcceptVpcPeeringConnection': {
727
+ 'url': '/',
728
+ 'method': 'GET',
729
+ 'config': {
730
+ 'query': {
731
+ 'Version': '2016-03-04',
732
+ 'Action': 'AcceptVpcPeeringConnection'
733
+ },
734
+ 'headers': {
735
+ 'Content-Type': 'application/x-www-form-urlencoded'
736
+ }
737
+ },
738
+ 'paramsType': {
739
+ 'VpcPeeringConnectionId': 'String'
740
+ }
741
+ },
742
+ 'RejectVpcPeeringConnection': {
743
+ 'url': '/',
744
+ 'method': 'GET',
745
+ 'config': {
746
+ 'query': {
747
+ 'Version': '2016-03-04',
748
+ 'Action': 'RejectVpcPeeringConnection'
749
+ },
750
+ 'headers': {
751
+ 'Content-Type': 'application/x-www-form-urlencoded'
752
+ }
753
+ },
754
+ 'paramsType': {
755
+ 'VpcPeeringConnectionId': 'String'
756
+ }
757
+ },
758
+ 'ModifyVpcPeeringConnection': {
759
+ 'url': '/',
760
+ 'method': 'GET',
761
+ 'config': {
762
+ 'query': {
763
+ 'Version': '2016-03-04',
764
+ 'Action': 'ModifyVpcPeeringConnection'
765
+ },
766
+ 'headers': {
767
+ 'Content-Type': 'application/x-www-form-urlencoded'
768
+ }
769
+ },
770
+ 'paramsType': {
771
+ 'VpcPeeringConnectionId': 'String',
772
+ 'PeeringName': 'String',
773
+ 'BandWidth': 'Int'
774
+ }
775
+ },
776
+ 'DescribeAvailabilityZones': {
777
+ 'url': '/',
778
+ 'method': 'GET',
779
+ 'config': {
780
+ 'query': {
781
+ 'Version': '2016-03-04',
782
+ 'Action': 'DescribeAvailabilityZones'
783
+ },
784
+ 'headers': {
785
+ 'Content-Type': 'application/x-www-form-urlencoded'
786
+ }
787
+ },
788
+ 'paramsType': {}
789
+ },
790
+ 'DescribeDirectConnects': {
791
+ 'url': '/',
792
+ 'method': 'GET',
793
+ 'config': {
794
+ 'query': {
795
+ 'Version': '2016-03-04',
796
+ 'Action': 'DescribeDirectConnects'
797
+ },
798
+ 'headers': {
799
+ 'Content-Type': 'application/x-www-form-urlencoded'
800
+ }
801
+ },
802
+ 'paramsType': {
803
+ 'DirectConnectId': 'Filter',
804
+ 'MaxResults': 'Int',
805
+ 'NextToken': 'String'
806
+ }
807
+ },
808
+ 'CreateDirectConnectInterface': {
809
+ 'url': '/',
810
+ 'method': 'GET',
811
+ 'config': {
812
+ 'query': {
813
+ 'Version': '2016-03-04',
814
+ 'Action': 'CreateDirectConnectInterface'
815
+ },
816
+ 'headers': {
817
+ 'Content-Type': 'application/x-www-form-urlencoded'
818
+ }
819
+ },
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'
835
+ }
836
+ },
837
+ 'DeleteDirectConnectInterface': {
838
+ 'url': '/',
839
+ 'method': 'GET',
840
+ 'config': {
841
+ 'query': {
842
+ 'Version': '2016-03-04',
843
+ 'Action': 'DeleteDirectConnectInterface'
844
+ },
845
+ 'headers': {
846
+ 'Content-Type': 'application/x-www-form-urlencoded'
847
+ }
848
+ },
849
+ 'paramsType': {
850
+ 'DirectConnectInterfaceId': 'String'
851
+ }
852
+ },
853
+ 'DescribeDirectConnectInterfaces': {
854
+ 'url': '/',
855
+ 'method': 'GET',
856
+ 'config': {
857
+ 'query': {
858
+ 'Version': '2016-03-04',
859
+ 'Action': 'DescribeDirectConnectInterfaces'
860
+ },
861
+ 'headers': {
862
+ 'Content-Type': 'application/x-www-form-urlencoded'
863
+ }
864
+ },
865
+ 'paramsType': {
866
+ 'DirectConnectInterfaceId': 'Filter',
867
+ 'MaxResults': 'Int',
868
+ 'NextToken': 'String'
869
+ }
870
+ },
871
+ 'CreateDirectConnectGateway': {
872
+ 'url': '/',
873
+ 'method': 'GET',
874
+ 'config': {
875
+ 'query': {
876
+ 'Version': '2016-03-04',
877
+ 'Action': 'CreateDirectConnectGateway'
878
+ },
879
+ 'headers': {
880
+ 'Content-Type': 'application/x-www-form-urlencoded'
881
+ }
882
+ },
883
+ 'paramsType': {
884
+ 'VpcId': 'String',
885
+ 'DirectConnectGatewayName': 'String'
886
+ }
887
+ },
888
+ 'DeleteDirectConnectGateway': {
889
+ 'url': '/',
890
+ 'method': 'GET',
891
+ 'config': {
892
+ 'query': {
893
+ 'Version': '2016-03-04',
894
+ 'Action': 'DeleteDirectConnectGateway'
895
+ },
896
+ 'headers': {
897
+ 'Content-Type': 'application/x-www-form-urlencoded'
898
+ }
899
+ },
900
+ 'paramsType': {
901
+ 'DirectConnectGatewayId': 'String'
902
+ }
903
+ },
904
+ 'DescribeDirectConnectGateways': {
905
+ 'url': '/',
906
+ 'method': 'GET',
907
+ 'config': {
908
+ 'query': {
909
+ 'Version': '2016-03-04',
910
+ 'Action': 'DescribeDirectConnectGateways'
911
+ },
912
+ 'headers': {
913
+ 'Content-Type': 'application/x-www-form-urlencoded'
914
+ }
915
+ },
916
+ 'paramsType': {
917
+ 'DirectConnectGatewayId': 'Filter',
918
+ 'Filter': 'Filter',
919
+ 'MaxResults': 'Int',
920
+ 'NextToken': 'String'
921
+ }
922
+ },
923
+ 'AttachDirectConnectGateway': {
924
+ 'url': '/',
925
+ 'method': 'GET',
926
+ 'config': {
927
+ 'query': {
928
+ 'Version': '2016-03-04',
929
+ 'Action': 'AttachDirectConnectGateway'
930
+ },
931
+ 'headers': {
932
+ 'Content-Type': 'application/x-www-form-urlencoded'
933
+ }
934
+ },
935
+ 'paramsType': {
936
+ 'DirectConnectGatewayId': 'String',
937
+ 'DirectConnectInterfaceId': 'String'
938
+ }
939
+ },
940
+ 'DetachDirectConnectGateway': {
941
+ 'url': '/',
942
+ 'method': 'GET',
943
+ 'config': {
944
+ 'query': {
945
+ 'Version': '2016-03-04',
946
+ 'Action': 'DetachDirectConnectGateway'
947
+ },
948
+ 'headers': {
949
+ 'Content-Type': 'application/x-www-form-urlencoded'
950
+ }
951
+ },
952
+ 'paramsType': {
953
+ 'DirectConnectGatewayId': 'String',
954
+ 'DirectConnectInterfaceId': 'String'
955
+ }
956
+ },
957
+ 'ModifyDirectConnectInterface': {
958
+ 'url': '/',
959
+ 'method': 'GET',
960
+ 'config': {
961
+ 'query': {
962
+ 'Version': '2016-03-04',
963
+ 'Action': 'ModifyDirectConnectInterface'
964
+ },
965
+ 'headers': {
966
+ 'Content-Type': 'application/x-www-form-urlencoded'
967
+ }
968
+ },
969
+ 'paramsType': {
970
+ 'DirectConnectInterfaceId': 'String',
971
+ 'DirectConnectInterfaceName': 'String'
972
+ }
973
+ },
974
+ 'ModifyDirectConnectGateway': {
975
+ 'url': '/',
976
+ 'method': 'GET',
977
+ 'config': {
978
+ 'query': {
979
+ 'Version': '2016-03-04',
980
+ 'Action': 'ModifyDirectConnectGateway'
981
+ },
982
+ 'headers': {
983
+ 'Content-Type': 'application/x-www-form-urlencoded'
984
+ }
985
+ },
986
+ 'paramsType': {
987
+ 'DirectConnectGatewayId': 'String',
988
+ 'DirectConnectGatewayName': 'String'
989
+ }
990
+ },
991
+ 'CreateVpnGateway': {
992
+ 'url': '/',
993
+ 'method': 'GET',
994
+ 'config': {
995
+ 'query': {
996
+ 'Version': '2016-03-04',
997
+ 'Action': 'CreateVpnGateway'
998
+ },
999
+ 'headers': {
1000
+ 'Content-Type': 'application/x-www-form-urlencoded'
1001
+ }
1002
+ },
1003
+ 'paramsType': {
1004
+ 'VpcId': 'String',
1005
+ 'BandWidth': 'Int',
1006
+ 'VpnGatewayName': 'String',
1007
+ 'ProjectId': 'String',
1008
+ 'ChargeType': 'String',
1009
+ 'PurchaseTime': 'Int'
1010
+ }
1011
+ },
1012
+ 'ModifyVpnGateway': {
1013
+ 'url': '/',
1014
+ 'method': 'GET',
1015
+ 'config': {
1016
+ 'query': {
1017
+ 'Version': '2016-03-04',
1018
+ 'Action': 'ModifyVpnGateway'
1019
+ },
1020
+ 'headers': {
1021
+ 'Content-Type': 'application/x-www-form-urlencoded'
1022
+ }
1023
+ },
1024
+ 'paramsType': {
1025
+ 'VpnGatewayId': 'String',
1026
+ 'BandWidth': 'Int',
1027
+ 'VpnGatewayName': 'String'
1028
+ }
1029
+ },
1030
+ 'DeleteVpnGateway': {
1031
+ 'url': '/',
1032
+ 'method': 'GET',
1033
+ 'config': {
1034
+ 'query': {
1035
+ 'Version': '2016-03-04',
1036
+ 'Action': 'DeleteVpnGateway'
1037
+ },
1038
+ 'headers': {
1039
+ 'Content-Type': 'application/x-www-form-urlencoded'
1040
+ }
1041
+ },
1042
+ 'paramsType': {
1043
+ 'VpnGatewayId': 'String'
1044
+ }
1045
+ },
1046
+ 'DescribeVpnGateways': {
1047
+ 'url': '/',
1048
+ 'method': 'GET',
1049
+ 'config': {
1050
+ 'query': {
1051
+ 'Version': '2016-03-04',
1052
+ 'Action': 'DescribeVpnGateways'
1053
+ },
1054
+ 'headers': {
1055
+ 'Content-Type': 'application/x-www-form-urlencoded'
1056
+ }
1057
+ },
1058
+ 'paramsType': {
1059
+ 'ProjectId': 'Filter',
1060
+ 'VpnGatewayId': 'Filter',
1061
+ 'Filter': 'Filter',
1062
+ 'MaxResults': 'Int',
1063
+ 'NextToken': 'String'
1064
+ }
1065
+ },
1066
+ 'CreateVpnTunnel': {
1067
+ 'url': '/',
1068
+ 'method': 'POST',
1069
+ 'config': {
1070
+ 'query': {
1071
+ 'Version': '2016-03-04',
1072
+ 'Action': 'CreateVpnTunnel'
1073
+ },
1074
+ 'headers': {
1075
+ 'Content-Type': 'application/x-www-form-urlencoded'
1076
+ }
1077
+ },
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'
1096
+ }
1097
+ },
1098
+ 'ModifyVpnTunnel': {
1099
+ 'url': '/',
1100
+ 'method': 'GET',
1101
+ 'config': {
1102
+ 'query': {
1103
+ 'Version': '2016-03-04',
1104
+ 'Action': 'ModifyVpnTunnel'
1105
+ },
1106
+ 'headers': {
1107
+ 'Content-Type': 'application/x-www-form-urlencoded'
1108
+ }
1109
+ },
1110
+ 'paramsType': {
1111
+ 'VpnTunnelId': 'String',
1112
+ 'VpnTunnelName': 'String'
1113
+ }
1114
+ },
1115
+ 'DeleteVpnTunnel': {
1116
+ 'url': '/',
1117
+ 'method': 'GET',
1118
+ 'config': {
1119
+ 'query': {
1120
+ 'Version': '2016-03-04',
1121
+ 'Action': 'DeleteVpnTunnel'
1122
+ },
1123
+ 'headers': {
1124
+ 'Content-Type': 'application/x-www-form-urlencoded'
1125
+ }
1126
+ },
1127
+ 'paramsType': {
1128
+ 'VpnTunnelId': 'String'
1129
+ }
1130
+ },
1131
+ 'DescribeVpnTunnels': {
1132
+ 'url': '/',
1133
+ 'method': 'GET',
1134
+ 'config': {
1135
+ 'query': {
1136
+ 'Version': '2016-03-04',
1137
+ 'Action': 'DescribeVpnTunnels'
1138
+ },
1139
+ 'headers': {
1140
+ 'Content-Type': 'application/x-www-form-urlencoded'
1141
+ }
1142
+ },
1143
+ 'paramsType': {
1144
+ 'VpnTunnelId': 'Filter',
1145
+ 'Filter': 'Filter',
1146
+ 'MaxResults': 'Int',
1147
+ 'NextToken': 'String'
1148
+ }
1149
+ },
1150
+ 'CreateCustomerGateway': {
1151
+ 'url': '/',
1152
+ 'method': 'GET',
1153
+ 'config': {
1154
+ 'query': {
1155
+ 'Version': '2016-03-04',
1156
+ 'Action': 'CreateCustomerGateway'
1157
+ },
1158
+ 'headers': {
1159
+ 'Content-Type': 'application/x-www-form-urlencoded'
1160
+ }
1161
+ },
1162
+ 'paramsType': {
1163
+ 'CustomerGatewayName': 'String',
1164
+ 'CustomerGatewayAddress': 'String',
1165
+ 'HaCustomerGatewayAddress': 'String'
1166
+ }
1167
+ },
1168
+ 'ModifyCustomerGateway': {
1169
+ 'url': '/',
1170
+ 'method': 'GET',
1171
+ 'config': {
1172
+ 'query': {
1173
+ 'Version': '2016-03-04',
1174
+ 'Action': 'ModifyCustomerGateway'
1175
+ },
1176
+ 'headers': {
1177
+ 'Content-Type': 'application/x-www-form-urlencoded'
1178
+ }
1179
+ },
1180
+ 'paramsType': {
1181
+ 'CustomerGatewayId': 'String',
1182
+ 'CustomerGatewayName': 'String'
1183
+ }
1184
+ },
1185
+ 'DeleteCustomerGateway': {
1186
+ 'url': '/',
1187
+ 'method': 'GET',
1188
+ 'config': {
1189
+ 'query': {
1190
+ 'Version': '2016-03-04',
1191
+ 'Action': 'DeleteCustomerGateway'
1192
+ },
1193
+ 'headers': {
1194
+ 'Content-Type': 'application/x-www-form-urlencoded'
1195
+ }
1196
+ },
1197
+ 'paramsType': {
1198
+ 'CustomerGatewayId': 'String'
1199
+ }
1200
+ },
1201
+ 'ModifyDirectConnect': {
1202
+ 'url': '/',
1203
+ 'method': 'GET',
1204
+ 'config': {
1205
+ 'query': {
1206
+ 'Version': '2016-03-04',
1207
+ 'Action': 'ModifyDirectConnect'
1208
+ },
1209
+ 'headers': {
1210
+ 'Content-Type': 'application/x-www-form-urlencoded'
1211
+ }
1212
+ },
1213
+ 'paramsType': {
1214
+ 'DirectConnectId': 'String',
1215
+ 'DirectConnectName': 'String'
1216
+ }
1217
+ },
1218
+ 'DescribeCustomerGateways': {
1219
+ 'url': '/',
1220
+ 'method': 'GET',
1221
+ 'config': {
1222
+ 'query': {
1223
+ 'Version': '2016-03-04',
1224
+ 'Action': 'DescribeCustomerGateways'
1225
+ },
1226
+ 'headers': {
1227
+ 'Content-Type': 'application/x-www-form-urlencoded'
1228
+ }
1229
+ },
1230
+ 'paramsType': {
1231
+ 'CustomerGatewayId': 'Filter',
1232
+ 'MaxResults': 'Int',
1233
+ 'NextToken': 'String'
1234
+ }
1235
+ },
1236
+ 'DescribeSubnetAllocatedIpAddresses': {
1237
+ 'url': '/',
1238
+ 'method': 'GET',
1239
+ 'config': {
1240
+ 'query': {
1241
+ 'Version': '2016-03-04',
1242
+ 'Action': 'DescribeSubnetAllocatedIpAddresses'
1243
+ },
1244
+ 'headers': {
1245
+ 'Content-Type': 'application/x-www-form-urlencoded'
1246
+ }
1247
+ },
1248
+ 'paramsType': {
1249
+ 'Filter': 'Filter',
1250
+ 'MaxResults': 'Int',
1251
+ 'NextToken': 'String'
1252
+ }
1253
+ },
1254
+ 'DeleteNetworkInterface': {
1255
+ 'url': '/',
1256
+ 'method': 'GET',
1257
+ 'config': {
1258
+ 'query': {
1259
+ 'Version': '2016-03-04',
1260
+ 'Action': 'DeleteNetworkInterface'
1261
+ },
1262
+ 'headers': {
1263
+ 'Content-Type': 'application/x-www-form-urlencoded'
1264
+ }
1265
+ },
1266
+ 'paramsType': {
1267
+ 'NetworkInterfaceId': 'String'
1268
+ }
1269
+ },
1270
+ 'CreateNetworkInterface': {
1271
+ 'url': '/',
1272
+ 'method': 'GET',
1273
+ 'config': {
1274
+ 'query': {
1275
+ 'Version': '2016-03-04',
1276
+ 'Action': 'CreateNetworkInterface'
1277
+ },
1278
+ 'headers': {
1279
+ 'Content-Type': 'application/x-www-form-urlencoded'
1280
+ }
1281
+ },
1282
+ 'paramsType': {
1283
+ 'SubnetId': 'String',
1284
+ 'NetworkInterfaceName': 'String',
1285
+ 'PrivateIpAddress': 'String',
1286
+ 'SecurityGroupId': 'Filter'
1287
+ }
1288
+ },
1289
+ 'ModifyNetworkInterface': {
1290
+ 'url': '/',
1291
+ 'method': 'GET',
1292
+ 'config': {
1293
+ 'query': {
1294
+ 'Version': '2016-03-04',
1295
+ 'Action': 'ModifyNetworkInterface'
1296
+ },
1297
+ 'headers': {
1298
+ 'Content-Type': 'application/x-www-form-urlencoded'
1299
+ }
1300
+ },
1301
+ 'paramsType': {
1302
+ 'NetworkInterfaceName': 'String',
1303
+ 'NetworkInterfaceId': 'String'
1304
+ }
1305
+ },
1306
+ 'DeleteDirectConnectGatewayRoute': {
1307
+ 'url': '/',
1308
+ 'method': 'GET',
1309
+ 'config': {
1310
+ 'query': {
1311
+ 'Version': '2016-03-04',
1312
+ 'Action': 'DeleteDirectConnectGatewayRoute'
1313
+ },
1314
+ 'headers': {
1315
+ 'Content-Type': 'application/x-www-form-urlencoded'
1316
+ }
1317
+ },
1318
+ 'paramsType': {
1319
+ 'DirectConnectGatewayRouteId': 'String'
1320
+ }
1321
+ },
1322
+ 'DescribeDirectConnectGatewayRoute': {
1323
+ 'url': '/',
1324
+ 'method': 'GET',
1325
+ 'config': {
1326
+ 'query': {
1327
+ 'Version': '2016-03-04',
1328
+ 'Action': 'DescribeDirectConnectGatewayRoute'
1329
+ },
1330
+ 'headers': {
1331
+ 'Content-Type': 'application/json'
1332
+ }
1333
+ },
1334
+ 'paramsType': {
1335
+ 'DirectConnectGatewayId': 'String',
1336
+ 'MaxResults': 'Int',
1337
+ 'Filter': 'Filter',
1338
+ 'NextToken': 'String'
1339
+ }
1340
+ },
1341
+ 'PublishDirectConnectRoute': {
1342
+ 'url': '/',
1343
+ 'method': 'GET',
1344
+ 'config': {
1345
+ 'query': {
1346
+ 'Version': '2016-03-04',
1347
+ 'Action': 'PublishDirectConnectRoute'
1348
+ },
1349
+ 'headers': {
1350
+ 'Content-Type': 'application/x-www-form-urlencoded'
1351
+ }
1352
+ },
1353
+ 'paramsType': {
1354
+ 'DirectConnectGatewayRouteId': 'String'
1355
+ }
1356
+ },
1357
+ 'UnpublishDirectConnectRoute': {
1358
+ 'url': '/',
1359
+ 'method': 'GET',
1360
+ 'config': {
1361
+ 'query': {
1362
+ 'Version': '2016-03-04',
1363
+ 'Action': 'UnpublishDirectConnectRoute'
1364
+ },
1365
+ 'headers': {
1366
+ 'Content-Type': 'application/x-www-form-urlencoded'
1367
+ }
1368
+ },
1369
+ 'paramsType': {
1370
+ 'DirectConnectGatewayRouteId': 'String'
1371
+ }
1372
+ },
1373
+ 'AddSecondaryCidrBlock': {
1374
+ 'url': '/',
1375
+ 'method': 'GET',
1376
+ 'config': {
1377
+ 'query': {
1378
+ 'Version': '2016-03-04',
1379
+ 'Action': 'AddSecondaryCidrBlock'
1380
+ },
1381
+ 'headers': {
1382
+ 'Content-Type': 'application/x-www-form-urlencoded'
1383
+ }
1384
+ },
1385
+ 'paramsType': {
1386
+ 'VpcId': 'String',
1387
+ 'CidrBlock': 'String'
1388
+ }
1389
+ },
1390
+ 'DeleteSecondaryCidrBlock': {
1391
+ 'url': '/',
1392
+ 'method': 'GET',
1393
+ 'config': {
1394
+ 'query': {
1395
+ 'Version': '2016-03-04',
1396
+ 'Action': 'DeleteSecondaryCidrBlock'
1397
+ },
1398
+ 'headers': {
1399
+ 'Content-Type': 'application/x-www-form-urlencoded'
1400
+ }
1401
+ },
1402
+ 'paramsType': {
1403
+ 'VpcId': 'String',
1404
+ 'SecondaryCidrId': 'String'
1405
+ }
1406
+ },
1407
+ 'AssignPrivateIpAddress': {
1408
+ 'url': '/',
1409
+ 'method': 'GET',
1410
+ 'config': {
1411
+ 'query': {
1412
+ 'Version': '2016-03-04',
1413
+ 'Action': 'AssignPrivateIpAddress'
1414
+ },
1415
+ 'headers': {
1416
+ 'Content-Type': 'application/x-www-form-urlencoded'
1417
+ }
1418
+ },
1419
+ 'paramsType': {
1420
+ 'NetworkInterfaceId': 'String',
1421
+ 'PrivateIpAddress': 'Filter',
1422
+ 'SecondaryPrivateIpAddressCount': 'Int'
1423
+ }
1424
+ },
1425
+ 'UnassignPrivateIpAddress': {
1426
+ 'url': '/',
1427
+ 'method': 'GET',
1428
+ 'config': {
1429
+ 'query': {
1430
+ 'Version': '2016-03-04',
1431
+ 'Action': 'UnassignPrivateIpAddress'
1432
+ },
1433
+ 'headers': {
1434
+ 'Content-Type': 'application/x-www-form-urlencoded'
1435
+ }
1436
+ },
1437
+ 'paramsType': {
1438
+ 'NetworkInterfaceId': 'String',
1439
+ 'PrivateIpAddress': 'Filter'
1440
+ }
1441
+ }
1442
+ });
1443
+ }
1444
+
1445
+ };