@aws-sdk/client-network-firewall 3.939.0 → 3.943.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
package/README.md
CHANGED
|
@@ -109,16 +109,16 @@ using your favorite package manager:
|
|
|
109
109
|
|
|
110
110
|
The AWS SDK is modulized by clients and commands.
|
|
111
111
|
To send a request, you only need to import the `NetworkFirewallClient` and
|
|
112
|
-
the commands you need, for example `
|
|
112
|
+
the commands you need, for example `ListProxiesCommand`:
|
|
113
113
|
|
|
114
114
|
```js
|
|
115
115
|
// ES5 example
|
|
116
|
-
const { NetworkFirewallClient,
|
|
116
|
+
const { NetworkFirewallClient, ListProxiesCommand } = require("@aws-sdk/client-network-firewall");
|
|
117
117
|
```
|
|
118
118
|
|
|
119
119
|
```ts
|
|
120
120
|
// ES6+ example
|
|
121
|
-
import { NetworkFirewallClient,
|
|
121
|
+
import { NetworkFirewallClient, ListProxiesCommand } from "@aws-sdk/client-network-firewall";
|
|
122
122
|
```
|
|
123
123
|
|
|
124
124
|
### Usage
|
|
@@ -137,7 +137,7 @@ const client = new NetworkFirewallClient({ region: "REGION" });
|
|
|
137
137
|
const params = {
|
|
138
138
|
/** input parameters */
|
|
139
139
|
};
|
|
140
|
-
const command = new
|
|
140
|
+
const command = new ListProxiesCommand(params);
|
|
141
141
|
```
|
|
142
142
|
|
|
143
143
|
#### Async/await
|
|
@@ -216,7 +216,7 @@ const client = new AWS.NetworkFirewall({ region: "REGION" });
|
|
|
216
216
|
|
|
217
217
|
// async/await.
|
|
218
218
|
try {
|
|
219
|
-
const data = await client.
|
|
219
|
+
const data = await client.listProxies(params);
|
|
220
220
|
// process data.
|
|
221
221
|
} catch (error) {
|
|
222
222
|
// error handling.
|
|
@@ -224,7 +224,7 @@ try {
|
|
|
224
224
|
|
|
225
225
|
// Promises.
|
|
226
226
|
client
|
|
227
|
-
.
|
|
227
|
+
.listProxies(params)
|
|
228
228
|
.then((data) => {
|
|
229
229
|
// process data.
|
|
230
230
|
})
|
|
@@ -233,7 +233,7 @@ client
|
|
|
233
233
|
});
|
|
234
234
|
|
|
235
235
|
// callbacks.
|
|
236
|
-
client.
|
|
236
|
+
client.listProxies(params, (err, data) => {
|
|
237
237
|
// process err and data.
|
|
238
238
|
});
|
|
239
239
|
```
|
|
@@ -320,6 +320,14 @@ AssociateSubnets
|
|
|
320
320
|
|
|
321
321
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/AssociateSubnetsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/AssociateSubnetsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/AssociateSubnetsCommandOutput/)
|
|
322
322
|
|
|
323
|
+
</details>
|
|
324
|
+
<details>
|
|
325
|
+
<summary>
|
|
326
|
+
AttachRuleGroupsToProxyConfiguration
|
|
327
|
+
</summary>
|
|
328
|
+
|
|
329
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/AttachRuleGroupsToProxyConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/AttachRuleGroupsToProxyConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/AttachRuleGroupsToProxyConfigurationCommandOutput/)
|
|
330
|
+
|
|
323
331
|
</details>
|
|
324
332
|
<details>
|
|
325
333
|
<summary>
|
|
@@ -336,6 +344,38 @@ CreateFirewallPolicy
|
|
|
336
344
|
|
|
337
345
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/CreateFirewallPolicyCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/CreateFirewallPolicyCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/CreateFirewallPolicyCommandOutput/)
|
|
338
346
|
|
|
347
|
+
</details>
|
|
348
|
+
<details>
|
|
349
|
+
<summary>
|
|
350
|
+
CreateProxy
|
|
351
|
+
</summary>
|
|
352
|
+
|
|
353
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/CreateProxyCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/CreateProxyCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/CreateProxyCommandOutput/)
|
|
354
|
+
|
|
355
|
+
</details>
|
|
356
|
+
<details>
|
|
357
|
+
<summary>
|
|
358
|
+
CreateProxyConfiguration
|
|
359
|
+
</summary>
|
|
360
|
+
|
|
361
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/CreateProxyConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/CreateProxyConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/CreateProxyConfigurationCommandOutput/)
|
|
362
|
+
|
|
363
|
+
</details>
|
|
364
|
+
<details>
|
|
365
|
+
<summary>
|
|
366
|
+
CreateProxyRuleGroup
|
|
367
|
+
</summary>
|
|
368
|
+
|
|
369
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/CreateProxyRuleGroupCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/CreateProxyRuleGroupCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/CreateProxyRuleGroupCommandOutput/)
|
|
370
|
+
|
|
371
|
+
</details>
|
|
372
|
+
<details>
|
|
373
|
+
<summary>
|
|
374
|
+
CreateProxyRules
|
|
375
|
+
</summary>
|
|
376
|
+
|
|
377
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/CreateProxyRulesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/CreateProxyRulesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/CreateProxyRulesCommandOutput/)
|
|
378
|
+
|
|
339
379
|
</details>
|
|
340
380
|
<details>
|
|
341
381
|
<summary>
|
|
@@ -384,6 +424,38 @@ DeleteNetworkFirewallTransitGatewayAttachment
|
|
|
384
424
|
|
|
385
425
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/DeleteNetworkFirewallTransitGatewayAttachmentCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DeleteNetworkFirewallTransitGatewayAttachmentCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DeleteNetworkFirewallTransitGatewayAttachmentCommandOutput/)
|
|
386
426
|
|
|
427
|
+
</details>
|
|
428
|
+
<details>
|
|
429
|
+
<summary>
|
|
430
|
+
DeleteProxy
|
|
431
|
+
</summary>
|
|
432
|
+
|
|
433
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/DeleteProxyCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DeleteProxyCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DeleteProxyCommandOutput/)
|
|
434
|
+
|
|
435
|
+
</details>
|
|
436
|
+
<details>
|
|
437
|
+
<summary>
|
|
438
|
+
DeleteProxyConfiguration
|
|
439
|
+
</summary>
|
|
440
|
+
|
|
441
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/DeleteProxyConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DeleteProxyConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DeleteProxyConfigurationCommandOutput/)
|
|
442
|
+
|
|
443
|
+
</details>
|
|
444
|
+
<details>
|
|
445
|
+
<summary>
|
|
446
|
+
DeleteProxyRuleGroup
|
|
447
|
+
</summary>
|
|
448
|
+
|
|
449
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/DeleteProxyRuleGroupCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DeleteProxyRuleGroupCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DeleteProxyRuleGroupCommandOutput/)
|
|
450
|
+
|
|
451
|
+
</details>
|
|
452
|
+
<details>
|
|
453
|
+
<summary>
|
|
454
|
+
DeleteProxyRules
|
|
455
|
+
</summary>
|
|
456
|
+
|
|
457
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/DeleteProxyRulesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DeleteProxyRulesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DeleteProxyRulesCommandOutput/)
|
|
458
|
+
|
|
387
459
|
</details>
|
|
388
460
|
<details>
|
|
389
461
|
<summary>
|
|
@@ -456,6 +528,38 @@ DescribeLoggingConfiguration
|
|
|
456
528
|
|
|
457
529
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/DescribeLoggingConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DescribeLoggingConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DescribeLoggingConfigurationCommandOutput/)
|
|
458
530
|
|
|
531
|
+
</details>
|
|
532
|
+
<details>
|
|
533
|
+
<summary>
|
|
534
|
+
DescribeProxy
|
|
535
|
+
</summary>
|
|
536
|
+
|
|
537
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/DescribeProxyCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DescribeProxyCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DescribeProxyCommandOutput/)
|
|
538
|
+
|
|
539
|
+
</details>
|
|
540
|
+
<details>
|
|
541
|
+
<summary>
|
|
542
|
+
DescribeProxyConfiguration
|
|
543
|
+
</summary>
|
|
544
|
+
|
|
545
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/DescribeProxyConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DescribeProxyConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DescribeProxyConfigurationCommandOutput/)
|
|
546
|
+
|
|
547
|
+
</details>
|
|
548
|
+
<details>
|
|
549
|
+
<summary>
|
|
550
|
+
DescribeProxyRule
|
|
551
|
+
</summary>
|
|
552
|
+
|
|
553
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/DescribeProxyRuleCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DescribeProxyRuleCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DescribeProxyRuleCommandOutput/)
|
|
554
|
+
|
|
555
|
+
</details>
|
|
556
|
+
<details>
|
|
557
|
+
<summary>
|
|
558
|
+
DescribeProxyRuleGroup
|
|
559
|
+
</summary>
|
|
560
|
+
|
|
561
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/DescribeProxyRuleGroupCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DescribeProxyRuleGroupCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DescribeProxyRuleGroupCommandOutput/)
|
|
562
|
+
|
|
459
563
|
</details>
|
|
460
564
|
<details>
|
|
461
565
|
<summary>
|
|
@@ -504,6 +608,14 @@ DescribeVpcEndpointAssociation
|
|
|
504
608
|
|
|
505
609
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/DescribeVpcEndpointAssociationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DescribeVpcEndpointAssociationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DescribeVpcEndpointAssociationCommandOutput/)
|
|
506
610
|
|
|
611
|
+
</details>
|
|
612
|
+
<details>
|
|
613
|
+
<summary>
|
|
614
|
+
DetachRuleGroupsFromProxyConfiguration
|
|
615
|
+
</summary>
|
|
616
|
+
|
|
617
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/DetachRuleGroupsFromProxyConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DetachRuleGroupsFromProxyConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/DetachRuleGroupsFromProxyConfigurationCommandOutput/)
|
|
618
|
+
|
|
507
619
|
</details>
|
|
508
620
|
<details>
|
|
509
621
|
<summary>
|
|
@@ -568,6 +680,30 @@ ListFlowOperations
|
|
|
568
680
|
|
|
569
681
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/ListFlowOperationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/ListFlowOperationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/ListFlowOperationsCommandOutput/)
|
|
570
682
|
|
|
683
|
+
</details>
|
|
684
|
+
<details>
|
|
685
|
+
<summary>
|
|
686
|
+
ListProxies
|
|
687
|
+
</summary>
|
|
688
|
+
|
|
689
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/ListProxiesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/ListProxiesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/ListProxiesCommandOutput/)
|
|
690
|
+
|
|
691
|
+
</details>
|
|
692
|
+
<details>
|
|
693
|
+
<summary>
|
|
694
|
+
ListProxyConfigurations
|
|
695
|
+
</summary>
|
|
696
|
+
|
|
697
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/ListProxyConfigurationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/ListProxyConfigurationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/ListProxyConfigurationsCommandOutput/)
|
|
698
|
+
|
|
699
|
+
</details>
|
|
700
|
+
<details>
|
|
701
|
+
<summary>
|
|
702
|
+
ListProxyRuleGroups
|
|
703
|
+
</summary>
|
|
704
|
+
|
|
705
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/ListProxyRuleGroupsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/ListProxyRuleGroupsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/ListProxyRuleGroupsCommandOutput/)
|
|
706
|
+
|
|
571
707
|
</details>
|
|
572
708
|
<details>
|
|
573
709
|
<summary>
|
|
@@ -720,6 +856,46 @@ UpdateLoggingConfiguration
|
|
|
720
856
|
|
|
721
857
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/UpdateLoggingConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/UpdateLoggingConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/UpdateLoggingConfigurationCommandOutput/)
|
|
722
858
|
|
|
859
|
+
</details>
|
|
860
|
+
<details>
|
|
861
|
+
<summary>
|
|
862
|
+
UpdateProxy
|
|
863
|
+
</summary>
|
|
864
|
+
|
|
865
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/UpdateProxyCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/UpdateProxyCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/UpdateProxyCommandOutput/)
|
|
866
|
+
|
|
867
|
+
</details>
|
|
868
|
+
<details>
|
|
869
|
+
<summary>
|
|
870
|
+
UpdateProxyConfiguration
|
|
871
|
+
</summary>
|
|
872
|
+
|
|
873
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/UpdateProxyConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/UpdateProxyConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/UpdateProxyConfigurationCommandOutput/)
|
|
874
|
+
|
|
875
|
+
</details>
|
|
876
|
+
<details>
|
|
877
|
+
<summary>
|
|
878
|
+
UpdateProxyRule
|
|
879
|
+
</summary>
|
|
880
|
+
|
|
881
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/UpdateProxyRuleCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/UpdateProxyRuleCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/UpdateProxyRuleCommandOutput/)
|
|
882
|
+
|
|
883
|
+
</details>
|
|
884
|
+
<details>
|
|
885
|
+
<summary>
|
|
886
|
+
UpdateProxyRuleGroupPriorities
|
|
887
|
+
</summary>
|
|
888
|
+
|
|
889
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/UpdateProxyRuleGroupPrioritiesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/UpdateProxyRuleGroupPrioritiesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/UpdateProxyRuleGroupPrioritiesCommandOutput/)
|
|
890
|
+
|
|
891
|
+
</details>
|
|
892
|
+
<details>
|
|
893
|
+
<summary>
|
|
894
|
+
UpdateProxyRulePriorities
|
|
895
|
+
</summary>
|
|
896
|
+
|
|
897
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/network-firewall/command/UpdateProxyRulePrioritiesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/UpdateProxyRulePrioritiesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-network-firewall/Interface/UpdateProxyRulePrioritiesCommandOutput/)
|
|
898
|
+
|
|
723
899
|
</details>
|
|
724
900
|
<details>
|
|
725
901
|
<summary>
|