@aws-sdk/client-network-firewall 3.295.0 → 3.297.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/dist-types/NetworkFirewall.d.ts +32 -0
- package/dist-types/NetworkFirewallClient.d.ts +24 -4
- package/dist-types/commands/AssociateFirewallPolicyCommand.d.ts +16 -0
- package/dist-types/commands/AssociateSubnetsCommand.d.ts +16 -0
- package/dist-types/commands/CreateFirewallCommand.d.ts +16 -0
- package/dist-types/commands/CreateFirewallPolicyCommand.d.ts +16 -0
- package/dist-types/commands/CreateRuleGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteFirewallCommand.d.ts +16 -0
- package/dist-types/commands/DeleteFirewallPolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRuleGroupCommand.d.ts +16 -0
- package/dist-types/commands/DescribeFirewallCommand.d.ts +16 -0
- package/dist-types/commands/DescribeFirewallPolicyCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLoggingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DescribeResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/DescribeRuleGroupCommand.d.ts +16 -0
- package/dist-types/commands/DescribeRuleGroupMetadataCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateSubnetsCommand.d.ts +16 -0
- package/dist-types/commands/ListFirewallPoliciesCommand.d.ts +16 -0
- package/dist-types/commands/ListFirewallsCommand.d.ts +16 -0
- package/dist-types/commands/ListRuleGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFirewallDeleteProtectionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFirewallDescriptionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFirewallEncryptionConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFirewallPolicyChangeProtectionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFirewallPolicyCommand.d.ts +16 -0
- package/dist-types/commands/UpdateLoggingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateRuleGroupCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSubnetChangeProtectionCommand.d.ts +16 -0
- package/dist-types/models/NetworkFirewallServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +313 -5
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListFirewallPoliciesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListFirewallsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRuleGroupsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -32,6 +32,7 @@ import { UpdateRuleGroupCommandInput, UpdateRuleGroupCommandOutput } from "./com
|
|
|
32
32
|
import { UpdateSubnetChangeProtectionCommandInput, UpdateSubnetChangeProtectionCommandOutput } from "./commands/UpdateSubnetChangeProtectionCommand";
|
|
33
33
|
import { NetworkFirewallClient } from "./NetworkFirewallClient";
|
|
34
34
|
/**
|
|
35
|
+
* @public
|
|
35
36
|
* <p>This is the API Reference for Network Firewall. This guide is for developers who need
|
|
36
37
|
* detailed information about the Network Firewall API actions, data types, and errors. </p>
|
|
37
38
|
* <ul>
|
|
@@ -113,6 +114,7 @@ import { NetworkFirewallClient } from "./NetworkFirewallClient";
|
|
|
113
114
|
*/
|
|
114
115
|
export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
115
116
|
/**
|
|
117
|
+
* @public
|
|
116
118
|
* <p>Associates a <a>FirewallPolicy</a> to a <a>Firewall</a>. </p>
|
|
117
119
|
* <p>A firewall policy defines how to monitor and manage your VPC network traffic, using a
|
|
118
120
|
* collection of inspection rule groups and other settings. Each firewall requires one
|
|
@@ -123,6 +125,7 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
123
125
|
associateFirewallPolicy(args: AssociateFirewallPolicyCommandInput, cb: (err: any, data?: AssociateFirewallPolicyCommandOutput) => void): void;
|
|
124
126
|
associateFirewallPolicy(args: AssociateFirewallPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateFirewallPolicyCommandOutput) => void): void;
|
|
125
127
|
/**
|
|
128
|
+
* @public
|
|
126
129
|
* <p>Associates the specified subnets in the Amazon VPC to the firewall. You can specify one
|
|
127
130
|
* subnet for each of the Availability Zones that the VPC spans. </p>
|
|
128
131
|
* <p>This request creates an Network Firewall firewall endpoint in each of the subnets. To
|
|
@@ -134,6 +137,7 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
134
137
|
associateSubnets(args: AssociateSubnetsCommandInput, cb: (err: any, data?: AssociateSubnetsCommandOutput) => void): void;
|
|
135
138
|
associateSubnets(args: AssociateSubnetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateSubnetsCommandOutput) => void): void;
|
|
136
139
|
/**
|
|
140
|
+
* @public
|
|
137
141
|
* <p>Creates an Network Firewall <a>Firewall</a> and accompanying <a>FirewallStatus</a> for a VPC. </p>
|
|
138
142
|
* <p>The firewall defines the configuration settings for an Network Firewall firewall. The settings that you can define at creation include the firewall policy, the subnets in your VPC to use for the firewall endpoints, and any tags that are attached to the firewall Amazon Web Services resource. </p>
|
|
139
143
|
* <p>After you create a firewall, you can provide additional settings, like the logging configuration. </p>
|
|
@@ -146,6 +150,7 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
146
150
|
createFirewall(args: CreateFirewallCommandInput, cb: (err: any, data?: CreateFirewallCommandOutput) => void): void;
|
|
147
151
|
createFirewall(args: CreateFirewallCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFirewallCommandOutput) => void): void;
|
|
148
152
|
/**
|
|
153
|
+
* @public
|
|
149
154
|
* <p>Creates the firewall policy for the firewall according to the specifications. </p>
|
|
150
155
|
* <p>An Network Firewall firewall policy defines the behavior of a firewall, in a collection of
|
|
151
156
|
* stateless and stateful rule groups and other settings. You can use one firewall policy for
|
|
@@ -155,6 +160,7 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
155
160
|
createFirewallPolicy(args: CreateFirewallPolicyCommandInput, cb: (err: any, data?: CreateFirewallPolicyCommandOutput) => void): void;
|
|
156
161
|
createFirewallPolicy(args: CreateFirewallPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFirewallPolicyCommandOutput) => void): void;
|
|
157
162
|
/**
|
|
163
|
+
* @public
|
|
158
164
|
* <p>Creates the specified stateless or stateful rule group, which includes the rules for
|
|
159
165
|
* network traffic inspection, a capacity setting, and tags. </p>
|
|
160
166
|
* <p>You provide your rule group specification in your request using either
|
|
@@ -164,6 +170,7 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
164
170
|
createRuleGroup(args: CreateRuleGroupCommandInput, cb: (err: any, data?: CreateRuleGroupCommandOutput) => void): void;
|
|
165
171
|
createRuleGroup(args: CreateRuleGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRuleGroupCommandOutput) => void): void;
|
|
166
172
|
/**
|
|
173
|
+
* @public
|
|
167
174
|
* <p>Deletes the specified <a>Firewall</a> and its <a>FirewallStatus</a>.
|
|
168
175
|
* This operation requires the firewall's <code>DeleteProtection</code> flag to be
|
|
169
176
|
* <code>FALSE</code>. You can't revert this operation. </p>
|
|
@@ -180,54 +187,63 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
180
187
|
deleteFirewall(args: DeleteFirewallCommandInput, cb: (err: any, data?: DeleteFirewallCommandOutput) => void): void;
|
|
181
188
|
deleteFirewall(args: DeleteFirewallCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFirewallCommandOutput) => void): void;
|
|
182
189
|
/**
|
|
190
|
+
* @public
|
|
183
191
|
* <p>Deletes the specified <a>FirewallPolicy</a>. </p>
|
|
184
192
|
*/
|
|
185
193
|
deleteFirewallPolicy(args: DeleteFirewallPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFirewallPolicyCommandOutput>;
|
|
186
194
|
deleteFirewallPolicy(args: DeleteFirewallPolicyCommandInput, cb: (err: any, data?: DeleteFirewallPolicyCommandOutput) => void): void;
|
|
187
195
|
deleteFirewallPolicy(args: DeleteFirewallPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFirewallPolicyCommandOutput) => void): void;
|
|
188
196
|
/**
|
|
197
|
+
* @public
|
|
189
198
|
* <p>Deletes a resource policy that you created in a <a>PutResourcePolicy</a> request. </p>
|
|
190
199
|
*/
|
|
191
200
|
deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResourcePolicyCommandOutput>;
|
|
192
201
|
deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void): void;
|
|
193
202
|
deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void): void;
|
|
194
203
|
/**
|
|
204
|
+
* @public
|
|
195
205
|
* <p>Deletes the specified <a>RuleGroup</a>. </p>
|
|
196
206
|
*/
|
|
197
207
|
deleteRuleGroup(args: DeleteRuleGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRuleGroupCommandOutput>;
|
|
198
208
|
deleteRuleGroup(args: DeleteRuleGroupCommandInput, cb: (err: any, data?: DeleteRuleGroupCommandOutput) => void): void;
|
|
199
209
|
deleteRuleGroup(args: DeleteRuleGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRuleGroupCommandOutput) => void): void;
|
|
200
210
|
/**
|
|
211
|
+
* @public
|
|
201
212
|
* <p>Returns the data objects for the specified firewall. </p>
|
|
202
213
|
*/
|
|
203
214
|
describeFirewall(args: DescribeFirewallCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFirewallCommandOutput>;
|
|
204
215
|
describeFirewall(args: DescribeFirewallCommandInput, cb: (err: any, data?: DescribeFirewallCommandOutput) => void): void;
|
|
205
216
|
describeFirewall(args: DescribeFirewallCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFirewallCommandOutput) => void): void;
|
|
206
217
|
/**
|
|
218
|
+
* @public
|
|
207
219
|
* <p>Returns the data objects for the specified firewall policy. </p>
|
|
208
220
|
*/
|
|
209
221
|
describeFirewallPolicy(args: DescribeFirewallPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFirewallPolicyCommandOutput>;
|
|
210
222
|
describeFirewallPolicy(args: DescribeFirewallPolicyCommandInput, cb: (err: any, data?: DescribeFirewallPolicyCommandOutput) => void): void;
|
|
211
223
|
describeFirewallPolicy(args: DescribeFirewallPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFirewallPolicyCommandOutput) => void): void;
|
|
212
224
|
/**
|
|
225
|
+
* @public
|
|
213
226
|
* <p>Returns the logging configuration for the specified firewall. </p>
|
|
214
227
|
*/
|
|
215
228
|
describeLoggingConfiguration(args: DescribeLoggingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLoggingConfigurationCommandOutput>;
|
|
216
229
|
describeLoggingConfiguration(args: DescribeLoggingConfigurationCommandInput, cb: (err: any, data?: DescribeLoggingConfigurationCommandOutput) => void): void;
|
|
217
230
|
describeLoggingConfiguration(args: DescribeLoggingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLoggingConfigurationCommandOutput) => void): void;
|
|
218
231
|
/**
|
|
232
|
+
* @public
|
|
219
233
|
* <p>Retrieves a resource policy that you created in a <a>PutResourcePolicy</a> request. </p>
|
|
220
234
|
*/
|
|
221
235
|
describeResourcePolicy(args: DescribeResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<DescribeResourcePolicyCommandOutput>;
|
|
222
236
|
describeResourcePolicy(args: DescribeResourcePolicyCommandInput, cb: (err: any, data?: DescribeResourcePolicyCommandOutput) => void): void;
|
|
223
237
|
describeResourcePolicy(args: DescribeResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeResourcePolicyCommandOutput) => void): void;
|
|
224
238
|
/**
|
|
239
|
+
* @public
|
|
225
240
|
* <p>Returns the data objects for the specified rule group. </p>
|
|
226
241
|
*/
|
|
227
242
|
describeRuleGroup(args: DescribeRuleGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRuleGroupCommandOutput>;
|
|
228
243
|
describeRuleGroup(args: DescribeRuleGroupCommandInput, cb: (err: any, data?: DescribeRuleGroupCommandOutput) => void): void;
|
|
229
244
|
describeRuleGroup(args: DescribeRuleGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRuleGroupCommandOutput) => void): void;
|
|
230
245
|
/**
|
|
246
|
+
* @public
|
|
231
247
|
* <p>High-level information about a rule group, returned by operations like create and describe.
|
|
232
248
|
* You can use the information provided in the metadata to retrieve and manage a rule group.
|
|
233
249
|
* You can retrieve all objects for a rule group by calling <a>DescribeRuleGroup</a>.
|
|
@@ -237,6 +253,7 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
237
253
|
describeRuleGroupMetadata(args: DescribeRuleGroupMetadataCommandInput, cb: (err: any, data?: DescribeRuleGroupMetadataCommandOutput) => void): void;
|
|
238
254
|
describeRuleGroupMetadata(args: DescribeRuleGroupMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRuleGroupMetadataCommandOutput) => void): void;
|
|
239
255
|
/**
|
|
256
|
+
* @public
|
|
240
257
|
* <p>Removes the specified subnet associations from the firewall. This removes the
|
|
241
258
|
* firewall endpoints from the subnets and removes any network filtering protections that the endpoints
|
|
242
259
|
* were providing.
|
|
@@ -246,6 +263,7 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
246
263
|
disassociateSubnets(args: DisassociateSubnetsCommandInput, cb: (err: any, data?: DisassociateSubnetsCommandOutput) => void): void;
|
|
247
264
|
disassociateSubnets(args: DisassociateSubnetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateSubnetsCommandOutput) => void): void;
|
|
248
265
|
/**
|
|
266
|
+
* @public
|
|
249
267
|
* <p>Retrieves the metadata for the firewall policies that you have defined. Depending on
|
|
250
268
|
* your setting for max results and the number of firewall policies, a single call might not
|
|
251
269
|
* return the full list. </p>
|
|
@@ -254,6 +272,7 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
254
272
|
listFirewallPolicies(args: ListFirewallPoliciesCommandInput, cb: (err: any, data?: ListFirewallPoliciesCommandOutput) => void): void;
|
|
255
273
|
listFirewallPolicies(args: ListFirewallPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFirewallPoliciesCommandOutput) => void): void;
|
|
256
274
|
/**
|
|
275
|
+
* @public
|
|
257
276
|
* <p>Retrieves the metadata for the firewalls that you have defined. If you provide VPC
|
|
258
277
|
* identifiers in your request, this returns only the firewalls for those VPCs.</p>
|
|
259
278
|
* <p>Depending on your setting for max results and the number of firewalls, a single call
|
|
@@ -263,6 +282,7 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
263
282
|
listFirewalls(args: ListFirewallsCommandInput, cb: (err: any, data?: ListFirewallsCommandOutput) => void): void;
|
|
264
283
|
listFirewalls(args: ListFirewallsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFirewallsCommandOutput) => void): void;
|
|
265
284
|
/**
|
|
285
|
+
* @public
|
|
266
286
|
* <p>Retrieves the metadata for the rule groups that you have defined. Depending on your
|
|
267
287
|
* setting for max results and the number of rule groups, a single call might not return the
|
|
268
288
|
* full list. </p>
|
|
@@ -271,6 +291,7 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
271
291
|
listRuleGroups(args: ListRuleGroupsCommandInput, cb: (err: any, data?: ListRuleGroupsCommandOutput) => void): void;
|
|
272
292
|
listRuleGroups(args: ListRuleGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRuleGroupsCommandOutput) => void): void;
|
|
273
293
|
/**
|
|
294
|
+
* @public
|
|
274
295
|
* <p>Retrieves the tags associated with the specified resource. Tags are key:value pairs that
|
|
275
296
|
* you can use to categorize and manage your resources, for purposes like billing. For
|
|
276
297
|
* example, you might set the tag key to "customer" and the value to the customer name or ID.
|
|
@@ -283,6 +304,7 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
283
304
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
284
305
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
285
306
|
/**
|
|
307
|
+
* @public
|
|
286
308
|
* <p>Creates or updates an IAM policy for your rule group or firewall policy. Use this to share rule groups and firewall policies between accounts. This operation works in conjunction with the Amazon Web Services Resource Access Manager (RAM) service
|
|
287
309
|
* to manage resource sharing for Network Firewall. </p>
|
|
288
310
|
* <p>Use this operation to create or update a resource policy for your rule group or firewall policy. In the policy, you specify the accounts that you want to share the resource with and the operations that you want the accounts to be able to perform. </p>
|
|
@@ -303,6 +325,7 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
303
325
|
putResourcePolicy(args: PutResourcePolicyCommandInput, cb: (err: any, data?: PutResourcePolicyCommandOutput) => void): void;
|
|
304
326
|
putResourcePolicy(args: PutResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutResourcePolicyCommandOutput) => void): void;
|
|
305
327
|
/**
|
|
328
|
+
* @public
|
|
306
329
|
* <p>Adds the specified tags to the specified resource. Tags are key:value pairs that you can
|
|
307
330
|
* use to categorize and manage your resources, for purposes like billing. For example, you
|
|
308
331
|
* might set the tag key to "customer" and the value to the customer name or ID. You can
|
|
@@ -314,6 +337,7 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
314
337
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
315
338
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
316
339
|
/**
|
|
340
|
+
* @public
|
|
317
341
|
* <p>Removes the tags with the specified keys from the specified resource. Tags are key:value
|
|
318
342
|
* pairs that you can use to categorize and manage your resources, for purposes like billing.
|
|
319
343
|
* For example, you might set the tag key to "customer" and the value to the customer name or
|
|
@@ -326,6 +350,7 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
326
350
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
327
351
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
328
352
|
/**
|
|
353
|
+
* @public
|
|
329
354
|
* <p>Modifies the flag, <code>DeleteProtection</code>, which indicates whether it is possible
|
|
330
355
|
* to delete the firewall. If the flag is set to <code>TRUE</code>, the firewall is protected
|
|
331
356
|
* against deletion. This setting helps protect against accidentally deleting a firewall
|
|
@@ -335,6 +360,7 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
335
360
|
updateFirewallDeleteProtection(args: UpdateFirewallDeleteProtectionCommandInput, cb: (err: any, data?: UpdateFirewallDeleteProtectionCommandOutput) => void): void;
|
|
336
361
|
updateFirewallDeleteProtection(args: UpdateFirewallDeleteProtectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFirewallDeleteProtectionCommandOutput) => void): void;
|
|
337
362
|
/**
|
|
363
|
+
* @public
|
|
338
364
|
* <p>Modifies the description for the specified firewall. Use the description to help you
|
|
339
365
|
* identify the firewall when you're working with it. </p>
|
|
340
366
|
*/
|
|
@@ -342,18 +368,21 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
342
368
|
updateFirewallDescription(args: UpdateFirewallDescriptionCommandInput, cb: (err: any, data?: UpdateFirewallDescriptionCommandOutput) => void): void;
|
|
343
369
|
updateFirewallDescription(args: UpdateFirewallDescriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFirewallDescriptionCommandOutput) => void): void;
|
|
344
370
|
/**
|
|
371
|
+
* @public
|
|
345
372
|
* <p>A complex type that contains settings for encryption of your firewall resources.</p>
|
|
346
373
|
*/
|
|
347
374
|
updateFirewallEncryptionConfiguration(args: UpdateFirewallEncryptionConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFirewallEncryptionConfigurationCommandOutput>;
|
|
348
375
|
updateFirewallEncryptionConfiguration(args: UpdateFirewallEncryptionConfigurationCommandInput, cb: (err: any, data?: UpdateFirewallEncryptionConfigurationCommandOutput) => void): void;
|
|
349
376
|
updateFirewallEncryptionConfiguration(args: UpdateFirewallEncryptionConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFirewallEncryptionConfigurationCommandOutput) => void): void;
|
|
350
377
|
/**
|
|
378
|
+
* @public
|
|
351
379
|
* <p>Updates the properties of the specified firewall policy.</p>
|
|
352
380
|
*/
|
|
353
381
|
updateFirewallPolicy(args: UpdateFirewallPolicyCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFirewallPolicyCommandOutput>;
|
|
354
382
|
updateFirewallPolicy(args: UpdateFirewallPolicyCommandInput, cb: (err: any, data?: UpdateFirewallPolicyCommandOutput) => void): void;
|
|
355
383
|
updateFirewallPolicy(args: UpdateFirewallPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFirewallPolicyCommandOutput) => void): void;
|
|
356
384
|
/**
|
|
385
|
+
* @public
|
|
357
386
|
* <p>Modifies the flag, <code>ChangeProtection</code>, which indicates whether it
|
|
358
387
|
* is possible to change the firewall. If the flag is set to <code>TRUE</code>, the firewall is protected
|
|
359
388
|
* from changes. This setting helps protect against accidentally changing a firewall that's in use.</p>
|
|
@@ -362,6 +391,7 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
362
391
|
updateFirewallPolicyChangeProtection(args: UpdateFirewallPolicyChangeProtectionCommandInput, cb: (err: any, data?: UpdateFirewallPolicyChangeProtectionCommandOutput) => void): void;
|
|
363
392
|
updateFirewallPolicyChangeProtection(args: UpdateFirewallPolicyChangeProtectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFirewallPolicyChangeProtectionCommandOutput) => void): void;
|
|
364
393
|
/**
|
|
394
|
+
* @public
|
|
365
395
|
* <p>Sets the logging configuration for the specified firewall. </p>
|
|
366
396
|
* <p>To change the logging configuration, retrieve the <a>LoggingConfiguration</a> by calling <a>DescribeLoggingConfiguration</a>, then change it and provide
|
|
367
397
|
* the modified object to this update call. You must change the logging configuration one
|
|
@@ -393,6 +423,7 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
393
423
|
updateLoggingConfiguration(args: UpdateLoggingConfigurationCommandInput, cb: (err: any, data?: UpdateLoggingConfigurationCommandOutput) => void): void;
|
|
394
424
|
updateLoggingConfiguration(args: UpdateLoggingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLoggingConfigurationCommandOutput) => void): void;
|
|
395
425
|
/**
|
|
426
|
+
* @public
|
|
396
427
|
* <p>Updates the rule settings for the specified rule group. You use a rule group by
|
|
397
428
|
* reference in one or more firewall policies. When you modify a rule group, you modify all
|
|
398
429
|
* firewall policies that use the rule group. </p>
|
|
@@ -404,6 +435,7 @@ export declare class NetworkFirewall extends NetworkFirewallClient {
|
|
|
404
435
|
updateRuleGroup(args: UpdateRuleGroupCommandInput, cb: (err: any, data?: UpdateRuleGroupCommandOutput) => void): void;
|
|
405
436
|
updateRuleGroup(args: UpdateRuleGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRuleGroupCommandOutput) => void): void;
|
|
406
437
|
/**
|
|
438
|
+
* @public
|
|
407
439
|
* <p></p>
|
|
408
440
|
*/
|
|
409
441
|
updateSubnetChangeProtection(args: UpdateSubnetChangeProtectionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSubnetChangeProtectionCommandOutput>;
|
|
@@ -39,15 +39,24 @@ import { UpdateLoggingConfigurationCommandInput, UpdateLoggingConfigurationComma
|
|
|
39
39
|
import { UpdateRuleGroupCommandInput, UpdateRuleGroupCommandOutput } from "./commands/UpdateRuleGroupCommand";
|
|
40
40
|
import { UpdateSubnetChangeProtectionCommandInput, UpdateSubnetChangeProtectionCommandOutput } from "./commands/UpdateSubnetChangeProtectionCommand";
|
|
41
41
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
42
|
+
/**
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
42
45
|
export type ServiceInputTypes = AssociateFirewallPolicyCommandInput | AssociateSubnetsCommandInput | CreateFirewallCommandInput | CreateFirewallPolicyCommandInput | CreateRuleGroupCommandInput | DeleteFirewallCommandInput | DeleteFirewallPolicyCommandInput | DeleteResourcePolicyCommandInput | DeleteRuleGroupCommandInput | DescribeFirewallCommandInput | DescribeFirewallPolicyCommandInput | DescribeLoggingConfigurationCommandInput | DescribeResourcePolicyCommandInput | DescribeRuleGroupCommandInput | DescribeRuleGroupMetadataCommandInput | DisassociateSubnetsCommandInput | ListFirewallPoliciesCommandInput | ListFirewallsCommandInput | ListRuleGroupsCommandInput | ListTagsForResourceCommandInput | PutResourcePolicyCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateFirewallDeleteProtectionCommandInput | UpdateFirewallDescriptionCommandInput | UpdateFirewallEncryptionConfigurationCommandInput | UpdateFirewallPolicyChangeProtectionCommandInput | UpdateFirewallPolicyCommandInput | UpdateLoggingConfigurationCommandInput | UpdateRuleGroupCommandInput | UpdateSubnetChangeProtectionCommandInput;
|
|
46
|
+
/**
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
43
49
|
export type ServiceOutputTypes = AssociateFirewallPolicyCommandOutput | AssociateSubnetsCommandOutput | CreateFirewallCommandOutput | CreateFirewallPolicyCommandOutput | CreateRuleGroupCommandOutput | DeleteFirewallCommandOutput | DeleteFirewallPolicyCommandOutput | DeleteResourcePolicyCommandOutput | DeleteRuleGroupCommandOutput | DescribeFirewallCommandOutput | DescribeFirewallPolicyCommandOutput | DescribeLoggingConfigurationCommandOutput | DescribeResourcePolicyCommandOutput | DescribeRuleGroupCommandOutput | DescribeRuleGroupMetadataCommandOutput | DisassociateSubnetsCommandOutput | ListFirewallPoliciesCommandOutput | ListFirewallsCommandOutput | ListRuleGroupsCommandOutput | ListTagsForResourceCommandOutput | PutResourcePolicyCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateFirewallDeleteProtectionCommandOutput | UpdateFirewallDescriptionCommandOutput | UpdateFirewallEncryptionConfigurationCommandOutput | UpdateFirewallPolicyChangeProtectionCommandOutput | UpdateFirewallPolicyCommandOutput | UpdateLoggingConfigurationCommandOutput | UpdateRuleGroupCommandOutput | UpdateSubnetChangeProtectionCommandOutput;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
44
53
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
45
54
|
/**
|
|
46
55
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
47
56
|
*/
|
|
48
57
|
requestHandler?: __HttpHandler;
|
|
49
58
|
/**
|
|
50
|
-
* A constructor for a class implementing the {@link
|
|
59
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
51
60
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
52
61
|
* @internal
|
|
53
62
|
*/
|
|
@@ -137,23 +146,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
137
146
|
*/
|
|
138
147
|
logger?: __Logger;
|
|
139
148
|
/**
|
|
140
|
-
* The {@link
|
|
149
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
141
150
|
*/
|
|
142
151
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
143
152
|
}
|
|
153
|
+
/**
|
|
154
|
+
* @public
|
|
155
|
+
*/
|
|
144
156
|
type NetworkFirewallClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
145
157
|
/**
|
|
146
|
-
*
|
|
158
|
+
* @public
|
|
159
|
+
*
|
|
160
|
+
* The configuration interface of NetworkFirewallClient class constructor that set the region, credentials and other options.
|
|
147
161
|
*/
|
|
148
162
|
export interface NetworkFirewallClientConfig extends NetworkFirewallClientConfigType {
|
|
149
163
|
}
|
|
164
|
+
/**
|
|
165
|
+
* @public
|
|
166
|
+
*/
|
|
150
167
|
type NetworkFirewallClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
151
168
|
/**
|
|
152
|
-
*
|
|
169
|
+
* @public
|
|
170
|
+
*
|
|
171
|
+
* The resolved configuration interface of NetworkFirewallClient class. This is resolved and normalized from the {@link NetworkFirewallClientConfig | constructor configuration interface}.
|
|
153
172
|
*/
|
|
154
173
|
export interface NetworkFirewallClientResolvedConfig extends NetworkFirewallClientResolvedConfigType {
|
|
155
174
|
}
|
|
156
175
|
/**
|
|
176
|
+
* @public
|
|
157
177
|
* <p>This is the API Reference for Network Firewall. This guide is for developers who need
|
|
158
178
|
* detailed information about the Network Firewall API actions, data types, and errors. </p>
|
|
159
179
|
* <ul>
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AssociateFirewallPolicyRequest, AssociateFirewallPolicyResponse } from "../models/models_0";
|
|
5
5
|
import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AssociateFirewallPolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AssociateFirewallPolicyCommandInput extends AssociateFirewallPolicyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AssociateFirewallPolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AssociateFirewallPolicyCommandOutput extends AssociateFirewallPolicyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Associates a <a>FirewallPolicy</a> to a <a>Firewall</a>. </p>
|
|
18
23
|
* <p>A firewall policy defines how to monitor and manage your VPC network traffic, using a
|
|
19
24
|
* collection of inspection rule groups and other settings. Each firewall requires one
|
|
@@ -29,6 +34,8 @@ export interface AssociateFirewallPolicyCommandOutput extends AssociateFirewallP
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param AssociateFirewallPolicyCommandInput - {@link AssociateFirewallPolicyCommandInput}
|
|
38
|
+
* @returns {@link AssociateFirewallPolicyCommandOutput}
|
|
32
39
|
* @see {@link AssociateFirewallPolicyCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link AssociateFirewallPolicyCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link NetworkFirewallClientResolvedConfig | config} for NetworkFirewallClient's `config` shape.
|
|
@@ -71,11 +78,20 @@ export interface AssociateFirewallPolicyCommandOutput extends AssociateFirewallP
|
|
|
71
78
|
export declare class AssociateFirewallPolicyCommand extends $Command<AssociateFirewallPolicyCommandInput, AssociateFirewallPolicyCommandOutput, NetworkFirewallClientResolvedConfig> {
|
|
72
79
|
readonly input: AssociateFirewallPolicyCommandInput;
|
|
73
80
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
74
84
|
constructor(input: AssociateFirewallPolicyCommandInput);
|
|
75
85
|
/**
|
|
76
86
|
* @internal
|
|
77
87
|
*/
|
|
78
88
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: NetworkFirewallClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateFirewallPolicyCommandInput, AssociateFirewallPolicyCommandOutput>;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
79
92
|
private serialize;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
80
96
|
private deserialize;
|
|
81
97
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AssociateSubnetsRequest, AssociateSubnetsResponse } from "../models/models_0";
|
|
5
5
|
import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AssociateSubnetsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AssociateSubnetsCommandInput extends AssociateSubnetsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AssociateSubnetsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AssociateSubnetsCommandOutput extends AssociateSubnetsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Associates the specified subnets in the Amazon VPC to the firewall. You can specify one
|
|
18
23
|
* subnet for each of the Availability Zones that the VPC spans. </p>
|
|
19
24
|
* <p>This request creates an Network Firewall firewall endpoint in each of the subnets. To
|
|
@@ -30,6 +35,8 @@ export interface AssociateSubnetsCommandOutput extends AssociateSubnetsResponse,
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param AssociateSubnetsCommandInput - {@link AssociateSubnetsCommandInput}
|
|
39
|
+
* @returns {@link AssociateSubnetsCommandOutput}
|
|
33
40
|
* @see {@link AssociateSubnetsCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link AssociateSubnetsCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link NetworkFirewallClientResolvedConfig | config} for NetworkFirewallClient's `config` shape.
|
|
@@ -76,11 +83,20 @@ export interface AssociateSubnetsCommandOutput extends AssociateSubnetsResponse,
|
|
|
76
83
|
export declare class AssociateSubnetsCommand extends $Command<AssociateSubnetsCommandInput, AssociateSubnetsCommandOutput, NetworkFirewallClientResolvedConfig> {
|
|
77
84
|
readonly input: AssociateSubnetsCommandInput;
|
|
78
85
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
86
|
+
/**
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
79
89
|
constructor(input: AssociateSubnetsCommandInput);
|
|
80
90
|
/**
|
|
81
91
|
* @internal
|
|
82
92
|
*/
|
|
83
93
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: NetworkFirewallClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateSubnetsCommandInput, AssociateSubnetsCommandOutput>;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
84
97
|
private serialize;
|
|
98
|
+
/**
|
|
99
|
+
* @internal
|
|
100
|
+
*/
|
|
85
101
|
private deserialize;
|
|
86
102
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateFirewallRequest, CreateFirewallResponse } from "../models/models_0";
|
|
5
5
|
import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateFirewallCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateFirewallCommandInput extends CreateFirewallRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateFirewallCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateFirewallCommandOutput extends CreateFirewallResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an Network Firewall <a>Firewall</a> and accompanying <a>FirewallStatus</a> for a VPC. </p>
|
|
18
23
|
* <p>The firewall defines the configuration settings for an Network Firewall firewall. The settings that you can define at creation include the firewall policy, the subnets in your VPC to use for the firewall endpoints, and any tags that are attached to the firewall Amazon Web Services resource. </p>
|
|
19
24
|
* <p>After you create a firewall, you can provide additional settings, like the logging configuration. </p>
|
|
@@ -31,6 +36,8 @@ export interface CreateFirewallCommandOutput extends CreateFirewallResponse, __M
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param CreateFirewallCommandInput - {@link CreateFirewallCommandInput}
|
|
40
|
+
* @returns {@link CreateFirewallCommandOutput}
|
|
34
41
|
* @see {@link CreateFirewallCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link CreateFirewallCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link NetworkFirewallClientResolvedConfig | config} for NetworkFirewallClient's `config` shape.
|
|
@@ -74,11 +81,20 @@ export interface CreateFirewallCommandOutput extends CreateFirewallResponse, __M
|
|
|
74
81
|
export declare class CreateFirewallCommand extends $Command<CreateFirewallCommandInput, CreateFirewallCommandOutput, NetworkFirewallClientResolvedConfig> {
|
|
75
82
|
readonly input: CreateFirewallCommandInput;
|
|
76
83
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
84
|
+
/**
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
77
87
|
constructor(input: CreateFirewallCommandInput);
|
|
78
88
|
/**
|
|
79
89
|
* @internal
|
|
80
90
|
*/
|
|
81
91
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: NetworkFirewallClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateFirewallCommandInput, CreateFirewallCommandOutput>;
|
|
92
|
+
/**
|
|
93
|
+
* @internal
|
|
94
|
+
*/
|
|
82
95
|
private serialize;
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
83
99
|
private deserialize;
|
|
84
100
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateFirewallPolicyRequest, CreateFirewallPolicyResponse } from "../models/models_0";
|
|
5
5
|
import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateFirewallPolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateFirewallPolicyCommandInput extends CreateFirewallPolicyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateFirewallPolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateFirewallPolicyCommandOutput extends CreateFirewallPolicyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates the firewall policy for the firewall according to the specifications. </p>
|
|
18
23
|
* <p>An Network Firewall firewall policy defines the behavior of a firewall, in a collection of
|
|
19
24
|
* stateless and stateful rule groups and other settings. You can use one firewall policy for
|
|
@@ -28,6 +33,8 @@ export interface CreateFirewallPolicyCommandOutput extends CreateFirewallPolicyR
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param CreateFirewallPolicyCommandInput - {@link CreateFirewallPolicyCommandInput}
|
|
37
|
+
* @returns {@link CreateFirewallPolicyCommandOutput}
|
|
31
38
|
* @see {@link CreateFirewallPolicyCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link CreateFirewallPolicyCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link NetworkFirewallClientResolvedConfig | config} for NetworkFirewallClient's `config` shape.
|
|
@@ -67,11 +74,20 @@ export interface CreateFirewallPolicyCommandOutput extends CreateFirewallPolicyR
|
|
|
67
74
|
export declare class CreateFirewallPolicyCommand extends $Command<CreateFirewallPolicyCommandInput, CreateFirewallPolicyCommandOutput, NetworkFirewallClientResolvedConfig> {
|
|
68
75
|
readonly input: CreateFirewallPolicyCommandInput;
|
|
69
76
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
70
80
|
constructor(input: CreateFirewallPolicyCommandInput);
|
|
71
81
|
/**
|
|
72
82
|
* @internal
|
|
73
83
|
*/
|
|
74
84
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: NetworkFirewallClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateFirewallPolicyCommandInput, CreateFirewallPolicyCommandOutput>;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
75
88
|
private serialize;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
76
92
|
private deserialize;
|
|
77
93
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateRuleGroupRequest, CreateRuleGroupResponse } from "../models/models_0";
|
|
5
5
|
import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateRuleGroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateRuleGroupCommandInput extends CreateRuleGroupRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateRuleGroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateRuleGroupCommandOutput extends CreateRuleGroupResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates the specified stateless or stateful rule group, which includes the rules for
|
|
18
23
|
* network traffic inspection, a capacity setting, and tags. </p>
|
|
19
24
|
* <p>You provide your rule group specification in your request using either
|
|
@@ -28,6 +33,8 @@ export interface CreateRuleGroupCommandOutput extends CreateRuleGroupResponse, _
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param CreateRuleGroupCommandInput - {@link CreateRuleGroupCommandInput}
|
|
37
|
+
* @returns {@link CreateRuleGroupCommandOutput}
|
|
31
38
|
* @see {@link CreateRuleGroupCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link CreateRuleGroupCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link NetworkFirewallClientResolvedConfig | config} for NetworkFirewallClient's `config` shape.
|
|
@@ -67,11 +74,20 @@ export interface CreateRuleGroupCommandOutput extends CreateRuleGroupResponse, _
|
|
|
67
74
|
export declare class CreateRuleGroupCommand extends $Command<CreateRuleGroupCommandInput, CreateRuleGroupCommandOutput, NetworkFirewallClientResolvedConfig> {
|
|
68
75
|
readonly input: CreateRuleGroupCommandInput;
|
|
69
76
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
70
80
|
constructor(input: CreateRuleGroupCommandInput);
|
|
71
81
|
/**
|
|
72
82
|
* @internal
|
|
73
83
|
*/
|
|
74
84
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: NetworkFirewallClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateRuleGroupCommandInput, CreateRuleGroupCommandOutput>;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
75
88
|
private serialize;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
76
92
|
private deserialize;
|
|
77
93
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteFirewallRequest, DeleteFirewallResponse } from "../models/models_0";
|
|
5
5
|
import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteFirewallCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteFirewallCommandInput extends DeleteFirewallRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteFirewallCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteFirewallCommandOutput extends DeleteFirewallResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified <a>Firewall</a> and its <a>FirewallStatus</a>.
|
|
18
23
|
* This operation requires the firewall's <code>DeleteProtection</code> flag to be
|
|
19
24
|
* <code>FALSE</code>. You can't revert this operation. </p>
|
|
@@ -35,6 +40,8 @@ export interface DeleteFirewallCommandOutput extends DeleteFirewallResponse, __M
|
|
|
35
40
|
* const response = await client.send(command);
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
43
|
+
* @param DeleteFirewallCommandInput - {@link DeleteFirewallCommandInput}
|
|
44
|
+
* @returns {@link DeleteFirewallCommandOutput}
|
|
38
45
|
* @see {@link DeleteFirewallCommandInput} for command's `input` shape.
|
|
39
46
|
* @see {@link DeleteFirewallCommandOutput} for command's `response` shape.
|
|
40
47
|
* @see {@link NetworkFirewallClientResolvedConfig | config} for NetworkFirewallClient's `config` shape.
|
|
@@ -77,11 +84,20 @@ export interface DeleteFirewallCommandOutput extends DeleteFirewallResponse, __M
|
|
|
77
84
|
export declare class DeleteFirewallCommand extends $Command<DeleteFirewallCommandInput, DeleteFirewallCommandOutput, NetworkFirewallClientResolvedConfig> {
|
|
78
85
|
readonly input: DeleteFirewallCommandInput;
|
|
79
86
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
80
90
|
constructor(input: DeleteFirewallCommandInput);
|
|
81
91
|
/**
|
|
82
92
|
* @internal
|
|
83
93
|
*/
|
|
84
94
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: NetworkFirewallClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteFirewallCommandInput, DeleteFirewallCommandOutput>;
|
|
95
|
+
/**
|
|
96
|
+
* @internal
|
|
97
|
+
*/
|
|
85
98
|
private serialize;
|
|
99
|
+
/**
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
86
102
|
private deserialize;
|
|
87
103
|
}
|