@aws-sdk/client-network-firewall 3.817.0 → 3.819.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.
Files changed (47) hide show
  1. package/README.md +50 -2
  2. package/dist-cjs/index.js +198 -3
  3. package/dist-es/NetworkFirewall.js +10 -0
  4. package/dist-es/commands/CreateVpcEndpointAssociationCommand.js +22 -0
  5. package/dist-es/commands/DeleteVpcEndpointAssociationCommand.js +22 -0
  6. package/dist-es/commands/DescribeFirewallMetadataCommand.js +22 -0
  7. package/dist-es/commands/DescribeVpcEndpointAssociationCommand.js +22 -0
  8. package/dist-es/commands/ListVpcEndpointAssociationsCommand.js +22 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/pagination/ListVpcEndpointAssociationsPaginator.js +4 -0
  11. package/dist-es/pagination/index.js +1 -0
  12. package/dist-es/protocols/Aws_json1_0.js +99 -0
  13. package/dist-types/NetworkFirewall.d.ts +50 -5
  14. package/dist-types/NetworkFirewallClient.d.ts +20 -7
  15. package/dist-types/commands/CreateFirewallCommand.d.ts +1 -0
  16. package/dist-types/commands/CreateVpcEndpointAssociationCommand.d.ts +150 -0
  17. package/dist-types/commands/DeleteFirewallCommand.d.ts +1 -0
  18. package/dist-types/commands/DeleteVpcEndpointAssociationCommand.d.ts +137 -0
  19. package/dist-types/commands/DescribeFirewallCommand.d.ts +1 -0
  20. package/dist-types/commands/DescribeFirewallMetadataCommand.d.ts +107 -0
  21. package/dist-types/commands/DescribeFlowOperationCommand.d.ts +4 -0
  22. package/dist-types/commands/DescribeVpcEndpointAssociationCommand.d.ts +127 -0
  23. package/dist-types/commands/ListFlowOperationResultsCommand.d.ts +4 -0
  24. package/dist-types/commands/ListFlowOperationsCommand.d.ts +2 -0
  25. package/dist-types/commands/ListVpcEndpointAssociationsCommand.d.ts +105 -0
  26. package/dist-types/commands/PutResourcePolicyCommand.d.ts +5 -4
  27. package/dist-types/commands/StartFlowCaptureCommand.d.ts +2 -0
  28. package/dist-types/commands/StartFlowFlushCommand.d.ts +2 -0
  29. package/dist-types/commands/index.d.ts +5 -0
  30. package/dist-types/index.d.ts +13 -5
  31. package/dist-types/models/models_0.d.ts +467 -43
  32. package/dist-types/pagination/ListVpcEndpointAssociationsPaginator.d.ts +7 -0
  33. package/dist-types/pagination/index.d.ts +1 -0
  34. package/dist-types/protocols/Aws_json1_0.d.ts +45 -0
  35. package/dist-types/ts3.4/NetworkFirewall.d.ts +87 -0
  36. package/dist-types/ts3.4/NetworkFirewallClient.d.ts +30 -0
  37. package/dist-types/ts3.4/commands/CreateVpcEndpointAssociationCommand.d.ts +51 -0
  38. package/dist-types/ts3.4/commands/DeleteVpcEndpointAssociationCommand.d.ts +51 -0
  39. package/dist-types/ts3.4/commands/DescribeFirewallMetadataCommand.d.ts +51 -0
  40. package/dist-types/ts3.4/commands/DescribeVpcEndpointAssociationCommand.d.ts +51 -0
  41. package/dist-types/ts3.4/commands/ListVpcEndpointAssociationsCommand.d.ts +51 -0
  42. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  43. package/dist-types/ts3.4/models/models_0.d.ts +83 -0
  44. package/dist-types/ts3.4/pagination/ListVpcEndpointAssociationsPaginator.d.ts +11 -0
  45. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  46. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +60 -0
  47. package/package.json +1 -1
@@ -4,12 +4,15 @@ export * from "./CreateFirewallCommand";
4
4
  export * from "./CreateFirewallPolicyCommand";
5
5
  export * from "./CreateRuleGroupCommand";
6
6
  export * from "./CreateTLSInspectionConfigurationCommand";
7
+ export * from "./CreateVpcEndpointAssociationCommand";
7
8
  export * from "./DeleteFirewallCommand";
