@aws-sdk/client-network-firewall 3.826.0 → 3.830.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 (49) hide show
  1. package/README.md +48 -0
  2. package/dist-cjs/index.js +295 -58
  3. package/dist-es/NetworkFirewall.js +12 -0
  4. package/dist-es/commands/AcceptNetworkFirewallTransitGatewayAttachmentCommand.js +22 -0
  5. package/dist-es/commands/AssociateAvailabilityZonesCommand.js +22 -0
  6. package/dist-es/commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand.js +22 -0
  7. package/dist-es/commands/DisassociateAvailabilityZonesCommand.js +22 -0
  8. package/dist-es/commands/RejectNetworkFirewallTransitGatewayAttachmentCommand.js +22 -0
  9. package/dist-es/commands/UpdateAvailabilityZoneChangeProtectionCommand.js +22 -0
  10. package/dist-es/commands/index.js +6 -0
  11. package/dist-es/models/models_0.js +52 -39
  12. package/dist-es/protocols/Aws_json1_0.js +120 -6
  13. package/dist-types/NetworkFirewall.d.ts +42 -0
  14. package/dist-types/NetworkFirewallClient.d.ts +8 -2
  15. package/dist-types/commands/AcceptNetworkFirewallTransitGatewayAttachmentCommand.d.ts +104 -0
  16. package/dist-types/commands/AssociateAvailabilityZonesCommand.d.ts +124 -0
  17. package/dist-types/commands/CreateFirewallCommand.d.ts +20 -0
  18. package/dist-types/commands/CreateRuleGroupCommand.d.ts +1 -1
  19. package/dist-types/commands/DeleteFirewallCommand.d.ts +13 -0
  20. package/dist-types/commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand.d.ts +103 -0
  21. package/dist-types/commands/DescribeFirewallCommand.d.ts +13 -0
  22. package/dist-types/commands/DescribeFirewallMetadataCommand.d.ts +1 -0
  23. package/dist-types/commands/DescribeRuleGroupCommand.d.ts +1 -1
  24. package/dist-types/commands/DisassociateAvailabilityZonesCommand.d.ts +123 -0
  25. package/dist-types/commands/ListFirewallsCommand.d.ts +1 -0
  26. package/dist-types/commands/RejectNetworkFirewallTransitGatewayAttachmentCommand.d.ts +104 -0
  27. package/dist-types/commands/UpdateAvailabilityZoneChangeProtectionCommand.d.ts +111 -0
  28. package/dist-types/commands/UpdateRuleGroupCommand.d.ts +1 -1
  29. package/dist-types/commands/index.d.ts +6 -0
  30. package/dist-types/endpoint/EndpointParameters.d.ts +7 -7
  31. package/dist-types/models/models_0.d.ts +651 -95
  32. package/dist-types/protocols/Aws_json1_0.d.ts +54 -0
  33. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  34. package/dist-types/runtimeConfig.native.d.ts +2 -2
  35. package/dist-types/ts3.4/NetworkFirewall.d.ts +126 -0
  36. package/dist-types/ts3.4/NetworkFirewallClient.d.ts +36 -0
  37. package/dist-types/ts3.4/commands/AcceptNetworkFirewallTransitGatewayAttachmentCommand.d.ts +51 -0
  38. package/dist-types/ts3.4/commands/AssociateAvailabilityZonesCommand.d.ts +51 -0
  39. package/dist-types/ts3.4/commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand.d.ts +51 -0
  40. package/dist-types/ts3.4/commands/DisassociateAvailabilityZonesCommand.d.ts +51 -0
  41. package/dist-types/ts3.4/commands/RejectNetworkFirewallTransitGatewayAttachmentCommand.d.ts +51 -0
  42. package/dist-types/ts3.4/commands/UpdateAvailabilityZoneChangeProtectionCommand.d.ts +51 -0
  43. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  44. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +7 -7
  45. package/dist-types/ts3.4/models/models_0.d.ts +137 -45
  46. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +72 -0
  47. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -2
  48. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -2
  49. package/package.json +5 -5
@@ -3,6 +3,14 @@ import {
3
3
  HttpResponse as __HttpResponse,
4
4
  } from "@smithy/protocol-http";
