@aws-sdk/client-fms 3.183.0 → 3.186.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 (49) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist-cjs/protocols/Aws_json1_1.js +2 -2
  3. package/dist-es/FMS.js +129 -122
  4. package/dist-es/FMSClient.js +28 -22
  5. package/dist-es/commands/AssociateAdminAccountCommand.js +29 -22
  6. package/dist-es/commands/AssociateThirdPartyFirewallCommand.js +28 -21
  7. package/dist-es/commands/DeleteAppsListCommand.js +29 -22
  8. package/dist-es/commands/DeleteNotificationChannelCommand.js +29 -22
  9. package/dist-es/commands/DeletePolicyCommand.js +29 -22
  10. package/dist-es/commands/DeleteProtocolsListCommand.js +29 -22
  11. package/dist-es/commands/DisassociateAdminAccountCommand.js +29 -22
  12. package/dist-es/commands/DisassociateThirdPartyFirewallCommand.js +28 -21
  13. package/dist-es/commands/GetAdminAccountCommand.js +28 -21
  14. package/dist-es/commands/GetAppsListCommand.js +28 -21
  15. package/dist-es/commands/GetComplianceDetailCommand.js +28 -21
  16. package/dist-es/commands/GetNotificationChannelCommand.js +28 -21
  17. package/dist-es/commands/GetPolicyCommand.js +28 -21
  18. package/dist-es/commands/GetProtectionStatusCommand.js +28 -21
  19. package/dist-es/commands/GetProtocolsListCommand.js +28 -21
  20. package/dist-es/commands/GetThirdPartyFirewallAssociationStatusCommand.js +28 -21
  21. package/dist-es/commands/GetViolationDetailsCommand.js +28 -21
  22. package/dist-es/commands/ListAppsListsCommand.js +28 -21
  23. package/dist-es/commands/ListComplianceStatusCommand.js +28 -21
  24. package/dist-es/commands/ListMemberAccountsCommand.js +28 -21
  25. package/dist-es/commands/ListPoliciesCommand.js +28 -21
  26. package/dist-es/commands/ListProtocolsListsCommand.js +28 -21
  27. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  28. package/dist-es/commands/ListThirdPartyFirewallFirewallPoliciesCommand.js +28 -21
  29. package/dist-es/commands/PutAppsListCommand.js +28 -21
  30. package/dist-es/commands/PutNotificationChannelCommand.js +29 -22
  31. package/dist-es/commands/PutPolicyCommand.js +28 -21
  32. package/dist-es/commands/PutProtocolsListCommand.js +28 -21
  33. package/dist-es/commands/TagResourceCommand.js +28 -21
  34. package/dist-es/commands/UntagResourceCommand.js +28 -21
  35. package/dist-es/endpoints.js +8 -8
  36. package/dist-es/models/FMSServiceException.js +10 -5
  37. package/dist-es/models/models_0.js +190 -423
  38. package/dist-es/pagination/ListAppsListsPaginator.js +68 -25
  39. package/dist-es/pagination/ListComplianceStatusPaginator.js +68 -25
  40. package/dist-es/pagination/ListMemberAccountsPaginator.js +68 -25
  41. package/dist-es/pagination/ListPoliciesPaginator.js +68 -25
  42. package/dist-es/pagination/ListProtocolsListsPaginator.js +68 -25
  43. package/dist-es/pagination/ListThirdPartyFirewallFirewallPoliciesPaginator.js +68 -25
  44. package/dist-es/protocols/Aws_json1_1.js +2665 -2077
  45. package/dist-es/runtimeConfig.browser.js +12 -26
  46. package/dist-es/runtimeConfig.js +12 -30
  47. package/dist-es/runtimeConfig.native.js +5 -8
  48. package/dist-es/runtimeConfig.shared.js +11 -8
  49. package/package.json +33 -33
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetAppsListRequestFilterSensitiveLog, GetAppsListResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1GetAppsListCommand, serializeAws_json1_1GetAppsListCommand, } from "../protocols/Aws_json1_1";
5
- export class GetAppsListCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetAppsListCommand = (function (_super) {
7
+ __extends(GetAppsListCommand, _super);
8
+ function GetAppsListCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetAppsListCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "FMSClient";
15
- const commandName = "GetAppsListCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "FMSClient";
18
+ var commandName = "GetAppsListCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetAppsListRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetAppsListResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetAppsListCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1GetAppsListCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetAppsListCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1GetAppsListCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetAppsListCommand;
38
+ }($Command));
39
+ export { GetAppsListCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetComplianceDetailRequestFilterSensitiveLog, GetComplianceDetailResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1GetComplianceDetailCommand, serializeAws_json1_1GetComplianceDetailCommand, } from "../protocols/Aws_json1_1";
5
- export class GetComplianceDetailCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetComplianceDetailCommand = (function (_super) {
7
+ __extends(GetComplianceDetailCommand, _super);
8
+ function GetComplianceDetailCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetComplianceDetailCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "FMSClient";
15
- const commandName = "GetComplianceDetailCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "FMSClient";
18
+ var commandName = "GetComplianceDetailCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetComplianceDetailRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetComplianceDetailResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetComplianceDetailCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1GetComplianceDetailCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetComplianceDetailCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1GetComplianceDetailCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetComplianceDetailCommand;
38
+ }($Command));
39
+ export { GetComplianceDetailCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetNotificationChannelRequestFilterSensitiveLog, GetNotificationChannelResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1GetNotificationChannelCommand, serializeAws_json1_1GetNotificationChannelCommand, } from "../protocols/Aws_json1_1";
5
- export class GetNotificationChannelCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetNotificationChannelCommand = (function (_super) {
7
+ __extends(GetNotificationChannelCommand, _super);
8
+ function GetNotificationChannelCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetNotificationChannelCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "FMSClient";
15
- const commandName = "GetNotificationChannelCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "FMSClient";
18
+ var commandName = "GetNotificationChannelCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetNotificationChannelRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetNotificationChannelResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetNotificationChannelCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1GetNotificationChannelCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetNotificationChannelCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1GetNotificationChannelCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetNotificationChannelCommand;
38
+ }($Command));
39
+ export { GetNotificationChannelCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetPolicyRequestFilterSensitiveLog, GetPolicyResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1GetPolicyCommand, serializeAws_json1_1GetPolicyCommand } from "../protocols/Aws_json1_1";
5
- export class GetPolicyCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetPolicyCommand = (function (_super) {
7
+ __extends(GetPolicyCommand, _super);
8
+ function GetPolicyCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetPolicyCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "FMSClient";
15
- const commandName = "GetPolicyCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "FMSClient";
18
+ var commandName = "GetPolicyCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetPolicyRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetPolicyResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetPolicyCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1GetPolicyCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetPolicyCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1GetPolicyCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetPolicyCommand;
38
+ }($Command));
39
+ export { GetPolicyCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetProtectionStatusRequestFilterSensitiveLog, GetProtectionStatusResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1GetProtectionStatusCommand, serializeAws_json1_1GetProtectionStatusCommand, } from "../protocols/Aws_json1_1";
5
- export class GetProtectionStatusCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetProtectionStatusCommand = (function (_super) {
7
+ __extends(GetProtectionStatusCommand, _super);
8
+ function GetProtectionStatusCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetProtectionStatusCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "FMSClient";
15
- const commandName = "GetProtectionStatusCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "FMSClient";
18
+ var commandName = "GetProtectionStatusCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetProtectionStatusRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetProtectionStatusResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetProtectionStatusCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1GetProtectionStatusCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetProtectionStatusCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1GetProtectionStatusCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetProtectionStatusCommand;
38
+ }($Command));
39
+ export { GetProtectionStatusCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetProtocolsListRequestFilterSensitiveLog, GetProtocolsListResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1GetProtocolsListCommand, serializeAws_json1_1GetProtocolsListCommand, } from "../protocols/Aws_json1_1";
5
- export class GetProtocolsListCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetProtocolsListCommand = (function (_super) {
7
+ __extends(GetProtocolsListCommand, _super);
8
+ function GetProtocolsListCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetProtocolsListCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "FMSClient";
15
- const commandName = "GetProtocolsListCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "FMSClient";
18
+ var commandName = "GetProtocolsListCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetProtocolsListRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetProtocolsListResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetProtocolsListCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1GetProtocolsListCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetProtocolsListCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1GetProtocolsListCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetProtocolsListCommand;
38
+ }($Command));
39
+ export { GetProtocolsListCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetThirdPartyFirewallAssociationStatusRequestFilterSensitiveLog, GetThirdPartyFirewallAssociationStatusResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1GetThirdPartyFirewallAssociationStatusCommand, serializeAws_json1_1GetThirdPartyFirewallAssociationStatusCommand, } from "../protocols/Aws_json1_1";
5
- export class GetThirdPartyFirewallAssociationStatusCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetThirdPartyFirewallAssociationStatusCommand = (function (_super) {
7
+ __extends(GetThirdPartyFirewallAssociationStatusCommand, _super);
8
+ function GetThirdPartyFirewallAssociationStatusCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetThirdPartyFirewallAssociationStatusCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "FMSClient";
15
- const commandName = "GetThirdPartyFirewallAssociationStatusCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "FMSClient";
18
+ var commandName = "GetThirdPartyFirewallAssociationStatusCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetThirdPartyFirewallAssociationStatusRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetThirdPartyFirewallAssociationStatusResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetThirdPartyFirewallAssociationStatusCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1GetThirdPartyFirewallAssociationStatusCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetThirdPartyFirewallAssociationStatusCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1GetThirdPartyFirewallAssociationStatusCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetThirdPartyFirewallAssociationStatusCommand;
38
+ }($Command));
39
+ export { GetThirdPartyFirewallAssociationStatusCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetViolationDetailsRequestFilterSensitiveLog, GetViolationDetailsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1GetViolationDetailsCommand, serializeAws_json1_1GetViolationDetailsCommand, } from "../protocols/Aws_json1_1";
5
- export class GetViolationDetailsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetViolationDetailsCommand = (function (_super) {
7
+ __extends(GetViolationDetailsCommand, _super);
8
+ function GetViolationDetailsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetViolationDetailsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "FMSClient";
15
- const commandName = "GetViolationDetailsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "FMSClient";
18
+ var commandName = "GetViolationDetailsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetViolationDetailsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetViolationDetailsResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetViolationDetailsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1GetViolationDetailsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetViolationDetailsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1GetViolationDetailsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetViolationDetailsCommand;
38
+ }($Command));
39
+ export { GetViolationDetailsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListAppsListsRequestFilterSensitiveLog, ListAppsListsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListAppsListsCommand, serializeAws_json1_1ListAppsListsCommand, } from "../protocols/Aws_json1_1";
5
- export class ListAppsListsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListAppsListsCommand = (function (_super) {
7
+ __extends(ListAppsListsCommand, _super);
8
+ function ListAppsListsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListAppsListsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "FMSClient";
15
- const commandName = "ListAppsListsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "FMSClient";
18
+ var commandName = "ListAppsListsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListAppsListsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListAppsListsResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListAppsListsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListAppsListsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListAppsListsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListAppsListsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListAppsListsCommand;
38
+ }($Command));
39
+ export { ListAppsListsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListComplianceStatusRequestFilterSensitiveLog, ListComplianceStatusResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListComplianceStatusCommand, serializeAws_json1_1ListComplianceStatusCommand, } from "../protocols/Aws_json1_1";
5
- export class ListComplianceStatusCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListComplianceStatusCommand = (function (_super) {
7
+ __extends(ListComplianceStatusCommand, _super);
8
+ function ListComplianceStatusCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListComplianceStatusCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "FMSClient";
15
- const commandName = "ListComplianceStatusCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "FMSClient";
18
+ var commandName = "ListComplianceStatusCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListComplianceStatusRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListComplianceStatusResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListComplianceStatusCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListComplianceStatusCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListComplianceStatusCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListComplianceStatusCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListComplianceStatusCommand;
38
+ }($Command));
39
+ export { ListComplianceStatusCommand };