@aws-sdk/client-resiliencehub 3.183.0 → 3.185.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 (66) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/protocols/Aws_restJson1.js +2 -2
  3. package/dist-es/Resiliencehub.js +165 -158
  4. package/dist-es/ResiliencehubClient.js +28 -22
  5. package/dist-es/commands/AddDraftAppVersionResourceMappingsCommand.js +28 -21
  6. package/dist-es/commands/CreateAppCommand.js +28 -21
  7. package/dist-es/commands/CreateRecommendationTemplateCommand.js +28 -21
  8. package/dist-es/commands/CreateResiliencyPolicyCommand.js +28 -21
  9. package/dist-es/commands/DeleteAppAssessmentCommand.js +28 -21
  10. package/dist-es/commands/DeleteAppCommand.js +28 -21
  11. package/dist-es/commands/DeleteRecommendationTemplateCommand.js +28 -21
  12. package/dist-es/commands/DeleteResiliencyPolicyCommand.js +28 -21
  13. package/dist-es/commands/DescribeAppAssessmentCommand.js +28 -21
  14. package/dist-es/commands/DescribeAppCommand.js +28 -21
  15. package/dist-es/commands/DescribeAppVersionResourcesResolutionStatusCommand.js +28 -21
  16. package/dist-es/commands/DescribeAppVersionTemplateCommand.js +28 -21
  17. package/dist-es/commands/DescribeDraftAppVersionResourcesImportStatusCommand.js +28 -21
  18. package/dist-es/commands/DescribeResiliencyPolicyCommand.js +28 -21
  19. package/dist-es/commands/ImportResourcesToDraftAppVersionCommand.js +28 -21
  20. package/dist-es/commands/ListAlarmRecommendationsCommand.js +28 -21
  21. package/dist-es/commands/ListAppAssessmentsCommand.js +28 -21
  22. package/dist-es/commands/ListAppComponentCompliancesCommand.js +28 -21
  23. package/dist-es/commands/ListAppComponentRecommendationsCommand.js +28 -21
  24. package/dist-es/commands/ListAppVersionResourceMappingsCommand.js +28 -21
  25. package/dist-es/commands/ListAppVersionResourcesCommand.js +28 -21
  26. package/dist-es/commands/ListAppVersionsCommand.js +28 -21
  27. package/dist-es/commands/ListAppsCommand.js +28 -21
  28. package/dist-es/commands/ListRecommendationTemplatesCommand.js +28 -21
  29. package/dist-es/commands/ListResiliencyPoliciesCommand.js +28 -21
  30. package/dist-es/commands/ListSopRecommendationsCommand.js +28 -21
  31. package/dist-es/commands/ListSuggestedResiliencyPoliciesCommand.js +28 -21
  32. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  33. package/dist-es/commands/ListTestRecommendationsCommand.js +28 -21
  34. package/dist-es/commands/ListUnsupportedAppVersionResourcesCommand.js +28 -21
  35. package/dist-es/commands/PublishAppVersionCommand.js +28 -21
  36. package/dist-es/commands/PutDraftAppVersionTemplateCommand.js +28 -21
  37. package/dist-es/commands/RemoveDraftAppVersionResourceMappingsCommand.js +28 -21
  38. package/dist-es/commands/ResolveAppVersionResourcesCommand.js +28 -21
  39. package/dist-es/commands/StartAppAssessmentCommand.js +28 -21
  40. package/dist-es/commands/TagResourceCommand.js +28 -21
  41. package/dist-es/commands/UntagResourceCommand.js +28 -21
  42. package/dist-es/commands/UpdateAppCommand.js +28 -21
  43. package/dist-es/commands/UpdateResiliencyPolicyCommand.js +28 -21
  44. package/dist-es/endpoints.js +8 -8
  45. package/dist-es/models/ResiliencehubServiceException.js +10 -5
  46. package/dist-es/models/models_0.js +198 -435
  47. package/dist-es/pagination/ListAlarmRecommendationsPaginator.js +67 -24
  48. package/dist-es/pagination/ListAppAssessmentsPaginator.js +67 -24
  49. package/dist-es/pagination/ListAppComponentCompliancesPaginator.js +67 -24
  50. package/dist-es/pagination/ListAppComponentRecommendationsPaginator.js +67 -24
  51. package/dist-es/pagination/ListAppVersionResourceMappingsPaginator.js +67 -24
  52. package/dist-es/pagination/ListAppVersionResourcesPaginator.js +67 -24
  53. package/dist-es/pagination/ListAppVersionsPaginator.js +67 -24
  54. package/dist-es/pagination/ListAppsPaginator.js +67 -24
  55. package/dist-es/pagination/ListRecommendationTemplatesPaginator.js +67 -24
  56. package/dist-es/pagination/ListResiliencyPoliciesPaginator.js +67 -24
  57. package/dist-es/pagination/ListSopRecommendationsPaginator.js +67 -24
  58. package/dist-es/pagination/ListSuggestedResiliencyPoliciesPaginator.js +67 -24
  59. package/dist-es/pagination/ListTestRecommendationsPaginator.js +67 -24
  60. package/dist-es/pagination/ListUnsupportedAppVersionResourcesPaginator.js +67 -24
  61. package/dist-es/protocols/Aws_restJson1.js +4268 -3102
  62. package/dist-es/runtimeConfig.browser.js +12 -26
  63. package/dist-es/runtimeConfig.js +12 -30
  64. package/dist-es/runtimeConfig.native.js +5 -8
  65. package/dist-es/runtimeConfig.shared.js +11 -8
  66. package/package.json +5 -5
