ksyun-sdk-node 1.0.4 → 1.0.5

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