8
9
  export * from "./DeleteFirewallPolicyCommand";
9
10
  export * from "./DeleteResourcePolicyCommand";
10
11
  export * from "./DeleteRuleGroupCommand";
11
12
  export * from "./DeleteTLSInspectionConfigurationCommand";
13
+ export * from "./DeleteVpcEndpointAssociationCommand";
12
14
  export * from "./DescribeFirewallCommand";
15
+ export * from "./DescribeFirewallMetadataCommand";
13
16
  export * from "./DescribeFirewallPolicyCommand";
14
17
  export * from "./DescribeFlowOperationCommand";
15
18
  export * from "./DescribeLoggingConfigurationCommand";
@@ -17,6 +20,7 @@ export * from "./DescribeResourcePolicyCommand";
17
20
  export * from "./DescribeRuleGroupCommand";
18
21
  export * from "./DescribeRuleGroupMetadataCommand";
19
22
  export * from "./DescribeTLSInspectionConfigurationCommand";
23
+ export * from "./DescribeVpcEndpointAssociationCommand";
20
24
  export * from "./DisassociateSubnetsCommand";
21
25
  export * from "./GetAnalysisReportResultsCommand";
22
26
  export * from "./ListAnalysisReportsCommand";
@@ -27,6 +31,7 @@ export * from "./ListFlowOperationsCommand";
27
31
  export * from "./ListRuleGroupsCommand";
28
32
  export * from "./ListTLSInspectionConfigurationsCommand";
29
33
  export * from "./ListTagsForResourceCommand";
34
+ export * from "./ListVpcEndpointAssociationsCommand";
30
35
  export * from "./PutResourcePolicyCommand";
31
36
  export * from "./StartAnalysisReportCommand";
32
37
  export * from "./StartFlowCaptureCommand";
@@ -155,6 +155,12 @@ export interface Attachment {
155
155
  Status?: AttachmentStatus | undefined;
156
156
  StatusMessage?: string | undefined;
157
157
  }
158
+ export interface AZSyncState {
159
+ Attachment?: Attachment | undefined;
160
+ }
161
+ export interface AvailabilityZoneMetadata {
162
+ IPAddressType?: IPAddressType | undefined;
163
+ }
158
164
  export interface IPSetMetadata {
159
165
  ResolvedCIDRCount?: number | undefined;
160
166
  }
@@ -230,6 +236,7 @@ export interface Firewall {
230
236
  FirewallId: string | undefined;
231
237
  Tags?: Tag[] | undefined;
232
238
  EncryptionConfiguration?: EncryptionConfiguration | undefined;
239
+ NumberOfAssociations?: number | undefined;
233
240
  EnabledAnalysisTypes?: EnabledAnalysisType[] | undefined;
234
241
  }
