@aws-sdk/client-network-firewall 3.936.0 → 3.940.0
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.
- package/README.md +183 -7
- package/dist-cjs/index.js +1000 -42
- package/dist-es/NetworkFirewall.js +44 -0
- package/dist-es/commands/AttachRuleGroupsToProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/CreateProxyCommand.js +16 -0
- package/dist-es/commands/CreateProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/CreateProxyRuleGroupCommand.js +16 -0
- package/dist-es/commands/CreateProxyRulesCommand.js +16 -0
- package/dist-es/commands/DeleteProxyCommand.js +16 -0
- package/dist-es/commands/DeleteProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/DeleteProxyRuleGroupCommand.js +16 -0
- package/dist-es/commands/DeleteProxyRulesCommand.js +16 -0
- package/dist-es/commands/DescribeProxyCommand.js +16 -0
- package/dist-es/commands/DescribeProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/DescribeProxyRuleCommand.js +16 -0
- package/dist-es/commands/DescribeProxyRuleGroupCommand.js +16 -0
- package/dist-es/commands/DetachRuleGroupsFromProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/ListProxiesCommand.js +16 -0
- package/dist-es/commands/ListProxyConfigurationsCommand.js +16 -0
- package/dist-es/commands/ListProxyRuleGroupsCommand.js +16 -0
- package/dist-es/commands/UpdateProxyCommand.js +16 -0
- package/dist-es/commands/UpdateProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/UpdateProxyRuleCommand.js +16 -0
- package/dist-es/commands/UpdateProxyRuleGroupPrioritiesCommand.js +16 -0
- package/dist-es/commands/UpdateProxyRulePrioritiesCommand.js +16 -0
- package/dist-es/commands/index.js +22 -0
- package/dist-es/models/enums.js +31 -0
- package/dist-es/pagination/ListProxiesPaginator.js +4 -0
- package/dist-es/pagination/ListProxyConfigurationsPaginator.js +4 -0
- package/dist-es/pagination/ListProxyRuleGroupsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +649 -42
- package/dist-types/NetworkFirewall.d.ts +162 -0
- package/dist-types/NetworkFirewallClient.d.ts +24 -2
- package/dist-types/commands/AttachRuleGroupsToProxyConfigurationCommand.d.ts +136 -0
- package/dist-types/commands/CreateProxyCommand.d.ts +159 -0
- package/dist-types/commands/CreateProxyConfigurationCommand.d.ts +151 -0
- package/dist-types/commands/CreateProxyRuleGroupCommand.d.ts +225 -0
- package/dist-types/commands/CreateProxyRulesCommand.d.ts +216 -0
- package/dist-types/commands/DeleteProxyCommand.d.ts +108 -0
- package/dist-types/commands/DeleteProxyConfigurationCommand.d.ts +102 -0
- package/dist-types/commands/DeleteProxyRuleGroupCommand.d.ts +102 -0
- package/dist-types/commands/DeleteProxyRulesCommand.d.ts +167 -0
- package/dist-types/commands/DescribeProxyCommand.d.ts +133 -0
- package/dist-types/commands/DescribeProxyConfigurationCommand.d.ts +127 -0
- package/dist-types/commands/DescribeProxyRuleCommand.d.ts +116 -0
- package/dist-types/commands/DescribeProxyRuleGroupCommand.d.ts +164 -0
- package/dist-types/commands/DetachRuleGroupsFromProxyConfigurationCommand.d.ts +136 -0
- package/dist-types/commands/ListProxiesCommand.d.ts +106 -0
- package/dist-types/commands/ListProxyConfigurationsCommand.d.ts +109 -0
- package/dist-types/commands/ListProxyRuleGroupsCommand.d.ts +109 -0
- package/dist-types/commands/UpdateProxyCommand.d.ts +152 -0
- package/dist-types/commands/UpdateProxyConfigurationCommand.d.ts +133 -0
- package/dist-types/commands/UpdateProxyRuleCommand.d.ts +146 -0
- package/dist-types/commands/UpdateProxyRuleGroupPrioritiesCommand.d.ts +114 -0
- package/dist-types/commands/UpdateProxyRulePrioritiesCommand.d.ts +118 -0
- package/dist-types/commands/index.d.ts +22 -0
- package/dist-types/models/enums.d.ts +79 -0
- package/dist-types/models/models_0.d.ts +1834 -264
- package/dist-types/pagination/ListProxiesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListProxyConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListProxyRuleGroupsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +104 -0
- package/dist-types/ts3.4/NetworkFirewall.d.ts +394 -0
- package/dist-types/ts3.4/NetworkFirewallClient.d.ts +132 -0
- package/dist-types/ts3.4/commands/AttachRuleGroupsToProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateProxyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateProxyRuleGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateProxyRulesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteProxyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteProxyRuleGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteProxyRulesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeProxyCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeProxyRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeProxyRuleGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DetachRuleGroupsFromProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListProxiesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListProxyConfigurationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListProxyRuleGroupsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateProxyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateProxyRuleCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateProxyRuleGroupPrioritiesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateProxyRulePrioritiesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +22 -0
- package/dist-types/ts3.4/models/enums.d.ts +42 -0
- package/dist-types/ts3.4/models/models_0.d.ts +372 -4
- package/dist-types/ts3.4/pagination/ListProxiesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListProxyConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListProxyRuleGroupsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +104 -0
- package/package.json +5 -5
package/dist-cjs/index.js
CHANGED
|
@@ -290,6 +290,7 @@ const _A = "Address";
|
|
|
290
290
|
const _AAZ = "AssociateAvailabilityZones";
|
|
291
291
|
const _AAZR = "AssociateAvailabilityZonesRequest";
|
|
292
292
|
const _AAZRs = "AssociateAvailabilityZonesResponse";
|
|
293
|
+
const _AC = "AddConditions";
|
|
293
294
|
const _ACIDRC = "AvailableCIDRCount";
|
|
294
295
|
const _AD = "ActionDefinition";
|
|
295
296
|
const _ADd = "AddressDefinition";
|
|
@@ -304,6 +305,9 @@ const _ANFTGAR = "AcceptNetworkFirewallTransitGatewayAttachmentRequest";
|
|
|
304
305
|
const _ANFTGARc = "AcceptNetworkFirewallTransitGatewayAttachmentResponse";
|
|
305
306
|
const _AR = "AnalysisReport";
|
|
306
307
|
const _ARG = "AnalyzeRuleGroup";
|
|
308
|
+
const _ARGTPC = "AttachRuleGroupsToProxyConfiguration";
|
|
309
|
+
const _ARGTPCR = "AttachRuleGroupsToProxyConfigurationRequest";
|
|
310
|
+
const _ARGTPCRt = "AttachRuleGroupsToProxyConfigurationResponse";
|
|
307
311
|
const _ARI = "AnalysisReportId";
|
|
308
312
|
const _ARL = "AnalysisResultList";
|
|
309
313
|
const _ARR = "AnalysisReportResults";
|
|
@@ -322,14 +326,14 @@ const _AZM = "AvailabilityZoneMappings";
|
|
|
322
326
|
const _AZMv = "AvailabilityZoneMapping";
|
|
323
327
|
const _AZMva = "AvailabilityZoneMetadata";
|
|
324
328
|
const _AZSS = "AZSyncState";
|
|
325
|
-
const _Ac = "
|
|
326
|
-
const _Act = "
|
|
329
|
+
const _Ac = "Action";
|
|
330
|
+
const _Act = "Actions";
|
|
327
331
|
const _Ad = "Addresses";
|
|
328
332
|
const _Ag = "Age";
|
|
329
333
|
const _Ar = "Arn";
|
|
330
334
|
const _At = "Attachment";
|
|
331
335
|
const _BC = "ByteCount";
|
|
332
|
-
const _C = "
|
|
336
|
+
const _C = "Conditions";
|
|
333
337
|
const _CA = "CustomAction";
|
|
334
338
|
const _CAA = "CertificateAuthorityArn";
|
|
335
339
|
const _CAe = "CertificateArn";
|
|
@@ -346,6 +350,23 @@ const _CFR = "CreateFirewallRequest";
|
|
|
346
350
|
const _CFRr = "CreateFirewallResponse";
|
|
347
351
|
const _CIDR = "CIDRs";
|
|
348
352
|
const _CIDRS = "CIDRSummary";
|
|
353
|
+
const _CK = "ConditionKey";
|
|
354
|
+
const _CO = "ConditionOperator";
|
|
355
|
+
const _CP = "CreateProxy";
|
|
356
|
+
const _CPC = "CreateProxyConfiguration";
|
|
357
|
+
const _CPCR = "CreateProxyConfigurationRequest";
|
|
358
|
+
const _CPCRr = "CreateProxyConfigurationResponse";
|
|
359
|
+
const _CPR = "CreateProxyRequest";
|
|
360
|
+
const _CPRBRP = "CreateProxyRulesByRequestPhase";
|
|
361
|
+
const _CPRG = "CreateProxyRuleGroup";
|
|
362
|
+
const _CPRGR = "CreateProxyRuleGroupRequest";
|
|
363
|
+
const _CPRGRr = "CreateProxyRuleGroupResponse";
|
|
364
|
+
const _CPRL = "CreateProxyRuleList";
|
|
365
|
+
const _CPRR = "CreateProxyRulesRequest";
|
|
366
|
+
const _CPRRr = "CreateProxyRulesResponse";
|
|
367
|
+
const _CPRr = "CreateProxyResponse";
|
|
368
|
+
const _CPRre = "CreateProxyRule";
|
|
369
|
+
const _CPRrea = "CreateProxyRules";
|
|
349
370
|
const _CRG = "CreateRuleGroup";
|
|
350
371
|
const _CRGR = "CreateRuleGroupRequest";
|
|
351
372
|
const _CRGRr = "CreateRuleGroupResponse";
|
|
@@ -353,13 +374,16 @@ const _CS = "CertificateSerial";
|
|
|
353
374
|
const _CSRC = "ConsumedStatelessRuleCapacity";
|
|
354
375
|
const _CSRCo = "ConsumedStatefulRuleCapacity";
|
|
355
376
|
const _CSSS = "ConfigurationSyncStateSummary";
|
|
377
|
+
const _CT = "CreateTime";
|
|
356
378
|
const _CTLSIC = "CreateTLSInspectionConfiguration";
|
|
357
379
|
const _CTLSICR = "CreateTLSInspectionConfigurationRequest";
|
|
358
380
|
const _CTLSICRr = "CreateTLSInspectionConfigurationResponse";
|
|
359
381
|
const _CUS = "CapacityUsageSummary";
|
|
382
|
+
const _CV = "ConditionValues";
|
|
360
383
|
const _CVEA = "CreateVpcEndpointAssociation";
|
|
361
384
|
const _CVEAR = "CreateVpcEndpointAssociationRequest";
|
|
362
385
|
const _CVEARr = "CreateVpcEndpointAssociationResponse";
|
|
386
|
+
const _Ca = "Capacity";
|
|
363
387
|
const _Ce = "Certificates";
|
|
364
388
|
const _Co = "Count";
|
|
365
389
|
const _Con = "Config";
|
|
@@ -393,10 +417,38 @@ const _DNFTGA = "DeleteNetworkFirewallTransitGatewayAttachment";
|
|
|
393
417
|
const _DNFTGAR = "DeleteNetworkFirewallTransitGatewayAttachmentRequest";
|
|
394
418
|
const _DNFTGARe = "DeleteNetworkFirewallTransitGatewayAttachmentResponse";
|
|
395
419
|
const _DP = "DeleteProtection";
|
|
420
|
+
const _DPC = "DeleteProxyConfiguration";
|
|
421
|
+
const _DPCR = "DeleteProxyConfigurationRequest";
|
|
422
|
+
const _DPCRe = "DeleteProxyConfigurationResponse";
|
|
423
|
+
const _DPCRes = "DescribeProxyConfigurationRequest";
|
|
424
|
+
const _DPCResc = "DescribeProxyConfigurationResponse";
|
|
425
|
+
const _DPCe = "DescribeProxyConfiguration";
|
|
426
|
+
const _DPR = "DeleteProxyRequest";
|
|
427
|
+
const _DPRG = "DeleteProxyRuleGroup";
|
|
428
|
+
const _DPRGR = "DeleteProxyRuleGroupRequest";
|
|
429
|
+
const _DPRGRe = "DeleteProxyRuleGroupResponse";
|
|
430
|
+
const _DPRGRes = "DescribeProxyRuleGroupRequest";
|
|
431
|
+
const _DPRGResc = "DescribeProxyRuleGroupResponse";
|
|
432
|
+
const _DPRGe = "DescribeProxyRuleGroup";
|
|
433
|
+
const _DPRR = "DeleteProxyRulesRequest";
|
|
434
|
+
const _DPRRe = "DeleteProxyRulesResponse";
|
|
435
|
+
const _DPRRes = "DescribeProxyRuleRequest";
|
|
436
|
+
const _DPRResc = "DescribeProxyRuleResponse";
|
|
437
|
+
const _DPRe = "DeleteProxyResponse";
|
|
438
|
+
const _DPRel = "DeleteProxyRules";
|
|
439
|
+
const _DPRes = "DescribeProxyRequest";
|
|
440
|
+
const _DPResc = "DescribeProxyResource";
|
|
441
|
+
const _DPRescr = "DescribeProxyResponse";
|
|
442
|
+
const _DPRescri = "DescribeProxyRule";
|
|
396
443
|
const _DPe = "DestinationPort";
|
|
444
|
+
const _DPel = "DeleteProxy";
|
|
397
445
|
const _DPes = "DestinationPorts";
|
|
446
|
+
const _DPesc = "DescribeProxy";
|
|
398
447
|
const _DR = "DryRun";
|
|
399
448
|
const _DRG = "DeleteRuleGroup";
|
|
449
|
+
const _DRGFPC = "DetachRuleGroupsFromProxyConfiguration";
|
|
450
|
+
const _DRGFPCR = "DetachRuleGroupsFromProxyConfigurationRequest";
|
|
451
|
+
const _DRGFPCRe = "DetachRuleGroupsFromProxyConfigurationResponse";
|
|
400
452
|
const _DRGM = "DescribeRuleGroupMetadata";
|
|
401
453
|
const _DRGMR = "DescribeRuleGroupMetadataRequest";
|
|
402
454
|
const _DRGMRe = "DescribeRuleGroupMetadataResponse";
|
|
@@ -409,6 +461,7 @@ const _DRGSR = "DescribeRuleGroupSummaryRequest";
|
|
|
409
461
|
const _DRGSRe = "DescribeRuleGroupSummaryResponse";
|
|
410
462
|
const _DRGe = "DescribeRuleGroup";
|
|
411
463
|
const _DRP = "DeleteResourcePolicy";
|
|
464
|
+
const _DRPA = "DefaultRulePhaseActions";
|
|
412
465
|
const _DRPR = "DeleteResourcePolicyRequest";
|
|
413
466
|
const _DRPRe = "DeleteResourcePolicyResponse";
|
|
414
467
|
const _DRPRes = "DescribeResourcePolicyRequest";
|
|
@@ -417,6 +470,7 @@ const _DRPe = "DescribeResourcePolicy";
|
|
|
417
470
|
const _DS = "DisassociateSubnets";
|
|
418
471
|
const _DSR = "DisassociateSubnetsRequest";
|
|
419
472
|
const _DSRi = "DisassociateSubnetsResponse";
|
|
473
|
+
const _DT = "DeleteTime";
|
|
420
474
|
const _DTI = "DeepThreatInspection";
|
|
421
475
|
const _DTLSIC = "DeleteTLSInspectionConfiguration";
|
|
422
476
|
const _DTLSICR = "DeleteTLSInspectionConfigurationRequest";
|
|
@@ -446,10 +500,12 @@ const _ETLSSH = "EnableTLSSessionHolding";
|
|
|
446
500
|
const _F = "Firewall";
|
|
447
501
|
const _FA = "FirstAccessed";
|
|
448
502
|
const _FAi = "FirewallArn";
|
|
503
|
+
const _FC = "FailureCode";
|
|
449
504
|
const _FF = "FlowFilter";
|
|
450
505
|
const _FFl = "FlowFilters";
|
|
451
506
|
const _FI = "FirewallId";
|
|
452
|
-
const _FM = "
|
|
507
|
+
const _FM = "FailureMessage";
|
|
508
|
+
const _FMi = "FirewallMetadata";
|
|
453
509
|
const _FN = "FirewallName";
|
|
454
510
|
const _FO = "FlowOperation";
|
|
455
511
|
const _FOI = "FlowOperationId";
|
|
@@ -482,6 +538,7 @@ const _H = "Hits";
|
|
|
482
538
|
const _He = "Header";
|
|
483
539
|
const _ICE = "InsufficientCapacityException";
|
|
484
540
|
const _IOE = "InvalidOperationException";
|
|
541
|
+
const _IP = "InsertPosition";
|
|
485
542
|
const _IPAT = "IPAddressType";
|
|
486
543
|
const _IPS = "IPSet";
|
|
487
544
|
const _IPSM = "IPSetMetadata";
|
|
@@ -524,6 +581,21 @@ const _LFR = "ListFirewallsRequest";
|
|
|
524
581
|
const _LFRi = "ListFirewallsResponse";
|
|
525
582
|
const _LMT = "LastModifiedTime";
|
|
526
583
|
const _LN = "ListingName";
|
|
584
|
+
const _LP = "ListenerProperties";
|
|
585
|
+
const _LPC = "ListProxyConfigurations";
|
|
586
|
+
const _LPCR = "ListProxyConfigurationsRequest";
|
|
587
|
+
const _LPCRi = "ListProxyConfigurationsResponse";
|
|
588
|
+
const _LPR = "ListenerPropertyRequest";
|
|
589
|
+
const _LPRG = "ListProxyRuleGroups";
|
|
590
|
+
const _LPRGR = "ListProxyRuleGroupsRequest";
|
|
591
|
+
const _LPRGRi = "ListProxyRuleGroupsResponse";
|
|
592
|
+
const _LPRi = "ListProxiesRequest";
|
|
593
|
+
const _LPRis = "ListProxiesResponse";
|
|
594
|
+
const _LPRist = "ListenerPropertiesRequest";
|
|
595
|
+
const _LPTA = "ListenerPropertiesToAdd";
|
|
596
|
+
const _LPTR = "ListenerPropertiesToRemove";
|
|
597
|
+
const _LPi = "ListenerProperty";
|
|
598
|
+
const _LPis = "ListProxies";
|
|
527
599
|
const _LRG = "ListRuleGroups";
|
|
528
600
|
const _LRGR = "ListRuleGroupsRequest";
|
|
529
601
|
const _LRGRi = "ListRuleGroupsResponse";
|
|
@@ -546,38 +618,85 @@ const _Ma = "Masks";
|
|
|
546
618
|
const _Me = "Metadata";
|
|
547
619
|
const _Ms = "Msg";
|
|
548
620
|
const _N = "Name";
|
|
621
|
+
const _NGI = "NatGatewayId";
|
|
549
622
|
const _NOA = "NumberOfAssociations";
|
|
623
|
+
const _NP = "NewPosition";
|
|
550
624
|
const _NT = "NextToken";
|
|
551
625
|
const _O = "Override";
|
|
552
626
|
const _P = "Protocol";
|
|
553
|
-
const
|
|
627
|
+
const _PA = "ProxyArn";
|
|
628
|
+
const _PAc = "PcaArn";
|
|
629
|
+
const _PC = "ProxyConfiguration";
|
|
630
|
+
const _PCA = "ProxyConfigurationArn";
|
|
631
|
+
const _PCDRPAR = "ProxyConfigDefaultRulePhaseActionsRequest";
|
|
632
|
+
const _PCM = "ProxyConfigurationMetadata";
|
|
633
|
+
const _PCN = "ProxyConfigurationName";
|
|
634
|
+
const _PCRG = "ProxyConfigRuleGroup";
|
|
635
|
+
const _PCRGS = "ProxyConfigRuleGroupSet";
|
|
636
|
+
const _PCa = "PacketCount";
|
|
637
|
+
const _PCr = "ProxyConfigurations";
|
|
638
|
+
const _PDNS = "PreDNS";
|
|
639
|
+
const _PDNSN = "PrivateDNSName";
|
|
554
640
|
const _PI = "ProductId";
|
|
641
|
+
const _PM = "ProxyMetadata";
|
|
555
642
|
const _PMA = "PublishMetricAction";
|
|
643
|
+
const _PMS = "ProxyModifyState";
|
|
644
|
+
const _PN = "ProxyName";
|
|
556
645
|
const _POS = "PerObjectStatus";
|
|
557
|
-
const _PR = "
|
|
558
|
-
const
|
|
646
|
+
const _PR = "ProxyRule";
|
|
647
|
+
const _PRBRP = "ProxyRulesByRequestPhase";
|
|
648
|
+
const _PRC = "ProxyRuleCondition";
|
|
649
|
+
const _PRCL = "ProxyRuleConditionList";
|
|
650
|
+
const _PREQUEST = "PreREQUEST";
|
|
651
|
+
const _PRESPONSE = "PostRESPONSE";
|
|
652
|
+
const _PRG = "ProxyRuleGroup";
|
|
653
|
+
const _PRGA = "ProxyRuleGroupArn";
|
|
654
|
+
const _PRGAL = "ProxyRuleGroupAttachmentList";
|
|
655
|
+
const _PRGAr = "ProxyRuleGroupAttachment";
|
|
656
|
+
const _PRGM = "ProxyRuleGroupMetadata";
|
|
657
|
+
const _PRGN = "ProxyRuleGroupName";
|
|
658
|
+
const _PRGP = "ProxyRuleGroupPriority";
|
|
659
|
+
const _PRGPL = "ProxyRuleGroupPriorityList";
|
|
660
|
+
const _PRGPR = "ProxyRuleGroupPriorityResult";
|
|
661
|
+
const _PRGPRL = "ProxyRuleGroupPriorityResultList";
|
|
662
|
+
const _PRGr = "ProxyRuleGroups";
|
|
663
|
+
const _PRL = "ProxyRuleList";
|
|
664
|
+
const _PRN = "ProxyRuleName";
|
|
665
|
+
const _PRP = "ProxyRulePriority";
|
|
666
|
+
const _PRPL = "ProxyRulePriorityList";
|
|
559
667
|
const _PRPR = "PutResourcePolicyRequest";
|
|
560
668
|
const _PRPRu = "PutResourcePolicyResponse";
|
|
561
|
-
const
|
|
562
|
-
const
|
|
563
|
-
const
|
|
669
|
+
const _PRPu = "PutResourcePolicy";
|
|
670
|
+
const _PRo = "PortRange";
|
|
671
|
+
const _PRor = "PortRanges";
|
|
672
|
+
const _PS = "ProxyState";
|
|
673
|
+
const _PSo = "PortSet";
|
|
674
|
+
const _PSor = "PortSets";
|
|
564
675
|
const _PV = "PolicyVariables";
|
|
565
676
|
const _Po = "Policy";
|
|
566
|
-
const
|
|
677
|
+
const _Por = "Port";
|
|
678
|
+
const _Pr = "Proxy";
|
|
567
679
|
const _Pri = "Priority";
|
|
680
|
+
const _Pro = "Protocols";
|
|
681
|
+
const _Prox = "Proxies";
|
|
568
682
|
const _R = "Rules";
|
|
569
683
|
const _RA = "ResourceArn";
|
|
570
684
|
const _RAe = "ReferenceArn";
|
|
685
|
+
const _RC = "RemoveConditions";
|
|
571
686
|
const _RCIDRC = "ResolvedCIDRCount";
|
|
687
|
+
const _RCe = "RemovedConditions";
|
|
572
688
|
const _RD = "RuleDefinition";
|
|
573
|
-
const _RG = "
|
|
574
|
-
const _RGA = "
|
|
689
|
+
const _RG = "RuleGroups";
|
|
690
|
+
const _RGA = "RuleGroupArns";
|
|
691
|
+
const _RGAu = "RuleGroupArn";
|
|
575
692
|
const _RGI = "RuleGroupId";
|
|
576
693
|
const _RGM = "RuleGroupMetadata";
|
|
577
|
-
const _RGN = "
|
|
694
|
+
const _RGN = "RuleGroupNames";
|
|
695
|
+
const _RGNu = "RuleGroupName";
|
|
578
696
|
const _RGR = "RuleGroupResponse";
|
|
697
|
+
const _RGRP = "RuleGroupRequestPhase";
|
|
579
698
|
const _RGS = "RuleGroupStatus";
|
|
580
|
-
const _RGu = "
|
|
699
|
+
const _RGu = "RuleGroup";
|
|
581
700
|
const _RNFE = "ResourceNotFoundException";
|
|
582
701
|
const _RNFTGA = "RejectNetworkFirewallTransitGatewayAttachment";
|
|
583
702
|
const _RNFTGAR = "RejectNetworkFirewallTransitGatewayAttachmentRequest";
|
|
@@ -666,6 +785,9 @@ const _TGAS = "TransitGatewayAttachmentStatus";
|
|
|
666
785
|
const _TGASS = "TransitGatewayAttachmentSyncState";
|
|
667
786
|
const _TGI = "TransitGatewayId";
|
|
668
787
|
const _TGOAI = "TransitGatewayOwnerAccountId";
|
|
788
|
+
const _TIM = "TlsInterceptMode";
|
|
789
|
+
const _TIP = "TlsInterceptProperties";
|
|
790
|
+
const _TIPR = "TlsInterceptPropertiesRequest";
|
|
669
791
|
const _TITS = "TcpIdleTimeoutSeconds";
|
|
670
792
|
const _TK = "TagKeys";
|
|
671
793
|
const _TL = "TagList";
|
|
@@ -711,6 +833,21 @@ const _ULC = "UpdateLoggingConfiguration";
|
|
|
711
833
|
const _ULCR = "UpdateLoggingConfigurationRequest";
|
|
712
834
|
const _ULCRp = "UpdateLoggingConfigurationResponse";
|
|
713
835
|
const _UOE = "UnsupportedOperationException";
|
|
836
|
+
const _UP = "UpdateProxy";
|
|
837
|
+
const _UPC = "UpdateProxyConfiguration";
|
|
838
|
+
const _UPCR = "UpdateProxyConfigurationRequest";
|
|
839
|
+
const _UPCRp = "UpdateProxyConfigurationResponse";
|
|
840
|
+
const _UPR = "UpdateProxyRequest";
|
|
841
|
+
const _UPRGP = "UpdateProxyRuleGroupPriorities";
|
|
842
|
+
const _UPRGPR = "UpdateProxyRuleGroupPrioritiesRequest";
|
|
843
|
+
const _UPRGPRp = "UpdateProxyRuleGroupPrioritiesResponse";
|
|
844
|
+
const _UPRP = "UpdateProxyRulePriorities";
|
|
845
|
+
const _UPRPR = "UpdateProxyRulePrioritiesRequest";
|
|
846
|
+
const _UPRPRp = "UpdateProxyRulePrioritiesResponse";
|
|
847
|
+
const _UPRR = "UpdateProxyRuleRequest";
|
|
848
|
+
const _UPRRp = "UpdateProxyRuleResponse";
|
|
849
|
+
const _UPRp = "UpdateProxyResponse";
|
|
850
|
+
const _UPRpd = "UpdateProxyRule";
|
|
714
851
|
const _UR = "UntagResource";
|
|
715
852
|
const _URG = "UpdateRuleGroup";
|
|
716
853
|
const _URGR = "UpdateRuleGroupRequest";
|
|
@@ -726,6 +863,7 @@ const _UT = "UpdateToken";
|
|
|
726
863
|
const _UTLSIC = "UpdateTLSInspectionConfiguration";
|
|
727
864
|
const _UTLSICR = "UpdateTLSInspectionConfigurationRequest";
|
|
728
865
|
const _UTLSICRp = "UpdateTLSInspectionConfigurationResponse";
|
|
866
|
+
const _UTp = "UpdateTime";
|
|
729
867
|
const _V = "Value";
|
|
730
868
|
const _VEA = "VpcEndpointAssociation";
|
|
731
869
|
const _VEAA = "VpcEndpointAssociationArn";
|
|
@@ -734,6 +872,7 @@ const _VEAM = "VpcEndpointAssociationMetadata";
|
|
|
734
872
|
const _VEAS = "VpcEndpointAssociationStatus";
|
|
735
873
|
const _VEAp = "VpcEndpointAssociations";
|
|
736
874
|
const _VEI = "VpcEndpointId";
|
|
875
|
+
const _VESN = "VpcEndpointServiceName";
|
|
737
876
|
const _VI = "VpcId";
|
|
738
877
|
const _VIp = "VpcIds";
|
|
739
878
|
const _VN = "VendorName";
|
|
@@ -819,6 +958,22 @@ var AssociateSubnetsResponse = [
|
|
|
819
958
|
[0, 0, () => SubnetMappings, 0],
|
|
820
959
|
];
|
|
821
960
|
var Attachment = [3, n0, _At, 0, [_SI, _EI, _S, _SMt], [0, 0, 0, 0]];
|
|
961
|
+
var AttachRuleGroupsToProxyConfigurationRequest = [
|
|
962
|
+
3,
|
|
963
|
+
n0,
|
|
964
|
+
_ARGTPCR,
|
|
965
|
+
0,
|
|
966
|
+
[_PCN, _PCA, _RG, _UT],
|
|
967
|
+
[0, 0, () => ProxyRuleGroupAttachmentList, 0],
|
|
968
|
+
];
|
|
969
|
+
var AttachRuleGroupsToProxyConfigurationResponse = [
|
|
970
|
+
3,
|
|
971
|
+
n0,
|
|
972
|
+
_ARGTPCRt,
|
|
973
|
+
0,
|
|
974
|
+
[_PC, _UT],
|
|
975
|
+
[() => ProxyConfiguration, 0],
|
|
976
|
+
];
|
|
822
977
|
var AvailabilityZoneMapping = [3, n0, _AZMv, 0, [_AZ], [0]];
|
|
823
978
|
var AvailabilityZoneMetadata = [3, n0, _AZMva, 0, [_IPAT], [0]];
|
|
824
979
|
var AZSyncState = [3, n0, _AZSS, 0, [_At], [() => Attachment]];
|
|
@@ -879,12 +1034,78 @@ var CreateFirewallResponse = [
|
|
|
879
1034
|
[_F, _FS],
|
|
880
1035
|
[() => Firewall, () => FirewallStatus],
|
|
881
1036
|
];
|
|
1037
|
+
var CreateProxyConfigurationRequest = [
|
|
1038
|
+
3,
|
|
1039
|
+
n0,
|
|
1040
|
+
_CPCR,
|
|
1041
|
+
0,
|
|
1042
|
+
[_PCN, _De, _RGN, _RGA, _DRPA, _T],
|
|
1043
|
+
[0, 0, 64 | 0, 64 | 0, () => ProxyConfigDefaultRulePhaseActionsRequest, () => TagList],
|
|
1044
|
+
];
|
|
1045
|
+
var CreateProxyConfigurationResponse = [
|
|
1046
|
+
3,
|
|
1047
|
+
n0,
|
|
1048
|
+
_CPCRr,
|
|
1049
|
+
0,
|
|
1050
|
+
[_PC, _UT],
|
|
1051
|
+
[() => ProxyConfiguration, 0],
|
|
1052
|
+
];
|
|
1053
|
+
var CreateProxyRequest = [
|
|
1054
|
+
3,
|
|
1055
|
+
n0,
|
|
1056
|
+
_CPR,
|
|
1057
|
+
0,
|
|
1058
|
+
[_PN, _NGI, _PCN, _PCA, _LP, _TIP, _T],
|
|
1059
|
+
[0, 0, 0, 0, () => ListenerPropertiesRequest, () => TlsInterceptPropertiesRequest, () => TagList],
|
|
1060
|
+
];
|
|
1061
|
+
var CreateProxyResponse = [3, n0, _CPRr, 0, [_Pr, _UT], [() => Proxy, 0]];
|
|
1062
|
+
var CreateProxyRule = [
|
|
1063
|
+
3,
|
|
1064
|
+
n0,
|
|
1065
|
+
_CPRre,
|
|
1066
|
+
0,
|
|
1067
|
+
[_PRN, _De, _Ac, _C, _IP],
|
|
1068
|
+
[0, 0, 0, () => ProxyRuleConditionList, 1],
|
|
1069
|
+
];
|
|
1070
|
+
var CreateProxyRuleGroupRequest = [
|
|
1071
|
+
3,
|
|
1072
|
+
n0,
|
|
1073
|
+
_CPRGR,
|
|
1074
|
+
0,
|
|
1075
|
+
[_PRGN, _De, _R, _T],
|
|
1076
|
+
[0, 0, () => ProxyRulesByRequestPhase, () => TagList],
|
|
1077
|
+
];
|
|
1078
|
+
var CreateProxyRuleGroupResponse = [
|
|
1079
|
+
3,
|
|
1080
|
+
n0,
|
|
1081
|
+
_CPRGRr,
|
|
1082
|
+
0,
|
|
1083
|
+
[_PRG, _UT],
|
|
1084
|
+
[() => ProxyRuleGroup, 0],
|
|
1085
|
+
];
|
|
1086
|
+
var CreateProxyRulesByRequestPhase = [
|
|
1087
|
+
3,
|
|
1088
|
+
n0,
|
|
1089
|
+
_CPRBRP,
|
|
1090
|
+
0,
|
|
1091
|
+
[_PDNS, _PREQUEST, _PRESPONSE],
|
|
1092
|
+
[() => CreateProxyRuleList, () => CreateProxyRuleList, () => CreateProxyRuleList],
|
|
1093
|
+
];
|
|
1094
|
+
var CreateProxyRulesRequest = [
|
|
1095
|
+
3,
|
|
1096
|
+
n0,
|
|
1097
|
+
_CPRR,
|
|
1098
|
+
0,
|
|
1099
|
+
[_PRGA, _PRGN, _R],
|
|
1100
|
+
[0, 0, () => CreateProxyRulesByRequestPhase],
|
|
1101
|
+
];
|
|
1102
|
+
var CreateProxyRulesResponse = [3, n0, _CPRRr, 0, [_PRG, _UT], [() => ProxyRuleGroup, 0]];
|
|
882
1103
|
var CreateRuleGroupRequest = [
|
|
883
1104
|
3,
|
|
884
1105
|
n0,
|
|
885
1106
|
_CRGR,
|
|
886
1107
|
0,
|
|
887
|
-
[
|
|
1108
|
+
[_RGNu, _RGu, _R, _Ty, _De, _Ca, _T, _DR, _EC, _SMo, _ARG, _SC],
|
|
888
1109
|
[
|
|
889
1110
|
0,
|
|
890
1111
|
() => RuleGroup,
|
|
@@ -975,9 +1196,17 @@ var DeleteNetworkFirewallTransitGatewayAttachmentResponse = [
|
|
|
975
1196
|
[_TGAI, _TGAS],
|
|
976
1197
|
[0, 0],
|
|
977
1198
|
];
|
|
1199
|
+
var DeleteProxyConfigurationRequest = [3, n0, _DPCR, 0, [_PCN, _PCA], [0, 0]];
|
|
1200
|
+
var DeleteProxyConfigurationResponse = [3, n0, _DPCRe, 0, [_PCN, _PCA], [0, 0]];
|
|
1201
|
+
var DeleteProxyRequest = [3, n0, _DPR, 0, [_NGI, _PN, _PA], [0, 0, 0]];
|
|
1202
|
+
var DeleteProxyResponse = [3, n0, _DPRe, 0, [_NGI, _PN, _PA], [0, 0, 0]];
|
|
1203
|
+
var DeleteProxyRuleGroupRequest = [3, n0, _DPRGR, 0, [_PRGN, _PRGA], [0, 0]];
|
|
1204
|
+
var DeleteProxyRuleGroupResponse = [3, n0, _DPRGRe, 0, [_PRGN, _PRGA], [0, 0]];
|
|
1205
|
+
var DeleteProxyRulesRequest = [3, n0, _DPRR, 0, [_PRGA, _PRGN, _R], [0, 0, 64 | 0]];
|
|
1206
|
+
var DeleteProxyRulesResponse = [3, n0, _DPRRe, 0, [_PRG], [() => ProxyRuleGroup]];
|
|
978
1207
|
var DeleteResourcePolicyRequest = [3, n0, _DRPR, 0, [_RA], [0]];
|
|
979
1208
|
var DeleteResourcePolicyResponse = [3, n0, _DRPRe, 0, [], []];
|
|
980
|
-
var DeleteRuleGroupRequest = [3, n0, _DRGR, 0, [
|
|
1209
|
+
var DeleteRuleGroupRequest = [3, n0, _DRGR, 0, [_RGNu, _RGAu, _Ty], [0, 0, 0]];
|
|
981
1210
|
var DeleteRuleGroupResponse = [3, n0, _DRGRe, 0, [_RGR], [() => RuleGroupResponse]];
|
|
982
1211
|
var DeleteTLSInspectionConfigurationRequest = [
|
|
983
1212
|
3,
|
|
@@ -1056,33 +1285,77 @@ var DescribeLoggingConfigurationResponse = [
|
|
|
1056
1285
|
[_FAi, _LC, _EMD],
|
|
1057
1286
|
[0, () => LoggingConfiguration, 2],
|
|
1058
1287
|
];
|
|
1288
|
+
var DescribeProxyConfigurationRequest = [3, n0, _DPCRes, 0, [_PCN, _PCA], [0, 0]];
|
|
1289
|
+
var DescribeProxyConfigurationResponse = [
|
|
1290
|
+
3,
|
|
1291
|
+
n0,
|
|
1292
|
+
_DPCResc,
|
|
1293
|
+
0,
|
|
1294
|
+
[_PC, _UT],
|
|
1295
|
+
[() => ProxyConfiguration, 0],
|
|
1296
|
+
];
|
|
1297
|
+
var DescribeProxyRequest = [3, n0, _DPRes, 0, [_PN, _PA], [0, 0]];
|
|
1298
|
+
var DescribeProxyResource = [
|
|
1299
|
+
3,
|
|
1300
|
+
n0,
|
|
1301
|
+
_DPResc,
|
|
1302
|
+
0,
|
|
1303
|
+
[_PN, _PA, _PCN, _PCA, _NGI, _PS, _PMS, _LP, _TIP, _VESN, _PDNSN, _CT, _DT, _UTp, _FC, _FM, _T],
|
|
1304
|
+
[0, 0, 0, 0, 0, 0, 0, () => ListenerProperties, () => TlsInterceptProperties, 0, 0, 4, 4, 4, 0, 0, () => TagList],
|
|
1305
|
+
];
|
|
1306
|
+
var DescribeProxyResponse = [
|
|
1307
|
+
3,
|
|
1308
|
+
n0,
|
|
1309
|
+
_DPRescr,
|
|
1310
|
+
0,
|
|
1311
|
+
[_Pr, _UT],
|
|
1312
|
+
[() => DescribeProxyResource, 0],
|
|
1313
|
+
];
|
|
1314
|
+
var DescribeProxyRuleGroupRequest = [3, n0, _DPRGRes, 0, [_PRGN, _PRGA], [0, 0]];
|
|
1315
|
+
var DescribeProxyRuleGroupResponse = [
|
|
1316
|
+
3,
|
|
1317
|
+
n0,
|
|
1318
|
+
_DPRGResc,
|
|
1319
|
+
0,
|
|
1320
|
+
[_PRG, _UT],
|
|
1321
|
+
[() => ProxyRuleGroup, 0],
|
|
1322
|
+
];
|
|
1323
|
+
var DescribeProxyRuleRequest = [3, n0, _DPRRes, 0, [_PRN, _PRGN, _PRGA], [0, 0, 0]];
|
|
1324
|
+
var DescribeProxyRuleResponse = [3, n0, _DPRResc, 0, [_PR, _UT], [() => ProxyRule, 0]];
|
|
1059
1325
|
var DescribeResourcePolicyRequest = [3, n0, _DRPRes, 0, [_RA], [0]];
|
|
1060
1326
|
var DescribeResourcePolicyResponse = [3, n0, _DRPResc, 0, [_Po], [0]];
|
|
1061
|
-
var DescribeRuleGroupMetadataRequest = [3, n0, _DRGMR, 0, [
|
|
1327
|
+
var DescribeRuleGroupMetadataRequest = [3, n0, _DRGMR, 0, [_RGNu, _RGAu, _Ty], [0, 0, 0]];
|
|
1062
1328
|
var DescribeRuleGroupMetadataResponse = [
|
|
1063
1329
|
3,
|
|
1064
1330
|
n0,
|
|
1065
1331
|
_DRGMRe,
|
|
1066
1332
|
0,
|
|
1067
|
-
[
|
|
1333
|
+
[_RGAu, _RGNu, _De, _Ty, _Ca, _SRO, _LMT, _VN, _PI, _LN],
|
|
1068
1334
|
[0, 0, 0, 0, 1, () => StatefulRuleOptions, 4, 0, 0, 0],
|
|
1069
1335
|
];
|
|
1070
|
-
var DescribeRuleGroupRequest = [
|
|
1336
|
+
var DescribeRuleGroupRequest = [
|
|
1337
|
+
3,
|
|
1338
|
+
n0,
|
|
1339
|
+
_DRGRes,
|
|
1340
|
+
0,
|
|
1341
|
+
[_RGNu, _RGAu, _Ty, _ARG],
|
|
1342
|
+
[0, 0, 0, 2],
|
|
1343
|
+
];
|
|
1071
1344
|
var DescribeRuleGroupResponse = [
|
|
1072
1345
|
3,
|
|
1073
1346
|
n0,
|
|
1074
1347
|
_DRGResc,
|
|
1075
1348
|
0,
|
|
1076
|
-
[_UT,
|
|
1349
|
+
[_UT, _RGu, _RGR],
|
|
1077
1350
|
[0, () => RuleGroup, () => RuleGroupResponse],
|
|
1078
1351
|
];
|
|
1079
|
-
var DescribeRuleGroupSummaryRequest = [3, n0, _DRGSR, 0, [
|
|
1352
|
+
var DescribeRuleGroupSummaryRequest = [3, n0, _DRGSR, 0, [_RGNu, _RGAu, _Ty], [0, 0, 0]];
|
|
1080
1353
|
var DescribeRuleGroupSummaryResponse = [
|
|
1081
1354
|
3,
|
|
1082
1355
|
n0,
|
|
1083
1356
|
_DRGSRe,
|
|
1084
1357
|
0,
|
|
1085
|
-
[
|
|
1358
|
+
[_RGNu, _De, _Su],
|
|
1086
1359
|
[0, 0, () => Summary],
|
|
1087
1360
|
];
|
|
1088
1361
|
var DescribeTLSInspectionConfigurationRequest = [
|
|
@@ -1110,6 +1383,22 @@ var DescribeVpcEndpointAssociationResponse = [
|
|
|
1110
1383
|
[_VEA, _VEAS],
|
|
1111
1384
|
[() => VpcEndpointAssociation, () => VpcEndpointAssociationStatus],
|
|
1112
1385
|
];
|
|
1386
|
+
var DetachRuleGroupsFromProxyConfigurationRequest = [
|
|
1387
|
+
3,
|
|
1388
|
+
n0,
|
|
1389
|
+
_DRGFPCR,
|
|
1390
|
+
0,
|
|
1391
|
+
[_PCN, _PCA, _RGN, _RGA, _UT],
|
|
1392
|
+
[0, 0, 64 | 0, 64 | 0, 0],
|
|
1393
|
+
];
|
|
1394
|
+
var DetachRuleGroupsFromProxyConfigurationResponse = [
|
|
1395
|
+
3,
|
|
1396
|
+
n0,
|
|
1397
|
+
_DRGFPCRe,
|
|
1398
|
+
0,
|
|
1399
|
+
[_PC, _UT],
|
|
1400
|
+
[() => ProxyConfiguration, 0],
|
|
1401
|
+
];
|
|
1113
1402
|
var Dimension = [3, n0, _Di, 0, [_V], [0]];
|
|
1114
1403
|
var DisassociateAvailabilityZonesRequest = [
|
|
1115
1404
|
3,
|
|
@@ -1171,7 +1460,7 @@ var Firewall = [
|
|
|
1171
1460
|
2,
|
|
1172
1461
|
],
|
|
1173
1462
|
];
|
|
1174
|
-
var FirewallMetadata = [3, n0,
|
|
1463
|
+
var FirewallMetadata = [3, n0, _FMi, 0, [_FN, _FAi, _TGAI], [0, 0, 0]];
|
|
1175
1464
|
var FirewallPolicy = [
|
|
1176
1465
|
3,
|
|
1177
1466
|
n0,
|
|
@@ -1213,7 +1502,7 @@ var Flow = [
|
|
|
1213
1502
|
n0,
|
|
1214
1503
|
_Fl,
|
|
1215
1504
|
0,
|
|
1216
|
-
[_SA, _DA, _SP, _DPe, _P, _Ag,
|
|
1505
|
+
[_SA, _DA, _SP, _DPe, _P, _Ag, _PCa, _BC],
|
|
1217
1506
|
[() => Address, () => Address, 0, 0, 0, 1, 1, 1],
|
|
1218
1507
|
];
|
|
1219
1508
|
var FlowFilter = [
|
|
@@ -1221,7 +1510,7 @@ var FlowFilter = [
|
|
|
1221
1510
|
n0,
|
|
1222
1511
|
_FF,
|
|
1223
1512
|
0,
|
|
1224
|
-
[_SA, _DA, _SP, _DPe,
|
|
1513
|
+
[_SA, _DA, _SP, _DPe, _Pro],
|
|
1225
1514
|
[() => Address, () => Address, 0, 0, 64 | 0],
|
|
1226
1515
|
];
|
|
1227
1516
|
var FlowOperation = [3, n0, _FO, 0, [_MFAIS, _FFl], [1, () => FlowFilters]];
|
|
@@ -1334,6 +1623,8 @@ var ListAnalysisReportsResponse = [
|
|
|
1334
1623
|
[_ARna, _NT],
|
|
1335
1624
|
[() => AnalysisReports, 0],
|
|
1336
1625
|
];
|
|
1626
|
+
var ListenerProperty = [3, n0, _LPi, 0, [_Por, _Ty], [1, 0]];
|
|
1627
|
+
var ListenerPropertyRequest = [3, n0, _LPR, 0, [_Por, _Ty], [1, 0]];
|
|
1337
1628
|
var ListFirewallPoliciesRequest = [3, n0, _LFPR, 0, [_NT, _MR], [0, 1]];
|
|
1338
1629
|
var ListFirewallPoliciesResponse = [
|
|
1339
1630
|
3,
|
|
@@ -1377,6 +1668,26 @@ var ListFlowOperationsResponse = [
|
|
|
1377
1668
|
[_FOl, _NT],
|
|
1378
1669
|
[() => FlowOperations, 0],
|
|
1379
1670
|
];
|
|
1671
|
+
var ListProxiesRequest = [3, n0, _LPRi, 0, [_NT, _MR], [0, 1]];
|
|
1672
|
+
var ListProxiesResponse = [3, n0, _LPRis, 0, [_Prox, _NT], [() => Proxies, 0]];
|
|
1673
|
+
var ListProxyConfigurationsRequest = [3, n0, _LPCR, 0, [_NT, _MR], [0, 1]];
|
|
1674
|
+
var ListProxyConfigurationsResponse = [
|
|
1675
|
+
3,
|
|
1676
|
+
n0,
|
|
1677
|
+
_LPCRi,
|
|
1678
|
+
0,
|
|
1679
|
+
[_PCr, _NT],
|
|
1680
|
+
[() => ProxyConfigurations, 0],
|
|
1681
|
+
];
|
|
1682
|
+
var ListProxyRuleGroupsRequest = [3, n0, _LPRGR, 0, [_NT, _MR], [0, 1]];
|
|
1683
|
+
var ListProxyRuleGroupsResponse = [
|
|
1684
|
+
3,
|
|
1685
|
+
n0,
|
|
1686
|
+
_LPRGRi,
|
|
1687
|
+
0,
|
|
1688
|
+
[_PRGr, _NT],
|
|
1689
|
+
[() => ProxyRuleGroups, 0],
|
|
1690
|
+
];
|
|
1380
1691
|
var ListRuleGroupsRequest = [
|
|
1381
1692
|
3,
|
|
1382
1693
|
n0,
|
|
@@ -1385,7 +1696,7 @@ var ListRuleGroupsRequest = [
|
|
|
1385
1696
|
[_NT, _MR, _Sc, _MT, _SSu, _Ty],
|
|
1386
1697
|
[0, 1, 0, 0, 0, 0],
|
|
1387
1698
|
];
|
|
1388
|
-
var ListRuleGroupsResponse = [3, n0, _LRGRi, 0, [_NT,
|
|
1699
|
+
var ListRuleGroupsResponse = [3, n0, _LRGRi, 0, [_NT, _RG], [0, () => RuleGroups]];
|
|
1389
1700
|
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_NT, _MR, _RA], [0, 1, 0]];
|
|
1390
1701
|
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_NT, _T], [0, () => TagList]];
|
|
1391
1702
|
var ListTLSInspectionConfigurationsRequest = [3, n0, _LTLSICR, 0, [_NT, _MR], [0, 1]];
|
|
@@ -1424,13 +1735,70 @@ var MatchAttributes = [
|
|
|
1424
1735
|
n0,
|
|
1425
1736
|
_MA,
|
|
1426
1737
|
0,
|
|
1427
|
-
[_Sou, _Dest, _SPo, _DPes,
|
|
1738
|
+
[_Sou, _Dest, _SPo, _DPes, _Pro, _TCPF],
|
|
1428
1739
|
[() => Addresses, () => Addresses, () => PortRanges, () => PortRanges, 64 | 1, () => TCPFlags],
|
|
1429
1740
|
];
|
|
1430
1741
|
var PerObjectStatus = [3, n0, _POS, 0, [_SSy, _UT], [0, 0]];
|
|
1431
1742
|
var PolicyVariables = [3, n0, _PV, 0, [_RV], [() => IPSets]];
|
|
1432
|
-
var PortRange = [3, n0,
|
|
1433
|
-
var PortSet = [3, n0,
|
|
1743
|
+
var PortRange = [3, n0, _PRo, 0, [_FPr, _TP], [1, 1]];
|
|
1744
|
+
var PortSet = [3, n0, _PSo, 0, [_Def], [64 | 0]];
|
|
1745
|
+
var Proxy = [
|
|
1746
|
+
3,
|
|
1747
|
+
n0,
|
|
1748
|
+
_Pr,
|
|
1749
|
+
0,
|
|
1750
|
+
[_CT, _DT, _UTp, _FC, _FM, _PS, _PMS, _NGI, _PCN, _PCA, _PN, _PA, _LP, _TIP, _T],
|
|
1751
|
+
[4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => ListenerProperties, () => TlsInterceptProperties, () => TagList],
|
|
1752
|
+
];
|
|
1753
|
+
var ProxyConfigDefaultRulePhaseActionsRequest = [
|
|
1754
|
+
3,
|
|
1755
|
+
n0,
|
|
1756
|
+
_PCDRPAR,
|
|
1757
|
+
0,
|
|
1758
|
+
[_PDNS, _PREQUEST, _PRESPONSE],
|
|
1759
|
+
[0, 0, 0],
|
|
1760
|
+
];
|
|
1761
|
+
var ProxyConfigRuleGroup = [3, n0, _PCRG, 0, [_PRGN, _PRGA, _Ty, _Pri], [0, 0, 0, 1]];
|
|
1762
|
+
var ProxyConfiguration = [
|
|
1763
|
+
3,
|
|
1764
|
+
n0,
|
|
1765
|
+
_PC,
|
|
1766
|
+
0,
|
|
1767
|
+
[_PCN, _PCA, _De, _CT, _DT, _RG, _DRPA, _T],
|
|
1768
|
+
[0, 0, 0, 4, 4, () => ProxyConfigRuleGroupSet, () => ProxyConfigDefaultRulePhaseActionsRequest, () => TagList],
|
|
1769
|
+
];
|
|
1770
|
+
var ProxyConfigurationMetadata = [3, n0, _PCM, 0, [_N, _Ar], [0, 0]];
|
|
1771
|
+
var ProxyMetadata = [3, n0, _PM, 0, [_N, _Ar], [0, 0]];
|
|
1772
|
+
var ProxyRule = [
|
|
1773
|
+
3,
|
|
1774
|
+
n0,
|
|
1775
|
+
_PR,
|
|
1776
|
+
0,
|
|
1777
|
+
[_PRN, _De, _Ac, _C],
|
|
1778
|
+
[0, 0, 0, () => ProxyRuleConditionList],
|
|
1779
|
+
];
|
|
1780
|
+
var ProxyRuleCondition = [3, n0, _PRC, 0, [_CO, _CK, _CV], [0, 0, 64 | 0]];
|
|
1781
|
+
var ProxyRuleGroup = [
|
|
1782
|
+
3,
|
|
1783
|
+
n0,
|
|
1784
|
+
_PRG,
|
|
1785
|
+
0,
|
|
1786
|
+
[_PRGN, _PRGA, _CT, _DT, _R, _De, _T],
|
|
1787
|
+
[0, 0, 4, 4, () => ProxyRulesByRequestPhase, 0, () => TagList],
|
|
1788
|
+
];
|
|
1789
|
+
var ProxyRuleGroupAttachment = [3, n0, _PRGAr, 0, [_PRGN, _IP], [0, 1]];
|
|
1790
|
+
var ProxyRuleGroupMetadata = [3, n0, _PRGM, 0, [_N, _Ar], [0, 0]];
|
|
1791
|
+
var ProxyRuleGroupPriority = [3, n0, _PRGP, 0, [_PRGN, _NP], [0, 1]];
|
|
1792
|
+
var ProxyRuleGroupPriorityResult = [3, n0, _PRGPR, 0, [_PRGN, _Pri], [0, 1]];
|
|
1793
|
+
var ProxyRulePriority = [3, n0, _PRP, 0, [_PRN, _NP], [0, 1]];
|
|
1794
|
+
var ProxyRulesByRequestPhase = [
|
|
1795
|
+
3,
|
|
1796
|
+
n0,
|
|
1797
|
+
_PRBRP,
|
|
1798
|
+
0,
|
|
1799
|
+
[_PDNS, _PREQUEST, _PRESPONSE],
|
|
1800
|
+
[() => ProxyRuleList, () => ProxyRuleList, () => ProxyRuleList],
|
|
1801
|
+
];
|
|
1434
1802
|
var PublishMetricAction = [3, n0, _PMA, 0, [_Dim], [() => Dimensions]];
|
|
1435
1803
|
var PutResourcePolicyRequest = [3, n0, _PRPR, 0, [_RA, _Po], [0, 0]];
|
|
1436
1804
|
var PutResourcePolicyResponse = [3, n0, _PRPRu, 0, [], []];
|
|
@@ -1473,11 +1841,11 @@ var ResourceOwnerCheckException = [
|
|
|
1473
1841
|
[0],
|
|
1474
1842
|
];
|
|
1475
1843
|
schema.TypeRegistry.for(n0).registerError(ResourceOwnerCheckException, ResourceOwnerCheckException$1);
|
|
1476
|
-
var RuleDefinition = [3, n0, _RD, 0, [_MA,
|
|
1844
|
+
var RuleDefinition = [3, n0, _RD, 0, [_MA, _Act], [() => MatchAttributes, 64 | 0]];
|
|
1477
1845
|
var RuleGroup = [
|
|
1478
1846
|
3,
|
|
1479
1847
|
n0,
|
|
1480
|
-
|
|
1848
|
+
_RGu,
|
|
1481
1849
|
0,
|
|
1482
1850
|
[_RV, _RS, _RSu, _SRO],
|
|
1483
1851
|
[() => RuleVariables, () => ReferenceSets, () => RulesSource, () => StatefulRuleOptions],
|
|
@@ -1488,7 +1856,7 @@ var RuleGroupResponse = [
|
|
|
1488
1856
|
n0,
|
|
1489
1857
|
_RGR,
|
|
1490
1858
|
0,
|
|
1491
|
-
[
|
|
1859
|
+
[_RGAu, _RGNu, _RGI, _De, _Ty, _Ca, _RGS, _T, _CC, _NOA, _EC, _SMo, _STn, _LMT, _ARnal, _SC],
|
|
1492
1860
|
[
|
|
1493
1861
|
0,
|
|
1494
1862
|
0,
|
|
@@ -1519,7 +1887,7 @@ var RulesSource = [
|
|
|
1519
1887
|
];
|
|
1520
1888
|
var RulesSourceList = [3, n0, _RSL, 0, [_Ta, _TT, _GRT], [64 | 0, 64 | 0, 0]];
|
|
1521
1889
|
var RuleSummary = [3, n0, _RSule, 0, [_SID, _Ms, _Me], [0, 0, 0]];
|
|
1522
|
-
var RuleVariables = [3, n0, _RV, 0, [_IPSe,
|
|
1890
|
+
var RuleVariables = [3, n0, _RV, 0, [_IPSe, _PSor], [() => IPSets, () => PortSets]];
|
|
1523
1891
|
var ServerCertificate = [3, n0, _SCe, 0, [_RA], [0]];
|
|
1524
1892
|
var ServerCertificateConfiguration = [
|
|
1525
1893
|
3,
|
|
@@ -1534,7 +1902,7 @@ var ServerCertificateScope = [
|
|
|
1534
1902
|
n0,
|
|
1535
1903
|
_SCS,
|
|
1536
1904
|
0,
|
|
1537
|
-
[_Sou, _Dest, _SPo, _DPes,
|
|
1905
|
+
[_Sou, _Dest, _SPo, _DPes, _Pro],
|
|
1538
1906
|
[() => Addresses, () => Addresses, () => PortRanges, () => PortRanges, 64 | 1],
|
|
1539
1907
|
];
|
|
1540
1908
|
var SourceMetadata = [3, n0, _SMo, 0, [_SAo, _SUT], [0, 0]];
|
|
@@ -1571,10 +1939,10 @@ var StatefulRule = [
|
|
|
1571
1939
|
n0,
|
|
1572
1940
|
_SRt,
|
|
1573
1941
|
0,
|
|
1574
|
-
[
|
|
1942
|
+
[_Ac, _He, _ROul],
|
|
1575
1943
|
[0, () => Header, () => RuleOptions],
|
|
1576
1944
|
];
|
|
1577
|
-
var StatefulRuleGroupOverride = [3, n0, _SRGO, 0, [
|
|
1945
|
+
var StatefulRuleGroupOverride = [3, n0, _SRGO, 0, [_Ac], [0]];
|
|
1578
1946
|
var StatefulRuleGroupReference = [
|
|
1579
1947
|
3,
|
|
1580
1948
|
n0,
|
|
@@ -1631,6 +1999,8 @@ var TLSInspectionConfigurationResponse = [
|
|
|
1631
1999
|
[_TLSICA, _TLSICN, _TLSICI, _TLSICS, _De, _T, _LMT, _NOA, _EC, _Ce, _CAer],
|
|
1632
2000
|
[0, 0, 0, 0, 0, () => TagList, 4, 1, () => EncryptionConfiguration, () => Certificates, () => TlsCertificateData],
|
|
1633
2001
|
];
|
|
2002
|
+
var TlsInterceptProperties = [3, n0, _TIP, 0, [_PAc, _TIM], [0, 0]];
|
|
2003
|
+
var TlsInterceptPropertiesRequest = [3, n0, _TIPR, 0, [_PAc, _TIM], [0, 0]];
|
|
1634
2004
|
var TransitGatewayAttachmentSyncState = [3, n0, _TGASS, 0, [_AI, _TGAS, _SMt], [0, 0, 0]];
|
|
1635
2005
|
var UniqueSources = [3, n0, _US, 0, [_Co], [1]];
|
|
1636
2006
|
var UnsupportedOperationException = [
|
|
@@ -1774,12 +2144,85 @@ var UpdateLoggingConfigurationResponse = [
|
|
|
1774
2144
|
[_FAi, _FN, _LC, _EMD],
|
|
1775
2145
|
[0, 0, () => LoggingConfiguration, 2],
|
|
1776
2146
|
];
|
|
2147
|
+
var UpdateProxyConfigurationRequest = [
|
|
2148
|
+
3,
|
|
2149
|
+
n0,
|
|
2150
|
+
_UPCR,
|
|
2151
|
+
0,
|
|
2152
|
+
[_PCN, _PCA, _DRPA, _UT],
|
|
2153
|
+
[0, 0, () => ProxyConfigDefaultRulePhaseActionsRequest, 0],
|
|
2154
|
+
];
|
|
2155
|
+
var UpdateProxyConfigurationResponse = [
|
|
2156
|
+
3,
|
|
2157
|
+
n0,
|
|
2158
|
+
_UPCRp,
|
|
2159
|
+
0,
|
|
2160
|
+
[_PC, _UT],
|
|
2161
|
+
[() => ProxyConfiguration, 0],
|
|
2162
|
+
];
|
|
2163
|
+
var UpdateProxyRequest = [
|
|
2164
|
+
3,
|
|
2165
|
+
n0,
|
|
2166
|
+
_UPR,
|
|
2167
|
+
0,
|
|
2168
|
+
[_NGI, _PN, _PA, _LPTA, _LPTR, _TIP, _UT],
|
|
2169
|
+
[0, 0, 0, () => ListenerPropertiesRequest, () => ListenerPropertiesRequest, () => TlsInterceptPropertiesRequest, 0],
|
|
2170
|
+
];
|
|
2171
|
+
var UpdateProxyResponse = [3, n0, _UPRp, 0, [_Pr, _UT], [() => Proxy, 0]];
|
|
2172
|
+
var UpdateProxyRuleGroupPrioritiesRequest = [
|
|
2173
|
+
3,
|
|
2174
|
+
n0,
|
|
2175
|
+
_UPRGPR,
|
|
2176
|
+
0,
|
|
2177
|
+
[_PCN, _PCA, _RG, _UT],
|
|
2178
|
+
[0, 0, () => ProxyRuleGroupPriorityList, 0],
|
|
2179
|
+
];
|
|
2180
|
+
var UpdateProxyRuleGroupPrioritiesResponse = [
|
|
2181
|
+
3,
|
|
2182
|
+
n0,
|
|
2183
|
+
_UPRGPRp,
|
|
2184
|
+
0,
|
|
2185
|
+
[_PRGr, _UT],
|
|
2186
|
+
[() => ProxyRuleGroupPriorityResultList, 0],
|
|
2187
|
+
];
|
|
2188
|
+
var UpdateProxyRulePrioritiesRequest = [
|
|
2189
|
+
3,
|
|
2190
|
+
n0,
|
|
2191
|
+
_UPRPR,
|
|
2192
|
+
0,
|
|
2193
|
+
[_PRGN, _PRGA, _RGRP, _R, _UT],
|
|
2194
|
+
[0, 0, 0, () => ProxyRulePriorityList, 0],
|
|
2195
|
+
];
|
|
2196
|
+
var UpdateProxyRulePrioritiesResponse = [
|
|
2197
|
+
3,
|
|
2198
|
+
n0,
|
|
2199
|
+
_UPRPRp,
|
|
2200
|
+
0,
|
|
2201
|
+
[_PRGN, _PRGA, _RGRP, _R, _UT],
|
|
2202
|
+
[0, 0, 0, () => ProxyRulePriorityList, 0],
|
|
2203
|
+
];
|
|
2204
|
+
var UpdateProxyRuleRequest = [
|
|
2205
|
+
3,
|
|
2206
|
+
n0,
|
|
2207
|
+
_UPRR,
|
|
2208
|
+
0,
|
|
2209
|
+
[_PRGN, _PRGA, _PRN, _De, _Ac, _AC, _RC, _UT],
|
|
2210
|
+
[0, 0, 0, 0, 0, () => ProxyRuleConditionList, () => ProxyRuleConditionList, 0],
|
|
2211
|
+
];
|
|
2212
|
+
var UpdateProxyRuleResponse = [
|
|
2213
|
+
3,
|
|
2214
|
+
n0,
|
|
2215
|
+
_UPRRp,
|
|
2216
|
+
0,
|
|
2217
|
+
[_PR, _RCe, _UT],
|
|
2218
|
+
[() => ProxyRule, () => ProxyRuleConditionList, 0],
|
|
2219
|
+
];
|
|
1777
2220
|
var UpdateRuleGroupRequest = [
|
|
1778
2221
|
3,
|
|
1779
2222
|
n0,
|
|
1780
2223
|
_URGR,
|
|
1781
2224
|
0,
|
|
1782
|
-
[_UT,
|
|
2225
|
+
[_UT, _RGAu, _RGNu, _RGu, _R, _Ty, _De, _DR, _EC, _SMo, _ARG, _SC],
|
|
1783
2226
|
[
|
|
1784
2227
|
0,
|
|
1785
2228
|
0,
|
|
@@ -1860,6 +2303,7 @@ var AnalysisReports = [1, n0, _ARna, 0, () => AnalysisReport];
|
|
|
1860
2303
|
var AnalysisResultList = [1, n0, _ARL, 0, () => AnalysisResult];
|
|
1861
2304
|
var AvailabilityZoneMappings = [1, n0, _AZM, 0, () => AvailabilityZoneMapping];
|
|
1862
2305
|
var Certificates = [1, n0, _Ce, 0, () => TlsCertificateData];
|
|
2306
|
+
var CreateProxyRuleList = [1, n0, _CPRL, 0, () => CreateProxyRule];
|
|
1863
2307
|
var CustomActions = [1, n0, _CAu, 0, () => CustomAction];
|
|
1864
2308
|
var Dimensions = [1, n0, _Dim, 0, () => Dimension];
|
|
1865
2309
|
var FirewallPolicies = [1, n0, _FPi, 0, () => FirewallPolicyMetadata];
|
|
@@ -1867,9 +2311,21 @@ var Firewalls = [1, n0, _Fi, 0, () => FirewallMetadata];
|
|
|
1867
2311
|
var FlowFilters = [1, n0, _FFl, 0, () => FlowFilter];
|
|
1868
2312
|
var FlowOperations = [1, n0, _FOl, 0, () => FlowOperationMetadata];
|
|
1869
2313
|
var Flows = [1, n0, _Flo, 0, () => Flow];
|
|
2314
|
+
var ListenerProperties = [1, n0, _LP, 0, () => ListenerProperty];
|
|
2315
|
+
var ListenerPropertiesRequest = [1, n0, _LPRist, 0, () => ListenerPropertyRequest];
|
|
1870
2316
|
var LogDestinationConfigs = [1, n0, _LDCo, 0, () => LogDestinationConfig];
|
|
1871
|
-
var PortRanges = [1, n0,
|
|
1872
|
-
var
|
|
2317
|
+
var PortRanges = [1, n0, _PRor, 0, () => PortRange];
|
|
2318
|
+
var Proxies = [1, n0, _Prox, 0, () => ProxyMetadata];
|
|
2319
|
+
var ProxyConfigRuleGroupSet = [1, n0, _PCRGS, 0, () => ProxyConfigRuleGroup];
|
|
2320
|
+
var ProxyConfigurations = [1, n0, _PCr, 0, () => ProxyConfigurationMetadata];
|
|
2321
|
+
var ProxyRuleConditionList = [1, n0, _PRCL, 0, () => ProxyRuleCondition];
|
|
2322
|
+
var ProxyRuleGroupAttachmentList = [1, n0, _PRGAL, 0, () => ProxyRuleGroupAttachment];
|
|
2323
|
+
var ProxyRuleGroupPriorityList = [1, n0, _PRGPL, 0, () => ProxyRuleGroupPriority];
|
|
2324
|
+
var ProxyRuleGroupPriorityResultList = [1, n0, _PRGPRL, 0, () => ProxyRuleGroupPriorityResult];
|
|
2325
|
+
var ProxyRuleGroups = [1, n0, _PRGr, 0, () => ProxyRuleGroupMetadata];
|
|
2326
|
+
var ProxyRuleList = [1, n0, _PRL, 0, () => ProxyRule];
|
|
2327
|
+
var ProxyRulePriorityList = [1, n0, _PRPL, 0, () => ProxyRulePriority];
|
|
2328
|
+
var RuleGroups = [1, n0, _RG, 0, () => RuleGroupMetadata];
|
|
1873
2329
|
var RuleOptions = [1, n0, _ROul, 0, () => RuleOption];
|
|
1874
2330
|
var RuleSummaries = [1, n0, _RSuleu, 0, () => RuleSummary];
|
|
1875
2331
|
var ServerCertificateConfigurations = [1, n0, _SCCe, 0, () => ServerCertificateConfiguration];
|
|
@@ -1894,7 +2350,7 @@ var AssociationSyncState = [2, n0, _ASS, 0, 0, () => AZSyncState];
|
|
|
1894
2350
|
var IPSetMetadataMap = [2, n0, _IPSMM, 0, 0, () => IPSetMetadata];
|
|
1895
2351
|
var IPSetReferenceMap = [2, n0, _IPSRM, 0, 0, () => IPSetReference];
|
|
1896
2352
|
var IPSets = [2, n0, _IPSe, 0, 0, () => IPSet];
|
|
1897
|
-
var PortSets = [2, n0,
|
|
2353
|
+
var PortSets = [2, n0, _PSor, 0, 0, () => PortSet];
|
|
1898
2354
|
var SupportedAvailabilityZones = [2, n0, _SAZ, 0, 0, () => AvailabilityZoneMetadata];
|
|
1899
2355
|
var SyncStateConfig = [2, n0, _SSC, 0, 0, () => PerObjectStatus];
|
|
1900
2356
|
var SyncStates = [2, n0, _SS, 0, 0, () => SyncState];
|
|
@@ -1930,6 +2386,14 @@ var AssociateSubnets = [
|
|
|
1930
2386
|
() => AssociateSubnetsRequest,
|
|
1931
2387
|
() => AssociateSubnetsResponse,
|
|
1932
2388
|
];
|
|
2389
|
+
var AttachRuleGroupsToProxyConfiguration = [
|
|
2390
|
+
9,
|
|
2391
|
+
n0,
|
|
2392
|
+
_ARGTPC,
|
|
2393
|
+
0,
|
|
2394
|
+
() => AttachRuleGroupsToProxyConfigurationRequest,
|
|
2395
|
+
() => AttachRuleGroupsToProxyConfigurationResponse,
|
|
2396
|
+
];
|
|
1933
2397
|
var CreateFirewall = [
|
|
1934
2398
|
9,
|
|
1935
2399
|
n0,
|
|
@@ -1946,6 +2410,31 @@ var CreateFirewallPolicy = [
|
|
|
1946
2410
|
() => CreateFirewallPolicyRequest,
|
|
1947
2411
|
() => CreateFirewallPolicyResponse,
|
|
1948
2412
|
];
|
|
2413
|
+
var CreateProxy = [9, n0, _CP, 0, () => CreateProxyRequest, () => CreateProxyResponse];
|
|
2414
|
+
var CreateProxyConfiguration = [
|
|
2415
|
+
9,
|
|
2416
|
+
n0,
|
|
2417
|
+
_CPC,
|
|
2418
|
+
0,
|
|
2419
|
+
() => CreateProxyConfigurationRequest,
|
|
2420
|
+
() => CreateProxyConfigurationResponse,
|
|
2421
|
+
];
|
|
2422
|
+
var CreateProxyRuleGroup = [
|
|
2423
|
+
9,
|
|
2424
|
+
n0,
|
|
2425
|
+
_CPRG,
|
|
2426
|
+
0,
|
|
2427
|
+
() => CreateProxyRuleGroupRequest,
|
|
2428
|
+
() => CreateProxyRuleGroupResponse,
|
|
2429
|
+
];
|
|
2430
|
+
var CreateProxyRules = [
|
|
2431
|
+
9,
|
|
2432
|
+
n0,
|
|
2433
|
+
_CPRrea,
|
|
2434
|
+
0,
|
|
2435
|
+
() => CreateProxyRulesRequest,
|
|
2436
|
+
() => CreateProxyRulesResponse,
|
|
2437
|
+
];
|
|
1949
2438
|
var CreateRuleGroup = [
|
|
1950
2439
|
9,
|
|
1951
2440
|
n0,
|
|
@@ -1994,6 +2483,31 @@ var DeleteNetworkFirewallTransitGatewayAttachment = [
|
|
|
1994
2483
|
() => DeleteNetworkFirewallTransitGatewayAttachmentRequest,
|
|
1995
2484
|
() => DeleteNetworkFirewallTransitGatewayAttachmentResponse,
|
|
1996
2485
|
];
|
|
2486
|
+
var DeleteProxy = [9, n0, _DPel, 0, () => DeleteProxyRequest, () => DeleteProxyResponse];
|
|
2487
|
+
var DeleteProxyConfiguration = [
|
|
2488
|
+
9,
|
|
2489
|
+
n0,
|
|
2490
|
+
_DPC,
|
|
2491
|
+
0,
|
|
2492
|
+
() => DeleteProxyConfigurationRequest,
|
|
2493
|
+
() => DeleteProxyConfigurationResponse,
|
|
2494
|
+
];
|
|
2495
|
+
var DeleteProxyRuleGroup = [
|
|
2496
|
+
9,
|
|
2497
|
+
n0,
|
|
2498
|
+
_DPRG,
|
|
2499
|
+
0,
|
|
2500
|
+
() => DeleteProxyRuleGroupRequest,
|
|
2501
|
+
() => DeleteProxyRuleGroupResponse,
|
|
2502
|
+
];
|
|
2503
|
+
var DeleteProxyRules = [
|
|
2504
|
+
9,
|
|
2505
|
+
n0,
|
|
2506
|
+
_DPRel,
|
|
2507
|
+
0,
|
|
2508
|
+
() => DeleteProxyRulesRequest,
|
|
2509
|
+
() => DeleteProxyRulesResponse,
|
|
2510
|
+
];
|
|
1997
2511
|
var DeleteResourcePolicy = [
|
|
1998
2512
|
9,
|
|
1999
2513
|
n0,
|
|
@@ -2066,6 +2580,38 @@ var DescribeLoggingConfiguration = [
|
|
|
2066
2580
|
() => DescribeLoggingConfigurationRequest,
|
|
2067
2581
|
() => DescribeLoggingConfigurationResponse,
|
|
2068
2582
|
];
|
|
2583
|
+
var DescribeProxy = [
|
|
2584
|
+
9,
|
|
2585
|
+
n0,
|
|
2586
|
+
_DPesc,
|
|
2587
|
+
0,
|
|
2588
|
+
() => DescribeProxyRequest,
|
|
2589
|
+
() => DescribeProxyResponse,
|
|
2590
|
+
];
|
|
2591
|
+
var DescribeProxyConfiguration = [
|
|
2592
|
+
9,
|
|
2593
|
+
n0,
|
|
2594
|
+
_DPCe,
|
|
2595
|
+
0,
|
|
2596
|
+
() => DescribeProxyConfigurationRequest,
|
|
2597
|
+
() => DescribeProxyConfigurationResponse,
|
|
2598
|
+
];
|
|
2599
|
+
var DescribeProxyRule = [
|
|
2600
|
+
9,
|
|
2601
|
+
n0,
|
|
2602
|
+
_DPRescri,
|
|
2603
|
+
0,
|
|
2604
|
+
() => DescribeProxyRuleRequest,
|
|
2605
|
+
() => DescribeProxyRuleResponse,
|
|
2606
|
+
];
|
|
2607
|
+
var DescribeProxyRuleGroup = [
|
|
2608
|
+
9,
|
|
2609
|
+
n0,
|
|
2610
|
+
_DPRGe,
|
|
2611
|
+
0,
|
|
2612
|
+
() => DescribeProxyRuleGroupRequest,
|
|
2613
|
+
() => DescribeProxyRuleGroupResponse,
|
|
2614
|
+
];
|
|
2069
2615
|
var DescribeResourcePolicy = [
|
|
2070
2616
|
9,
|
|
2071
2617
|
n0,
|
|
@@ -2114,6 +2660,14 @@ var DescribeVpcEndpointAssociation = [
|
|
|
2114
2660
|
() => DescribeVpcEndpointAssociationRequest,
|
|
2115
2661
|
() => DescribeVpcEndpointAssociationResponse,
|
|
2116
2662
|
];
|
|
2663
|
+
var DetachRuleGroupsFromProxyConfiguration = [
|
|
2664
|
+
9,
|
|
2665
|
+
n0,
|
|
2666
|
+
_DRGFPC,
|
|
2667
|
+
0,
|
|
2668
|
+
() => DetachRuleGroupsFromProxyConfigurationRequest,
|
|
2669
|
+
() => DetachRuleGroupsFromProxyConfigurationResponse,
|
|
2670
|
+
];
|
|
2117
2671
|
var DisassociateAvailabilityZones = [
|
|
2118
2672
|
9,
|
|
2119
2673
|
n0,
|
|
@@ -2178,6 +2732,23 @@ var ListFlowOperations = [
|
|
|
2178
2732
|
() => ListFlowOperationsRequest,
|
|
2179
2733
|
() => ListFlowOperationsResponse,
|
|
2180
2734
|
];
|
|
2735
|
+
var ListProxies = [9, n0, _LPis, 0, () => ListProxiesRequest, () => ListProxiesResponse];
|
|
2736
|
+
var ListProxyConfigurations = [
|
|
2737
|
+
9,
|
|
2738
|
+
n0,
|
|
2739
|
+
_LPC,
|
|
2740
|
+
0,
|
|
2741
|
+
() => ListProxyConfigurationsRequest,
|
|
2742
|
+
() => ListProxyConfigurationsResponse,
|
|
2743
|
+
];
|
|
2744
|
+
var ListProxyRuleGroups = [
|
|
2745
|
+
9,
|
|
2746
|
+
n0,
|
|
2747
|
+
_LPRG,
|
|
2748
|
+
0,
|
|
2749
|
+
() => ListProxyRuleGroupsRequest,
|
|
2750
|
+
() => ListProxyRuleGroupsResponse,
|
|
2751
|
+
];
|
|
2181
2752
|
var ListRuleGroups = [
|
|
2182
2753
|
9,
|
|
2183
2754
|
n0,
|
|
@@ -2213,7 +2784,7 @@ var ListVpcEndpointAssociations = [
|
|
|
2213
2784
|
var PutResourcePolicy = [
|
|
2214
2785
|
9,
|
|
2215
2786
|
n0,
|
|
2216
|
-
|
|
2787
|
+
_PRPu,
|
|
2217
2788
|
0,
|
|
2218
2789
|
() => PutResourcePolicyRequest,
|
|
2219
2790
|
() => PutResourcePolicyResponse,
|
|
@@ -2323,6 +2894,39 @@ var UpdateLoggingConfiguration = [
|
|
|
2323
2894
|
() => UpdateLoggingConfigurationRequest,
|
|
2324
2895
|
() => UpdateLoggingConfigurationResponse,
|
|
2325
2896
|
];
|
|
2897
|
+
var UpdateProxy = [9, n0, _UP, 0, () => UpdateProxyRequest, () => UpdateProxyResponse];
|
|
2898
|
+
var UpdateProxyConfiguration = [
|
|
2899
|
+
9,
|
|
2900
|
+
n0,
|
|
2901
|
+
_UPC,
|
|
2902
|
+
0,
|
|
2903
|
+
() => UpdateProxyConfigurationRequest,
|
|
2904
|
+
() => UpdateProxyConfigurationResponse,
|
|
2905
|
+
];
|
|
2906
|
+
var UpdateProxyRule = [
|
|
2907
|
+
9,
|
|
2908
|
+
n0,
|
|
2909
|
+
_UPRpd,
|
|
2910
|
+
0,
|
|
2911
|
+
() => UpdateProxyRuleRequest,
|
|
2912
|
+
() => UpdateProxyRuleResponse,
|
|
2913
|
+
];
|
|
2914
|
+
var UpdateProxyRuleGroupPriorities = [
|
|
2915
|
+
9,
|
|
2916
|
+
n0,
|
|
2917
|
+
_UPRGP,
|
|
2918
|
+
0,
|
|
2919
|
+
() => UpdateProxyRuleGroupPrioritiesRequest,
|
|
2920
|
+
() => UpdateProxyRuleGroupPrioritiesResponse,
|
|
2921
|
+
];
|
|
2922
|
+
var UpdateProxyRulePriorities = [
|
|
2923
|
+
9,
|
|
2924
|
+
n0,
|
|
2925
|
+
_UPRP,
|
|
2926
|
+
0,
|
|
2927
|
+
() => UpdateProxyRulePrioritiesRequest,
|
|
2928
|
+
() => UpdateProxyRulePrioritiesResponse,
|
|
2929
|
+
];
|
|
2326
2930
|
var UpdateRuleGroup = [
|
|
2327
2931
|
9,
|
|
2328
2932
|
n0,
|
|
@@ -2396,6 +3000,18 @@ class AssociateSubnetsCommand extends smithyClient.Command
|
|
|
2396
3000
|
.build() {
|
|
2397
3001
|
}
|
|
2398
3002
|
|
|
3003
|
+
class AttachRuleGroupsToProxyConfigurationCommand extends smithyClient.Command
|
|
3004
|
+
.classBuilder()
|
|
3005
|
+
.ep(commonParams)
|
|
3006
|
+
.m(function (Command, cs, config, o) {
|
|
3007
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3008
|
+
})
|
|
3009
|
+
.s("NetworkFirewall_20201112", "AttachRuleGroupsToProxyConfiguration", {})
|
|
3010
|
+
.n("NetworkFirewallClient", "AttachRuleGroupsToProxyConfigurationCommand")
|
|
3011
|
+
.sc(AttachRuleGroupsToProxyConfiguration)
|
|
3012
|
+
.build() {
|
|
3013
|
+
}
|
|
3014
|
+
|
|
2399
3015
|
class CreateFirewallCommand extends smithyClient.Command
|
|
2400
3016
|
.classBuilder()
|
|
2401
3017
|
.ep(commonParams)
|
|
@@ -2420,6 +3036,54 @@ class CreateFirewallPolicyCommand extends smithyClient.Command
|
|
|
2420
3036
|
.build() {
|
|
2421
3037
|
}
|
|
2422
3038
|
|
|
3039
|
+
class CreateProxyCommand extends smithyClient.Command
|
|
3040
|
+
.classBuilder()
|
|
3041
|
+
.ep(commonParams)
|
|
3042
|
+
.m(function (Command, cs, config, o) {
|
|
3043
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3044
|
+
})
|
|
3045
|
+
.s("NetworkFirewall_20201112", "CreateProxy", {})
|
|
3046
|
+
.n("NetworkFirewallClient", "CreateProxyCommand")
|
|
3047
|
+
.sc(CreateProxy)
|
|
3048
|
+
.build() {
|
|
3049
|
+
}
|
|
3050
|
+
|
|
3051
|
+
class CreateProxyConfigurationCommand extends smithyClient.Command
|
|
3052
|
+
.classBuilder()
|
|
3053
|
+
.ep(commonParams)
|
|
3054
|
+
.m(function (Command, cs, config, o) {
|
|
3055
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3056
|
+
})
|
|
3057
|
+
.s("NetworkFirewall_20201112", "CreateProxyConfiguration", {})
|
|
3058
|
+
.n("NetworkFirewallClient", "CreateProxyConfigurationCommand")
|
|
3059
|
+
.sc(CreateProxyConfiguration)
|
|
3060
|
+
.build() {
|
|
3061
|
+
}
|
|
3062
|
+
|
|
3063
|
+
class CreateProxyRuleGroupCommand extends smithyClient.Command
|
|
3064
|
+
.classBuilder()
|
|
3065
|
+
.ep(commonParams)
|
|
3066
|
+
.m(function (Command, cs, config, o) {
|
|
3067
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3068
|
+
})
|
|
3069
|
+
.s("NetworkFirewall_20201112", "CreateProxyRuleGroup", {})
|
|
3070
|
+
.n("NetworkFirewallClient", "CreateProxyRuleGroupCommand")
|
|
3071
|
+
.sc(CreateProxyRuleGroup)
|
|
3072
|
+
.build() {
|
|
3073
|
+
}
|
|
3074
|
+
|
|
3075
|
+
class CreateProxyRulesCommand extends smithyClient.Command
|
|
3076
|
+
.classBuilder()
|
|
3077
|
+
.ep(commonParams)
|
|
3078
|
+
.m(function (Command, cs, config, o) {
|
|
3079
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3080
|
+
})
|
|
3081
|
+
.s("NetworkFirewall_20201112", "CreateProxyRules", {})
|
|
3082
|
+
.n("NetworkFirewallClient", "CreateProxyRulesCommand")
|
|
3083
|
+
.sc(CreateProxyRules)
|
|
3084
|
+
.build() {
|
|
3085
|
+
}
|
|
3086
|
+
|
|
2423
3087
|
class CreateRuleGroupCommand extends smithyClient.Command
|
|
2424
3088
|
.classBuilder()
|
|
2425
3089
|
.ep(commonParams)
|
|
@@ -2492,6 +3156,54 @@ class DeleteNetworkFirewallTransitGatewayAttachmentCommand extends smithyClient.
|
|
|
2492
3156
|
.build() {
|
|
2493
3157
|
}
|
|
2494
3158
|
|
|
3159
|
+
class DeleteProxyCommand extends smithyClient.Command
|
|
3160
|
+
.classBuilder()
|
|
3161
|
+
.ep(commonParams)
|
|
3162
|
+
.m(function (Command, cs, config, o) {
|
|
3163
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3164
|
+
})
|
|
3165
|
+
.s("NetworkFirewall_20201112", "DeleteProxy", {})
|
|
3166
|
+
.n("NetworkFirewallClient", "DeleteProxyCommand")
|
|
3167
|
+
.sc(DeleteProxy)
|
|
3168
|
+
.build() {
|
|
3169
|
+
}
|
|
3170
|
+
|
|
3171
|
+
class DeleteProxyConfigurationCommand extends smithyClient.Command
|
|
3172
|
+
.classBuilder()
|
|
3173
|
+
.ep(commonParams)
|
|
3174
|
+
.m(function (Command, cs, config, o) {
|
|
3175
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3176
|
+
})
|
|
3177
|
+
.s("NetworkFirewall_20201112", "DeleteProxyConfiguration", {})
|
|
3178
|
+
.n("NetworkFirewallClient", "DeleteProxyConfigurationCommand")
|
|
3179
|
+
.sc(DeleteProxyConfiguration)
|
|
3180
|
+
.build() {
|
|
3181
|
+
}
|
|
3182
|
+
|
|
3183
|
+
class DeleteProxyRuleGroupCommand extends smithyClient.Command
|
|
3184
|
+
.classBuilder()
|
|
3185
|
+
.ep(commonParams)
|
|
3186
|
+
.m(function (Command, cs, config, o) {
|
|
3187
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3188
|
+
})
|
|
3189
|
+
.s("NetworkFirewall_20201112", "DeleteProxyRuleGroup", {})
|
|
3190
|
+
.n("NetworkFirewallClient", "DeleteProxyRuleGroupCommand")
|
|
3191
|
+
.sc(DeleteProxyRuleGroup)
|
|
3192
|
+
.build() {
|
|
3193
|
+
}
|
|
3194
|
+
|
|
3195
|
+
class DeleteProxyRulesCommand extends smithyClient.Command
|
|
3196
|
+
.classBuilder()
|
|
3197
|
+
.ep(commonParams)
|
|
3198
|
+
.m(function (Command, cs, config, o) {
|
|
3199
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3200
|
+
})
|
|
3201
|
+
.s("NetworkFirewall_20201112", "DeleteProxyRules", {})
|
|
3202
|
+
.n("NetworkFirewallClient", "DeleteProxyRulesCommand")
|
|
3203
|
+
.sc(DeleteProxyRules)
|
|
3204
|
+
.build() {
|
|
3205
|
+
}
|
|
3206
|
+
|
|
2495
3207
|
class DeleteResourcePolicyCommand extends smithyClient.Command
|
|
2496
3208
|
.classBuilder()
|
|
2497
3209
|
.ep(commonParams)
|
|
@@ -2600,6 +3312,54 @@ class DescribeLoggingConfigurationCommand extends smithyClient.Command
|
|
|
2600
3312
|
.build() {
|
|
2601
3313
|
}
|
|
2602
3314
|
|
|
3315
|
+
class DescribeProxyCommand extends smithyClient.Command
|
|
3316
|
+
.classBuilder()
|
|
3317
|
+
.ep(commonParams)
|
|
3318
|
+
.m(function (Command, cs, config, o) {
|
|
3319
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3320
|
+
})
|
|
3321
|
+
.s("NetworkFirewall_20201112", "DescribeProxy", {})
|
|
3322
|
+
.n("NetworkFirewallClient", "DescribeProxyCommand")
|
|
3323
|
+
.sc(DescribeProxy)
|
|
3324
|
+
.build() {
|
|
3325
|
+
}
|
|
3326
|
+
|
|
3327
|
+
class DescribeProxyConfigurationCommand extends smithyClient.Command
|
|
3328
|
+
.classBuilder()
|
|
3329
|
+
.ep(commonParams)
|
|
3330
|
+
.m(function (Command, cs, config, o) {
|
|
3331
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3332
|
+
})
|
|
3333
|
+
.s("NetworkFirewall_20201112", "DescribeProxyConfiguration", {})
|
|
3334
|
+
.n("NetworkFirewallClient", "DescribeProxyConfigurationCommand")
|
|
3335
|
+
.sc(DescribeProxyConfiguration)
|
|
3336
|
+
.build() {
|
|
3337
|
+
}
|
|
3338
|
+
|
|
3339
|
+
class DescribeProxyRuleCommand extends smithyClient.Command
|
|
3340
|
+
.classBuilder()
|
|
3341
|
+
.ep(commonParams)
|
|
3342
|
+
.m(function (Command, cs, config, o) {
|
|
3343
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3344
|
+
})
|
|
3345
|
+
.s("NetworkFirewall_20201112", "DescribeProxyRule", {})
|
|
3346
|
+
.n("NetworkFirewallClient", "DescribeProxyRuleCommand")
|
|
3347
|
+
.sc(DescribeProxyRule)
|
|
3348
|
+
.build() {
|
|
3349
|
+
}
|
|
3350
|
+
|
|
3351
|
+
class DescribeProxyRuleGroupCommand extends smithyClient.Command
|
|
3352
|
+
.classBuilder()
|
|
3353
|
+
.ep(commonParams)
|
|
3354
|
+
.m(function (Command, cs, config, o) {
|
|
3355
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3356
|
+
})
|
|
3357
|
+
.s("NetworkFirewall_20201112", "DescribeProxyRuleGroup", {})
|
|
3358
|
+
.n("NetworkFirewallClient", "DescribeProxyRuleGroupCommand")
|
|
3359
|
+
.sc(DescribeProxyRuleGroup)
|
|
3360
|
+
.build() {
|
|
3361
|
+
}
|
|
3362
|
+
|
|
2603
3363
|
class DescribeResourcePolicyCommand extends smithyClient.Command
|
|
2604
3364
|
.classBuilder()
|
|
2605
3365
|
.ep(commonParams)
|
|
@@ -2672,6 +3432,18 @@ class DescribeVpcEndpointAssociationCommand extends smithyClient.Command
|
|
|
2672
3432
|
.build() {
|
|
2673
3433
|
}
|
|
2674
3434
|
|
|
3435
|
+
class DetachRuleGroupsFromProxyConfigurationCommand extends smithyClient.Command
|
|
3436
|
+
.classBuilder()
|
|
3437
|
+
.ep(commonParams)
|
|
3438
|
+
.m(function (Command, cs, config, o) {
|
|
3439
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3440
|
+
})
|
|
3441
|
+
.s("NetworkFirewall_20201112", "DetachRuleGroupsFromProxyConfiguration", {})
|
|
3442
|
+
.n("NetworkFirewallClient", "DetachRuleGroupsFromProxyConfigurationCommand")
|
|
3443
|
+
.sc(DetachRuleGroupsFromProxyConfiguration)
|
|
3444
|
+
.build() {
|
|
3445
|
+
}
|
|
3446
|
+
|
|
2675
3447
|
class DisassociateAvailabilityZonesCommand extends smithyClient.Command
|
|
2676
3448
|
.classBuilder()
|
|
2677
3449
|
.ep(commonParams)
|
|
@@ -2768,6 +3540,42 @@ class ListFlowOperationsCommand extends smithyClient.Command
|
|
|
2768
3540
|
.build() {
|
|
2769
3541
|
}
|
|
2770
3542
|
|
|
3543
|
+
class ListProxiesCommand extends smithyClient.Command
|
|
3544
|
+
.classBuilder()
|
|
3545
|
+
.ep(commonParams)
|
|
3546
|
+
.m(function (Command, cs, config, o) {
|
|
3547
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3548
|
+
})
|
|
3549
|
+
.s("NetworkFirewall_20201112", "ListProxies", {})
|
|
3550
|
+
.n("NetworkFirewallClient", "ListProxiesCommand")
|
|
3551
|
+
.sc(ListProxies)
|
|
3552
|
+
.build() {
|
|
3553
|
+
}
|
|
3554
|
+
|
|
3555
|
+
class ListProxyConfigurationsCommand extends smithyClient.Command
|
|
3556
|
+
.classBuilder()
|
|
3557
|
+
.ep(commonParams)
|
|
3558
|
+
.m(function (Command, cs, config, o) {
|
|
3559
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3560
|
+
})
|
|
3561
|
+
.s("NetworkFirewall_20201112", "ListProxyConfigurations", {})
|
|
3562
|
+
.n("NetworkFirewallClient", "ListProxyConfigurationsCommand")
|
|
3563
|
+
.sc(ListProxyConfigurations)
|
|
3564
|
+
.build() {
|
|
3565
|
+
}
|
|
3566
|
+
|
|
3567
|
+
class ListProxyRuleGroupsCommand extends smithyClient.Command
|
|
3568
|
+
.classBuilder()
|
|
3569
|
+
.ep(commonParams)
|
|
3570
|
+
.m(function (Command, cs, config, o) {
|
|
3571
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3572
|
+
})
|
|
3573
|
+
.s("NetworkFirewall_20201112", "ListProxyRuleGroups", {})
|
|
3574
|
+
.n("NetworkFirewallClient", "ListProxyRuleGroupsCommand")
|
|
3575
|
+
.sc(ListProxyRuleGroups)
|
|
3576
|
+
.build() {
|
|
3577
|
+
}
|
|
3578
|
+
|
|
2771
3579
|
class ListRuleGroupsCommand extends smithyClient.Command
|
|
2772
3580
|
.classBuilder()
|
|
2773
3581
|
.ep(commonParams)
|
|
@@ -2996,6 +3804,66 @@ class UpdateLoggingConfigurationCommand extends smithyClient.Command
|
|
|
2996
3804
|
.build() {
|
|
2997
3805
|
}
|
|
2998
3806
|
|
|
3807
|
+
class UpdateProxyCommand extends smithyClient.Command
|
|
3808
|
+
.classBuilder()
|
|
3809
|
+
.ep(commonParams)
|
|
3810
|
+
.m(function (Command, cs, config, o) {
|
|
3811
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3812
|
+
})
|
|
3813
|
+
.s("NetworkFirewall_20201112", "UpdateProxy", {})
|
|
3814
|
+
.n("NetworkFirewallClient", "UpdateProxyCommand")
|
|
3815
|
+
.sc(UpdateProxy)
|
|
3816
|
+
.build() {
|
|
3817
|
+
}
|
|
3818
|
+
|
|
3819
|
+
class UpdateProxyConfigurationCommand extends smithyClient.Command
|
|
3820
|
+
.classBuilder()
|
|
3821
|
+
.ep(commonParams)
|
|
3822
|
+
.m(function (Command, cs, config, o) {
|
|
3823
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3824
|
+
})
|
|
3825
|
+
.s("NetworkFirewall_20201112", "UpdateProxyConfiguration", {})
|
|
3826
|
+
.n("NetworkFirewallClient", "UpdateProxyConfigurationCommand")
|
|
3827
|
+
.sc(UpdateProxyConfiguration)
|
|
3828
|
+
.build() {
|
|
3829
|
+
}
|
|
3830
|
+
|
|
3831
|
+
class UpdateProxyRuleCommand extends smithyClient.Command
|
|
3832
|
+
.classBuilder()
|
|
3833
|
+
.ep(commonParams)
|
|
3834
|
+
.m(function (Command, cs, config, o) {
|
|
3835
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3836
|
+
})
|
|
3837
|
+
.s("NetworkFirewall_20201112", "UpdateProxyRule", {})
|
|
3838
|
+
.n("NetworkFirewallClient", "UpdateProxyRuleCommand")
|
|
3839
|
+
.sc(UpdateProxyRule)
|
|
3840
|
+
.build() {
|
|
3841
|
+
}
|
|
3842
|
+
|
|
3843
|
+
class UpdateProxyRuleGroupPrioritiesCommand extends smithyClient.Command
|
|
3844
|
+
.classBuilder()
|
|
3845
|
+
.ep(commonParams)
|
|
3846
|
+
.m(function (Command, cs, config, o) {
|
|
3847
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3848
|
+
})
|
|
3849
|
+
.s("NetworkFirewall_20201112", "UpdateProxyRuleGroupPriorities", {})
|
|
3850
|
+
.n("NetworkFirewallClient", "UpdateProxyRuleGroupPrioritiesCommand")
|
|
3851
|
+
.sc(UpdateProxyRuleGroupPriorities)
|
|
3852
|
+
.build() {
|
|
3853
|
+
}
|
|
3854
|
+
|
|
3855
|
+
class UpdateProxyRulePrioritiesCommand extends smithyClient.Command
|
|
3856
|
+
.classBuilder()
|
|
3857
|
+
.ep(commonParams)
|
|
3858
|
+
.m(function (Command, cs, config, o) {
|
|
3859
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3860
|
+
})
|
|
3861
|
+
.s("NetworkFirewall_20201112", "UpdateProxyRulePriorities", {})
|
|
3862
|
+
.n("NetworkFirewallClient", "UpdateProxyRulePrioritiesCommand")
|
|
3863
|
+
.sc(UpdateProxyRulePriorities)
|
|
3864
|
+
.build() {
|
|
3865
|
+
}
|
|
3866
|
+
|
|
2999
3867
|
class UpdateRuleGroupCommand extends smithyClient.Command
|
|
3000
3868
|
.classBuilder()
|
|
3001
3869
|
.ep(commonParams)
|
|
@@ -3037,14 +3905,23 @@ const commands = {
|
|
|
3037
3905
|
AssociateAvailabilityZonesCommand,
|
|
3038
3906
|
AssociateFirewallPolicyCommand,
|
|
3039
3907
|
AssociateSubnetsCommand,
|
|
3908
|
+
AttachRuleGroupsToProxyConfigurationCommand,
|
|
3040
3909
|
CreateFirewallCommand,
|
|
3041
3910
|
CreateFirewallPolicyCommand,
|
|
3911
|
+
CreateProxyCommand,
|
|
3912
|
+
CreateProxyConfigurationCommand,
|
|
3913
|
+
CreateProxyRuleGroupCommand,
|
|
3914
|
+
CreateProxyRulesCommand,
|
|
3042
3915
|
CreateRuleGroupCommand,
|
|
3043
3916
|
CreateTLSInspectionConfigurationCommand,
|
|
3044
3917
|
CreateVpcEndpointAssociationCommand,
|
|
3045
3918
|
DeleteFirewallCommand,
|
|
3046
3919
|
DeleteFirewallPolicyCommand,
|
|
3047
3920
|
DeleteNetworkFirewallTransitGatewayAttachmentCommand,
|
|
3921
|
+
DeleteProxyCommand,
|
|
3922
|
+
DeleteProxyConfigurationCommand,
|
|
3923
|
+
DeleteProxyRuleGroupCommand,
|
|
3924
|
+
DeleteProxyRulesCommand,
|
|
3048
3925
|
DeleteResourcePolicyCommand,
|
|
3049
3926
|
DeleteRuleGroupCommand,
|
|
3050
3927
|
DeleteTLSInspectionConfigurationCommand,
|
|
@@ -3054,12 +3931,17 @@ const commands = {
|
|
|
3054
3931
|
DescribeFirewallPolicyCommand,
|
|
3055
3932
|
DescribeFlowOperationCommand,
|
|
3056
3933
|
DescribeLoggingConfigurationCommand,
|
|
3934
|
+
DescribeProxyCommand,
|
|
3935
|
+
DescribeProxyConfigurationCommand,
|
|
3936
|
+
DescribeProxyRuleCommand,
|
|
3937
|
+
DescribeProxyRuleGroupCommand,
|
|
3057
3938
|
DescribeResourcePolicyCommand,
|
|
3058
3939
|
DescribeRuleGroupCommand,
|
|
3059
3940
|
DescribeRuleGroupMetadataCommand,
|
|
3060
3941
|
DescribeRuleGroupSummaryCommand,
|
|
3061
3942
|
DescribeTLSInspectionConfigurationCommand,
|
|
3062
3943
|
DescribeVpcEndpointAssociationCommand,
|
|
3944
|
+
DetachRuleGroupsFromProxyConfigurationCommand,
|
|
3063
3945
|
DisassociateAvailabilityZonesCommand,
|
|
3064
3946
|
DisassociateSubnetsCommand,
|
|
3065
3947
|
GetAnalysisReportResultsCommand,
|
|
@@ -3068,6 +3950,9 @@ const commands = {
|
|
|
3068
3950
|
ListFirewallsCommand,
|
|
3069
3951
|
ListFlowOperationResultsCommand,
|
|
3070
3952
|
ListFlowOperationsCommand,
|
|
3953
|
+
ListProxiesCommand,
|
|
3954
|
+
ListProxyConfigurationsCommand,
|
|
3955
|
+
ListProxyRuleGroupsCommand,
|
|
3071
3956
|
ListRuleGroupsCommand,
|
|
3072
3957
|
ListTagsForResourceCommand,
|
|
3073
3958
|
ListTLSInspectionConfigurationsCommand,
|
|
@@ -3087,6 +3972,11 @@ const commands = {
|
|
|
3087
3972
|
UpdateFirewallPolicyCommand,
|
|
3088
3973
|
UpdateFirewallPolicyChangeProtectionCommand,
|
|
3089
3974
|
UpdateLoggingConfigurationCommand,
|
|
3975
|
+
UpdateProxyCommand,
|
|
3976
|
+
UpdateProxyConfigurationCommand,
|
|
3977
|
+
UpdateProxyRuleCommand,
|
|
3978
|
+
UpdateProxyRuleGroupPrioritiesCommand,
|
|
3979
|
+
UpdateProxyRulePrioritiesCommand,
|
|
3090
3980
|
UpdateRuleGroupCommand,
|
|
3091
3981
|
UpdateSubnetChangeProtectionCommand,
|
|
3092
3982
|
UpdateTLSInspectionConfigurationCommand,
|
|
@@ -3107,6 +3997,12 @@ const paginateListFlowOperationResults = core.createPaginator(NetworkFirewallCli
|
|
|
3107
3997
|
|
|
3108
3998
|
const paginateListFlowOperations = core.createPaginator(NetworkFirewallClient, ListFlowOperationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3109
3999
|
|
|
4000
|
+
const paginateListProxies = core.createPaginator(NetworkFirewallClient, ListProxiesCommand, "NextToken", "NextToken", "MaxResults");
|
|
4001
|
+
|
|
4002
|
+
const paginateListProxyConfigurations = core.createPaginator(NetworkFirewallClient, ListProxyConfigurationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4003
|
+
|
|
4004
|
+
const paginateListProxyRuleGroups = core.createPaginator(NetworkFirewallClient, ListProxyRuleGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4005
|
+
|
|
3110
4006
|
const paginateListRuleGroups = core.createPaginator(NetworkFirewallClient, ListRuleGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3111
4007
|
|
|
3112
4008
|
const paginateListTLSInspectionConfigurations = core.createPaginator(NetworkFirewallClient, ListTLSInspectionConfigurationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -3147,6 +4043,11 @@ const AttachmentStatus = {
|
|
|
3147
4043
|
READY: "READY",
|
|
3148
4044
|
SCALING: "SCALING",
|
|
3149
4045
|
};
|
|
4046
|
+
const ProxyRulePhaseAction = {
|
|
4047
|
+
ALERT: "ALERT",
|
|
4048
|
+
ALLOW: "ALLOW",
|
|
4049
|
+
DENY: "DENY",
|
|
4050
|
+
};
|
|
3150
4051
|
const RevocationCheckAction = {
|
|
3151
4052
|
DROP: "DROP",
|
|
3152
4053
|
PASS: "PASS",
|
|
@@ -3190,6 +4091,27 @@ const ResourceStatus = {
|
|
|
3190
4091
|
DELETING: "DELETING",
|
|
3191
4092
|
ERROR: "ERROR",
|
|
3192
4093
|
};
|
|
4094
|
+
const ListenerPropertyType = {
|
|
4095
|
+
HTTP: "HTTP",
|
|
4096
|
+
HTTPS: "HTTPS",
|
|
4097
|
+
};
|
|
4098
|
+
const TlsInterceptMode = {
|
|
4099
|
+
DISABLED: "DISABLED",
|
|
4100
|
+
ENABLED: "ENABLED",
|
|
4101
|
+
};
|
|
4102
|
+
const ProxyModifyState = {
|
|
4103
|
+
COMPLETED: "COMPLETED",
|
|
4104
|
+
FAILED: "FAILED",
|
|
4105
|
+
MODIFYING: "MODIFYING",
|
|
4106
|
+
};
|
|
4107
|
+
const ProxyState = {
|
|
4108
|
+
ATTACHED: "ATTACHED",
|
|
4109
|
+
ATTACHING: "ATTACHING",
|
|
4110
|
+
ATTACH_FAILED: "ATTACH_FAILED",
|
|
4111
|
+
DETACHED: "DETACHED",
|
|
4112
|
+
DETACHING: "DETACHING",
|
|
4113
|
+
DETACH_FAILED: "DETACH_FAILED",
|
|
4114
|
+
};
|
|
3193
4115
|
const GeneratedRulesType = {
|
|
3194
4116
|
ALERTLIST: "ALERTLIST",
|
|
3195
4117
|
ALLOWLIST: "ALLOWLIST",
|
|
@@ -3286,6 +4208,11 @@ const SubscriptionStatus = {
|
|
|
3286
4208
|
NOT_SUBSCRIBED: "NOT_SUBSCRIBED",
|
|
3287
4209
|
SUBSCRIBED: "SUBSCRIBED",
|
|
3288
4210
|
};
|
|
4211
|
+
const RuleGroupRequestPhase = {
|
|
4212
|
+
POST_RES: "POST_RES",
|
|
4213
|
+
PRE_DNS: "PRE_DNS",
|
|
4214
|
+
PRE_REQ: "PRE_REQ",
|
|
4215
|
+
};
|
|
3289
4216
|
|
|
3290
4217
|
Object.defineProperty(exports, "$Command", {
|
|
3291
4218
|
enumerable: true,
|
|
@@ -3299,16 +4226,25 @@ exports.AcceptNetworkFirewallTransitGatewayAttachmentCommand = AcceptNetworkFire
|
|
|
3299
4226
|
exports.AssociateAvailabilityZonesCommand = AssociateAvailabilityZonesCommand;
|
|
3300
4227
|
exports.AssociateFirewallPolicyCommand = AssociateFirewallPolicyCommand;
|
|
3301
4228
|
exports.AssociateSubnetsCommand = AssociateSubnetsCommand;
|
|
4229
|
+
exports.AttachRuleGroupsToProxyConfigurationCommand = AttachRuleGroupsToProxyConfigurationCommand;
|
|
3302
4230
|
exports.AttachmentStatus = AttachmentStatus;
|
|
3303
4231
|
exports.ConfigurationSyncState = ConfigurationSyncState;
|
|
3304
4232
|
exports.CreateFirewallCommand = CreateFirewallCommand;
|
|
3305
4233
|
exports.CreateFirewallPolicyCommand = CreateFirewallPolicyCommand;
|
|
4234
|
+
exports.CreateProxyCommand = CreateProxyCommand;
|
|
4235
|
+
exports.CreateProxyConfigurationCommand = CreateProxyConfigurationCommand;
|
|
4236
|
+
exports.CreateProxyRuleGroupCommand = CreateProxyRuleGroupCommand;
|
|
4237
|
+
exports.CreateProxyRulesCommand = CreateProxyRulesCommand;
|
|
3306
4238
|
exports.CreateRuleGroupCommand = CreateRuleGroupCommand;
|
|
3307
4239
|
exports.CreateTLSInspectionConfigurationCommand = CreateTLSInspectionConfigurationCommand;
|
|
3308
4240
|
exports.CreateVpcEndpointAssociationCommand = CreateVpcEndpointAssociationCommand;
|
|
3309
4241
|
exports.DeleteFirewallCommand = DeleteFirewallCommand;
|
|
3310
4242
|
exports.DeleteFirewallPolicyCommand = DeleteFirewallPolicyCommand;
|
|
3311
4243
|
exports.DeleteNetworkFirewallTransitGatewayAttachmentCommand = DeleteNetworkFirewallTransitGatewayAttachmentCommand;
|
|
4244
|
+
exports.DeleteProxyCommand = DeleteProxyCommand;
|
|
4245
|
+
exports.DeleteProxyConfigurationCommand = DeleteProxyConfigurationCommand;
|
|
4246
|
+
exports.DeleteProxyRuleGroupCommand = DeleteProxyRuleGroupCommand;
|
|
4247
|
+
exports.DeleteProxyRulesCommand = DeleteProxyRulesCommand;
|
|
3312
4248
|
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
3313
4249
|
exports.DeleteRuleGroupCommand = DeleteRuleGroupCommand;
|
|
3314
4250
|
exports.DeleteTLSInspectionConfigurationCommand = DeleteTLSInspectionConfigurationCommand;
|
|
@@ -3318,12 +4254,17 @@ exports.DescribeFirewallMetadataCommand = DescribeFirewallMetadataCommand;
|
|
|
3318
4254
|
exports.DescribeFirewallPolicyCommand = DescribeFirewallPolicyCommand;
|
|
3319
4255
|
exports.DescribeFlowOperationCommand = DescribeFlowOperationCommand;
|
|
3320
4256
|
exports.DescribeLoggingConfigurationCommand = DescribeLoggingConfigurationCommand;
|
|
4257
|
+
exports.DescribeProxyCommand = DescribeProxyCommand;
|
|
4258
|
+
exports.DescribeProxyConfigurationCommand = DescribeProxyConfigurationCommand;
|
|
4259
|
+
exports.DescribeProxyRuleCommand = DescribeProxyRuleCommand;
|
|
4260
|
+
exports.DescribeProxyRuleGroupCommand = DescribeProxyRuleGroupCommand;
|
|
3321
4261
|
exports.DescribeResourcePolicyCommand = DescribeResourcePolicyCommand;
|
|
3322
4262
|
exports.DescribeRuleGroupCommand = DescribeRuleGroupCommand;
|
|
3323
4263
|
exports.DescribeRuleGroupMetadataCommand = DescribeRuleGroupMetadataCommand;
|
|
3324
4264
|
exports.DescribeRuleGroupSummaryCommand = DescribeRuleGroupSummaryCommand;
|
|
3325
4265
|
exports.DescribeTLSInspectionConfigurationCommand = DescribeTLSInspectionConfigurationCommand;
|
|
3326
4266
|
exports.DescribeVpcEndpointAssociationCommand = DescribeVpcEndpointAssociationCommand;
|
|
4267
|
+
exports.DetachRuleGroupsFromProxyConfigurationCommand = DetachRuleGroupsFromProxyConfigurationCommand;
|
|
3327
4268
|
exports.DisassociateAvailabilityZonesCommand = DisassociateAvailabilityZonesCommand;
|
|
3328
4269
|
exports.DisassociateSubnetsCommand = DisassociateSubnetsCommand;
|
|
3329
4270
|
exports.EnabledAnalysisType = EnabledAnalysisType;
|
|
@@ -3347,10 +4288,14 @@ exports.ListFirewallPoliciesCommand = ListFirewallPoliciesCommand;
|
|
|
3347
4288
|
exports.ListFirewallsCommand = ListFirewallsCommand;
|
|
3348
4289
|
exports.ListFlowOperationResultsCommand = ListFlowOperationResultsCommand;
|
|
3349
4290
|
exports.ListFlowOperationsCommand = ListFlowOperationsCommand;
|
|
4291
|
+
exports.ListProxiesCommand = ListProxiesCommand;
|
|
4292
|
+
exports.ListProxyConfigurationsCommand = ListProxyConfigurationsCommand;
|
|
4293
|
+
exports.ListProxyRuleGroupsCommand = ListProxyRuleGroupsCommand;
|
|
3350
4294
|
exports.ListRuleGroupsCommand = ListRuleGroupsCommand;
|
|
3351
4295
|
exports.ListTLSInspectionConfigurationsCommand = ListTLSInspectionConfigurationsCommand;
|
|
3352
4296
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3353
4297
|
exports.ListVpcEndpointAssociationsCommand = ListVpcEndpointAssociationsCommand;
|
|
4298
|
+
exports.ListenerPropertyType = ListenerPropertyType;
|
|
3354
4299
|
exports.LogDestinationPermissionException = LogDestinationPermissionException$1;
|
|
3355
4300
|
exports.LogDestinationType = LogDestinationType;
|
|
3356
4301
|
exports.LogType = LogType;
|
|
@@ -3359,6 +4304,9 @@ exports.NetworkFirewallClient = NetworkFirewallClient;
|
|
|
3359
4304
|
exports.NetworkFirewallServiceException = NetworkFirewallServiceException$1;
|
|
3360
4305
|
exports.OverrideAction = OverrideAction;
|
|
3361
4306
|
exports.PerObjectSyncStatus = PerObjectSyncStatus;
|
|
4307
|
+
exports.ProxyModifyState = ProxyModifyState;
|
|
4308
|
+
exports.ProxyRulePhaseAction = ProxyRulePhaseAction;
|
|
4309
|
+
exports.ProxyState = ProxyState;
|
|
3362
4310
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
3363
4311
|
exports.RejectNetworkFirewallTransitGatewayAttachmentCommand = RejectNetworkFirewallTransitGatewayAttachmentCommand;
|
|
3364
4312
|
exports.ResourceManagedStatus = ResourceManagedStatus;
|
|
@@ -3367,6 +4315,7 @@ exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
|
3367
4315
|
exports.ResourceOwnerCheckException = ResourceOwnerCheckException$1;
|
|
3368
4316
|
exports.ResourceStatus = ResourceStatus;
|
|
3369
4317
|
exports.RevocationCheckAction = RevocationCheckAction;
|
|
4318
|
+
exports.RuleGroupRequestPhase = RuleGroupRequestPhase;
|
|
3370
4319
|
exports.RuleGroupType = RuleGroupType;
|
|
3371
4320
|
exports.RuleOrder = RuleOrder;
|
|
3372
4321
|
exports.StartAnalysisReportCommand = StartAnalysisReportCommand;
|
|
@@ -3382,6 +4331,7 @@ exports.TCPFlag = TCPFlag;
|
|
|
3382
4331
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3383
4332
|
exports.TargetType = TargetType;
|
|
3384
4333
|
exports.ThrottlingException = ThrottlingException$1;
|
|
4334
|
+
exports.TlsInterceptMode = TlsInterceptMode;
|
|
3385
4335
|
exports.TransitGatewayAttachmentStatus = TransitGatewayAttachmentStatus;
|
|
3386
4336
|
exports.UnsupportedOperationException = UnsupportedOperationException$1;
|
|
3387
4337
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
@@ -3393,6 +4343,11 @@ exports.UpdateFirewallEncryptionConfigurationCommand = UpdateFirewallEncryptionC
|
|
|
3393
4343
|
exports.UpdateFirewallPolicyChangeProtectionCommand = UpdateFirewallPolicyChangeProtectionCommand;
|
|
3394
4344
|
exports.UpdateFirewallPolicyCommand = UpdateFirewallPolicyCommand;
|
|
3395
4345
|
exports.UpdateLoggingConfigurationCommand = UpdateLoggingConfigurationCommand;
|
|
4346
|
+
exports.UpdateProxyCommand = UpdateProxyCommand;
|
|
4347
|
+
exports.UpdateProxyConfigurationCommand = UpdateProxyConfigurationCommand;
|
|
4348
|
+
exports.UpdateProxyRuleCommand = UpdateProxyRuleCommand;
|
|
4349
|
+
exports.UpdateProxyRuleGroupPrioritiesCommand = UpdateProxyRuleGroupPrioritiesCommand;
|
|
4350
|
+
exports.UpdateProxyRulePrioritiesCommand = UpdateProxyRulePrioritiesCommand;
|
|
3396
4351
|
exports.UpdateRuleGroupCommand = UpdateRuleGroupCommand;
|
|
3397
4352
|
exports.UpdateSubnetChangeProtectionCommand = UpdateSubnetChangeProtectionCommand;
|
|
3398
4353
|
exports.UpdateTLSInspectionConfigurationCommand = UpdateTLSInspectionConfigurationCommand;
|
|
@@ -3402,6 +4357,9 @@ exports.paginateListFirewallPolicies = paginateListFirewallPolicies;
|
|
|
3402
4357
|
exports.paginateListFirewalls = paginateListFirewalls;
|
|
3403
4358
|
exports.paginateListFlowOperationResults = paginateListFlowOperationResults;
|
|
3404
4359
|
exports.paginateListFlowOperations = paginateListFlowOperations;
|
|
4360
|
+
exports.paginateListProxies = paginateListProxies;
|
|
4361
|
+
exports.paginateListProxyConfigurations = paginateListProxyConfigurations;
|
|
4362
|
+
exports.paginateListProxyRuleGroups = paginateListProxyRuleGroups;
|
|
3405
4363
|
exports.paginateListRuleGroups = paginateListRuleGroups;
|
|
3406
4364
|
exports.paginateListTLSInspectionConfigurations = paginateListTLSInspectionConfigurations;
|
|
3407
4365
|
exports.paginateListTagsForResource = paginateListTagsForResource;
|