@aws-sdk/client-network-firewall 3.936.0 → 3.940.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 +183 -7
- package/dist-cjs/index.js +1000 -42
- package/dist-es/NetworkFirewall.js +44 -0
- package/dist-es/commands/AttachRuleGroupsToProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/CreateProxyCommand.js +16 -0
- package/dist-es/commands/CreateProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/CreateProxyRuleGroupCommand.js +16 -0
- package/dist-es/commands/CreateProxyRulesCommand.js +16 -0
- package/dist-es/commands/DeleteProxyCommand.js +16 -0
- package/dist-es/commands/DeleteProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/DeleteProxyRuleGroupCommand.js +16 -0
- package/dist-es/commands/DeleteProxyRulesCommand.js +16 -0
- package/dist-es/commands/DescribeProxyCommand.js +16 -0
- package/dist-es/commands/DescribeProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/DescribeProxyRuleCommand.js +16 -0
- package/dist-es/commands/DescribeProxyRuleGroupCommand.js +16 -0
- package/dist-es/commands/DetachRuleGroupsFromProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/ListProxiesCommand.js +16 -0
- package/dist-es/commands/ListProxyConfigurationsCommand.js +16 -0
- package/dist-es/commands/ListProxyRuleGroupsCommand.js +16 -0
- package/dist-es/commands/UpdateProxyCommand.js +16 -0
- package/dist-es/commands/UpdateProxyConfigurationCommand.js +16 -0
- package/dist-es/commands/UpdateProxyRuleCommand.js +16 -0
- package/dist-es/commands/UpdateProxyRuleGroupPrioritiesCommand.js +16 -0
- package/dist-es/commands/UpdateProxyRulePrioritiesCommand.js +16 -0
- package/dist-es/commands/index.js +22 -0
- package/dist-es/models/enums.js +31 -0
- package/dist-es/pagination/ListProxiesPaginator.js +4 -0
- package/dist-es/pagination/ListProxyConfigurationsPaginator.js +4 -0
- package/dist-es/pagination/ListProxyRuleGroupsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +649 -42
- package/dist-types/NetworkFirewall.d.ts +162 -0
- package/dist-types/NetworkFirewallClient.d.ts +24 -2
- package/dist-types/commands/AttachRuleGroupsToProxyConfigurationCommand.d.ts +136 -0
- package/dist-types/commands/CreateProxyCommand.d.ts +159 -0
- package/dist-types/commands/CreateProxyConfigurationCommand.d.ts +151 -0
- package/dist-types/commands/CreateProxyRuleGroupCommand.d.ts +225 -0
- package/dist-types/commands/CreateProxyRulesCommand.d.ts +216 -0
- package/dist-types/commands/DeleteProxyCommand.d.ts +108 -0
- package/dist-types/commands/DeleteProxyConfigurationCommand.d.ts +102 -0
- package/dist-types/commands/DeleteProxyRuleGroupCommand.d.ts +102 -0
- package/dist-types/commands/DeleteProxyRulesCommand.d.ts +167 -0
- package/dist-types/commands/DescribeProxyCommand.d.ts +133 -0
- package/dist-types/commands/DescribeProxyConfigurationCommand.d.ts +127 -0
- package/dist-types/commands/DescribeProxyRuleCommand.d.ts +116 -0
- package/dist-types/commands/DescribeProxyRuleGroupCommand.d.ts +164 -0
- package/dist-types/commands/DetachRuleGroupsFromProxyConfigurationCommand.d.ts +136 -0
- package/dist-types/commands/ListProxiesCommand.d.ts +106 -0
- package/dist-types/commands/ListProxyConfigurationsCommand.d.ts +109 -0
- package/dist-types/commands/ListProxyRuleGroupsCommand.d.ts +109 -0
- package/dist-types/commands/UpdateProxyCommand.d.ts +152 -0
- package/dist-types/commands/UpdateProxyConfigurationCommand.d.ts +133 -0
- package/dist-types/commands/UpdateProxyRuleCommand.d.ts +146 -0
- package/dist-types/commands/UpdateProxyRuleGroupPrioritiesCommand.d.ts +114 -0
- package/dist-types/commands/UpdateProxyRulePrioritiesCommand.d.ts +118 -0
- package/dist-types/commands/index.d.ts +22 -0
- package/dist-types/models/enums.d.ts +79 -0
- package/dist-types/models/models_0.d.ts +1834 -264
- package/dist-types/pagination/ListProxiesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListProxyConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListProxyRuleGroupsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +104 -0
- package/dist-types/ts3.4/NetworkFirewall.d.ts +394 -0
- package/dist-types/ts3.4/NetworkFirewallClient.d.ts +132 -0
- package/dist-types/ts3.4/commands/AttachRuleGroupsToProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateProxyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateProxyRuleGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateProxyRulesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteProxyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteProxyRuleGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteProxyRulesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeProxyCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeProxyRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeProxyRuleGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DetachRuleGroupsFromProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListProxiesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListProxyConfigurationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListProxyRuleGroupsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateProxyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateProxyConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateProxyRuleCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateProxyRuleGroupPrioritiesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateProxyRulePrioritiesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +22 -0
- package/dist-types/ts3.4/models/enums.d.ts +42 -0
- package/dist-types/ts3.4/models/models_0.d.ts +372 -4
- package/dist-types/ts3.4/pagination/ListProxiesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListProxyConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListProxyRuleGroupsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +104 -0
- package/package.json +5 -5
|
@@ -3,14 +3,23 @@ import { AcceptNetworkFirewallTransitGatewayAttachmentCommand, } from "./command
|
|
|
3
3
|
import { AssociateAvailabilityZonesCommand, } from "./commands/AssociateAvailabilityZonesCommand";
|
|
4
4
|
import { AssociateFirewallPolicyCommand, } from "./commands/AssociateFirewallPolicyCommand";
|
|
5
5
|
import { AssociateSubnetsCommand, } from "./commands/AssociateSubnetsCommand";
|
|
6
|
+
import { AttachRuleGroupsToProxyConfigurationCommand, } from "./commands/AttachRuleGroupsToProxyConfigurationCommand";
|
|
6
7
|
import { CreateFirewallCommand, } from "./commands/CreateFirewallCommand";
|
|
7
8
|
import { CreateFirewallPolicyCommand, } from "./commands/CreateFirewallPolicyCommand";
|
|
9
|
+
import { CreateProxyCommand } from "./commands/CreateProxyCommand";
|
|
10
|
+
import { CreateProxyConfigurationCommand, } from "./commands/CreateProxyConfigurationCommand";
|
|
11
|
+
import { CreateProxyRuleGroupCommand, } from "./commands/CreateProxyRuleGroupCommand";
|
|
12
|
+
import { CreateProxyRulesCommand, } from "./commands/CreateProxyRulesCommand";
|
|
8
13
|
import { CreateRuleGroupCommand, } from "./commands/CreateRuleGroupCommand";
|
|
9
14
|
import { CreateTLSInspectionConfigurationCommand, } from "./commands/CreateTLSInspectionConfigurationCommand";
|
|
10
15
|
import { CreateVpcEndpointAssociationCommand, } from "./commands/CreateVpcEndpointAssociationCommand";
|
|
11
16
|
import { DeleteFirewallCommand, } from "./commands/DeleteFirewallCommand";
|
|
12
17
|
import { DeleteFirewallPolicyCommand, } from "./commands/DeleteFirewallPolicyCommand";
|
|
13
18
|
import { DeleteNetworkFirewallTransitGatewayAttachmentCommand, } from "./commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand";
|
|
19
|
+
import { DeleteProxyCommand } from "./commands/DeleteProxyCommand";
|
|
20
|
+
import { DeleteProxyConfigurationCommand, } from "./commands/DeleteProxyConfigurationCommand";
|
|
21
|
+
import { DeleteProxyRuleGroupCommand, } from "./commands/DeleteProxyRuleGroupCommand";
|
|
22
|
+
import { DeleteProxyRulesCommand, } from "./commands/DeleteProxyRulesCommand";
|
|
14
23
|
import { DeleteResourcePolicyCommand, } from "./commands/DeleteResourcePolicyCommand";
|
|
15
24
|
import { DeleteRuleGroupCommand, } from "./commands/DeleteRuleGroupCommand";
|
|
16
25
|
import { DeleteTLSInspectionConfigurationCommand, } from "./commands/DeleteTLSInspectionConfigurationCommand";
|
|
@@ -20,12 +29,17 @@ import { DescribeFirewallMetadataCommand, } from "./commands/DescribeFirewallMet
|
|
|
20
29
|
import { DescribeFirewallPolicyCommand, } from "./commands/DescribeFirewallPolicyCommand";
|
|
21
30
|
import { DescribeFlowOperationCommand, } from "./commands/DescribeFlowOperationCommand";
|
|
22
31
|
import { DescribeLoggingConfigurationCommand, } from "./commands/DescribeLoggingConfigurationCommand";
|
|
32
|
+
import { DescribeProxyCommand, } from "./commands/DescribeProxyCommand";
|
|
33
|
+
import { DescribeProxyConfigurationCommand, } from "./commands/DescribeProxyConfigurationCommand";
|
|
34
|
+
import { DescribeProxyRuleCommand, } from "./commands/DescribeProxyRuleCommand";
|
|
35
|
+
import { DescribeProxyRuleGroupCommand, } from "./commands/DescribeProxyRuleGroupCommand";
|
|
23
36
|
import { DescribeResourcePolicyCommand, } from "./commands/DescribeResourcePolicyCommand";
|
|
24
37
|
import { DescribeRuleGroupCommand, } from "./commands/DescribeRuleGroupCommand";
|
|
25
38
|
import { DescribeRuleGroupMetadataCommand, } from "./commands/DescribeRuleGroupMetadataCommand";
|
|
26
39
|
import { DescribeRuleGroupSummaryCommand, } from "./commands/DescribeRuleGroupSummaryCommand";
|
|
27
40
|
import { DescribeTLSInspectionConfigurationCommand, } from "./commands/DescribeTLSInspectionConfigurationCommand";
|
|
28
41
|
import { DescribeVpcEndpointAssociationCommand, } from "./commands/DescribeVpcEndpointAssociationCommand";
|
|
42
|
+
import { DetachRuleGroupsFromProxyConfigurationCommand, } from "./commands/DetachRuleGroupsFromProxyConfigurationCommand";
|
|
29
43
|
import { DisassociateAvailabilityZonesCommand, } from "./commands/DisassociateAvailabilityZonesCommand";
|
|
30
44
|
import { DisassociateSubnetsCommand, } from "./commands/DisassociateSubnetsCommand";
|
|
31
45
|
import { GetAnalysisReportResultsCommand, } from "./commands/GetAnalysisReportResultsCommand";
|
|
@@ -34,6 +48,9 @@ import { ListFirewallPoliciesCommand, } from "./commands/ListFirewallPoliciesCom
|
|
|
34
48
|
import { ListFirewallsCommand, } from "./commands/ListFirewallsCommand";
|
|
35
49
|
import { ListFlowOperationResultsCommand, } from "./commands/ListFlowOperationResultsCommand";
|
|
36
50
|
import { ListFlowOperationsCommand, } from "./commands/ListFlowOperationsCommand";
|
|
51
|
+
import { ListProxiesCommand } from "./commands/ListProxiesCommand";
|
|
52
|
+
import { ListProxyConfigurationsCommand, } from "./commands/ListProxyConfigurationsCommand";
|
|
53
|
+
import { ListProxyRuleGroupsCommand, } from "./commands/ListProxyRuleGroupsCommand";
|
|
37
54
|
import { ListRuleGroupsCommand, } from "./commands/ListRuleGroupsCommand";
|
|
38
55
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
39
56
|
import { ListTLSInspectionConfigurationsCommand, } from "./commands/ListTLSInspectionConfigurationsCommand";
|
|
@@ -53,6 +70,11 @@ import { UpdateFirewallEncryptionConfigurationCommand, } from "./commands/Update
|
|
|
53
70
|
import { UpdateFirewallPolicyChangeProtectionCommand, } from "./commands/UpdateFirewallPolicyChangeProtectionCommand";
|
|
54
71
|
import { UpdateFirewallPolicyCommand, } from "./commands/UpdateFirewallPolicyCommand";
|
|
55
72
|
import { UpdateLoggingConfigurationCommand, } from "./commands/UpdateLoggingConfigurationCommand";
|
|
73
|
+
import { UpdateProxyCommand } from "./commands/UpdateProxyCommand";
|
|
74
|
+
import { UpdateProxyConfigurationCommand, } from "./commands/UpdateProxyConfigurationCommand";
|
|
75
|
+
import { UpdateProxyRuleCommand, } from "./commands/UpdateProxyRuleCommand";
|
|
76
|
+
import { UpdateProxyRuleGroupPrioritiesCommand, } from "./commands/UpdateProxyRuleGroupPrioritiesCommand";
|
|
77
|
+
import { UpdateProxyRulePrioritiesCommand, } from "./commands/UpdateProxyRulePrioritiesCommand";
|
|
56
78
|
import { UpdateRuleGroupCommand, } from "./commands/UpdateRuleGroupCommand";
|
|
57
79
|
import { UpdateSubnetChangeProtectionCommand, } from "./commands/UpdateSubnetChangeProtectionCommand";
|
|
58
80
|
import { UpdateTLSInspectionConfigurationCommand, } from "./commands/UpdateTLSInspectionConfigurationCommand";
|
|
@@ -62,14 +84,23 @@ const commands = {
|
|
|
62
84
|
AssociateAvailabilityZonesCommand,
|
|
63
85
|
AssociateFirewallPolicyCommand,
|
|
64
86
|
AssociateSubnetsCommand,
|
|
87
|
+
AttachRuleGroupsToProxyConfigurationCommand,
|
|
65
88
|
CreateFirewallCommand,
|
|
66
89
|
CreateFirewallPolicyCommand,
|
|
90
|
+
CreateProxyCommand,
|
|
91
|
+
CreateProxyConfigurationCommand,
|
|
92
|
+
CreateProxyRuleGroupCommand,
|
|
93
|
+
CreateProxyRulesCommand,
|
|
67
94
|
CreateRuleGroupCommand,
|
|
68
95
|
CreateTLSInspectionConfigurationCommand,
|
|
69
96
|
CreateVpcEndpointAssociationCommand,
|
|
70
97
|
DeleteFirewallCommand,
|
|
71
98
|
DeleteFirewallPolicyCommand,
|
|
72
99
|
DeleteNetworkFirewallTransitGatewayAttachmentCommand,
|
|
100
|
+
DeleteProxyCommand,
|
|
101
|
+
DeleteProxyConfigurationCommand,
|
|
102
|
+
DeleteProxyRuleGroupCommand,
|
|
103
|
+
DeleteProxyRulesCommand,
|
|
73
104
|
DeleteResourcePolicyCommand,
|
|
74
105
|
DeleteRuleGroupCommand,
|
|
75
106
|
DeleteTLSInspectionConfigurationCommand,
|
|
@@ -79,12 +110,17 @@ const commands = {
|
|
|
79
110
|
DescribeFirewallPolicyCommand,
|
|
80
111
|
DescribeFlowOperationCommand,
|
|
81
112
|
DescribeLoggingConfigurationCommand,
|
|
113
|
+
DescribeProxyCommand,
|
|
114
|
+
DescribeProxyConfigurationCommand,
|
|
115
|
+
DescribeProxyRuleCommand,
|
|
116
|
+
DescribeProxyRuleGroupCommand,
|
|
82
117
|
DescribeResourcePolicyCommand,
|
|
83
118
|
DescribeRuleGroupCommand,
|
|
84
119
|
DescribeRuleGroupMetadataCommand,
|
|
85
120
|
DescribeRuleGroupSummaryCommand,
|
|
86
121
|
DescribeTLSInspectionConfigurationCommand,
|
|
87
122
|
DescribeVpcEndpointAssociationCommand,
|
|
123
|
+
DetachRuleGroupsFromProxyConfigurationCommand,
|
|
88
124
|
DisassociateAvailabilityZonesCommand,
|
|
89
125
|
DisassociateSubnetsCommand,
|
|
90
126
|
GetAnalysisReportResultsCommand,
|
|
@@ -93,6 +129,9 @@ const commands = {
|
|
|
93
129
|
ListFirewallsCommand,
|
|
94
130
|
ListFlowOperationResultsCommand,
|
|
95
131
|
ListFlowOperationsCommand,
|
|
132
|
+
ListProxiesCommand,
|
|
133
|
+
ListProxyConfigurationsCommand,
|
|
134
|
+
ListProxyRuleGroupsCommand,
|
|
96
135
|
ListRuleGroupsCommand,
|
|
97
136
|
ListTagsForResourceCommand,
|
|
98
137
|
ListTLSInspectionConfigurationsCommand,
|
|
@@ -112,6 +151,11 @@ const commands = {
|
|
|
112
151
|
UpdateFirewallPolicyCommand,
|
|
113
152
|
UpdateFirewallPolicyChangeProtectionCommand,
|
|
114
153
|
UpdateLoggingConfigurationCommand,
|
|
154
|
+
UpdateProxyCommand,
|
|
155
|
+
UpdateProxyConfigurationCommand,
|
|
156
|
+
UpdateProxyRuleCommand,
|
|
157
|
+
UpdateProxyRuleGroupPrioritiesCommand,
|
|
158
|
+
UpdateProxyRulePrioritiesCommand,
|
|
115
159
|
UpdateRuleGroupCommand,
|
|
116
160
|
UpdateSubnetChangeProtectionCommand,
|
|
117
161
|
UpdateTLSInspectionConfigurationCommand,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { AttachRuleGroupsToProxyConfiguration } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class AttachRuleGroupsToProxyConfigurationCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkFirewall_20201112", "AttachRuleGroupsToProxyConfiguration", {})
|
|
13
|
+
.n("NetworkFirewallClient", "AttachRuleGroupsToProxyConfigurationCommand")
|
|
14
|
+
.sc(AttachRuleGroupsToProxyConfiguration)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CreateProxy } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreateProxyCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkFirewall_20201112", "CreateProxy", {})
|
|
13
|
+
.n("NetworkFirewallClient", "CreateProxyCommand")
|
|
14
|
+
.sc(CreateProxy)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CreateProxyConfiguration } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreateProxyConfigurationCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkFirewall_20201112", "CreateProxyConfiguration", {})
|
|
13
|
+
.n("NetworkFirewallClient", "CreateProxyConfigurationCommand")
|
|
14
|
+
.sc(CreateProxyConfiguration)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CreateProxyRuleGroup } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreateProxyRuleGroupCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkFirewall_20201112", "CreateProxyRuleGroup", {})
|
|
13
|
+
.n("NetworkFirewallClient", "CreateProxyRuleGroupCommand")
|
|
14
|
+
.sc(CreateProxyRuleGroup)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CreateProxyRules } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreateProxyRulesCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkFirewall_20201112", "CreateProxyRules", {})
|
|
13
|
+
.n("NetworkFirewallClient", "CreateProxyRulesCommand")
|
|
14
|
+
.sc(CreateProxyRules)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteProxy } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteProxyCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkFirewall_20201112", "DeleteProxy", {})
|
|
13
|
+
.n("NetworkFirewallClient", "DeleteProxyCommand")
|
|
14
|
+
.sc(DeleteProxy)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteProxyConfiguration } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteProxyConfigurationCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkFirewall_20201112", "DeleteProxyConfiguration", {})
|
|
13
|
+
.n("NetworkFirewallClient", "DeleteProxyConfigurationCommand")
|
|
14
|
+
.sc(DeleteProxyConfiguration)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteProxyRuleGroup } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteProxyRuleGroupCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkFirewall_20201112", "DeleteProxyRuleGroup", {})
|
|
13
|
+
.n("NetworkFirewallClient", "DeleteProxyRuleGroupCommand")
|
|
14
|
+
.sc(DeleteProxyRuleGroup)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteProxyRules } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteProxyRulesCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkFirewall_20201112", "DeleteProxyRules", {})
|
|
13
|
+
.n("NetworkFirewallClient", "DeleteProxyRulesCommand")
|
|
14
|
+
.sc(DeleteProxyRules)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DescribeProxy } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DescribeProxyCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkFirewall_20201112", "DescribeProxy", {})
|
|
13
|
+
.n("NetworkFirewallClient", "DescribeProxyCommand")
|
|
14
|
+
.sc(DescribeProxy)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DescribeProxyConfiguration } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DescribeProxyConfigurationCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkFirewall_20201112", "DescribeProxyConfiguration", {})
|
|
13
|
+
.n("NetworkFirewallClient", "DescribeProxyConfigurationCommand")
|
|
14
|
+
.sc(DescribeProxyConfiguration)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DescribeProxyRule } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DescribeProxyRuleCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkFirewall_20201112", "DescribeProxyRule", {})
|
|
13
|
+
.n("NetworkFirewallClient", "DescribeProxyRuleCommand")
|
|
14
|
+
.sc(DescribeProxyRule)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DescribeProxyRuleGroup } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DescribeProxyRuleGroupCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkFirewall_20201112", "DescribeProxyRuleGroup", {})
|
|
13
|
+
.n("NetworkFirewallClient", "DescribeProxyRuleGroupCommand")
|
|
14
|
+
.sc(DescribeProxyRuleGroup)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DetachRuleGroupsFromProxyConfiguration } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DetachRuleGroupsFromProxyConfigurationCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkFirewall_20201112", "DetachRuleGroupsFromProxyConfiguration", {})
|
|
13
|
+
.n("NetworkFirewallClient", "DetachRuleGroupsFromProxyConfigurationCommand")
|
|
14
|
+
.sc(DetachRuleGroupsFromProxyConfiguration)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListProxies } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListProxiesCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkFirewall_20201112", "ListProxies", {})
|
|
13
|
+
.n("NetworkFirewallClient", "ListProxiesCommand")
|
|
14
|
+
.sc(ListProxies)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListProxyConfigurations } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListProxyConfigurationsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkFirewall_20201112", "ListProxyConfigurations", {})
|
|
13
|
+
.n("NetworkFirewallClient", "ListProxyConfigurationsCommand")
|
|
14
|
+
.sc(ListProxyConfigurations)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListProxyRuleGroups } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListProxyRuleGroupsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkFirewall_20201112", "ListProxyRuleGroups", {})
|
|
13
|
+
.n("NetworkFirewallClient", "ListProxyRuleGroupsCommand")
|
|
14
|
+
.sc(ListProxyRuleGroups)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { UpdateProxy } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdateProxyCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkFirewall_20201112", "UpdateProxy", {})
|
|
13
|
+
.n("NetworkFirewallClient", "UpdateProxyCommand")
|
|
14
|
+
.sc(UpdateProxy)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { UpdateProxyConfiguration } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdateProxyConfigurationCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkFirewall_20201112", "UpdateProxyConfiguration", {})
|
|
13
|
+
.n("NetworkFirewallClient", "UpdateProxyConfigurationCommand")
|
|
14
|
+
.sc(UpdateProxyConfiguration)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { UpdateProxyRule } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdateProxyRuleCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkFirewall_20201112", "UpdateProxyRule", {})
|
|
13
|
+
.n("NetworkFirewallClient", "UpdateProxyRuleCommand")
|
|
14
|
+
.sc(UpdateProxyRule)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { UpdateProxyRuleGroupPriorities } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdateProxyRuleGroupPrioritiesCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkFirewall_20201112", "UpdateProxyRuleGroupPriorities", {})
|
|
13
|
+
.n("NetworkFirewallClient", "UpdateProxyRuleGroupPrioritiesCommand")
|
|
14
|
+
.sc(UpdateProxyRuleGroupPriorities)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { UpdateProxyRulePriorities } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdateProxyRulePrioritiesCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("NetworkFirewall_20201112", "UpdateProxyRulePriorities", {})
|
|
13
|
+
.n("NetworkFirewallClient", "UpdateProxyRulePrioritiesCommand")
|
|
14
|
+
.sc(UpdateProxyRulePriorities)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -2,14 +2,23 @@ export * from "./AcceptNetworkFirewallTransitGatewayAttachmentCommand";
|
|
|
2
2
|
export * from "./AssociateAvailabilityZonesCommand";
|
|
3
3
|
export * from "./AssociateFirewallPolicyCommand";
|
|
4
4
|
export * from "./AssociateSubnetsCommand";
|
|
5
|
+
export * from "./AttachRuleGroupsToProxyConfigurationCommand";
|
|
5
6
|
export * from "./CreateFirewallCommand";
|
|
6
7
|
export * from "./CreateFirewallPolicyCommand";
|
|
8
|
+
export * from "./CreateProxyCommand";
|
|
9
|
+
export * from "./CreateProxyConfigurationCommand";
|
|
10
|
+
export * from "./CreateProxyRuleGroupCommand";
|
|
11
|
+
export * from "./CreateProxyRulesCommand";
|
|
7
12
|
export * from "./CreateRuleGroupCommand";
|
|
8
13
|
export * from "./CreateTLSInspectionConfigurationCommand";
|
|
9
14
|
export * from "./CreateVpcEndpointAssociationCommand";
|
|
10
15
|
export * from "./DeleteFirewallCommand";
|
|
11
16
|
export * from "./DeleteFirewallPolicyCommand";
|
|
12
17
|
export * from "./DeleteNetworkFirewallTransitGatewayAttachmentCommand";
|
|
18
|
+
export * from "./DeleteProxyCommand";
|
|
19
|
+
export * from "./DeleteProxyConfigurationCommand";
|
|
20
|
+
export * from "./DeleteProxyRuleGroupCommand";
|
|
21
|
+
export * from "./DeleteProxyRulesCommand";
|
|
13
22
|
export * from "./DeleteResourcePolicyCommand";
|
|
14
23
|
export * from "./DeleteRuleGroupCommand";
|
|
15
24
|
export * from "./DeleteTLSInspectionConfigurationCommand";
|
|
@@ -19,12 +28,17 @@ export * from "./DescribeFirewallMetadataCommand";
|
|
|
19
28
|
export * from "./DescribeFirewallPolicyCommand";
|
|
20
29
|
export * from "./DescribeFlowOperationCommand";
|
|
21
30
|
export * from "./DescribeLoggingConfigurationCommand";
|
|
31
|
+
export * from "./DescribeProxyCommand";
|
|
32
|
+
export * from "./DescribeProxyConfigurationCommand";
|
|
33
|
+
export * from "./DescribeProxyRuleCommand";
|
|
34
|
+
export * from "./DescribeProxyRuleGroupCommand";
|
|
22
35
|
export * from "./DescribeResourcePolicyCommand";
|
|
23
36
|
export * from "./DescribeRuleGroupCommand";
|
|
24
37
|
export * from "./DescribeRuleGroupMetadataCommand";
|
|
25
38
|
export * from "./DescribeRuleGroupSummaryCommand";
|
|
26
39
|
export * from "./DescribeTLSInspectionConfigurationCommand";
|
|
27
40
|
export * from "./DescribeVpcEndpointAssociationCommand";
|
|
41
|
+
export * from "./DetachRuleGroupsFromProxyConfigurationCommand";
|
|
28
42
|
export * from "./DisassociateAvailabilityZonesCommand";
|
|
29
43
|
export * from "./DisassociateSubnetsCommand";
|
|
30
44
|
export * from "./GetAnalysisReportResultsCommand";
|
|
@@ -33,6 +47,9 @@ export * from "./ListFirewallPoliciesCommand";
|
|
|
33
47
|
export * from "./ListFirewallsCommand";
|
|
34
48
|
export * from "./ListFlowOperationResultsCommand";
|
|
35
49
|
export * from "./ListFlowOperationsCommand";
|
|
50
|
+
export * from "./ListProxiesCommand";
|
|
51
|
+
export * from "./ListProxyConfigurationsCommand";
|
|
52
|
+
export * from "./ListProxyRuleGroupsCommand";
|
|
36
53
|
export * from "./ListRuleGroupsCommand";
|
|
37
54
|
export * from "./ListTLSInspectionConfigurationsCommand";
|
|
38
55
|
export * from "./ListTagsForResourceCommand";
|
|
@@ -52,6 +69,11 @@ export * from "./UpdateFirewallEncryptionConfigurationCommand";
|
|
|
52
69
|
export * from "./UpdateFirewallPolicyChangeProtectionCommand";
|
|
53
70
|
export * from "./UpdateFirewallPolicyCommand";
|
|
54
71
|
export * from "./UpdateLoggingConfigurationCommand";
|
|
72
|
+
export * from "./UpdateProxyCommand";
|
|
73
|
+
export * from "./UpdateProxyConfigurationCommand";
|
|
74
|
+
export * from "./UpdateProxyRuleCommand";
|
|
75
|
+
export * from "./UpdateProxyRuleGroupPrioritiesCommand";
|
|
76
|
+
export * from "./UpdateProxyRulePrioritiesCommand";
|
|
55
77
|
export * from "./UpdateRuleGroupCommand";
|
|
56
78
|
export * from "./UpdateSubnetChangeProtectionCommand";
|
|
57
79
|
export * from "./UpdateTLSInspectionConfigurationCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -30,6 +30,11 @@ export const AttachmentStatus = {
|
|
|
30
30
|
READY: "READY",
|
|
31
31
|
SCALING: "SCALING",
|
|
32
32
|
};
|
|
33
|
+
export const ProxyRulePhaseAction = {
|
|
34
|
+
ALERT: "ALERT",
|
|
35
|
+
ALLOW: "ALLOW",
|
|
36
|
+
DENY: "DENY",
|
|
37
|
+
};
|
|
33
38
|
export const RevocationCheckAction = {
|
|
34
39
|
DROP: "DROP",
|
|
35
40
|
PASS: "PASS",
|
|
@@ -73,6 +78,27 @@ export const ResourceStatus = {
|
|
|
73
78
|
DELETING: "DELETING",
|
|
74
79
|
ERROR: "ERROR",
|
|
75
80
|
};
|
|
81
|
+
export const ListenerPropertyType = {
|
|
82
|
+
HTTP: "HTTP",
|
|
83
|
+
HTTPS: "HTTPS",
|
|
84
|
+
};
|
|
85
|
+
export const TlsInterceptMode = {
|
|
86
|
+
DISABLED: "DISABLED",
|
|
87
|
+
ENABLED: "ENABLED",
|
|
88
|
+
};
|
|
89
|
+
export const ProxyModifyState = {
|
|
90
|
+
COMPLETED: "COMPLETED",
|
|
91
|
+
FAILED: "FAILED",
|
|
92
|
+
MODIFYING: "MODIFYING",
|
|
93
|
+
};
|
|
94
|
+
export const ProxyState = {
|
|
95
|
+
ATTACHED: "ATTACHED",
|
|
96
|
+
ATTACHING: "ATTACHING",
|
|
97
|
+
ATTACH_FAILED: "ATTACH_FAILED",
|
|
98
|
+
DETACHED: "DETACHED",
|
|
99
|
+
DETACHING: "DETACHING",
|
|
100
|
+
DETACH_FAILED: "DETACH_FAILED",
|
|
101
|
+
};
|
|
76
102
|
export const GeneratedRulesType = {
|
|
77
103
|
ALERTLIST: "ALERTLIST",
|
|
78
104
|
ALLOWLIST: "ALLOWLIST",
|
|
@@ -169,3 +195,8 @@ export const SubscriptionStatus = {
|
|
|
169
195
|
NOT_SUBSCRIBED: "NOT_SUBSCRIBED",
|
|
170
196
|
SUBSCRIBED: "SUBSCRIBED",
|
|
171
197
|
};
|
|
198
|
+
export const RuleGroupRequestPhase = {
|
|
199
|
+
POST_RES: "POST_RES",
|
|
200
|
+
PRE_DNS: "PRE_DNS",
|
|
201
|
+
PRE_REQ: "PRE_REQ",
|
|
202
|
+
};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListProxiesCommand } from "../commands/ListProxiesCommand";
|
|
3
|
+
import { NetworkFirewallClient } from "../NetworkFirewallClient";
|
|
4
|
+
export const paginateListProxies = createPaginator(NetworkFirewallClient, ListProxiesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListProxyConfigurationsCommand, } from "../commands/ListProxyConfigurationsCommand";
|
|
3
|
+
import { NetworkFirewallClient } from "../NetworkFirewallClient";
|
|
4
|
+
export const paginateListProxyConfigurations = createPaginator(NetworkFirewallClient, ListProxyConfigurationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListProxyRuleGroupsCommand, } from "../commands/ListProxyRuleGroupsCommand";
|
|
3
|
+
import { NetworkFirewallClient } from "../NetworkFirewallClient";
|
|
4
|
+
export const paginateListProxyRuleGroups = createPaginator(NetworkFirewallClient, ListProxyRuleGroupsCommand, "NextToken", "NextToken", "MaxResults");
|