@aws-sdk/client-network-firewall 3.1076.0 → 3.1077.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 (52) hide show
  1. package/README.md +35 -0
  2. package/dist-cjs/index.js +268 -48
  3. package/dist-es/NetworkFirewall.js +12 -0
  4. package/dist-es/commands/CreateContainerAssociationCommand.js +16 -0
  5. package/dist-es/commands/DeleteContainerAssociationCommand.js +16 -0
  6. package/dist-es/commands/DescribeContainerAssociationCommand.js +16 -0
  7. package/dist-es/commands/ListContainerAssociationsCommand.js +16 -0
  8. package/dist-es/commands/UpdateContainerAssociationCommand.js +16 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/enums.js +9 -0
  11. package/dist-es/pagination/ListContainerAssociationsPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/runtimeConfig.browser.js +0 -2
  14. package/dist-es/runtimeConfig.js +1 -2
  15. package/dist-es/runtimeConfig.native.js +0 -2
  16. package/dist-es/runtimeConfig.shared.js +2 -0
  17. package/dist-es/schemas/schemas_0.js +161 -45
  18. package/dist-types/NetworkFirewall.d.ts +45 -0
  19. package/dist-types/NetworkFirewallClient.d.ts +7 -2
  20. package/dist-types/commands/CreateContainerAssociationCommand.d.ts +149 -0
  21. package/dist-types/commands/DeleteContainerAssociationCommand.d.ts +109 -0
  22. package/dist-types/commands/DescribeContainerAssociationCommand.d.ts +127 -0
  23. package/dist-types/commands/ListContainerAssociationsCommand.d.ts +106 -0
  24. package/dist-types/commands/UpdateContainerAssociationCommand.d.ts +148 -0
  25. package/dist-types/commands/index.d.ts +5 -0
  26. package/dist-types/models/enums.d.ts +25 -0
  27. package/dist-types/models/models_0.d.ts +345 -2
  28. package/dist-types/pagination/ListContainerAssociationsPaginator.d.ts +7 -0
  29. package/dist-types/pagination/index.d.ts +1 -0
  30. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  31. package/dist-types/runtimeConfig.d.ts +1 -1
  32. package/dist-types/runtimeConfig.native.d.ts +1 -1
  33. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  34. package/dist-types/schemas/schemas_0.d.ts +18 -0
  35. package/dist-types/ts3.4/NetworkFirewall.d.ts +95 -0
  36. package/dist-types/ts3.4/NetworkFirewallClient.d.ts +30 -0
  37. package/dist-types/ts3.4/commands/CreateContainerAssociationCommand.d.ts +53 -0
  38. package/dist-types/ts3.4/commands/DeleteContainerAssociationCommand.d.ts +53 -0
  39. package/dist-types/ts3.4/commands/DescribeContainerAssociationCommand.d.ts +53 -0
  40. package/dist-types/ts3.4/commands/ListContainerAssociationsCommand.d.ts +53 -0
  41. package/dist-types/ts3.4/commands/UpdateContainerAssociationCommand.d.ts +53 -0
  42. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  43. package/dist-types/ts3.4/models/enums.d.ts +13 -0
  44. package/dist-types/ts3.4/models/models_0.d.ts +93 -0
  45. package/dist-types/ts3.4/pagination/ListContainerAssociationsPaginator.d.ts +11 -0
  46. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  47. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  48. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  49. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  50. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  51. package/dist-types/ts3.4/schemas/schemas_0.d.ts +18 -0
  52. package/package.json +6 -8
@@ -23,6 +23,10 @@ import {
23
23
  AttachRuleGroupsToProxyConfigurationCommandInput,
24
24
  AttachRuleGroupsToProxyConfigurationCommandOutput,
25
25
  } from "./commands/AttachRuleGroupsToProxyConfigurationCommand";
