@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
|
@@ -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";
|
|
@@ -70,6 +70,19 @@ export declare const AttachmentStatus: {
|
|
|
70
70
|
* @public
|
|
71
71
|
*/
|
|
72
72
|
export type AttachmentStatus = (typeof AttachmentStatus)[keyof typeof AttachmentStatus];
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
* @enum
|
|
76
|
+
*/
|
|
77
|
+
export declare const ProxyRulePhaseAction: {
|
|
78
|
+
readonly ALERT: "ALERT";
|
|
79
|
+
readonly ALLOW: "ALLOW";
|
|
80
|
+
readonly DENY: "DENY";
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
export type ProxyRulePhaseAction = (typeof ProxyRulePhaseAction)[keyof typeof ProxyRulePhaseAction];
|
|
73
86
|
/**
|
|
74
87
|
* @public
|
|
75
88
|
* @enum
|
|
@@ -185,6 +198,59 @@ export declare const ResourceStatus: {
|
|
|
185
198
|
* @public
|
|
186
199
|
*/
|
|
187
200
|
export type ResourceStatus = (typeof ResourceStatus)[keyof typeof ResourceStatus];
|
|
201
|
+
/**
|
|
202
|
+
* @public
|
|
203
|
+
* @enum
|
|
204
|
+
*/
|
|
205
|
+
export declare const ListenerPropertyType: {
|
|
206
|
+
readonly HTTP: "HTTP";
|
|
207
|
+
readonly HTTPS: "HTTPS";
|
|
208
|
+
};
|
|
209
|
+
/**
|
|
210
|
+
* @public
|
|
211
|
+
*/
|
|
212
|
+
export type ListenerPropertyType = (typeof ListenerPropertyType)[keyof typeof ListenerPropertyType];
|
|
213
|
+
/**
|
|
214
|
+
* @public
|
|
215
|
+
* @enum
|
|
216
|
+
*/
|
|
217
|
+
export declare const TlsInterceptMode: {
|
|
218
|
+
readonly DISABLED: "DISABLED";
|
|
219
|
+
readonly ENABLED: "ENABLED";
|
|
220
|
+
};
|
|
221
|
+
/**
|
|
222
|
+
* @public
|
|
223
|
+
*/
|
|
224
|
+
export type TlsInterceptMode = (typeof TlsInterceptMode)[keyof typeof TlsInterceptMode];
|
|
225
|
+
/**
|
|
226
|
+
* @public
|
|
227
|
+
* @enum
|
|
228
|
+
*/
|
|
229
|
+
export declare const ProxyModifyState: {
|
|
230
|
+
readonly COMPLETED: "COMPLETED";
|
|
231
|
+
readonly FAILED: "FAILED";
|
|
232
|
+
readonly MODIFYING: "MODIFYING";
|
|
233
|
+
};
|
|
234
|
+
/**
|
|
235
|
+
* @public
|
|
236
|
+
*/
|
|
237
|
+
export type ProxyModifyState = (typeof ProxyModifyState)[keyof typeof ProxyModifyState];
|
|
238
|
+
/**
|
|
239
|
+
* @public
|
|
240
|
+
* @enum
|
|
241
|
+
*/
|
|
242
|
+
export declare const ProxyState: {
|
|
243
|
+
readonly ATTACHED: "ATTACHED";
|
|
244
|
+
readonly ATTACHING: "ATTACHING";
|
|
245
|
+
readonly ATTACH_FAILED: "ATTACH_FAILED";
|
|
246
|
+
readonly DETACHED: "DETACHED";
|
|
247
|
+
readonly DETACHING: "DETACHING";
|
|
248
|
+
readonly DETACH_FAILED: "DETACH_FAILED";
|
|
249
|
+
};
|
|
250
|
+
/**
|
|
251
|
+
* @public
|
|
252
|
+
*/
|
|
253
|
+
export type ProxyState = (typeof ProxyState)[keyof typeof ProxyState];
|
|
188
254
|
/**
|
|
189
255
|
* @public
|
|
190
256
|
* @enum
|
|
@@ -401,3 +467,16 @@ export declare const SubscriptionStatus: {
|
|
|
401
467
|
* @public
|
|
402
468
|
*/
|
|
403
469
|
export type SubscriptionStatus = (typeof SubscriptionStatus)[keyof typeof SubscriptionStatus];
|
|
470
|
+
/**
|
|
471
|
+
* @public
|
|
472
|
+
* @enum
|
|
473
|
+
*/
|
|
474
|
+
export declare const RuleGroupRequestPhase: {
|
|
475
|
+
readonly POST_RES: "POST_RES";
|
|
476
|
+
readonly PRE_DNS: "PRE_DNS";
|
|
477
|
+
readonly PRE_REQ: "PRE_REQ";
|
|
478
|
+
};
|
|
479
|
+
/**
|
|
480
|
+
* @public
|
|
481
|
+
*/
|
|
482
|
+
export type RuleGroupRequestPhase = (typeof RuleGroupRequestPhase)[keyof typeof RuleGroupRequestPhase];
|