235
242
  export declare const FirewallStatusValue: {
@@ -591,6 +598,30 @@ export interface CreateTLSInspectionConfigurationResponse {
591
598
  | TLSInspectionConfigurationResponse
592
599
  | undefined;
593
600
  }
601
+ export interface CreateVpcEndpointAssociationRequest {
602
+ FirewallArn: string | undefined;
603
+ VpcId: string | undefined;
604
+ SubnetMapping: SubnetMapping | undefined;
605
+ Description?: string | undefined;
606
+ Tags?: Tag[] | undefined;
607
+ }
608
+ export interface VpcEndpointAssociation {
609
+ VpcEndpointAssociationId?: string | undefined;
610
+ VpcEndpointAssociationArn: string | undefined;
611
+ FirewallArn: string | undefined;
612
+ VpcId: string | undefined;
613
+ SubnetMapping: SubnetMapping | undefined;
614
+ Description?: string | undefined;
615
+ Tags?: Tag[] | undefined;
616
+ }
617
+ export interface VpcEndpointAssociationStatus {
618
+ Status: FirewallStatusValue | undefined;
619
+ AssociationSyncState?: Record<string, AZSyncState> | undefined;
620
+ }
621
+ export interface CreateVpcEndpointAssociationResponse {
622
+ VpcEndpointAssociation?: VpcEndpointAssociation | undefined;
623
+ VpcEndpointAssociationStatus?: VpcEndpointAssociationStatus | undefined;
624
+ }
594
625
  export interface DeleteFirewallRequest {
595
626
  FirewallName?: string | undefined;
596
627
  FirewallArn?: string | undefined;
@@ -643,6 +674,13 @@ export interface DeleteTLSInspectionConfigurationResponse {
643
674
  | TLSInspectionConfigurationResponse
644
675
  | undefined;
645
676
  }
677
+ export interface DeleteVpcEndpointAssociationRequest {
678
+ VpcEndpointAssociationArn: string | undefined;
679
+ }
680
+ export interface DeleteVpcEndpointAssociationResponse {
681
+ VpcEndpointAssociation?: VpcEndpointAssociation | undefined;
682
+ VpcEndpointAssociationStatus?: VpcEndpointAssociationStatus | undefined;
683
+ }
646
684
  export interface DescribeFirewallRequest {
647
685
  FirewallName?: string | undefined;
648
686
  FirewallArn?: string | undefined;
@@ -652,6 +690,18 @@ export interface DescribeFirewallResponse {
652
690
  Firewall?: Firewall | undefined;
653
691
  FirewallStatus?: FirewallStatus | undefined;
654
692
  }
693
+ export interface DescribeFirewallMetadataRequest {
694
+ FirewallArn?: string | undefined;
695
+ }
696
+ export interface DescribeFirewallMetadataResponse {
697
+ FirewallArn?: string | undefined;
698
+ FirewallPolicyArn?: string | undefined;
699
+ Description?: string | undefined;
700
+ Status?: FirewallStatusValue | undefined;
701
+ SupportedAvailabilityZones?:
702
+ | Record<string, AvailabilityZoneMetadata>
703
+ | undefined;
704
+ }
655
705
  export interface DescribeFirewallPolicyRequest {
656
706
  FirewallPolicyName?: string | undefined;
657
707
  FirewallPolicyArn?: string | undefined;
@@ -664,6 +714,8 @@ export interface DescribeFirewallPolicyResponse {
664
714
  export interface DescribeFlowOperationRequest {
665
715
  FirewallArn: string | undefined;
666
716
  AvailabilityZone?: string | undefined;
717
+ VpcEndpointAssociationArn?: string | undefined;
718
+ VpcEndpointId?: string | undefined;
667
719
  FlowOperationId: string | undefined;
668
720
  }
669
721
  export interface FlowFilter {
@@ -694,6 +746,8 @@ export type FlowOperationType =
694
746
  export interface DescribeFlowOperationResponse {
695
747
  FirewallArn?: string | undefined;
696
748
  AvailabilityZone?: string | undefined;
749
+ VpcEndpointAssociationArn?: string | undefined;
750
+ VpcEndpointId?: string | undefined;
697
751
  FlowOperationId?: string | undefined;
698
752
  FlowOperationType?: FlowOperationType | undefined;
699
753
  FlowOperationStatus?: FlowOperationStatus | undefined;
@@ -772,6 +826,13 @@ export interface DescribeTLSInspectionConfigurationResponse {
772
826
  | TLSInspectionConfigurationResponse
773
827
  | undefined;
774
828
  }
829
+ export interface DescribeVpcEndpointAssociationRequest {
830
+ VpcEndpointAssociationArn: string | undefined;
831
+ }
832
+ export interface DescribeVpcEndpointAssociationResponse {
833
+ VpcEndpointAssociation?: VpcEndpointAssociation | undefined;
834
+ VpcEndpointAssociationStatus?: VpcEndpointAssociationStatus | undefined;
835
+ }
775
836
  export interface DisassociateSubnetsRequest {
776
837
  UpdateToken?: string | undefined;
777
838
  FirewallArn?: string | undefined;
@@ -857,10 +918,14 @@ export interface ListFlowOperationResultsRequest {
857
918
  NextToken?: string | undefined;
858
919
  MaxResults?: number | undefined;
859
920
  AvailabilityZone?: string | undefined;
921
+ VpcEndpointId?: string | undefined;
922
+ VpcEndpointAssociationArn?: string | undefined;
860
923
  }
861
924
  export interface ListFlowOperationResultsResponse {
862
925
  FirewallArn?: string | undefined;
863
926
  AvailabilityZone?: string | undefined;
927
+ VpcEndpointAssociationArn?: string | undefined;
928
+ VpcEndpointId?: string | undefined;
864
929
  FlowOperationId?: string | undefined;
865
930
  FlowOperationStatus?: FlowOperationStatus | undefined;
866
931
  StatusMessage?: string | undefined;
@@ -871,6 +936,8 @@ export interface ListFlowOperationResultsResponse {
871
936
  export interface ListFlowOperationsRequest {
872
937
  FirewallArn: string | undefined;
873
938
  AvailabilityZone?: string | undefined;
939
+ VpcEndpointAssociationArn?: string | undefined;
940
+ VpcEndpointId?: string | undefined;
874
941
  FlowOperationType?: FlowOperationType | undefined;
875
942
  NextToken?: string | undefined;
876
943
  MaxResults?: number | undefined;
@@ -929,6 +996,18 @@ export interface ListTLSInspectionConfigurationsResponse {
929
996
  | TLSInspectionConfigurationMetadata[]
930
997
  | undefined;
931
998
  }
999
+ export interface ListVpcEndpointAssociationsRequest {
1000
+ NextToken?: string | undefined;
1001
+ MaxResults?: number | undefined;
1002
+ FirewallArn?: string | undefined;
1003
+ }
1004
+ export interface VpcEndpointAssociationMetadata {
1005
+ VpcEndpointAssociationArn?: string | undefined;
1006
+ }
1007
+ export interface ListVpcEndpointAssociationsResponse {
1008
+ NextToken?: string | undefined;
1009
+ VpcEndpointAssociations?: VpcEndpointAssociationMetadata[] | undefined;
1010
+ }
932
1011
  export declare class LogDestinationPermissionException extends __BaseException {
933
1012
  readonly name: "LogDestinationPermissionException";
934
1013
  readonly $fault: "client";
@@ -956,6 +1035,8 @@ export interface StartAnalysisReportResponse {
956
1035
  export interface StartFlowCaptureRequest {
957
1036
  FirewallArn: string | undefined;
958
1037
  AvailabilityZone?: string | undefined;
1038
+ VpcEndpointAssociationArn?: string | undefined;
1039
+ VpcEndpointId?: string | undefined;
959
1040
  MinimumFlowAgeInSeconds?: number | undefined;
960
1041
  FlowFilters: FlowFilter[] | undefined;
961
1042
  }
@@ -967,6 +1048,8 @@ export interface StartFlowCaptureResponse {
967
1048
  export interface StartFlowFlushRequest {
968
1049
  FirewallArn: string | undefined;
969
1050
  AvailabilityZone?: string | undefined;
1051
+ VpcEndpointAssociationArn?: string | undefined;
1052
+ VpcEndpointId?: string | undefined;
970
1053
  MinimumFlowAgeInSeconds?: number | undefined;
971
1054
  FlowFilters: FlowFilter[] | undefined;
972
1055
  }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListVpcEndpointAssociationsCommandInput,
4
+ ListVpcEndpointAssociationsCommandOutput,
5
+ } from "../commands/ListVpcEndpointAssociationsCommand";
6
+ import { NetworkFirewallPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListVpcEndpointAssociations: (
8
+ config: NetworkFirewallPaginationConfiguration,
9
+ input: ListVpcEndpointAssociationsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListVpcEndpointAssociationsCommandOutput>;
@@ -8,3 +8,4 @@ export * from "./ListFlowOperationsPaginator";
8
8
  export * from "./ListRuleGroupsPaginator";
9
9
  export * from "./ListTLSInspectionConfigurationsPaginator";
10
10
  export * from "./ListTagsForResourcePaginator";
11
+ export * from "./ListVpcEndpointAssociationsPaginator";
@@ -27,6 +27,10 @@ import {
27
27
  CreateTLSInspectionConfigurationCommandInput,
28
28
  CreateTLSInspectionConfigurationCommandOutput,
29
29
  } from "../commands/CreateTLSInspectionConfigurationCommand";
30
+ import {
31
+ CreateVpcEndpointAssociationCommandInput,
32
+ CreateVpcEndpointAssociationCommandOutput,
33
+ } from "../commands/CreateVpcEndpointAssociationCommand";
30
34
  import {
31
35
  DeleteFirewallCommandInput,
32
36
  DeleteFirewallCommandOutput,
@@ -47,10 +51,18 @@ import {
47
51
  DeleteTLSInspectionConfigurationCommandInput,
48
52
  DeleteTLSInspectionConfigurationCommandOutput,
49
53
  } from "../commands/DeleteTLSInspectionConfigurationCommand";
54
+ import {
55
+ DeleteVpcEndpointAssociationCommandInput,
56
+ DeleteVpcEndpointAssociationCommandOutput,
57
+ } from "../commands/DeleteVpcEndpointAssociationCommand";
50
58
  import {
51
59
  DescribeFirewallCommandInput,
52
60
  DescribeFirewallCommandOutput,
53
61
  } from "../commands/DescribeFirewallCommand";
62
+ import {
63
+ DescribeFirewallMetadataCommandInput,
64
+ DescribeFirewallMetadataCommandOutput,
65
+ } from "../commands/DescribeFirewallMetadataCommand";
54
66
  import {
55
67
  DescribeFirewallPolicyCommandInput,
56
68
  DescribeFirewallPolicyCommandOutput,
@@ -79,6 +91,10 @@ import {
79
91
  DescribeTLSInspectionConfigurationCommandInput,
80
92
  DescribeTLSInspectionConfigurationCommandOutput,
81
93
  } from "../commands/DescribeTLSInspectionConfigurationCommand";
94
+ import {
95
+ DescribeVpcEndpointAssociationCommandInput,
96
+ DescribeVpcEndpointAssociationCommandOutput,
97
+ } from "../commands/DescribeVpcEndpointAssociationCommand";
82
98
  import {
83
99
  DisassociateSubnetsCommandInput,
84
100
  DisassociateSubnetsCommandOutput,
@@ -119,6 +135,10 @@ import {
119
135
  ListTLSInspectionConfigurationsCommandInput,
120
136
  ListTLSInspectionConfigurationsCommandOutput,
121
137
  } from "../commands/ListTLSInspectionConfigurationsCommand";
138
+ import {
139
+ ListVpcEndpointAssociationsCommandInput,
140
+ ListVpcEndpointAssociationsCommandOutput,
141
+ } from "../commands/ListVpcEndpointAssociationsCommand";
122
142
  import {
123
143
  PutResourcePolicyCommandInput,
124
144
  PutResourcePolicyCommandOutput,
@@ -207,6 +227,10 @@ export declare const se_CreateTLSInspectionConfigurationCommand: (
207
227
  input: CreateTLSInspectionConfigurationCommandInput,
208
228
  context: __SerdeContext
209
229
  ) => Promise<__HttpRequest>;
230
+ export declare const se_CreateVpcEndpointAssociationCommand: (
231
+ input: CreateVpcEndpointAssociationCommandInput,
232
+ context: __SerdeContext
233
+ ) => Promise<__HttpRequest>;
210
234
  export declare const se_DeleteFirewallCommand: (
211
235
  input: DeleteFirewallCommandInput,
212
236
  context: __SerdeContext
@@ -227,10 +251,18 @@ export declare const se_DeleteTLSInspectionConfigurationCommand: (
227
251
  input: DeleteTLSInspectionConfigurationCommandInput,
228
252
  context: __SerdeContext
229
253
  ) => Promise<__HttpRequest>;
254
+ export declare const se_DeleteVpcEndpointAssociationCommand: (
255
+ input: DeleteVpcEndpointAssociationCommandInput,
256
+ context: __SerdeContext
257
+ ) => Promise<__HttpRequest>;
230
258
  export declare const se_DescribeFirewallCommand: (
231
259
  input: DescribeFirewallCommandInput,
232
260
  context: __SerdeContext
233
261
  ) => Promise<__HttpRequest>;
262
+ export declare const se_DescribeFirewallMetadataCommand: (
263
+ input: DescribeFirewallMetadataCommandInput,
264
+ context: __SerdeContext
265
+ ) => Promise<__HttpRequest>;
234
266
  export declare const se_DescribeFirewallPolicyCommand: (
235
267
  input: DescribeFirewallPolicyCommandInput,
236
268
  context: __SerdeContext
@@ -259,6 +291,10 @@ export declare const se_DescribeTLSInspectionConfigurationCommand: (
259
291
  input: DescribeTLSInspectionConfigurationCommandInput,
260
292
  context: __SerdeContext
261
293
  ) => Promise<__HttpRequest>;
294
+ export declare const se_DescribeVpcEndpointAssociationCommand: (
295
+ input: DescribeVpcEndpointAssociationCommandInput,
296
+ context: __SerdeContext
297
+ ) => Promise<__HttpRequest>;
262
298
  export declare const se_DisassociateSubnetsCommand: (
263
299
  input: DisassociateSubnetsCommandInput,
264
300
  context: __SerdeContext
@@ -299,6 +335,10 @@ export declare const se_ListTLSInspectionConfigurationsCommand: (
299
335
  input: ListTLSInspectionConfigurationsCommandInput,
300
336
  context: __SerdeContext
301
337
  ) => Promise<__HttpRequest>;
338
+ export declare const se_ListVpcEndpointAssociationsCommand: (
339
+ input: ListVpcEndpointAssociationsCommandInput,
340
+ context: __SerdeContext
341
+ ) => Promise<__HttpRequest>;
302
342
  export declare const se_PutResourcePolicyCommand: (
303
343
  input: PutResourcePolicyCommandInput,
304
344
  context: __SerdeContext
@@ -387,6 +427,10 @@ export declare const de_CreateTLSInspectionConfigurationCommand: (
387
427
  output: __HttpResponse,
388
428
  context: __SerdeContext
389
429
  ) => Promise<CreateTLSInspectionConfigurationCommandOutput>;
430
+ export declare const de_CreateVpcEndpointAssociationCommand: (
431
+ output: __HttpResponse,
432
+ context: __SerdeContext
433
+ ) => Promise<CreateVpcEndpointAssociationCommandOutput>;
390
434
  export declare const de_DeleteFirewallCommand: (
391
435
  output: __HttpResponse,
392
436
  context: __SerdeContext
@@ -407,10 +451,18 @@ export declare const de_DeleteTLSInspectionConfigurationCommand: (
407
451
  output: __HttpResponse,
408
452
  context: __SerdeContext
409
453
  ) => Promise<DeleteTLSInspectionConfigurationCommandOutput>;
454
+ export declare const de_DeleteVpcEndpointAssociationCommand: (
455
+ output: __HttpResponse,
456
+ context: __SerdeContext
457
+ ) => Promise<DeleteVpcEndpointAssociationCommandOutput>;
410
458
  export declare const de_DescribeFirewallCommand: (
411
459
  output: __HttpResponse,
412
460
  context: __SerdeContext
413
461
  ) => Promise<DescribeFirewallCommandOutput>;
462
+ export declare const de_DescribeFirewallMetadataCommand: (
463
+ output: __HttpResponse,
464
+ context: __SerdeContext
465
+ ) => Promise<DescribeFirewallMetadataCommandOutput>;
414
466
  export declare const de_DescribeFirewallPolicyCommand: (
415
467
  output: __HttpResponse,
416
468
  context: __SerdeContext
@@ -439,6 +491,10 @@ export declare const de_DescribeTLSInspectionConfigurationCommand: (
439
491
  output: __HttpResponse,
440
492
  context: __SerdeContext
441
493
  ) => Promise<DescribeTLSInspectionConfigurationCommandOutput>;
494
+ export declare const de_DescribeVpcEndpointAssociationCommand: (
495
+ output: __HttpResponse,
496
+ context: __SerdeContext
497
+ ) => Promise<DescribeVpcEndpointAssociationCommandOutput>;
442
498
  export declare const de_DisassociateSubnetsCommand: (
443
499
  output: __HttpResponse,
444
500
  context: __SerdeContext
@@ -479,6 +535,10 @@ export declare const de_ListTLSInspectionConfigurationsCommand: (
479
535
  output: __HttpResponse,
480
536
  context: __SerdeContext
481
537
  ) => Promise<ListTLSInspectionConfigurationsCommandOutput>;
538
+ export declare const de_ListVpcEndpointAssociationsCommand: (
539
+ output: __HttpResponse,
540
+ context: __SerdeContext
541
+ ) => Promise<ListVpcEndpointAssociationsCommandOutput>;
482
542
  export declare const de_PutResourcePolicyCommand: (
483
543
  output: __HttpResponse,
484
544
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-network-firewall",
3
3
  "description": "AWS SDK for JavaScript Network Firewall Client for Node.js, Browser and React Native",
4
- "version": "3.817.0",
4
+ "version": "3.819.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-network-firewall",