26
+ import {
27
+ CreateContainerAssociationCommandInput,
28
+ CreateContainerAssociationCommandOutput,
29
+ } from "./commands/CreateContainerAssociationCommand";
26
30
  import {
27
31
  CreateFirewallCommandInput,
28
32
  CreateFirewallCommandOutput,
@@ -59,6 +63,10 @@ import {
59
63
  CreateVpcEndpointAssociationCommandInput,
60
64
  CreateVpcEndpointAssociationCommandOutput,
61
65
  } from "./commands/CreateVpcEndpointAssociationCommand";
66
+ import {
67
+ DeleteContainerAssociationCommandInput,
68
+ DeleteContainerAssociationCommandOutput,
69
+ } from "./commands/DeleteContainerAssociationCommand";
62
70
  import {
63
71
  DeleteFirewallCommandInput,
64
72
  DeleteFirewallCommandOutput,
@@ -103,6 +111,10 @@ import {
103
111
  DeleteVpcEndpointAssociationCommandInput,
104
112
  DeleteVpcEndpointAssociationCommandOutput,
105
113
  } from "./commands/DeleteVpcEndpointAssociationCommand";
114
+ import {
115
+ DescribeContainerAssociationCommandInput,
116
+ DescribeContainerAssociationCommandOutput,
117
+ } from "./commands/DescribeContainerAssociationCommand";
106
118
  import {
107
119
  DescribeFirewallCommandInput,
108
120
  DescribeFirewallCommandOutput,
@@ -183,6 +195,10 @@ import {
183
195
  ListAnalysisReportsCommandInput,
184
196
  ListAnalysisReportsCommandOutput,
185
197
  } from "./commands/ListAnalysisReportsCommand";
198
+ import {
199
+ ListContainerAssociationsCommandInput,
200
+ ListContainerAssociationsCommandOutput,
201
+ } from "./commands/ListContainerAssociationsCommand";
186
202
  import {
187
203
  ListFirewallPoliciesCommandInput,
188
204
  ListFirewallPoliciesCommandOutput,
@@ -259,6 +275,10 @@ import {
259
275
  UpdateAvailabilityZoneChangeProtectionCommandInput,
260
276
  UpdateAvailabilityZoneChangeProtectionCommandOutput,
261
277
  } from "./commands/UpdateAvailabilityZoneChangeProtectionCommand";
278
+ import {
279
+ UpdateContainerAssociationCommandInput,
280
+ UpdateContainerAssociationCommandOutput,
281
+ } from "./commands/UpdateContainerAssociationCommand";
262
282
  import {
263
283
  UpdateFirewallAnalysisSettingsCommandInput,
264
284
  UpdateFirewallAnalysisSettingsCommandOutput,
@@ -398,6 +418,19 @@ export interface NetworkFirewall {
398
418
  data?: AttachRuleGroupsToProxyConfigurationCommandOutput
399
419
  ) => void
400
420
  ): void;
421
+ createContainerAssociation(
422
+ args: CreateContainerAssociationCommandInput,
423
+ options?: __HttpHandlerOptions
424
+ ): Promise<CreateContainerAssociationCommandOutput>;
425
+ createContainerAssociation(
426
+ args: CreateContainerAssociationCommandInput,
427
+ cb: (err: any, data?: CreateContainerAssociationCommandOutput) => void
428
+ ): void;
429
+ createContainerAssociation(
430
+ args: CreateContainerAssociationCommandInput,
431
+ options: __HttpHandlerOptions,
432
+ cb: (err: any, data?: CreateContainerAssociationCommandOutput) => void
433
+ ): void;
401
434
  createFirewall(
402
435
  args: CreateFirewallCommandInput,
403
436
  options?: __HttpHandlerOptions
@@ -515,6 +548,20 @@ export interface NetworkFirewall {
515
548
  options: __HttpHandlerOptions,
516
549
  cb: (err: any, data?: CreateVpcEndpointAssociationCommandOutput) => void
517
550
  ): void;
551
+ deleteContainerAssociation(): Promise<DeleteContainerAssociationCommandOutput>;
552
+ deleteContainerAssociation(
553
+ args: DeleteContainerAssociationCommandInput,
554
+ options?: __HttpHandlerOptions
555
+ ): Promise<DeleteContainerAssociationCommandOutput>;
556
+ deleteContainerAssociation(
557
+ args: DeleteContainerAssociationCommandInput,
558
+ cb: (err: any, data?: DeleteContainerAssociationCommandOutput) => void
559
+ ): void;
560
+ deleteContainerAssociation(
561
+ args: DeleteContainerAssociationCommandInput,
562
+ options: __HttpHandlerOptions,
563
+ cb: (err: any, data?: DeleteContainerAssociationCommandOutput) => void
564
+ ): void;
518
565
  deleteFirewall(): Promise<DeleteFirewallCommandOutput>;
519
566
  deleteFirewall(
520
567
  args: DeleteFirewallCommandInput,
@@ -670,6 +717,20 @@ export interface NetworkFirewall {
670
717
  options: __HttpHandlerOptions,
671
718
  cb: (err: any, data?: DeleteVpcEndpointAssociationCommandOutput) => void
672
719
  ): void;
720
+ describeContainerAssociation(): Promise<DescribeContainerAssociationCommandOutput>;
721
+ describeContainerAssociation(
722
+ args: DescribeContainerAssociationCommandInput,
723
+ options?: __HttpHandlerOptions
724
+ ): Promise<DescribeContainerAssociationCommandOutput>;
725
+ describeContainerAssociation(
726
+ args: DescribeContainerAssociationCommandInput,
727
+ cb: (err: any, data?: DescribeContainerAssociationCommandOutput) => void
728
+ ): void;
729
+ describeContainerAssociation(
730
+ args: DescribeContainerAssociationCommandInput,
731
+ options: __HttpHandlerOptions,
732
+ cb: (err: any, data?: DescribeContainerAssociationCommandOutput) => void
733
+ ): void;
673
734
  describeFirewall(): Promise<DescribeFirewallCommandOutput>;
674
735
  describeFirewall(
675
736
  args: DescribeFirewallCommandInput,
@@ -954,6 +1015,20 @@ export interface NetworkFirewall {
954
1015
  options: __HttpHandlerOptions,
955
1016
  cb: (err: any, data?: ListAnalysisReportsCommandOutput) => void
956
1017
  ): void;
1018
+ listContainerAssociations(): Promise<ListContainerAssociationsCommandOutput>;
1019
+ listContainerAssociations(
1020
+ args: ListContainerAssociationsCommandInput,
1021
+ options?: __HttpHandlerOptions
1022
+ ): Promise<ListContainerAssociationsCommandOutput>;
1023
+ listContainerAssociations(
1024
+ args: ListContainerAssociationsCommandInput,
1025
+ cb: (err: any, data?: ListContainerAssociationsCommandOutput) => void
1026
+ ): void;
1027
+ listContainerAssociations(
1028
+ args: ListContainerAssociationsCommandInput,
1029
+ options: __HttpHandlerOptions,
1030
+ cb: (err: any, data?: ListContainerAssociationsCommandOutput) => void
1031
+ ): void;
957
1032
  listFirewallPolicies(): Promise<ListFirewallPoliciesCommandOutput>;
958
1033
  listFirewallPolicies(
959
1034
  args: ListFirewallPoliciesCommandInput,
@@ -1221,6 +1296,19 @@ export interface NetworkFirewall {
1221
1296
  data?: UpdateAvailabilityZoneChangeProtectionCommandOutput
1222
1297
  ) => void
1223
1298
  ): void;
1299
+ updateContainerAssociation(
1300
+ args: UpdateContainerAssociationCommandInput,
1301
+ options?: __HttpHandlerOptions
1302
+ ): Promise<UpdateContainerAssociationCommandOutput>;
1303
+ updateContainerAssociation(
1304
+ args: UpdateContainerAssociationCommandInput,
1305
+ cb: (err: any, data?: UpdateContainerAssociationCommandOutput) => void
1306
+ ): void;
1307
+ updateContainerAssociation(
1308
+ args: UpdateContainerAssociationCommandInput,
1309
+ options: __HttpHandlerOptions,
1310
+ cb: (err: any, data?: UpdateContainerAssociationCommandOutput) => void
1311
+ ): void;
1224
1312
  updateFirewallAnalysisSettings(): Promise<UpdateFirewallAnalysisSettingsCommandOutput>;
1225
1313
  updateFirewallAnalysisSettings(
1226
1314
  args: UpdateFirewallAnalysisSettingsCommandInput,
@@ -1446,6 +1534,13 @@ export interface NetworkFirewall {
1446
1534
  Exclude<keyof PaginationConfiguration, "client">
1447
1535
  >
1448
1536
  ): Paginator<ListAnalysisReportsCommandOutput>;
1537
+ paginateListContainerAssociations(
1538
+ args?: ListContainerAssociationsCommandInput,
1539
+ paginationConfig?: Pick<
1540
+ PaginationConfiguration,
1541
+ Exclude<keyof PaginationConfiguration, "client">
1542
+ >
1543
+ ): Paginator<ListContainerAssociationsCommandOutput>;
1449
1544
  paginateListFirewallPolicies(
1450
1545
  args?: ListFirewallPoliciesCommandInput,
1451
1546
  paginationConfig?: Pick<
@@ -56,6 +56,10 @@ import {
56
56
  AttachRuleGroupsToProxyConfigurationCommandInput,
57
57
  AttachRuleGroupsToProxyConfigurationCommandOutput,
58
58
  } from "./commands/AttachRuleGroupsToProxyConfigurationCommand";
59
+ import {
60
+ CreateContainerAssociationCommandInput,
61
+ CreateContainerAssociationCommandOutput,
62
+ } from "./commands/CreateContainerAssociationCommand";
59
63
  import {
60
64
  CreateFirewallCommandInput,
61
65
  CreateFirewallCommandOutput,
@@ -92,6 +96,10 @@ import {
92
96
  CreateVpcEndpointAssociationCommandInput,
93
97
  CreateVpcEndpointAssociationCommandOutput,
94
98
  } from "./commands/CreateVpcEndpointAssociationCommand";
99
+ import {
100
+ DeleteContainerAssociationCommandInput,
101
+ DeleteContainerAssociationCommandOutput,
102
+ } from "./commands/DeleteContainerAssociationCommand";
95
103
  import {
96
104
  DeleteFirewallCommandInput,
97
105
  DeleteFirewallCommandOutput,
@@ -136,6 +144,10 @@ import {
136
144
  DeleteVpcEndpointAssociationCommandInput,
137
145
  DeleteVpcEndpointAssociationCommandOutput,
138
146
  } from "./commands/DeleteVpcEndpointAssociationCommand";
147
+ import {
148
+ DescribeContainerAssociationCommandInput,
149
+ DescribeContainerAssociationCommandOutput,
150
+ } from "./commands/DescribeContainerAssociationCommand";
139
151
  import {
140
152
  DescribeFirewallCommandInput,
141
153
  DescribeFirewallCommandOutput,
@@ -216,6 +228,10 @@ import {
216
228
  ListAnalysisReportsCommandInput,
217
229
  ListAnalysisReportsCommandOutput,
218
230
  } from "./commands/ListAnalysisReportsCommand";
231
+ import {
232
+ ListContainerAssociationsCommandInput,
233
+ ListContainerAssociationsCommandOutput,
234
+ } from "./commands/ListContainerAssociationsCommand";
219
235
  import {
220
236
  ListFirewallPoliciesCommandInput,
221
237
  ListFirewallPoliciesCommandOutput,
@@ -292,6 +308,10 @@ import {
292
308
  UpdateAvailabilityZoneChangeProtectionCommandInput,
293
309
  UpdateAvailabilityZoneChangeProtectionCommandOutput,
294
310
  } from "./commands/UpdateAvailabilityZoneChangeProtectionCommand";
311
+ import {
312
+ UpdateContainerAssociationCommandInput,
313
+ UpdateContainerAssociationCommandOutput,
314
+ } from "./commands/UpdateContainerAssociationCommand";
295
315
  import {
296
316
  UpdateFirewallAnalysisSettingsCommandInput,
297
317
  UpdateFirewallAnalysisSettingsCommandOutput,
@@ -365,6 +385,7 @@ export type ServiceInputTypes =
365
385
  | AssociateFirewallPolicyCommandInput
366
386
  | AssociateSubnetsCommandInput
367
387
  | AttachRuleGroupsToProxyConfigurationCommandInput
388
+ | CreateContainerAssociationCommandInput
368
389
  | CreateFirewallCommandInput
369
390
  | CreateFirewallPolicyCommandInput
370
391
  | CreateProxyCommandInput
@@ -374,6 +395,7 @@ export type ServiceInputTypes =
374
395
  | CreateRuleGroupCommandInput
375
396
  | CreateTLSInspectionConfigurationCommandInput
376
397
  | CreateVpcEndpointAssociationCommandInput
398
+ | DeleteContainerAssociationCommandInput
377
399
  | DeleteFirewallCommandInput
378
400
  | DeleteFirewallPolicyCommandInput
379
401
  | DeleteNetworkFirewallTransitGatewayAttachmentCommandInput
@@ -385,6 +407,7 @@ export type ServiceInputTypes =
385
407
  | DeleteRuleGroupCommandInput
386
408
  | DeleteTLSInspectionConfigurationCommandInput
387
409
  | DeleteVpcEndpointAssociationCommandInput
410
+ | DescribeContainerAssociationCommandInput
388
411
  | DescribeFirewallCommandInput
389
412
  | DescribeFirewallMetadataCommandInput
390
413
  | DescribeFirewallPolicyCommandInput
@@ -405,6 +428,7 @@ export type ServiceInputTypes =
405
428
  | DisassociateSubnetsCommandInput
406
429
  | GetAnalysisReportResultsCommandInput
407
430
  | ListAnalysisReportsCommandInput
431
+ | ListContainerAssociationsCommandInput
408
432
  | ListFirewallPoliciesCommandInput
409
433
  | ListFirewallsCommandInput
410
434
  | ListFlowOperationResultsCommandInput
@@ -424,6 +448,7 @@ export type ServiceInputTypes =
424
448
  | TagResourceCommandInput
425
449
  | UntagResourceCommandInput
426
450
  | UpdateAvailabilityZoneChangeProtectionCommandInput
451
+ | UpdateContainerAssociationCommandInput
427
452
  | UpdateFirewallAnalysisSettingsCommandInput
428
453
  | UpdateFirewallDeleteProtectionCommandInput
429
454
  | UpdateFirewallDescriptionCommandInput
@@ -445,6 +470,7 @@ export type ServiceOutputTypes =
445
470
  | AssociateFirewallPolicyCommandOutput
446
471
  | AssociateSubnetsCommandOutput
447
472
  | AttachRuleGroupsToProxyConfigurationCommandOutput
473
+ | CreateContainerAssociationCommandOutput
448
474
  | CreateFirewallCommandOutput
449
475
  | CreateFirewallPolicyCommandOutput
450
476
  | CreateProxyCommandOutput
@@ -454,6 +480,7 @@ export type ServiceOutputTypes =
454
480
  | CreateRuleGroupCommandOutput
455
481
  | CreateTLSInspectionConfigurationCommandOutput
456
482
  | CreateVpcEndpointAssociationCommandOutput
483
+ | DeleteContainerAssociationCommandOutput
457
484
  | DeleteFirewallCommandOutput
458
485
  | DeleteFirewallPolicyCommandOutput
459
486
  | DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput
@@ -465,6 +492,7 @@ export type ServiceOutputTypes =
465
492
  | DeleteRuleGroupCommandOutput
466
493
  | DeleteTLSInspectionConfigurationCommandOutput
467
494
  | DeleteVpcEndpointAssociationCommandOutput
495
+ | DescribeContainerAssociationCommandOutput
468
496
  | DescribeFirewallCommandOutput
469
497
  | DescribeFirewallMetadataCommandOutput
470
498
  | DescribeFirewallPolicyCommandOutput
@@ -485,6 +513,7 @@ export type ServiceOutputTypes =
485
513
  | DisassociateSubnetsCommandOutput
486
514
  | GetAnalysisReportResultsCommandOutput
487
515
  | ListAnalysisReportsCommandOutput
516
+ | ListContainerAssociationsCommandOutput
488
517
  | ListFirewallPoliciesCommandOutput
489
518
  | ListFirewallsCommandOutput
490
519
  | ListFlowOperationResultsCommandOutput
@@ -504,6 +533,7 @@ export type ServiceOutputTypes =
504
533
  | TagResourceCommandOutput
505
534
  | UntagResourceCommandOutput
506
535
  | UpdateAvailabilityZoneChangeProtectionCommandOutput
536
+ | UpdateContainerAssociationCommandOutput
507
537
  | UpdateFirewallAnalysisSettingsCommandOutput
508
538
  | UpdateFirewallDeleteProtectionCommandOutput
509
539
  | UpdateFirewallDescriptionCommandOutput
@@ -0,0 +1,53 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateContainerAssociationRequest,
5
+ CreateContainerAssociationResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NetworkFirewallClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NetworkFirewallClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateContainerAssociationCommandInput
15
+ extends CreateContainerAssociationRequest {}
16
+ export interface CreateContainerAssociationCommandOutput
17
+ extends CreateContainerAssociationResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateContainerAssociationCommand_base: {
20
+ new (
21
+ input: CreateContainerAssociationCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ CreateContainerAssociationCommandInput,
24
+ CreateContainerAssociationCommandOutput,
25
+ NetworkFirewallClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateContainerAssociationCommandInput
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ CreateContainerAssociationCommandInput,
33
+ CreateContainerAssociationCommandOutput,
34
+ NetworkFirewallClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class CreateContainerAssociationCommand extends CreateContainerAssociationCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: CreateContainerAssociationRequest;
46
+ output: CreateContainerAssociationResponse;
47
+ };
48
+ sdk: {
49
+ input: CreateContainerAssociationCommandInput;
50
+ output: CreateContainerAssociationCommandOutput;
51
+ };
52
+ };
53
+ }
@@ -0,0 +1,53 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeleteContainerAssociationRequest,
5
+ DeleteContainerAssociationResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NetworkFirewallClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NetworkFirewallClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteContainerAssociationCommandInput
15
+ extends DeleteContainerAssociationRequest {}
16
+ export interface DeleteContainerAssociationCommandOutput
17
+ extends DeleteContainerAssociationResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteContainerAssociationCommand_base: {
20
+ new (
21
+ input: DeleteContainerAssociationCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ DeleteContainerAssociationCommandInput,
24
+ DeleteContainerAssociationCommandOutput,
25
+ NetworkFirewallClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [DeleteContainerAssociationCommandInput]
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ DeleteContainerAssociationCommandInput,
33
+ DeleteContainerAssociationCommandOutput,
34
+ NetworkFirewallClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class DeleteContainerAssociationCommand extends DeleteContainerAssociationCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: DeleteContainerAssociationRequest;
46
+ output: DeleteContainerAssociationResponse;
47
+ };
48
+ sdk: {
49
+ input: DeleteContainerAssociationCommandInput;
50
+ output: DeleteContainerAssociationCommandOutput;
51
+ };
52
+ };
53
+ }
@@ -0,0 +1,53 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DescribeContainerAssociationRequest,
5
+ DescribeContainerAssociationResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NetworkFirewallClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NetworkFirewallClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DescribeContainerAssociationCommandInput
15
+ extends DescribeContainerAssociationRequest {}
16
+ export interface DescribeContainerAssociationCommandOutput
17
+ extends DescribeContainerAssociationResponse,
18
+ __MetadataBearer {}
19
+ declare const DescribeContainerAssociationCommand_base: {
20
+ new (
21
+ input: DescribeContainerAssociationCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ DescribeContainerAssociationCommandInput,
24
+ DescribeContainerAssociationCommandOutput,
25
+ NetworkFirewallClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [DescribeContainerAssociationCommandInput]
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ DescribeContainerAssociationCommandInput,
33
+ DescribeContainerAssociationCommandOutput,
34
+ NetworkFirewallClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class DescribeContainerAssociationCommand extends DescribeContainerAssociationCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: DescribeContainerAssociationRequest;
46
+ output: DescribeContainerAssociationResponse;
47
+ };
48
+ sdk: {
49
+ input: DescribeContainerAssociationCommandInput;
50
+ output: DescribeContainerAssociationCommandOutput;
51
+ };
52
+ };
53
+ }
@@ -0,0 +1,53 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListContainerAssociationsRequest,
5
+ ListContainerAssociationsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NetworkFirewallClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NetworkFirewallClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListContainerAssociationsCommandInput
15
+ extends ListContainerAssociationsRequest {}
16
+ export interface ListContainerAssociationsCommandOutput
17
+ extends ListContainerAssociationsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListContainerAssociationsCommand_base: {
20
+ new (
21
+ input: ListContainerAssociationsCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ ListContainerAssociationsCommandInput,
24
+ ListContainerAssociationsCommandOutput,
25
+ NetworkFirewallClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [ListContainerAssociationsCommandInput]
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ ListContainerAssociationsCommandInput,
33
+ ListContainerAssociationsCommandOutput,
34
+ NetworkFirewallClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class ListContainerAssociationsCommand extends ListContainerAssociationsCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: ListContainerAssociationsRequest;
46
+ output: ListContainerAssociationsResponse;
47
+ };
48
+ sdk: {
49
+ input: ListContainerAssociationsCommandInput;
50
+ output: ListContainerAssociationsCommandOutput;
51
+ };
52
+ };
53
+ }
@@ -0,0 +1,53 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ UpdateContainerAssociationRequest,
5
+ UpdateContainerAssociationResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ NetworkFirewallClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../NetworkFirewallClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateContainerAssociationCommandInput
15
+ extends UpdateContainerAssociationRequest {}
16
+ export interface UpdateContainerAssociationCommandOutput
17
+ extends UpdateContainerAssociationResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateContainerAssociationCommand_base: {
20
+ new (
21
+ input: UpdateContainerAssociationCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ UpdateContainerAssociationCommandInput,
24
+ UpdateContainerAssociationCommandOutput,
25
+ NetworkFirewallClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: UpdateContainerAssociationCommandInput
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ UpdateContainerAssociationCommandInput,
33
+ UpdateContainerAssociationCommandOutput,
34
+ NetworkFirewallClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class UpdateContainerAssociationCommand extends UpdateContainerAssociationCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: UpdateContainerAssociationRequest;
46
+ output: UpdateContainerAssociationResponse;
47
+ };
48
+ sdk: {
49
+ input: UpdateContainerAssociationCommandInput;
50
+ output: UpdateContainerAssociationCommandOutput;
51
+ };
52
+ };
53
+ }
@@ -3,6 +3,7 @@ export * from "./AssociateAvailabilityZonesCommand";
3
3
  export * from "./AssociateFirewallPolicyCommand";
4
4
  export * from "./AssociateSubnetsCommand";
5
5
  export * from "./AttachRuleGroupsToProxyConfigurationCommand";
6
+ export * from "./CreateContainerAssociationCommand";
6
7
  export * from "./CreateFirewallCommand";
7
8
  export * from "./CreateFirewallPolicyCommand";
8
9
  export * from "./CreateProxyCommand";
@@ -12,6 +13,7 @@ export * from "./CreateProxyRulesCommand";
12
13
  export * from "./CreateRuleGroupCommand";
13
14
  export * from "./CreateTLSInspectionConfigurationCommand";
14
15
  export * from "./CreateVpcEndpointAssociationCommand";
16
+ export * from "./DeleteContainerAssociationCommand";
15
17
  export * from "./DeleteFirewallCommand";
16
18
  export * from "./DeleteFirewallPolicyCommand";
17
19
  export * from "./DeleteNetworkFirewallTransitGatewayAttachmentCommand";
@@ -23,6 +25,7 @@ export * from "./DeleteResourcePolicyCommand";
23
25
  export * from "./DeleteRuleGroupCommand";
24
26
  export * from "./DeleteTLSInspectionConfigurationCommand";
25
27
  export * from "./DeleteVpcEndpointAssociationCommand";
28
+ export * from "./DescribeContainerAssociationCommand";
26
29
  export * from "./DescribeFirewallCommand";
27
30
  export * from "./DescribeFirewallMetadataCommand";
28
31
  export * from "./DescribeFirewallPolicyCommand";
@@ -43,6 +46,7 @@ export * from "./DisassociateAvailabilityZonesCommand";
43
46
  export * from "./DisassociateSubnetsCommand";
44
47
  export * from "./GetAnalysisReportResultsCommand";
45
48
  export * from "./ListAnalysisReportsCommand";
49
+ export * from "./ListContainerAssociationsCommand";
46
50
  export * from "./ListFirewallPoliciesCommand";
47
51
  export * from "./ListFirewallsCommand";
48
52
  export * from "./ListFlowOperationResultsCommand";
@@ -62,6 +66,7 @@ export * from "./StartFlowFlushCommand";
62
66
  export * from "./TagResourceCommand";
63
67
  export * from "./UntagResourceCommand";
64
68
  export * from "./UpdateAvailabilityZoneChangeProtectionCommand";
69
+ export * from "./UpdateContainerAssociationCommand";
65
70
  export * from "./UpdateFirewallAnalysisSettingsCommand";
66
71
  export * from "./UpdateFirewallDeleteProtectionCommand";
67
72
  export * from "./UpdateFirewallDescriptionCommand";
@@ -60,6 +60,19 @@ export declare const ConfigurationSyncState: {
60
60
  };
61
61
  export type ConfigurationSyncState =
62
62
  (typeof ConfigurationSyncState)[keyof typeof ConfigurationSyncState];
63
+ export declare const ContainerAssociationStatus: {
64
+ readonly ACTIVE: "ACTIVE";
65
+ readonly CREATING: "CREATING";
66
+ readonly DELETING: "DELETING";
67
+ };
68
+ export type ContainerAssociationStatus =
69
+ (typeof ContainerAssociationStatus)[keyof typeof ContainerAssociationStatus];
70
+ export declare const ContainerMonitoringType: {
71
+ readonly ECS: "ECS";
72
+ readonly EKS: "EKS";
73
+ };
74
+ export type ContainerMonitoringType =
75
+ (typeof ContainerMonitoringType)[keyof typeof ContainerMonitoringType];
63
76
  export declare const EncryptionType: {
64
77
  readonly AWS_OWNED_KMS_KEY: "AWS_OWNED_KMS_KEY";
65
78
  readonly CUSTOMER_KMS: "CUSTOMER_KMS";