@aws-sdk/client-network-firewall 3.489.0 → 3.495.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.
Files changed (55) hide show
  1. package/dist-cjs/NetworkFirewall.js +1 -83
  2. package/dist-cjs/NetworkFirewallClient.js +1 -43
  3. package/dist-cjs/commands/AssociateFirewallPolicyCommand.js +1 -28
  4. package/dist-cjs/commands/AssociateSubnetsCommand.js +1 -28
  5. package/dist-cjs/commands/CreateFirewallCommand.js +1 -28
  6. package/dist-cjs/commands/CreateFirewallPolicyCommand.js +1 -28
  7. package/dist-cjs/commands/CreateRuleGroupCommand.js +1 -28
  8. package/dist-cjs/commands/CreateTLSInspectionConfigurationCommand.js +1 -28
  9. package/dist-cjs/commands/DeleteFirewallCommand.js +1 -28
  10. package/dist-cjs/commands/DeleteFirewallPolicyCommand.js +1 -28
  11. package/dist-cjs/commands/DeleteResourcePolicyCommand.js +1 -28
  12. package/dist-cjs/commands/DeleteRuleGroupCommand.js +1 -28
  13. package/dist-cjs/commands/DeleteTLSInspectionConfigurationCommand.js +1 -28
  14. package/dist-cjs/commands/DescribeFirewallCommand.js +1 -28
  15. package/dist-cjs/commands/DescribeFirewallPolicyCommand.js +1 -28
  16. package/dist-cjs/commands/DescribeLoggingConfigurationCommand.js +1 -28
  17. package/dist-cjs/commands/DescribeResourcePolicyCommand.js +1 -28
  18. package/dist-cjs/commands/DescribeRuleGroupCommand.js +1 -28
  19. package/dist-cjs/commands/DescribeRuleGroupMetadataCommand.js +1 -28
  20. package/dist-cjs/commands/DescribeTLSInspectionConfigurationCommand.js +1 -28
  21. package/dist-cjs/commands/DisassociateSubnetsCommand.js +1 -28
  22. package/dist-cjs/commands/ListFirewallPoliciesCommand.js +1 -28
  23. package/dist-cjs/commands/ListFirewallsCommand.js +1 -28
  24. package/dist-cjs/commands/ListRuleGroupsCommand.js +1 -28
  25. package/dist-cjs/commands/ListTLSInspectionConfigurationsCommand.js +1 -28
  26. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
  27. package/dist-cjs/commands/PutResourcePolicyCommand.js +1 -28
  28. package/dist-cjs/commands/TagResourceCommand.js +1 -28
  29. package/dist-cjs/commands/UntagResourceCommand.js +1 -28
  30. package/dist-cjs/commands/UpdateFirewallDeleteProtectionCommand.js +1 -28
  31. package/dist-cjs/commands/UpdateFirewallDescriptionCommand.js +1 -28
  32. package/dist-cjs/commands/UpdateFirewallEncryptionConfigurationCommand.js +1 -28
  33. package/dist-cjs/commands/UpdateFirewallPolicyChangeProtectionCommand.js +1 -28
  34. package/dist-cjs/commands/UpdateFirewallPolicyCommand.js +1 -28
  35. package/dist-cjs/commands/UpdateLoggingConfigurationCommand.js +1 -28
  36. package/dist-cjs/commands/UpdateRuleGroupCommand.js +1 -28
  37. package/dist-cjs/commands/UpdateSubnetChangeProtectionCommand.js +1 -28
  38. package/dist-cjs/commands/UpdateTLSInspectionConfigurationCommand.js +1 -28
  39. package/dist-cjs/commands/index.js +1 -39
  40. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  41. package/dist-cjs/extensionConfiguration.js +1 -2
  42. package/dist-cjs/index.js +3451 -11
  43. package/dist-cjs/models/NetworkFirewallServiceException.js +1 -12
  44. package/dist-cjs/models/index.js +1 -4
  45. package/dist-cjs/models/models_0.js +1 -300
  46. package/dist-cjs/pagination/Interfaces.js +1 -2
  47. package/dist-cjs/pagination/ListFirewallPoliciesPaginator.js +1 -7
  48. package/dist-cjs/pagination/ListFirewallsPaginator.js +1 -7
  49. package/dist-cjs/pagination/ListRuleGroupsPaginator.js +1 -7
  50. package/dist-cjs/pagination/ListTLSInspectionConfigurationsPaginator.js +1 -7
  51. package/dist-cjs/pagination/ListTagsForResourcePaginator.js +1 -7
  52. package/dist-cjs/pagination/index.js +1 -9
  53. package/dist-cjs/protocols/Aws_json1_0.js +1 -2207
  54. package/dist-cjs/runtimeExtensions.js +1 -22
  55. package/package.json +40 -40
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeRuleGroupMetadataCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class DescribeRuleGroupMetadataCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("NetworkFirewall_20201112", "DescribeRuleGroupMetadata", {})
22
- .n("NetworkFirewallClient", "DescribeRuleGroupMetadataCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_DescribeRuleGroupMetadataCommand)
25
- .de(Aws_json1_0_1.de_DescribeRuleGroupMetadataCommand)
26
- .build() {
27
- }
28
- exports.DescribeRuleGroupMetadataCommand = DescribeRuleGroupMetadataCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DescribeTLSInspectionConfigurationCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class DescribeTLSInspectionConfigurationCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("NetworkFirewall_20201112", "DescribeTLSInspectionConfiguration", {})
22
- .n("NetworkFirewallClient", "DescribeTLSInspectionConfigurationCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_DescribeTLSInspectionConfigurationCommand)
25
- .de(Aws_json1_0_1.de_DescribeTLSInspectionConfigurationCommand)
26
- .build() {
27
- }
28
- exports.DescribeTLSInspectionConfigurationCommand = DescribeTLSInspectionConfigurationCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DisassociateSubnetsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class DisassociateSubnetsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("NetworkFirewall_20201112", "DisassociateSubnets", {})
22
- .n("NetworkFirewallClient", "DisassociateSubnetsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_DisassociateSubnetsCommand)
25
- .de(Aws_json1_0_1.de_DisassociateSubnetsCommand)
26
- .build() {
27
- }
28
- exports.DisassociateSubnetsCommand = DisassociateSubnetsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListFirewallPoliciesCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class ListFirewallPoliciesCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("NetworkFirewall_20201112", "ListFirewallPolicies", {})
22
- .n("NetworkFirewallClient", "ListFirewallPoliciesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_ListFirewallPoliciesCommand)
25
- .de(Aws_json1_0_1.de_ListFirewallPoliciesCommand)
26
- .build() {
27
- }
28
- exports.ListFirewallPoliciesCommand = ListFirewallPoliciesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListFirewallsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class ListFirewallsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("NetworkFirewall_20201112", "ListFirewalls", {})
22
- .n("NetworkFirewallClient", "ListFirewallsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_ListFirewallsCommand)
25
- .de(Aws_json1_0_1.de_ListFirewallsCommand)
26
- .build() {
27
- }
28
- exports.ListFirewallsCommand = ListFirewallsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListRuleGroupsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class ListRuleGroupsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("NetworkFirewall_20201112", "ListRuleGroups", {})
22
- .n("NetworkFirewallClient", "ListRuleGroupsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_ListRuleGroupsCommand)
25
- .de(Aws_json1_0_1.de_ListRuleGroupsCommand)
26
- .build() {
27
- }
28
- exports.ListRuleGroupsCommand = ListRuleGroupsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListTLSInspectionConfigurationsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class ListTLSInspectionConfigurationsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("NetworkFirewall_20201112", "ListTLSInspectionConfigurations", {})
22
- .n("NetworkFirewallClient", "ListTLSInspectionConfigurationsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_ListTLSInspectionConfigurationsCommand)
25
- .de(Aws_json1_0_1.de_ListTLSInspectionConfigurationsCommand)
26
- .build() {
27
- }
28
- exports.ListTLSInspectionConfigurationsCommand = ListTLSInspectionConfigurationsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListTagsForResourceCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class ListTagsForResourceCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("NetworkFirewall_20201112", "ListTagsForResource", {})
22
- .n("NetworkFirewallClient", "ListTagsForResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_ListTagsForResourceCommand)
25
- .de(Aws_json1_0_1.de_ListTagsForResourceCommand)
26
- .build() {
27
- }
28
- exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutResourcePolicyCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class PutResourcePolicyCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("NetworkFirewall_20201112", "PutResourcePolicy", {})
22
- .n("NetworkFirewallClient", "PutResourcePolicyCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_PutResourcePolicyCommand)
25
- .de(Aws_json1_0_1.de_PutResourcePolicyCommand)
26
- .build() {
27
- }
28
- exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TagResourceCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class TagResourceCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("NetworkFirewall_20201112", "TagResource", {})
22
- .n("NetworkFirewallClient", "TagResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_TagResourceCommand)
25
- .de(Aws_json1_0_1.de_TagResourceCommand)
26
- .build() {
27
- }
28
- exports.TagResourceCommand = TagResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UntagResourceCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class UntagResourceCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("NetworkFirewall_20201112", "UntagResource", {})
22
- .n("NetworkFirewallClient", "UntagResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_UntagResourceCommand)
25
- .de(Aws_json1_0_1.de_UntagResourceCommand)
26
- .build() {
27
- }
28
- exports.UntagResourceCommand = UntagResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateFirewallDeleteProtectionCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class UpdateFirewallDeleteProtectionCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("NetworkFirewall_20201112", "UpdateFirewallDeleteProtection", {})
22
- .n("NetworkFirewallClient", "UpdateFirewallDeleteProtectionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_UpdateFirewallDeleteProtectionCommand)
25
- .de(Aws_json1_0_1.de_UpdateFirewallDeleteProtectionCommand)
26
- .build() {
27
- }
28
- exports.UpdateFirewallDeleteProtectionCommand = UpdateFirewallDeleteProtectionCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateFirewallDescriptionCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class UpdateFirewallDescriptionCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("NetworkFirewall_20201112", "UpdateFirewallDescription", {})
22
- .n("NetworkFirewallClient", "UpdateFirewallDescriptionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_UpdateFirewallDescriptionCommand)
25
- .de(Aws_json1_0_1.de_UpdateFirewallDescriptionCommand)
26
- .build() {
27
- }
28
- exports.UpdateFirewallDescriptionCommand = UpdateFirewallDescriptionCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateFirewallEncryptionConfigurationCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class UpdateFirewallEncryptionConfigurationCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("NetworkFirewall_20201112", "UpdateFirewallEncryptionConfiguration", {})
22
- .n("NetworkFirewallClient", "UpdateFirewallEncryptionConfigurationCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_UpdateFirewallEncryptionConfigurationCommand)
25
- .de(Aws_json1_0_1.de_UpdateFirewallEncryptionConfigurationCommand)
26
- .build() {
27
- }
28
- exports.UpdateFirewallEncryptionConfigurationCommand = UpdateFirewallEncryptionConfigurationCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateFirewallPolicyChangeProtectionCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class UpdateFirewallPolicyChangeProtectionCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("NetworkFirewall_20201112", "UpdateFirewallPolicyChangeProtection", {})
22
- .n("NetworkFirewallClient", "UpdateFirewallPolicyChangeProtectionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_UpdateFirewallPolicyChangeProtectionCommand)
25
- .de(Aws_json1_0_1.de_UpdateFirewallPolicyChangeProtectionCommand)
26
- .build() {
27
- }
28
- exports.UpdateFirewallPolicyChangeProtectionCommand = UpdateFirewallPolicyChangeProtectionCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateFirewallPolicyCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class UpdateFirewallPolicyCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("NetworkFirewall_20201112", "UpdateFirewallPolicy", {})
22
- .n("NetworkFirewallClient", "UpdateFirewallPolicyCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_UpdateFirewallPolicyCommand)
25
- .de(Aws_json1_0_1.de_UpdateFirewallPolicyCommand)
26
- .build() {
27
- }
28
- exports.UpdateFirewallPolicyCommand = UpdateFirewallPolicyCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateLoggingConfigurationCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class UpdateLoggingConfigurationCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("NetworkFirewall_20201112", "UpdateLoggingConfiguration", {})
22
- .n("NetworkFirewallClient", "UpdateLoggingConfigurationCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_UpdateLoggingConfigurationCommand)
25
- .de(Aws_json1_0_1.de_UpdateLoggingConfigurationCommand)
26
- .build() {
27
- }
28
- exports.UpdateLoggingConfigurationCommand = UpdateLoggingConfigurationCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateRuleGroupCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class UpdateRuleGroupCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("NetworkFirewall_20201112", "UpdateRuleGroup", {})
22
- .n("NetworkFirewallClient", "UpdateRuleGroupCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_UpdateRuleGroupCommand)
25
- .de(Aws_json1_0_1.de_UpdateRuleGroupCommand)
26
- .build() {
27
- }
28
- exports.UpdateRuleGroupCommand = UpdateRuleGroupCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateSubnetChangeProtectionCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class UpdateSubnetChangeProtectionCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("NetworkFirewall_20201112", "UpdateSubnetChangeProtection", {})
22
- .n("NetworkFirewallClient", "UpdateSubnetChangeProtectionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_UpdateSubnetChangeProtectionCommand)
25
- .de(Aws_json1_0_1.de_UpdateSubnetChangeProtectionCommand)
26
- .build() {
27
- }
28
- exports.UpdateSubnetChangeProtectionCommand = UpdateSubnetChangeProtectionCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateTLSInspectionConfigurationCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
- class UpdateTLSInspectionConfigurationCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("NetworkFirewall_20201112", "UpdateTLSInspectionConfiguration", {})
22
- .n("NetworkFirewallClient", "UpdateTLSInspectionConfigurationCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_json1_0_1.se_UpdateTLSInspectionConfigurationCommand)
25
- .de(Aws_json1_0_1.de_UpdateTLSInspectionConfigurationCommand)
26
- .build() {
27
- }
28
- exports.UpdateTLSInspectionConfigurationCommand = UpdateTLSInspectionConfigurationCommand;
1
+ module.exports = require("../index.js");