@aws-sdk/client-network-firewall 3.828.0 → 3.831.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 +56 -0
- package/dist-cjs/index.js +343 -58
- package/dist-es/NetworkFirewall.js +14 -0
- package/dist-es/commands/AcceptNetworkFirewallTransitGatewayAttachmentCommand.js +22 -0
- package/dist-es/commands/AssociateAvailabilityZonesCommand.js +22 -0
- package/dist-es/commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand.js +22 -0
- package/dist-es/commands/DescribeRuleGroupSummaryCommand.js +22 -0
- package/dist-es/commands/DisassociateAvailabilityZonesCommand.js +22 -0
- package/dist-es/commands/RejectNetworkFirewallTransitGatewayAttachmentCommand.js +22 -0
- package/dist-es/commands/UpdateAvailabilityZoneChangeProtectionCommand.js +22 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +58 -39
- package/dist-es/protocols/Aws_json1_0.js +142 -6
- package/dist-types/NetworkFirewall.d.ts +50 -0
- package/dist-types/NetworkFirewallClient.d.ts +9 -2
- package/dist-types/commands/AcceptNetworkFirewallTransitGatewayAttachmentCommand.d.ts +104 -0
- package/dist-types/commands/AssociateAvailabilityZonesCommand.d.ts +124 -0
- package/dist-types/commands/CreateFirewallCommand.d.ts +20 -0
- package/dist-types/commands/CreateFirewallPolicyCommand.d.ts +1 -0
- package/dist-types/commands/CreateRuleGroupCommand.d.ts +11 -1
- package/dist-types/commands/DeleteFirewallCommand.d.ts +13 -0
- package/dist-types/commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand.d.ts +103 -0
- package/dist-types/commands/DeleteRuleGroupCommand.d.ts +5 -0
- package/dist-types/commands/DescribeFirewallCommand.d.ts +13 -0
- package/dist-types/commands/DescribeFirewallMetadataCommand.d.ts +1 -0
- package/dist-types/commands/DescribeFirewallPolicyCommand.d.ts +1 -0
- package/dist-types/commands/DescribeRuleGroupCommand.d.ts +6 -1
- package/dist-types/commands/DescribeRuleGroupSummaryCommand.d.ts +112 -0
- package/dist-types/commands/DisassociateAvailabilityZonesCommand.d.ts +123 -0
- package/dist-types/commands/ListFirewallsCommand.d.ts +1 -0
- package/dist-types/commands/ListRuleGroupsCommand.d.ts +1 -1
- package/dist-types/commands/RejectNetworkFirewallTransitGatewayAttachmentCommand.d.ts +104 -0
- package/dist-types/commands/UpdateAvailabilityZoneChangeProtectionCommand.d.ts +111 -0
- package/dist-types/commands/UpdateFirewallPolicyCommand.d.ts +1 -0
- package/dist-types/commands/UpdateRuleGroupCommand.d.ts +11 -1
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +7 -7
- package/dist-types/models/models_0.d.ts +884 -138
- package/dist-types/protocols/Aws_json1_0.d.ts +63 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/NetworkFirewall.d.ts +144 -0
- package/dist-types/ts3.4/NetworkFirewallClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/AcceptNetworkFirewallTransitGatewayAttachmentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/AssociateAvailabilityZonesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeRuleGroupSummaryCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisassociateAvailabilityZonesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RejectNetworkFirewallTransitGatewayAttachmentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateAvailabilityZoneChangeProtectionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +7 -7
- package/dist-types/ts3.4/models/models_0.d.ts +170 -45
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +84 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -2
- package/package.json +2 -2
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { createAggregatedClient } from "@smithy/smithy-client";
|
|
2
|
+
import { AcceptNetworkFirewallTransitGatewayAttachmentCommand, } from "./commands/AcceptNetworkFirewallTransitGatewayAttachmentCommand";
|
|
3
|
+
import { AssociateAvailabilityZonesCommand, } from "./commands/AssociateAvailabilityZonesCommand";
|
|
2
4
|
import { AssociateFirewallPolicyCommand, } from "./commands/AssociateFirewallPolicyCommand";
|
|
3
5
|
import { AssociateSubnetsCommand, } from "./commands/AssociateSubnetsCommand";
|
|
4
6
|
import { CreateFirewallCommand, } from "./commands/CreateFirewallCommand";
|
|
@@ -8,6 +10,7 @@ import { CreateTLSInspectionConfigurationCommand, } from "./commands/CreateTLSIn
|
|
|
8
10
|
import { CreateVpcEndpointAssociationCommand, } from "./commands/CreateVpcEndpointAssociationCommand";
|
|
9
11
|
import { DeleteFirewallCommand, } from "./commands/DeleteFirewallCommand";
|
|
10
12
|
import { DeleteFirewallPolicyCommand, } from "./commands/DeleteFirewallPolicyCommand";
|
|
13
|
+
import { DeleteNetworkFirewallTransitGatewayAttachmentCommand, } from "./commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand";
|
|
11
14
|
import { DeleteResourcePolicyCommand, } from "./commands/DeleteResourcePolicyCommand";
|
|
12
15
|
import { DeleteRuleGroupCommand, } from "./commands/DeleteRuleGroupCommand";
|
|
13
16
|
import { DeleteTLSInspectionConfigurationCommand, } from "./commands/DeleteTLSInspectionConfigurationCommand";
|
|
@@ -20,8 +23,10 @@ import { DescribeLoggingConfigurationCommand, } from "./commands/DescribeLogging
|
|
|
20
23
|
import { DescribeResourcePolicyCommand, } from "./commands/DescribeResourcePolicyCommand";
|
|
21
24
|
import { DescribeRuleGroupCommand, } from "./commands/DescribeRuleGroupCommand";
|
|
22
25
|
import { DescribeRuleGroupMetadataCommand, } from "./commands/DescribeRuleGroupMetadataCommand";
|
|
26
|
+
import { DescribeRuleGroupSummaryCommand, } from "./commands/DescribeRuleGroupSummaryCommand";
|
|
23
27
|
import { DescribeTLSInspectionConfigurationCommand, } from "./commands/DescribeTLSInspectionConfigurationCommand";
|
|
24
28
|
import { DescribeVpcEndpointAssociationCommand, } from "./commands/DescribeVpcEndpointAssociationCommand";
|
|
29
|
+
import { DisassociateAvailabilityZonesCommand, } from "./commands/DisassociateAvailabilityZonesCommand";
|
|
25
30
|
import { DisassociateSubnetsCommand, } from "./commands/DisassociateSubnetsCommand";
|
|
26
31
|
import { GetAnalysisReportResultsCommand, } from "./commands/GetAnalysisReportResultsCommand";
|
|
27
32
|
import { ListAnalysisReportsCommand, } from "./commands/ListAnalysisReportsCommand";
|
|
@@ -34,11 +39,13 @@ import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceComma
|
|
|
34
39
|
import { ListTLSInspectionConfigurationsCommand, } from "./commands/ListTLSInspectionConfigurationsCommand";
|
|
35
40
|
import { ListVpcEndpointAssociationsCommand, } from "./commands/ListVpcEndpointAssociationsCommand";
|
|
36
41
|
import { PutResourcePolicyCommand, } from "./commands/PutResourcePolicyCommand";
|
|
42
|
+
import { RejectNetworkFirewallTransitGatewayAttachmentCommand, } from "./commands/RejectNetworkFirewallTransitGatewayAttachmentCommand";
|
|
37
43
|
import { StartAnalysisReportCommand, } from "./commands/StartAnalysisReportCommand";
|
|
38
44
|
import { StartFlowCaptureCommand, } from "./commands/StartFlowCaptureCommand";
|
|
39
45
|
import { StartFlowFlushCommand, } from "./commands/StartFlowFlushCommand";
|
|
40
46
|
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
41
47
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
48
|
+
import { UpdateAvailabilityZoneChangeProtectionCommand, } from "./commands/UpdateAvailabilityZoneChangeProtectionCommand";
|
|
42
49
|
import { UpdateFirewallAnalysisSettingsCommand, } from "./commands/UpdateFirewallAnalysisSettingsCommand";
|
|
43
50
|
import { UpdateFirewallDeleteProtectionCommand, } from "./commands/UpdateFirewallDeleteProtectionCommand";
|
|
44
51
|
import { UpdateFirewallDescriptionCommand, } from "./commands/UpdateFirewallDescriptionCommand";
|
|
@@ -51,6 +58,8 @@ import { UpdateSubnetChangeProtectionCommand, } from "./commands/UpdateSubnetCha
|
|
|
51
58
|
import { UpdateTLSInspectionConfigurationCommand, } from "./commands/UpdateTLSInspectionConfigurationCommand";
|
|
52
59
|
import { NetworkFirewallClient } from "./NetworkFirewallClient";
|
|
53
60
|
const commands = {
|
|
61
|
+
AcceptNetworkFirewallTransitGatewayAttachmentCommand,
|
|
62
|
+
AssociateAvailabilityZonesCommand,
|
|
54
63
|
AssociateFirewallPolicyCommand,
|
|
55
64
|
AssociateSubnetsCommand,
|
|
56
65
|
CreateFirewallCommand,
|
|
@@ -60,6 +69,7 @@ const commands = {
|
|
|
60
69
|
CreateVpcEndpointAssociationCommand,
|
|
61
70
|
DeleteFirewallCommand,
|
|
62
71
|
DeleteFirewallPolicyCommand,
|
|
72
|
+
DeleteNetworkFirewallTransitGatewayAttachmentCommand,
|
|
63
73
|
DeleteResourcePolicyCommand,
|
|
64
74
|
DeleteRuleGroupCommand,
|
|
65
75
|
DeleteTLSInspectionConfigurationCommand,
|
|
@@ -72,8 +82,10 @@ const commands = {
|
|
|
72
82
|
DescribeResourcePolicyCommand,
|
|
73
83
|
DescribeRuleGroupCommand,
|
|
74
84
|
DescribeRuleGroupMetadataCommand,
|
|
85
|
+
DescribeRuleGroupSummaryCommand,
|
|
75
86
|
DescribeTLSInspectionConfigurationCommand,
|
|
76
87
|
DescribeVpcEndpointAssociationCommand,
|
|
88
|
+
DisassociateAvailabilityZonesCommand,
|
|
77
89
|
DisassociateSubnetsCommand,
|
|
78
90
|
GetAnalysisReportResultsCommand,
|
|
79
91
|
ListAnalysisReportsCommand,
|
|
@@ -86,11 +98,13 @@ const commands = {
|
|
|
86
98
|
ListTLSInspectionConfigurationsCommand,
|
|
87
99
|
ListVpcEndpointAssociationsCommand,
|
|
88
100
|
PutResourcePolicyCommand,
|
|
101
|
+
RejectNetworkFirewallTransitGatewayAttachmentCommand,
|
|
89
102
|
StartAnalysisReportCommand,
|
|
90
103
|
StartFlowCaptureCommand,
|
|
91
104
|
StartFlowFlushCommand,
|
|
92
105
|
TagResourceCommand,
|
|
93
106
|
UntagResourceCommand,
|
|
107
|
+
UpdateAvailabilityZoneChangeProtectionCommand,
|
|
94
108
|
UpdateFirewallAnalysisSettingsCommand,
|
|
95
109
|
UpdateFirewallDeleteProtectionCommand,
|
|
96
110
|
UpdateFirewallDescriptionCommand,
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_AcceptNetworkFirewallTransitGatewayAttachmentCommand, se_AcceptNetworkFirewallTransitGatewayAttachmentCommand, } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class AcceptNetworkFirewallTransitGatewayAttachmentCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("NetworkFirewall_20201112", "AcceptNetworkFirewallTransitGatewayAttachment", {})
|
|
17
|
+
.n("NetworkFirewallClient", "AcceptNetworkFirewallTransitGatewayAttachmentCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_AcceptNetworkFirewallTransitGatewayAttachmentCommand)
|
|
20
|
+
.de(de_AcceptNetworkFirewallTransitGatewayAttachmentCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_AssociateAvailabilityZonesCommand, se_AssociateAvailabilityZonesCommand } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class AssociateAvailabilityZonesCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("NetworkFirewall_20201112", "AssociateAvailabilityZones", {})
|
|
17
|
+
.n("NetworkFirewallClient", "AssociateAvailabilityZonesCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_AssociateAvailabilityZonesCommand)
|
|
20
|
+
.de(de_AssociateAvailabilityZonesCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_DeleteNetworkFirewallTransitGatewayAttachmentCommand, se_DeleteNetworkFirewallTransitGatewayAttachmentCommand, } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DeleteNetworkFirewallTransitGatewayAttachmentCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("NetworkFirewall_20201112", "DeleteNetworkFirewallTransitGatewayAttachment", {})
|
|
17
|
+
.n("NetworkFirewallClient", "DeleteNetworkFirewallTransitGatewayAttachmentCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_DeleteNetworkFirewallTransitGatewayAttachmentCommand)
|
|
20
|
+
.de(de_DeleteNetworkFirewallTransitGatewayAttachmentCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_DescribeRuleGroupSummaryCommand, se_DescribeRuleGroupSummaryCommand } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DescribeRuleGroupSummaryCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("NetworkFirewall_20201112", "DescribeRuleGroupSummary", {})
|
|
17
|
+
.n("NetworkFirewallClient", "DescribeRuleGroupSummaryCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_DescribeRuleGroupSummaryCommand)
|
|
20
|
+
.de(de_DescribeRuleGroupSummaryCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_DisassociateAvailabilityZonesCommand, se_DisassociateAvailabilityZonesCommand, } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DisassociateAvailabilityZonesCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("NetworkFirewall_20201112", "DisassociateAvailabilityZones", {})
|
|
17
|
+
.n("NetworkFirewallClient", "DisassociateAvailabilityZonesCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_DisassociateAvailabilityZonesCommand)
|
|
20
|
+
.de(de_DisassociateAvailabilityZonesCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_RejectNetworkFirewallTransitGatewayAttachmentCommand, se_RejectNetworkFirewallTransitGatewayAttachmentCommand, } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class RejectNetworkFirewallTransitGatewayAttachmentCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("NetworkFirewall_20201112", "RejectNetworkFirewallTransitGatewayAttachment", {})
|
|
17
|
+
.n("NetworkFirewallClient", "RejectNetworkFirewallTransitGatewayAttachmentCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_RejectNetworkFirewallTransitGatewayAttachmentCommand)
|
|
20
|
+
.de(de_RejectNetworkFirewallTransitGatewayAttachmentCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_UpdateAvailabilityZoneChangeProtectionCommand, se_UpdateAvailabilityZoneChangeProtectionCommand, } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class UpdateAvailabilityZoneChangeProtectionCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("NetworkFirewall_20201112", "UpdateAvailabilityZoneChangeProtection", {})
|
|
17
|
+
.n("NetworkFirewallClient", "UpdateAvailabilityZoneChangeProtectionCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_UpdateAvailabilityZoneChangeProtectionCommand)
|
|
20
|
+
.de(de_UpdateAvailabilityZoneChangeProtectionCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
export * from "./AcceptNetworkFirewallTransitGatewayAttachmentCommand";
|
|
2
|
+
export * from "./AssociateAvailabilityZonesCommand";
|
|
1
3
|
export * from "./AssociateFirewallPolicyCommand";
|
|
2
4
|
export * from "./AssociateSubnetsCommand";
|
|
3
5
|
export * from "./CreateFirewallCommand";
|
|
@@ -7,6 +9,7 @@ export * from "./CreateTLSInspectionConfigurationCommand";
|
|
|
7
9
|
export * from "./CreateVpcEndpointAssociationCommand";
|
|
8
10
|
export * from "./DeleteFirewallCommand";
|
|
9
11
|
export * from "./DeleteFirewallPolicyCommand";
|
|
12
|
+
export * from "./DeleteNetworkFirewallTransitGatewayAttachmentCommand";
|
|
10
13
|
export * from "./DeleteResourcePolicyCommand";
|
|
11
14
|
export * from "./DeleteRuleGroupCommand";
|
|
12
15
|
export * from "./DeleteTLSInspectionConfigurationCommand";
|
|
@@ -19,8 +22,10 @@ export * from "./DescribeLoggingConfigurationCommand";
|
|
|
19
22
|
export * from "./DescribeResourcePolicyCommand";
|
|
20
23
|
export * from "./DescribeRuleGroupCommand";
|
|
21
24
|
export * from "./DescribeRuleGroupMetadataCommand";
|
|
25
|
+
export * from "./DescribeRuleGroupSummaryCommand";
|
|
22
26
|
export * from "./DescribeTLSInspectionConfigurationCommand";
|
|
23
27
|
export * from "./DescribeVpcEndpointAssociationCommand";
|
|
28
|
+
export * from "./DisassociateAvailabilityZonesCommand";
|
|
24
29
|
export * from "./DisassociateSubnetsCommand";
|
|
25
30
|
export * from "./GetAnalysisReportResultsCommand";
|
|
26
31
|
export * from "./ListAnalysisReportsCommand";
|
|
@@ -33,11 +38,13 @@ export * from "./ListTLSInspectionConfigurationsCommand";
|
|
|
33
38
|
export * from "./ListTagsForResourceCommand";
|
|
34
39
|
export * from "./ListVpcEndpointAssociationsCommand";
|
|
35
40
|
export * from "./PutResourcePolicyCommand";
|
|
41
|
+
export * from "./RejectNetworkFirewallTransitGatewayAttachmentCommand";
|
|
36
42
|
export * from "./StartAnalysisReportCommand";
|
|
37
43
|
export * from "./StartFlowCaptureCommand";
|
|
38
44
|
export * from "./StartFlowFlushCommand";
|
|
39
45
|
export * from "./TagResourceCommand";
|
|
40
46
|
export * from "./UntagResourceCommand";
|
|
47
|
+
export * from "./UpdateAvailabilityZoneChangeProtectionCommand";
|
|
41
48
|
export * from "./UpdateFirewallAnalysisSettingsCommand";
|
|
42
49
|
export * from "./UpdateFirewallDeleteProtectionCommand";
|
|
43
50
|
export * from "./UpdateFirewallDescriptionCommand";
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
import { NetworkFirewallServiceException as __BaseException } from "./NetworkFirewallServiceException";
|
|
2
|
-
export const
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
export const TransitGatewayAttachmentStatus = {
|
|
3
|
+
CREATING: "CREATING",
|
|
4
|
+
DELETED: "DELETED",
|
|
5
|
+
DELETING: "DELETING",
|
|
6
|
+
ERROR: "ERROR",
|
|
7
|
+
FAILED: "FAILED",
|
|
8
|
+
PENDING_ACCEPTANCE: "PENDING_ACCEPTANCE",
|
|
9
|
+
READY: "READY",
|
|
10
|
+
REJECTED: "REJECTED",
|
|
11
|
+
REJECTING: "REJECTING",
|
|
9
12
|
};
|
|
10
13
|
export class InternalServerError extends __BaseException {
|
|
11
14
|
name = "InternalServerError";
|
|
@@ -21,20 +24,6 @@ export class InternalServerError extends __BaseException {
|
|
|
21
24
|
this.Message = opts.Message;
|
|
22
25
|
}
|
|
23
26
|
}
|
|
24
|
-
export class InvalidOperationException extends __BaseException {
|
|
25
|
-
name = "InvalidOperationException";
|
|
26
|
-
$fault = "client";
|
|
27
|
-
Message;
|
|
28
|
-
constructor(opts) {
|
|
29
|
-
super({
|
|
30
|
-
name: "InvalidOperationException",
|
|
31
|
-
$fault: "client",
|
|
32
|
-
...opts,
|
|
33
|
-
});
|
|
34
|
-
Object.setPrototypeOf(this, InvalidOperationException.prototype);
|
|
35
|
-
this.Message = opts.Message;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
27
|
export class InvalidRequestException extends __BaseException {
|
|
39
28
|
name = "InvalidRequestException";
|
|
40
29
|
$fault = "client";
|
|
@@ -49,20 +38,6 @@ export class InvalidRequestException extends __BaseException {
|
|
|
49
38
|
this.Message = opts.Message;
|
|
50
39
|
}
|
|
51
40
|
}
|
|
52
|
-
export class InvalidTokenException extends __BaseException {
|
|
53
|
-
name = "InvalidTokenException";
|
|
54
|
-
$fault = "client";
|
|
55
|
-
Message;
|
|
56
|
-
constructor(opts) {
|
|
57
|
-
super({
|
|
58
|
-
name: "InvalidTokenException",
|
|
59
|
-
$fault: "client",
|
|
60
|
-
...opts,
|
|
61
|
-
});
|
|
62
|
-
Object.setPrototypeOf(this, InvalidTokenException.prototype);
|
|
63
|
-
this.Message = opts.Message;
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
41
|
export class ResourceNotFoundException extends __BaseException {
|
|
67
42
|
name = "ResourceNotFoundException";
|
|
68
43
|
$fault = "client";
|
|
@@ -91,10 +66,13 @@ export class ThrottlingException extends __BaseException {
|
|
|
91
66
|
this.Message = opts.Message;
|
|
92
67
|
}
|
|
93
68
|
}
|
|
94
|
-
export const
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
69
|
+
export const EnabledAnalysisType = {
|
|
70
|
+
HTTP_HOST: "HTTP_HOST",
|
|
71
|
+
TLS_SNI: "TLS_SNI",
|
|
72
|
+
};
|
|
73
|
+
export const IdentifiedType = {
|
|
74
|
+
STATELESS_RULE_CONTAINS_TCP_FLAGS: "STATELESS_RULE_CONTAINS_TCP_FLAGS",
|
|
75
|
+
STATELESS_RULE_FORWARDING_ASYMMETRICALLY: "STATELESS_RULE_FORWARDING_ASYMMETRICALLY",
|
|
98
76
|
};
|
|
99
77
|
export class InsufficientCapacityException extends __BaseException {
|
|
100
78
|
name = "InsufficientCapacityException";
|
|
@@ -110,6 +88,39 @@ export class InsufficientCapacityException extends __BaseException {
|
|
|
110
88
|
this.Message = opts.Message;
|
|
111
89
|
}
|
|
112
90
|
}
|
|
91
|
+
export class InvalidOperationException extends __BaseException {
|
|
92
|
+
name = "InvalidOperationException";
|
|
93
|
+
$fault = "client";
|
|
94
|
+
Message;
|
|
95
|
+
constructor(opts) {
|
|
96
|
+
super({
|
|
97
|
+
name: "InvalidOperationException",
|
|
98
|
+
$fault: "client",
|
|
99
|
+
...opts,
|
|
100
|
+
});
|
|
101
|
+
Object.setPrototypeOf(this, InvalidOperationException.prototype);
|
|
102
|
+
this.Message = opts.Message;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
export class InvalidTokenException extends __BaseException {
|
|
106
|
+
name = "InvalidTokenException";
|
|
107
|
+
$fault = "client";
|
|
108
|
+
Message;
|
|
109
|
+
constructor(opts) {
|
|
110
|
+
super({
|
|
111
|
+
name: "InvalidTokenException",
|
|
112
|
+
$fault: "client",
|
|
113
|
+
...opts,
|
|
114
|
+
});
|
|
115
|
+
Object.setPrototypeOf(this, InvalidTokenException.prototype);
|
|
116
|
+
this.Message = opts.Message;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
export const IPAddressType = {
|
|
120
|
+
DUALSTACK: "DUALSTACK",
|
|
121
|
+
IPV4: "IPV4",
|
|
122
|
+
IPV6: "IPV6",
|
|
123
|
+
};
|
|
113
124
|
export const AttachmentStatus = {
|
|
114
125
|
CREATING: "CREATING",
|
|
115
126
|
DELETING: "DELETING",
|
|
@@ -198,12 +209,14 @@ export const StatefulRuleProtocol = {
|
|
|
198
209
|
DNS: "DNS",
|
|
199
210
|
FTP: "FTP",
|
|
200
211
|
HTTP: "HTTP",
|
|
212
|
+
HTTP2: "HTTP2",
|
|
201
213
|
ICMP: "ICMP",
|
|
202
214
|
IKEV2: "IKEV2",
|
|
203
215
|
IMAP: "IMAP",
|
|
204
216
|
KRB5: "KRB5",
|
|
205
217
|
MSN: "MSN",
|
|
206
218
|
NTP: "NTP",
|
|
219
|
+
QUIC: "QUIC",
|
|
207
220
|
SMB: "SMB",
|
|
208
221
|
SMTP: "SMTP",
|
|
209
222
|
SSH: "SSH",
|
|
@@ -222,6 +235,11 @@ export const TCPFlag = {
|
|
|
222
235
|
SYN: "SYN",
|
|
223
236
|
URG: "URG",
|
|
224
237
|
};
|
|
238
|
+
export const SummaryRuleOption = {
|
|
239
|
+
METADATA: "METADATA",
|
|
240
|
+
MSG: "MSG",
|
|
241
|
+
SID: "SID",
|
|
242
|
+
};
|
|
225
243
|
export const RuleGroupType = {
|
|
226
244
|
STATEFUL: "STATEFUL",
|
|
227
245
|
STATELESS: "STATELESS",
|
|
@@ -275,6 +293,7 @@ export const LogType = {
|
|
|
275
293
|
TLS: "TLS",
|
|
276
294
|
};
|
|
277
295
|
export const ResourceManagedType = {
|
|
296
|
+
ACTIVE_THREAT_DEFENSE: "ACTIVE_THREAT_DEFENSE",
|
|
278
297
|
AWS_MANAGED_DOMAIN_LISTS: "AWS_MANAGED_DOMAIN_LISTS",
|
|
279
298
|
AWS_MANAGED_THREAT_SIGNATURES: "AWS_MANAGED_THREAT_SIGNATURES",
|
|
280
299
|
};
|