@@ -1,3 +1,4 @@
1
+ import { __extends } from "tslib";
1
2
  import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-resolver";
2
3
  import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
3
4
  import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
@@ -8,26 +9,31 @@ import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-sig
8
9
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
9
10
  import { Client as __Client, } from "@aws-sdk/smithy-client";
10
11
  import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
11
- export class ResiliencehubClient extends __Client {
12
- constructor(configuration) {
13
- const _config_0 = __getRuntimeConfig(configuration);
14
- const _config_1 = resolveRegionConfig(_config_0);
15
- const _config_2 = resolveEndpointsConfig(_config_1);
16
- const _config_3 = resolveRetryConfig(_config_2);
17
- const _config_4 = resolveHostHeaderConfig(_config_3);
18
- const _config_5 = resolveAwsAuthConfig(_config_4);
19
- const _config_6 = resolveUserAgentConfig(_config_5);
20
- super(_config_6);
21
- this.config = _config_6;
22
- this.middlewareStack.use(getRetryPlugin(this.config));
23
- this.middlewareStack.use(getContentLengthPlugin(this.config));
24
- this.middlewareStack.use(getHostHeaderPlugin(this.config));
25
- this.middlewareStack.use(getLoggerPlugin(this.config));
26
- this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
27
- this.middlewareStack.use(getAwsAuthPlugin(this.config));
28
- this.middlewareStack.use(getUserAgentPlugin(this.config));
12
+ var ResiliencehubClient = (function (_super) {
13
+ __extends(ResiliencehubClient, _super);
14
+ function ResiliencehubClient(configuration) {
15
+ var _this = this;
16
+ var _config_0 = __getRuntimeConfig(configuration);
17
+ var _config_1 = resolveRegionConfig(_config_0);
18
+ var _config_2 = resolveEndpointsConfig(_config_1);
19
+ var _config_3 = resolveRetryConfig(_config_2);
20
+ var _config_4 = resolveHostHeaderConfig(_config_3);
21
+ var _config_5 = resolveAwsAuthConfig(_config_4);
22
+ var _config_6 = resolveUserAgentConfig(_config_5);
23
+ _this = _super.call(this, _config_6) || this;
24
+ _this.config = _config_6;
25
+ _this.middlewareStack.use(getRetryPlugin(_this.config));
26
+ _this.middlewareStack.use(getContentLengthPlugin(_this.config));
27
+ _this.middlewareStack.use(getHostHeaderPlugin(_this.config));
28
+ _this.middlewareStack.use(getLoggerPlugin(_this.config));
29
+ _this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
30
+ _this.middlewareStack.use(getAwsAuthPlugin(_this.config));
31
+ _this.middlewareStack.use(getUserAgentPlugin(_this.config));
32
+ return _this;
29
33
  }
30
- destroy() {
31
- super.destroy();
32
- }
33
- }
34
+ ResiliencehubClient.prototype.destroy = function () {
35
+ _super.prototype.destroy.call(this);
36
+ };
37
+ return ResiliencehubClient;
38
+ }(__Client));
39
+ export { ResiliencehubClient };
@@ -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 { AddDraftAppVersionResourceMappingsRequestFilterSensitiveLog, AddDraftAppVersionResourceMappingsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1AddDraftAppVersionResourceMappingsCommand, serializeAws_restJson1AddDraftAppVersionResourceMappingsCommand, } from "../protocols/Aws_restJson1";
5
- export class AddDraftAppVersionResourceMappingsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var AddDraftAppVersionResourceMappingsCommand = (function (_super) {
7
+ __extends(AddDraftAppVersionResourceMappingsCommand, _super);
8
+ function AddDraftAppVersionResourceMappingsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ AddDraftAppVersionResourceMappingsCommand.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 = "ResiliencehubClient";
15
- const commandName = "AddDraftAppVersionResourceMappingsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ResiliencehubClient";
18
+ var commandName = "AddDraftAppVersionResourceMappingsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: AddDraftAppVersionResourceMappingsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: AddDraftAppVersionResourceMappingsResponseFilterSensitiveLog,
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
+ AddDraftAppVersionResourceMappingsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1AddDraftAppVersionResourceMappingsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ AddDraftAppVersionResourceMappingsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1AddDraftAppVersionResourceMappingsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return AddDraftAppVersionResourceMappingsCommand;
38
+ }($Command));
39
+ export { AddDraftAppVersionResourceMappingsCommand };
@@ -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 { CreateAppRequestFilterSensitiveLog, CreateAppResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1CreateAppCommand, serializeAws_restJson1CreateAppCommand, } from "../protocols/Aws_restJson1";
5
- export class CreateAppCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var CreateAppCommand = (function (_super) {
7
+ __extends(CreateAppCommand, _super);
8
+ function CreateAppCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ CreateAppCommand.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 = "ResiliencehubClient";
15
- const commandName = "CreateAppCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ResiliencehubClient";
18
+ var commandName = "CreateAppCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: CreateAppRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: CreateAppResponseFilterSensitiveLog,
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
+ CreateAppCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1CreateAppCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ CreateAppCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1CreateAppCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return CreateAppCommand;
38
+ }($Command));
39
+ export { CreateAppCommand };
@@ -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 { CreateRecommendationTemplateRequestFilterSensitiveLog, CreateRecommendationTemplateResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1CreateRecommendationTemplateCommand, serializeAws_restJson1CreateRecommendationTemplateCommand, } from "../protocols/Aws_restJson1";
5
- export class CreateRecommendationTemplateCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var CreateRecommendationTemplateCommand = (function (_super) {
7
+ __extends(CreateRecommendationTemplateCommand, _super);
8
+ function CreateRecommendationTemplateCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ CreateRecommendationTemplateCommand.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 = "ResiliencehubClient";
15
- const commandName = "CreateRecommendationTemplateCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ResiliencehubClient";
18
+ var commandName = "CreateRecommendationTemplateCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: CreateRecommendationTemplateRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: CreateRecommendationTemplateResponseFilterSensitiveLog,
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
+ CreateRecommendationTemplateCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1CreateRecommendationTemplateCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ CreateRecommendationTemplateCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1CreateRecommendationTemplateCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return CreateRecommendationTemplateCommand;
38
+ }($Command));
39
+ export { CreateRecommendationTemplateCommand };
@@ -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 { CreateResiliencyPolicyRequestFilterSensitiveLog, CreateResiliencyPolicyResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1CreateResiliencyPolicyCommand, serializeAws_restJson1CreateResiliencyPolicyCommand, } from "../protocols/Aws_restJson1";
5
- export class CreateResiliencyPolicyCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var CreateResiliencyPolicyCommand = (function (_super) {
7
+ __extends(CreateResiliencyPolicyCommand, _super);
8
+ function CreateResiliencyPolicyCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ CreateResiliencyPolicyCommand.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 = "ResiliencehubClient";
15
- const commandName = "CreateResiliencyPolicyCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ResiliencehubClient";
18
+ var commandName = "CreateResiliencyPolicyCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: CreateResiliencyPolicyRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: CreateResiliencyPolicyResponseFilterSensitiveLog,
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
+ CreateResiliencyPolicyCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1CreateResiliencyPolicyCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ CreateResiliencyPolicyCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1CreateResiliencyPolicyCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return CreateResiliencyPolicyCommand;
38
+ }($Command));
39
+ export { CreateResiliencyPolicyCommand };
@@ -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 { DeleteAppAssessmentRequestFilterSensitiveLog, DeleteAppAssessmentResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DeleteAppAssessmentCommand, serializeAws_restJson1DeleteAppAssessmentCommand, } from "../protocols/Aws_restJson1";
5
- export class DeleteAppAssessmentCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteAppAssessmentCommand = (function (_super) {
7
+ __extends(DeleteAppAssessmentCommand, _super);
8
+ function DeleteAppAssessmentCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteAppAssessmentCommand.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 = "ResiliencehubClient";
15
- const commandName = "DeleteAppAssessmentCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ResiliencehubClient";
18
+ var commandName = "DeleteAppAssessmentCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteAppAssessmentRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DeleteAppAssessmentResponseFilterSensitiveLog,
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
+ DeleteAppAssessmentCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DeleteAppAssessmentCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteAppAssessmentCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DeleteAppAssessmentCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteAppAssessmentCommand;
38
+ }($Command));
39
+ export { DeleteAppAssessmentCommand };
@@ -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 { DeleteAppRequestFilterSensitiveLog, DeleteAppResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DeleteAppCommand, serializeAws_restJson1DeleteAppCommand, } from "../protocols/Aws_restJson1";
5
- export class DeleteAppCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteAppCommand = (function (_super) {
7
+ __extends(DeleteAppCommand, _super);
8
+ function DeleteAppCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteAppCommand.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 = "ResiliencehubClient";
15
- const commandName = "DeleteAppCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ResiliencehubClient";
18
+ var commandName = "DeleteAppCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteAppRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DeleteAppResponseFilterSensitiveLog,
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
+ DeleteAppCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DeleteAppCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteAppCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DeleteAppCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteAppCommand;
38
+ }($Command));
39
+ export { DeleteAppCommand };
@@ -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 { DeleteRecommendationTemplateRequestFilterSensitiveLog, DeleteRecommendationTemplateResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DeleteRecommendationTemplateCommand, serializeAws_restJson1DeleteRecommendationTemplateCommand, } from "../protocols/Aws_restJson1";
5
- export class DeleteRecommendationTemplateCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteRecommendationTemplateCommand = (function (_super) {
7
+ __extends(DeleteRecommendationTemplateCommand, _super);
8
+ function DeleteRecommendationTemplateCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteRecommendationTemplateCommand.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 = "ResiliencehubClient";
15
- const commandName = "DeleteRecommendationTemplateCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ResiliencehubClient";
18
+ var commandName = "DeleteRecommendationTemplateCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteRecommendationTemplateRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DeleteRecommendationTemplateResponseFilterSensitiveLog,
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
+ DeleteRecommendationTemplateCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DeleteRecommendationTemplateCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteRecommendationTemplateCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DeleteRecommendationTemplateCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteRecommendationTemplateCommand;
38
+ }($Command));
39
+ export { DeleteRecommendationTemplateCommand };
@@ -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 { DeleteResiliencyPolicyRequestFilterSensitiveLog, DeleteResiliencyPolicyResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DeleteResiliencyPolicyCommand, serializeAws_restJson1DeleteResiliencyPolicyCommand, } from "../protocols/Aws_restJson1";
5
- export class DeleteResiliencyPolicyCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteResiliencyPolicyCommand = (function (_super) {
7
+ __extends(DeleteResiliencyPolicyCommand, _super);
8
+ function DeleteResiliencyPolicyCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteResiliencyPolicyCommand.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 = "ResiliencehubClient";
15
- const commandName = "DeleteResiliencyPolicyCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ResiliencehubClient";
18
+ var commandName = "DeleteResiliencyPolicyCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteResiliencyPolicyRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DeleteResiliencyPolicyResponseFilterSensitiveLog,
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
+ DeleteResiliencyPolicyCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DeleteResiliencyPolicyCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteResiliencyPolicyCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DeleteResiliencyPolicyCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteResiliencyPolicyCommand;
38
+ }($Command));
39
+ export { DeleteResiliencyPolicyCommand };
@@ -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 { DescribeAppAssessmentRequestFilterSensitiveLog, DescribeAppAssessmentResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DescribeAppAssessmentCommand, serializeAws_restJson1DescribeAppAssessmentCommand, } from "../protocols/Aws_restJson1";
5
- export class DescribeAppAssessmentCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DescribeAppAssessmentCommand = (function (_super) {
7
+ __extends(DescribeAppAssessmentCommand, _super);
8
+ function DescribeAppAssessmentCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DescribeAppAssessmentCommand.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 = "ResiliencehubClient";
15
- const commandName = "DescribeAppAssessmentCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ResiliencehubClient";
18
+ var commandName = "DescribeAppAssessmentCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DescribeAppAssessmentRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DescribeAppAssessmentResponseFilterSensitiveLog,
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
+ DescribeAppAssessmentCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DescribeAppAssessmentCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DescribeAppAssessmentCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DescribeAppAssessmentCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DescribeAppAssessmentCommand;
38
+ }($Command));
39
+ export { DescribeAppAssessmentCommand };