@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
|
@@ -19,6 +19,8 @@ export declare var AssociateFirewallPolicyResponse: StaticStructureSchema;
|
|
|
19
19
|
export declare var AssociateSubnetsRequest: StaticStructureSchema;
|
|
20
20
|
export declare var AssociateSubnetsResponse: StaticStructureSchema;
|
|
21
21
|
export declare var Attachment: StaticStructureSchema;
|
|
22
|
+
export declare var AttachRuleGroupsToProxyConfigurationRequest: StaticStructureSchema;
|
|
23
|
+
export declare var AttachRuleGroupsToProxyConfigurationResponse: StaticStructureSchema;
|
|
22
24
|
export declare var AvailabilityZoneMapping: StaticStructureSchema;
|
|
23
25
|
export declare var AvailabilityZoneMetadata: StaticStructureSchema;
|
|
24
26
|
export declare var AZSyncState: StaticStructureSchema;
|
|
@@ -29,6 +31,16 @@ export declare var CreateFirewallPolicyRequest: StaticStructureSchema;
|
|
|
29
31
|
export declare var CreateFirewallPolicyResponse: StaticStructureSchema;
|
|
30
32
|
export declare var CreateFirewallRequest: StaticStructureSchema;
|
|
31
33
|
export declare var CreateFirewallResponse: StaticStructureSchema;
|
|
34
|
+
export declare var CreateProxyConfigurationRequest: StaticStructureSchema;
|
|
35
|
+
export declare var CreateProxyConfigurationResponse: StaticStructureSchema;
|
|
36
|
+
export declare var CreateProxyRequest: StaticStructureSchema;
|
|
37
|
+
export declare var CreateProxyResponse: StaticStructureSchema;
|
|
38
|
+
export declare var CreateProxyRule: StaticStructureSchema;
|
|
39
|
+
export declare var CreateProxyRuleGroupRequest: StaticStructureSchema;
|
|
40
|
+
export declare var CreateProxyRuleGroupResponse: StaticStructureSchema;
|
|
41
|
+
export declare var CreateProxyRulesByRequestPhase: StaticStructureSchema;
|
|
42
|
+
export declare var CreateProxyRulesRequest: StaticStructureSchema;
|
|
43
|
+
export declare var CreateProxyRulesResponse: StaticStructureSchema;
|
|
32
44
|
export declare var CreateRuleGroupRequest: StaticStructureSchema;
|
|
33
45
|
export declare var CreateRuleGroupResponse: StaticStructureSchema;
|
|
34
46
|
export declare var CreateTLSInspectionConfigurationRequest: StaticStructureSchema;
|
|
@@ -42,6 +54,14 @@ export declare var DeleteFirewallRequest: StaticStructureSchema;
|
|
|
42
54
|
export declare var DeleteFirewallResponse: StaticStructureSchema;
|
|
43
55
|
export declare var DeleteNetworkFirewallTransitGatewayAttachmentRequest: StaticStructureSchema;
|
|
44
56
|
export declare var DeleteNetworkFirewallTransitGatewayAttachmentResponse: StaticStructureSchema;
|
|
57
|
+
export declare var DeleteProxyConfigurationRequest: StaticStructureSchema;
|
|
58
|
+
export declare var DeleteProxyConfigurationResponse: StaticStructureSchema;
|
|
59
|
+
export declare var DeleteProxyRequest: StaticStructureSchema;
|
|
60
|
+
export declare var DeleteProxyResponse: StaticStructureSchema;
|
|
61
|
+
export declare var DeleteProxyRuleGroupRequest: StaticStructureSchema;
|
|
62
|
+
export declare var DeleteProxyRuleGroupResponse: StaticStructureSchema;
|
|
63
|
+
export declare var DeleteProxyRulesRequest: StaticStructureSchema;
|
|
64
|
+
export declare var DeleteProxyRulesResponse: StaticStructureSchema;
|
|
45
65
|
export declare var DeleteResourcePolicyRequest: StaticStructureSchema;
|
|
46
66
|
export declare var DeleteResourcePolicyResponse: StaticStructureSchema;
|
|
47
67
|
export declare var DeleteRuleGroupRequest: StaticStructureSchema;
|
|
@@ -60,6 +80,15 @@ export declare var DescribeFlowOperationRequest: StaticStructureSchema;
|
|
|
60
80
|
export declare var DescribeFlowOperationResponse: StaticStructureSchema;
|
|
61
81
|
export declare var DescribeLoggingConfigurationRequest: StaticStructureSchema;
|
|
62
82
|
export declare var DescribeLoggingConfigurationResponse: StaticStructureSchema;
|
|
83
|
+
export declare var DescribeProxyConfigurationRequest: StaticStructureSchema;
|
|
84
|
+
export declare var DescribeProxyConfigurationResponse: StaticStructureSchema;
|
|
85
|
+
export declare var DescribeProxyRequest: StaticStructureSchema;
|
|
86
|
+
export declare var DescribeProxyResource: StaticStructureSchema;
|
|
87
|
+
export declare var DescribeProxyResponse: StaticStructureSchema;
|
|
88
|
+
export declare var DescribeProxyRuleGroupRequest: StaticStructureSchema;
|
|
89
|
+
export declare var DescribeProxyRuleGroupResponse: StaticStructureSchema;
|
|
90
|
+
export declare var DescribeProxyRuleRequest: StaticStructureSchema;
|
|
91
|
+
export declare var DescribeProxyRuleResponse: StaticStructureSchema;
|
|
63
92
|
export declare var DescribeResourcePolicyRequest: StaticStructureSchema;
|
|
64
93
|
export declare var DescribeResourcePolicyResponse: StaticStructureSchema;
|
|
65
94
|
export declare var DescribeRuleGroupMetadataRequest: StaticStructureSchema;
|
|
@@ -72,6 +101,8 @@ export declare var DescribeTLSInspectionConfigurationRequest: StaticStructureSch
|
|
|
72
101
|
export declare var DescribeTLSInspectionConfigurationResponse: StaticStructureSchema;
|
|
73
102
|
export declare var DescribeVpcEndpointAssociationRequest: StaticStructureSchema;
|
|
74
103
|
export declare var DescribeVpcEndpointAssociationResponse: StaticStructureSchema;
|
|
104
|
+
export declare var DetachRuleGroupsFromProxyConfigurationRequest: StaticStructureSchema;
|
|
105
|
+
export declare var DetachRuleGroupsFromProxyConfigurationResponse: StaticStructureSchema;
|
|
75
106
|
export declare var Dimension: StaticStructureSchema;
|
|
76
107
|
export declare var DisassociateAvailabilityZonesRequest: StaticStructureSchema;
|
|
77
108
|
export declare var DisassociateAvailabilityZonesResponse: StaticStructureSchema;
|
|
@@ -105,6 +136,8 @@ export declare var IPSetReference: StaticStructureSchema;
|
|
|
105
136
|
export declare var LimitExceededException: StaticErrorSchema;
|
|
106
137
|
export declare var ListAnalysisReportsRequest: StaticStructureSchema;
|
|
107
138
|
export declare var ListAnalysisReportsResponse: StaticStructureSchema;
|
|
139
|
+
export declare var ListenerProperty: StaticStructureSchema;
|
|
140
|
+
export declare var ListenerPropertyRequest: StaticStructureSchema;
|
|
108
141
|
export declare var ListFirewallPoliciesRequest: StaticStructureSchema;
|
|
109
142
|
export declare var ListFirewallPoliciesResponse: StaticStructureSchema;
|
|
110
143
|
export declare var ListFirewallsRequest: StaticStructureSchema;
|
|
@@ -113,6 +146,12 @@ export declare var ListFlowOperationResultsRequest: StaticStructureSchema;
|
|
|
113
146
|
export declare var ListFlowOperationResultsResponse: StaticStructureSchema;
|
|
114
147
|
export declare var ListFlowOperationsRequest: StaticStructureSchema;
|
|
115
148
|
export declare var ListFlowOperationsResponse: StaticStructureSchema;
|
|
149
|
+
export declare var ListProxiesRequest: StaticStructureSchema;
|
|
150
|
+
export declare var ListProxiesResponse: StaticStructureSchema;
|
|
151
|
+
export declare var ListProxyConfigurationsRequest: StaticStructureSchema;
|
|
152
|
+
export declare var ListProxyConfigurationsResponse: StaticStructureSchema;
|
|
153
|
+
export declare var ListProxyRuleGroupsRequest: StaticStructureSchema;
|
|
154
|
+
export declare var ListProxyRuleGroupsResponse: StaticStructureSchema;
|
|
116
155
|
export declare var ListRuleGroupsRequest: StaticStructureSchema;
|
|
117
156
|
export declare var ListRuleGroupsResponse: StaticStructureSchema;
|
|
118
157
|
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
@@ -129,6 +168,21 @@ export declare var PerObjectStatus: StaticStructureSchema;
|
|
|
129
168
|
export declare var PolicyVariables: StaticStructureSchema;
|
|
130
169
|
export declare var PortRange: StaticStructureSchema;
|
|
131
170
|
export declare var PortSet: StaticStructureSchema;
|
|
171
|
+
export declare var Proxy: StaticStructureSchema;
|
|
172
|
+
export declare var ProxyConfigDefaultRulePhaseActionsRequest: StaticStructureSchema;
|
|
173
|
+
export declare var ProxyConfigRuleGroup: StaticStructureSchema;
|
|
174
|
+
export declare var ProxyConfiguration: StaticStructureSchema;
|
|
175
|
+
export declare var ProxyConfigurationMetadata: StaticStructureSchema;
|
|
176
|
+
export declare var ProxyMetadata: StaticStructureSchema;
|
|
177
|
+
export declare var ProxyRule: StaticStructureSchema;
|
|
178
|
+
export declare var ProxyRuleCondition: StaticStructureSchema;
|
|
179
|
+
export declare var ProxyRuleGroup: StaticStructureSchema;
|
|
180
|
+
export declare var ProxyRuleGroupAttachment: StaticStructureSchema;
|
|
181
|
+
export declare var ProxyRuleGroupMetadata: StaticStructureSchema;
|
|
182
|
+
export declare var ProxyRuleGroupPriority: StaticStructureSchema;
|
|
183
|
+
export declare var ProxyRuleGroupPriorityResult: StaticStructureSchema;
|
|
184
|
+
export declare var ProxyRulePriority: StaticStructureSchema;
|
|
185
|
+
export declare var ProxyRulesByRequestPhase: StaticStructureSchema;
|
|
132
186
|
export declare var PublishMetricAction: StaticStructureSchema;
|
|
133
187
|
export declare var PutResourcePolicyRequest: StaticStructureSchema;
|
|
134
188
|
export declare var PutResourcePolicyResponse: StaticStructureSchema;
|
|
@@ -177,6 +231,8 @@ export declare var TlsCertificateData: StaticStructureSchema;
|
|
|
177
231
|
export declare var TLSInspectionConfiguration: StaticStructureSchema;
|
|
178
232
|
export declare var TLSInspectionConfigurationMetadata: StaticStructureSchema;
|
|
179
233
|
export declare var TLSInspectionConfigurationResponse: StaticStructureSchema;
|
|
234
|
+
export declare var TlsInterceptProperties: StaticStructureSchema;
|
|
235
|
+
export declare var TlsInterceptPropertiesRequest: StaticStructureSchema;
|
|
180
236
|
export declare var TransitGatewayAttachmentSyncState: StaticStructureSchema;
|
|
181
237
|
export declare var UniqueSources: StaticStructureSchema;
|
|
182
238
|
export declare var UnsupportedOperationException: StaticErrorSchema;
|
|
@@ -198,6 +254,16 @@ export declare var UpdateFirewallPolicyRequest: StaticStructureSchema;
|
|
|
198
254
|
export declare var UpdateFirewallPolicyResponse: StaticStructureSchema;
|
|
199
255
|
export declare var UpdateLoggingConfigurationRequest: StaticStructureSchema;
|
|
200
256
|
export declare var UpdateLoggingConfigurationResponse: StaticStructureSchema;
|
|
257
|
+
export declare var UpdateProxyConfigurationRequest: StaticStructureSchema;
|
|
258
|
+
export declare var UpdateProxyConfigurationResponse: StaticStructureSchema;
|
|
259
|
+
export declare var UpdateProxyRequest: StaticStructureSchema;
|
|
260
|
+
export declare var UpdateProxyResponse: StaticStructureSchema;
|
|
261
|
+
export declare var UpdateProxyRuleGroupPrioritiesRequest: StaticStructureSchema;
|
|
262
|
+
export declare var UpdateProxyRuleGroupPrioritiesResponse: StaticStructureSchema;
|
|
263
|
+
export declare var UpdateProxyRulePrioritiesRequest: StaticStructureSchema;
|
|
264
|
+
export declare var UpdateProxyRulePrioritiesResponse: StaticStructureSchema;
|
|
265
|
+
export declare var UpdateProxyRuleRequest: StaticStructureSchema;
|
|
266
|
+
export declare var UpdateProxyRuleResponse: StaticStructureSchema;
|
|
201
267
|
export declare var UpdateRuleGroupRequest: StaticStructureSchema;
|
|
202
268
|
export declare var UpdateRuleGroupResponse: StaticStructureSchema;
|
|
203
269
|
export declare var UpdateSubnetChangeProtectionRequest: StaticStructureSchema;
|
|
@@ -216,6 +282,7 @@ export declare var AnalysisResultList: StaticListSchema;
|
|
|
216
282
|
export declare var AvailabilityZoneMappings: StaticListSchema;
|
|
217
283
|
export declare var AzSubnets: number;
|
|
218
284
|
export declare var Certificates: StaticListSchema;
|
|
285
|
+
export declare var CreateProxyRuleList: StaticListSchema;
|
|
219
286
|
export declare var CustomActions: StaticListSchema;
|
|
220
287
|
export declare var Dimensions: StaticListSchema;
|
|
221
288
|
export declare var EnabledAnalysisTypes: number;
|
|
@@ -225,10 +292,25 @@ export declare var Flags: number;
|
|
|
225
292
|
export declare var FlowFilters: StaticListSchema;
|
|
226
293
|
export declare var FlowOperations: StaticListSchema;
|
|
227
294
|
export declare var Flows: StaticListSchema;
|
|
295
|
+
export declare var ListenerProperties: StaticListSchema;
|
|
296
|
+
export declare var ListenerPropertiesRequest: StaticListSchema;
|
|
228
297
|
export declare var LogDestinationConfigs: StaticListSchema;
|
|
229
298
|
export declare var PortRanges: StaticListSchema;
|
|
230
299
|
export declare var ProtocolNumbers: number;
|
|
231
300
|
export declare var ProtocolStrings: number;
|
|
301
|
+
export declare var Proxies: StaticListSchema;
|
|
302
|
+
export declare var ProxyConditionValueList: number;
|
|
303
|
+
export declare var ProxyConfigRuleGroupSet: StaticListSchema;
|
|
304
|
+
export declare var ProxyConfigurations: StaticListSchema;
|
|
305
|
+
export declare var ProxyRuleConditionList: StaticListSchema;
|
|
306
|
+
export declare var ProxyRuleGroupAttachmentList: StaticListSchema;
|
|
307
|
+
export declare var ProxyRuleGroupPriorityList: StaticListSchema;
|
|
308
|
+
export declare var ProxyRuleGroupPriorityResultList: StaticListSchema;
|
|
309
|
+
export declare var ProxyRuleGroups: StaticListSchema;
|
|
310
|
+
export declare var ProxyRuleList: StaticListSchema;
|
|
311
|
+
export declare var ProxyRulePriorityList: StaticListSchema;
|
|
312
|
+
export declare var ResourceArnList: number;
|
|
313
|
+
export declare var ResourceNameList: number;
|
|
232
314
|
export declare var RuleGroups: StaticListSchema;
|
|
233
315
|
export declare var RuleIdList: number;
|
|
234
316
|
export declare var RuleOptions: StaticListSchema;
|
|
@@ -267,14 +349,23 @@ export declare var AcceptNetworkFirewallTransitGatewayAttachment: StaticOperatio
|
|
|
267
349
|
export declare var AssociateAvailabilityZones: StaticOperationSchema;
|
|
268
350
|
export declare var AssociateFirewallPolicy: StaticOperationSchema;
|
|
269
351
|
export declare var AssociateSubnets: StaticOperationSchema;
|
|
352
|
+
export declare var AttachRuleGroupsToProxyConfiguration: StaticOperationSchema;
|
|
270
353
|
export declare var CreateFirewall: StaticOperationSchema;
|
|
271
354
|
export declare var CreateFirewallPolicy: StaticOperationSchema;
|
|
355
|
+
export declare var CreateProxy: StaticOperationSchema;
|
|
356
|
+
export declare var CreateProxyConfiguration: StaticOperationSchema;
|
|
357
|
+
export declare var CreateProxyRuleGroup: StaticOperationSchema;
|
|
358
|
+
export declare var CreateProxyRules: StaticOperationSchema;
|
|
272
359
|
export declare var CreateRuleGroup: StaticOperationSchema;
|
|
273
360
|
export declare var CreateTLSInspectionConfiguration: StaticOperationSchema;
|
|
274
361
|
export declare var CreateVpcEndpointAssociation: StaticOperationSchema;
|
|
275
362
|
export declare var DeleteFirewall: StaticOperationSchema;
|
|
276
363
|
export declare var DeleteFirewallPolicy: StaticOperationSchema;
|
|
277
364
|
export declare var DeleteNetworkFirewallTransitGatewayAttachment: StaticOperationSchema;
|
|
365
|
+
export declare var DeleteProxy: StaticOperationSchema;
|
|
366
|
+
export declare var DeleteProxyConfiguration: StaticOperationSchema;
|
|
367
|
+
export declare var DeleteProxyRuleGroup: StaticOperationSchema;
|
|
368
|
+
export declare var DeleteProxyRules: StaticOperationSchema;
|
|
278
369
|
export declare var DeleteResourcePolicy: StaticOperationSchema;
|
|
279
370
|
export declare var DeleteRuleGroup: StaticOperationSchema;
|
|
280
371
|
export declare var DeleteTLSInspectionConfiguration: StaticOperationSchema;
|
|
@@ -284,12 +375,17 @@ export declare var DescribeFirewallMetadata: StaticOperationSchema;
|
|
|
284
375
|
export declare var DescribeFirewallPolicy: StaticOperationSchema;
|
|
285
376
|
export declare var DescribeFlowOperation: StaticOperationSchema;
|
|
286
377
|
export declare var DescribeLoggingConfiguration: StaticOperationSchema;
|
|
378
|
+
export declare var DescribeProxy: StaticOperationSchema;
|
|
379
|
+
export declare var DescribeProxyConfiguration: StaticOperationSchema;
|
|
380
|
+
export declare var DescribeProxyRule: StaticOperationSchema;
|
|
381
|
+
export declare var DescribeProxyRuleGroup: StaticOperationSchema;
|
|
287
382
|
export declare var DescribeResourcePolicy: StaticOperationSchema;
|
|
288
383
|
export declare var DescribeRuleGroup: StaticOperationSchema;
|
|
289
384
|
export declare var DescribeRuleGroupMetadata: StaticOperationSchema;
|
|
290
385
|
export declare var DescribeRuleGroupSummary: StaticOperationSchema;
|
|
291
386
|
export declare var DescribeTLSInspectionConfiguration: StaticOperationSchema;
|
|
292
387
|
export declare var DescribeVpcEndpointAssociation: StaticOperationSchema;
|
|
388
|
+
export declare var DetachRuleGroupsFromProxyConfiguration: StaticOperationSchema;
|
|
293
389
|
export declare var DisassociateAvailabilityZones: StaticOperationSchema;
|
|
294
390
|
export declare var DisassociateSubnets: StaticOperationSchema;
|
|
295
391
|
export declare var GetAnalysisReportResults: StaticOperationSchema;
|
|
@@ -298,6 +394,9 @@ export declare var ListFirewallPolicies: StaticOperationSchema;
|
|
|
298
394
|
export declare var ListFirewalls: StaticOperationSchema;
|
|
299
395
|
export declare var ListFlowOperationResults: StaticOperationSchema;
|
|
300
396
|
export declare var ListFlowOperations: StaticOperationSchema;
|
|
397
|
+
export declare var ListProxies: StaticOperationSchema;
|
|
398
|
+
export declare var ListProxyConfigurations: StaticOperationSchema;
|
|
399
|
+
export declare var ListProxyRuleGroups: StaticOperationSchema;
|
|
301
400
|
export declare var ListRuleGroups: StaticOperationSchema;
|
|
302
401
|
export declare var ListTagsForResource: StaticOperationSchema;
|
|
303
402
|
export declare var ListTLSInspectionConfigurations: StaticOperationSchema;
|
|
@@ -317,6 +416,11 @@ export declare var UpdateFirewallEncryptionConfiguration: StaticOperationSchema;
|
|
|
317
416
|
export declare var UpdateFirewallPolicy: StaticOperationSchema;
|
|
318
417
|
export declare var UpdateFirewallPolicyChangeProtection: StaticOperationSchema;
|
|
319
418
|
export declare var UpdateLoggingConfiguration: StaticOperationSchema;
|
|
419
|
+
export declare var UpdateProxy: StaticOperationSchema;
|
|
420
|
+
export declare var UpdateProxyConfiguration: StaticOperationSchema;
|
|
421
|
+
export declare var UpdateProxyRule: StaticOperationSchema;
|
|
422
|
+
export declare var UpdateProxyRuleGroupPriorities: StaticOperationSchema;
|
|
423
|
+
export declare var UpdateProxyRulePriorities: StaticOperationSchema;
|
|
320
424
|
export declare var UpdateRuleGroup: StaticOperationSchema;
|
|
321
425
|
export declare var UpdateSubnetChangeProtection: StaticOperationSchema;
|
|
322
426
|
export declare var UpdateTLSInspectionConfiguration: StaticOperationSchema;
|
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.940.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",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.940.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.940.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.940.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
30
|
"@aws-sdk/types": "3.936.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.940.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
35
|
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|