@aws-sdk/client-network-firewall 3.750.0 → 3.752.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 +36 -1
- package/dist-cjs/index.js +213 -0
- package/dist-es/NetworkFirewall.js +8 -0
- package/dist-es/commands/GetAnalysisReportResultsCommand.js +22 -0
- package/dist-es/commands/ListAnalysisReportsCommand.js +22 -0
- package/dist-es/commands/StartAnalysisReportCommand.js +22 -0
- package/dist-es/commands/UpdateFirewallAnalysisSettingsCommand.js +22 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/pagination/GetAnalysisReportResultsPaginator.js +4 -0
- package/dist-es/pagination/ListAnalysisReportsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_0.js +127 -0
- package/dist-types/NetworkFirewall.d.ts +34 -1
- package/dist-types/NetworkFirewallClient.d.ts +10 -3
- package/dist-types/commands/CreateFirewallCommand.d.ts +9 -2
- package/dist-types/commands/DeleteFirewallCommand.d.ts +3 -0
- package/dist-types/commands/DescribeFirewallCommand.d.ts +3 -0
- package/dist-types/commands/GetAnalysisReportResultsCommand.d.ts +121 -0
- package/dist-types/commands/ListAnalysisReportsCommand.d.ts +108 -0
- package/dist-types/commands/StartAnalysisReportCommand.d.ts +100 -0
- package/dist-types/commands/UpdateFirewallAnalysisSettingsCommand.d.ts +107 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/index.d.ts +4 -1
- package/dist-types/models/models_0.d.ts +335 -6
- package/dist-types/pagination/GetAnalysisReportResultsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAnalysisReportsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +36 -0
- package/dist-types/ts3.4/NetworkFirewall.d.ts +70 -0
- package/dist-types/ts3.4/NetworkFirewallClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/GetAnalysisReportResultsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAnalysisReportsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartAnalysisReportCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateFirewallAnalysisSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +76 -2
- package/dist-types/ts3.4/pagination/GetAnalysisReportResultsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAnalysisReportsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +48 -0
- package/package.json +1 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAnalysisReportsCommandInput,
|
|
4
|
+
ListAnalysisReportsCommandOutput,
|
|
5
|
+
} from "../commands/ListAnalysisReportsCommand";
|
|
6
|
+
import { NetworkFirewallPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListAnalysisReports: (
|
|
8
|
+
config: NetworkFirewallPaginationConfiguration,
|
|
9
|
+
input: ListAnalysisReportsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAnalysisReportsCommandOutput>;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
export * from "./GetAnalysisReportResultsPaginator";
|
|
1
2
|
export * from "./Interfaces";
|
|
3
|
+
export * from "./ListAnalysisReportsPaginator";
|
|
2
4
|
export * from "./ListFirewallPoliciesPaginator";
|
|
3
5
|
export * from "./ListFirewallsPaginator";
|
|
4
6
|
export * from "./ListRuleGroupsPaginator";
|
|
@@ -79,6 +79,14 @@ import {
|
|
|
79
79
|
DisassociateSubnetsCommandInput,
|
|
80
80
|
DisassociateSubnetsCommandOutput,
|
|
81
81
|
} from "../commands/DisassociateSubnetsCommand";
|
|
82
|
+
import {
|
|
83
|
+
GetAnalysisReportResultsCommandInput,
|
|
84
|
+
GetAnalysisReportResultsCommandOutput,
|
|
85
|
+
} from "../commands/GetAnalysisReportResultsCommand";
|
|
86
|
+
import {
|
|
87
|
+
ListAnalysisReportsCommandInput,
|
|
88
|
+
ListAnalysisReportsCommandOutput,
|
|
89
|
+
} from "../commands/ListAnalysisReportsCommand";
|
|
82
90
|
import {
|
|
83
91
|
ListFirewallPoliciesCommandInput,
|
|
84
92
|
ListFirewallPoliciesCommandOutput,
|
|
@@ -103,6 +111,10 @@ import {
|
|
|
103
111
|
PutResourcePolicyCommandInput,
|
|
104
112
|
PutResourcePolicyCommandOutput,
|
|
105
113
|
} from "../commands/PutResourcePolicyCommand";
|
|
114
|
+
import {
|
|
115
|
+
StartAnalysisReportCommandInput,
|
|
116
|
+
StartAnalysisReportCommandOutput,
|
|
117
|
+
} from "../commands/StartAnalysisReportCommand";
|
|
106
118
|
import {
|
|
107
119
|
TagResourceCommandInput,
|
|
108
120
|
TagResourceCommandOutput,
|
|
@@ -111,6 +123,10 @@ import {
|
|
|
111
123
|
UntagResourceCommandInput,
|
|
112
124
|
UntagResourceCommandOutput,
|
|
113
125
|
} from "../commands/UntagResourceCommand";
|
|
126
|
+
import {
|
|
127
|
+
UpdateFirewallAnalysisSettingsCommandInput,
|
|
128
|
+
UpdateFirewallAnalysisSettingsCommandOutput,
|
|
129
|
+
} from "../commands/UpdateFirewallAnalysisSettingsCommand";
|
|
114
130
|
import {
|
|
115
131
|
UpdateFirewallDeleteProtectionCommandInput,
|
|
116
132
|
UpdateFirewallDeleteProtectionCommandOutput,
|
|
@@ -223,6 +239,14 @@ export declare const se_DisassociateSubnetsCommand: (
|
|
|
223
239
|
input: DisassociateSubnetsCommandInput,
|
|
224
240
|
context: __SerdeContext
|
|
225
241
|
) => Promise<__HttpRequest>;
|
|
242
|
+
export declare const se_GetAnalysisReportResultsCommand: (
|
|
243
|
+
input: GetAnalysisReportResultsCommandInput,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<__HttpRequest>;
|
|
246
|
+
export declare const se_ListAnalysisReportsCommand: (
|
|
247
|
+
input: ListAnalysisReportsCommandInput,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<__HttpRequest>;
|
|
226
250
|
export declare const se_ListFirewallPoliciesCommand: (
|
|
227
251
|
input: ListFirewallPoliciesCommandInput,
|
|
228
252
|
context: __SerdeContext
|
|
@@ -247,6 +271,10 @@ export declare const se_PutResourcePolicyCommand: (
|
|
|
247
271
|
input: PutResourcePolicyCommandInput,
|
|
248
272
|
context: __SerdeContext
|
|
249
273
|
) => Promise<__HttpRequest>;
|
|
274
|
+
export declare const se_StartAnalysisReportCommand: (
|
|
275
|
+
input: StartAnalysisReportCommandInput,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<__HttpRequest>;
|
|
250
278
|
export declare const se_TagResourceCommand: (
|
|
251
279
|
input: TagResourceCommandInput,
|
|
252
280
|
context: __SerdeContext
|
|
@@ -255,6 +283,10 @@ export declare const se_UntagResourceCommand: (
|
|
|
255
283
|
input: UntagResourceCommandInput,
|
|
256
284
|
context: __SerdeContext
|
|
257
285
|
) => Promise<__HttpRequest>;
|
|
286
|
+
export declare const se_UpdateFirewallAnalysisSettingsCommand: (
|
|
287
|
+
input: UpdateFirewallAnalysisSettingsCommandInput,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<__HttpRequest>;
|
|
258
290
|
export declare const se_UpdateFirewallDeleteProtectionCommand: (
|
|
259
291
|
input: UpdateFirewallDeleteProtectionCommandInput,
|
|
260
292
|
context: __SerdeContext
|
|
@@ -367,6 +399,14 @@ export declare const de_DisassociateSubnetsCommand: (
|
|
|
367
399
|
output: __HttpResponse,
|
|
368
400
|
context: __SerdeContext
|
|
369
401
|
) => Promise<DisassociateSubnetsCommandOutput>;
|
|
402
|
+
export declare const de_GetAnalysisReportResultsCommand: (
|
|
403
|
+
output: __HttpResponse,
|
|
404
|
+
context: __SerdeContext
|
|
405
|
+
) => Promise<GetAnalysisReportResultsCommandOutput>;
|
|
406
|
+
export declare const de_ListAnalysisReportsCommand: (
|
|
407
|
+
output: __HttpResponse,
|
|
408
|
+
context: __SerdeContext
|
|
409
|
+
) => Promise<ListAnalysisReportsCommandOutput>;
|
|
370
410
|
export declare const de_ListFirewallPoliciesCommand: (
|
|
371
411
|
output: __HttpResponse,
|
|
372
412
|
context: __SerdeContext
|
|
@@ -391,6 +431,10 @@ export declare const de_PutResourcePolicyCommand: (
|
|
|
391
431
|
output: __HttpResponse,
|
|
392
432
|
context: __SerdeContext
|
|
393
433
|
) => Promise<PutResourcePolicyCommandOutput>;
|
|
434
|
+
export declare const de_StartAnalysisReportCommand: (
|
|
435
|
+
output: __HttpResponse,
|
|
436
|
+
context: __SerdeContext
|
|
437
|
+
) => Promise<StartAnalysisReportCommandOutput>;
|
|
394
438
|
export declare const de_TagResourceCommand: (
|
|
395
439
|
output: __HttpResponse,
|
|
396
440
|
context: __SerdeContext
|
|
@@ -399,6 +443,10 @@ export declare const de_UntagResourceCommand: (
|
|
|
399
443
|
output: __HttpResponse,
|
|
400
444
|
context: __SerdeContext
|
|
401
445
|
) => Promise<UntagResourceCommandOutput>;
|
|
446
|
+
export declare const de_UpdateFirewallAnalysisSettingsCommand: (
|
|
447
|
+
output: __HttpResponse,
|
|
448
|
+
context: __SerdeContext
|
|
449
|
+
) => Promise<UpdateFirewallAnalysisSettingsCommandOutput>;
|
|
402
450
|
export declare const de_UpdateFirewallDeleteProtectionCommand: (
|
|
403
451
|
output: __HttpResponse,
|
|
404
452
|
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.
|
|
4
|
+
"version": "3.752.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",
|