5
5
  import { SerdeContext as __SerdeContext } from "@smithy/types";
6
+ import {
7
+ AcceptNetworkFirewallTransitGatewayAttachmentCommandInput,
8
+ AcceptNetworkFirewallTransitGatewayAttachmentCommandOutput,
9
+ } from "../commands/AcceptNetworkFirewallTransitGatewayAttachmentCommand";
10
+ import {
11
+ AssociateAvailabilityZonesCommandInput,
12
+ AssociateAvailabilityZonesCommandOutput,
13
+ } from "../commands/AssociateAvailabilityZonesCommand";
6
14
  import {
7
15
  AssociateFirewallPolicyCommandInput,
8
16
  AssociateFirewallPolicyCommandOutput,
@@ -39,6 +47,10 @@ import {
39
47
  DeleteFirewallPolicyCommandInput,
40
48
  DeleteFirewallPolicyCommandOutput,
41
49
  } from "../commands/DeleteFirewallPolicyCommand";
50
+ import {
51
+ DeleteNetworkFirewallTransitGatewayAttachmentCommandInput,
52
+ DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput,
53
+ } from "../commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand";
42
54
  import {
43
55
  DeleteResourcePolicyCommandInput,
44
56
  DeleteResourcePolicyCommandOutput,
@@ -95,6 +107,10 @@ import {
95
107
  DescribeVpcEndpointAssociationCommandInput,
96
108
  DescribeVpcEndpointAssociationCommandOutput,
97
109
  } from "../commands/DescribeVpcEndpointAssociationCommand";
110
+ import {
111
+ DisassociateAvailabilityZonesCommandInput,
112
+ DisassociateAvailabilityZonesCommandOutput,
113
+ } from "../commands/DisassociateAvailabilityZonesCommand";
98
114
  import {
99
115
  DisassociateSubnetsCommandInput,
100
116
  DisassociateSubnetsCommandOutput,
@@ -143,6 +159,10 @@ import {
143
159
  PutResourcePolicyCommandInput,
144
160
  PutResourcePolicyCommandOutput,
145
161
  } from "../commands/PutResourcePolicyCommand";
162
+ import {
163
+ RejectNetworkFirewallTransitGatewayAttachmentCommandInput,
164
+ RejectNetworkFirewallTransitGatewayAttachmentCommandOutput,
165
+ } from "../commands/RejectNetworkFirewallTransitGatewayAttachmentCommand";
146
166
  import {
147
167
  StartAnalysisReportCommandInput,
148
168
  StartAnalysisReportCommandOutput,
@@ -163,6 +183,10 @@ import {
163
183
  UntagResourceCommandInput,
164
184
  UntagResourceCommandOutput,
165
185
  } from "../commands/UntagResourceCommand";
186
+ import {
187
+ UpdateAvailabilityZoneChangeProtectionCommandInput,
188
+ UpdateAvailabilityZoneChangeProtectionCommandOutput,
189
+ } from "../commands/UpdateAvailabilityZoneChangeProtectionCommand";
166
190
  import {
167
191
  UpdateFirewallAnalysisSettingsCommandInput,
168
192
  UpdateFirewallAnalysisSettingsCommandOutput,
@@ -203,6 +227,14 @@ import {
203
227
  UpdateTLSInspectionConfigurationCommandInput,
204
228
  UpdateTLSInspectionConfigurationCommandOutput,
205
229
  } from "../commands/UpdateTLSInspectionConfigurationCommand";
230
+ export declare const se_AcceptNetworkFirewallTransitGatewayAttachmentCommand: (
231
+ input: AcceptNetworkFirewallTransitGatewayAttachmentCommandInput,
232
+ context: __SerdeContext
233
+ ) => Promise<__HttpRequest>;
234
+ export declare const se_AssociateAvailabilityZonesCommand: (
235
+ input: AssociateAvailabilityZonesCommandInput,
236
+ context: __SerdeContext
237
+ ) => Promise<__HttpRequest>;
206
238
  export declare const se_AssociateFirewallPolicyCommand: (
207
239
  input: AssociateFirewallPolicyCommandInput,
208
240
  context: __SerdeContext
@@ -239,6 +271,10 @@ export declare const se_DeleteFirewallPolicyCommand: (
239
271
  input: DeleteFirewallPolicyCommandInput,
240
272
  context: __SerdeContext
241
273
  ) => Promise<__HttpRequest>;
274
+ export declare const se_DeleteNetworkFirewallTransitGatewayAttachmentCommand: (
275
+ input: DeleteNetworkFirewallTransitGatewayAttachmentCommandInput,
276
+ context: __SerdeContext
277
+ ) => Promise<__HttpRequest>;
242
278
  export declare const se_DeleteResourcePolicyCommand: (
243
279
  input: DeleteResourcePolicyCommandInput,
244
280
  context: __SerdeContext
@@ -295,6 +331,10 @@ export declare const se_DescribeVpcEndpointAssociationCommand: (
295
331
  input: DescribeVpcEndpointAssociationCommandInput,
296
332
  context: __SerdeContext
297
333
  ) => Promise<__HttpRequest>;
334
+ export declare const se_DisassociateAvailabilityZonesCommand: (
335
+ input: DisassociateAvailabilityZonesCommandInput,
336
+ context: __SerdeContext
337
+ ) => Promise<__HttpRequest>;
298
338
  export declare const se_DisassociateSubnetsCommand: (
299
339
  input: DisassociateSubnetsCommandInput,
300
340
  context: __SerdeContext
@@ -343,6 +383,10 @@ export declare const se_PutResourcePolicyCommand: (
343
383
  input: PutResourcePolicyCommandInput,
344
384
  context: __SerdeContext
345
385
  ) => Promise<__HttpRequest>;
386
+ export declare const se_RejectNetworkFirewallTransitGatewayAttachmentCommand: (
387
+ input: RejectNetworkFirewallTransitGatewayAttachmentCommandInput,
388
+ context: __SerdeContext
389
+ ) => Promise<__HttpRequest>;
346
390
  export declare const se_StartAnalysisReportCommand: (
347
391
  input: StartAnalysisReportCommandInput,
348
392
  context: __SerdeContext
@@ -363,6 +407,10 @@ export declare const se_UntagResourceCommand: (
363
407
  input: UntagResourceCommandInput,
364
408
  context: __SerdeContext
365
409
  ) => Promise<__HttpRequest>;
410
+ export declare const se_UpdateAvailabilityZoneChangeProtectionCommand: (
411
+ input: UpdateAvailabilityZoneChangeProtectionCommandInput,
412
+ context: __SerdeContext
413
+ ) => Promise<__HttpRequest>;
366
414
  export declare const se_UpdateFirewallAnalysisSettingsCommand: (
367
415
  input: UpdateFirewallAnalysisSettingsCommandInput,
368
416
  context: __SerdeContext
@@ -403,6 +451,14 @@ export declare const se_UpdateTLSInspectionConfigurationCommand: (
403
451
  input: UpdateTLSInspectionConfigurationCommandInput,
404
452
  context: __SerdeContext
405
453
  ) => Promise<__HttpRequest>;
454
+ export declare const de_AcceptNetworkFirewallTransitGatewayAttachmentCommand: (
455
+ output: __HttpResponse,
456
+ context: __SerdeContext
457
+ ) => Promise<AcceptNetworkFirewallTransitGatewayAttachmentCommandOutput>;
458
+ export declare const de_AssociateAvailabilityZonesCommand: (
459
+ output: __HttpResponse,
460
+ context: __SerdeContext
461
+ ) => Promise<AssociateAvailabilityZonesCommandOutput>;
406
462
  export declare const de_AssociateFirewallPolicyCommand: (
407
463
  output: __HttpResponse,
408
464
  context: __SerdeContext
@@ -439,6 +495,10 @@ export declare const de_DeleteFirewallPolicyCommand: (
439
495
  output: __HttpResponse,
440
496
  context: __SerdeContext
441
497
  ) => Promise<DeleteFirewallPolicyCommandOutput>;
498
+ export declare const de_DeleteNetworkFirewallTransitGatewayAttachmentCommand: (
499
+ output: __HttpResponse,
500
+ context: __SerdeContext
501
+ ) => Promise<DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput>;
442
502
  export declare const de_DeleteResourcePolicyCommand: (
443
503
  output: __HttpResponse,
444
504
  context: __SerdeContext
@@ -495,6 +555,10 @@ export declare const de_DescribeVpcEndpointAssociationCommand: (
495
555
  output: __HttpResponse,
496
556
  context: __SerdeContext
497
557
  ) => Promise<DescribeVpcEndpointAssociationCommandOutput>;
558
+ export declare const de_DisassociateAvailabilityZonesCommand: (
559
+ output: __HttpResponse,
560
+ context: __SerdeContext
561
+ ) => Promise<DisassociateAvailabilityZonesCommandOutput>;
498
562
  export declare const de_DisassociateSubnetsCommand: (
499
563
  output: __HttpResponse,
500
564
  context: __SerdeContext
@@ -543,6 +607,10 @@ export declare const de_PutResourcePolicyCommand: (
543
607
  output: __HttpResponse,
544
608
  context: __SerdeContext
545
609
  ) => Promise<PutResourcePolicyCommandOutput>;
610
+ export declare const de_RejectNetworkFirewallTransitGatewayAttachmentCommand: (
611
+ output: __HttpResponse,
612
+ context: __SerdeContext
613
+ ) => Promise<RejectNetworkFirewallTransitGatewayAttachmentCommandOutput>;
546
614
  export declare const de_StartAnalysisReportCommand: (
547
615
  output: __HttpResponse,
548
616
  context: __SerdeContext
@@ -563,6 +631,10 @@ export declare const de_UntagResourceCommand: (
563
631
  output: __HttpResponse,
564
632
  context: __SerdeContext
565
633
  ) => Promise<UntagResourceCommandOutput>;
634
+ export declare const de_UpdateAvailabilityZoneChangeProtectionCommand: (
635
+ output: __HttpResponse,
636
+ context: __SerdeContext
637
+ ) => Promise<UpdateAvailabilityZoneChangeProtectionCommandOutput>;
566
638
  export declare const de_UpdateFirewallAnalysisSettingsCommand: (
567
639
  output: __HttpResponse,
568
640
  context: __SerdeContext
@@ -24,8 +24,10 @@ export declare const getRuntimeConfig: (
24
24
  retryMode: string | import("@smithy/types").Provider<string>;
25
25
  sha256: import("@smithy/types").HashConstructor;
26
26
  streamCollector: import("@smithy/types").StreamCollector;
27
- useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
28
- useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
27
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
28
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
29
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
30
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
29
31
  apiVersion: string;
30
32
  cacheMiddleware?: boolean | undefined;
31
33
  urlParser: import("@smithy/types").UrlParser;
@@ -21,8 +21,10 @@ export declare const getRuntimeConfig: (
21
21
  utf8Encoder: (input: Uint8Array | string) => string;
22
22
  disableHostPrefix: boolean;
23
23
  serviceId: string;
24
- useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
25
- useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
25
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
26
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
27
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
26
28
  region: string | import("@smithy/types").Provider<any>;
27
29
  profile?: string;
28
30
  defaultUserAgentProvider: (
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.826.0",
4
+ "version": "3.830.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",
@@ -21,16 +21,16 @@
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
23
  "@aws-sdk/core": "3.826.0",
24
- "@aws-sdk/credential-provider-node": "3.826.0",
24
+ "@aws-sdk/credential-provider-node": "3.830.0",
25
25
  "@aws-sdk/middleware-host-header": "3.821.0",
26
26
  "@aws-sdk/middleware-logger": "3.821.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.821.0",
28
- "@aws-sdk/middleware-user-agent": "3.826.0",
28
+ "@aws-sdk/middleware-user-agent": "3.828.0",
29
29
  "@aws-sdk/region-config-resolver": "3.821.0",
30
30
  "@aws-sdk/types": "3.821.0",
31
- "@aws-sdk/util-endpoints": "3.821.0",
31
+ "@aws-sdk/util-endpoints": "3.828.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.821.0",
33
- "@aws-sdk/util-user-agent-node": "3.826.0",
33
+ "@aws-sdk/util-user-agent-node": "3.828.0",
34
34
  "@smithy/config-resolver": "^4.1.4",
35
35
  "@smithy/core": "^3.5.3",
36
36
  "@smithy/fetch-http-handler": "^5.0.4",