@aws-sdk/client-codedeploy 3.54.1 → 3.55.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 (65) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-cjs/CodeDeployClient.js +13 -13
  3. package/dist-cjs/commands/AddTagsToOnPremisesInstancesCommand.js +3 -3
  4. package/dist-cjs/commands/BatchGetApplicationRevisionsCommand.js +3 -3
  5. package/dist-cjs/commands/BatchGetApplicationsCommand.js +3 -3
  6. package/dist-cjs/commands/BatchGetDeploymentGroupsCommand.js +3 -3
  7. package/dist-cjs/commands/BatchGetDeploymentInstancesCommand.js +3 -3
  8. package/dist-cjs/commands/BatchGetDeploymentTargetsCommand.js +3 -3
  9. package/dist-cjs/commands/BatchGetDeploymentsCommand.js +3 -3
  10. package/dist-cjs/commands/BatchGetOnPremisesInstancesCommand.js +3 -3
  11. package/dist-cjs/commands/ContinueDeploymentCommand.js +3 -3
  12. package/dist-cjs/commands/CreateApplicationCommand.js +3 -3
  13. package/dist-cjs/commands/CreateDeploymentCommand.js +3 -3
  14. package/dist-cjs/commands/CreateDeploymentConfigCommand.js +3 -3
  15. package/dist-cjs/commands/CreateDeploymentGroupCommand.js +3 -3
  16. package/dist-cjs/commands/DeleteApplicationCommand.js +3 -3
  17. package/dist-cjs/commands/DeleteDeploymentConfigCommand.js +3 -3
  18. package/dist-cjs/commands/DeleteDeploymentGroupCommand.js +3 -3
  19. package/dist-cjs/commands/DeleteGitHubAccountTokenCommand.js +3 -3
  20. package/dist-cjs/commands/DeleteResourcesByExternalIdCommand.js +3 -3
  21. package/dist-cjs/commands/DeregisterOnPremisesInstanceCommand.js +3 -3
  22. package/dist-cjs/commands/GetApplicationCommand.js +3 -3
  23. package/dist-cjs/commands/GetApplicationRevisionCommand.js +3 -3
  24. package/dist-cjs/commands/GetDeploymentCommand.js +3 -3
  25. package/dist-cjs/commands/GetDeploymentConfigCommand.js +3 -3
  26. package/dist-cjs/commands/GetDeploymentGroupCommand.js +3 -3
  27. package/dist-cjs/commands/GetDeploymentInstanceCommand.js +3 -3
  28. package/dist-cjs/commands/GetDeploymentTargetCommand.js +3 -3
  29. package/dist-cjs/commands/GetOnPremisesInstanceCommand.js +3 -3
  30. package/dist-cjs/commands/ListApplicationRevisionsCommand.js +3 -3
  31. package/dist-cjs/commands/ListApplicationsCommand.js +3 -3
  32. package/dist-cjs/commands/ListDeploymentConfigsCommand.js +3 -3
  33. package/dist-cjs/commands/ListDeploymentGroupsCommand.js +3 -3
  34. package/dist-cjs/commands/ListDeploymentInstancesCommand.js +3 -3
  35. package/dist-cjs/commands/ListDeploymentTargetsCommand.js +3 -3
  36. package/dist-cjs/commands/ListDeploymentsCommand.js +3 -3
  37. package/dist-cjs/commands/ListGitHubAccountTokenNamesCommand.js +3 -3
  38. package/dist-cjs/commands/ListOnPremisesInstancesCommand.js +3 -3
  39. package/dist-cjs/commands/ListTagsForResourceCommand.js +3 -3
  40. package/dist-cjs/commands/PutLifecycleEventHookExecutionStatusCommand.js +3 -3
  41. package/dist-cjs/commands/RegisterApplicationRevisionCommand.js +3 -3
  42. package/dist-cjs/commands/RegisterOnPremisesInstanceCommand.js +3 -3
  43. package/dist-cjs/commands/RemoveTagsFromOnPremisesInstancesCommand.js +3 -3
  44. package/dist-cjs/commands/SkipWaitTimeForInstanceTerminationCommand.js +3 -3
  45. package/dist-cjs/commands/StopDeploymentCommand.js +3 -3
  46. package/dist-cjs/commands/TagResourceCommand.js +3 -3
  47. package/dist-cjs/commands/UntagResourceCommand.js +3 -3
  48. package/dist-cjs/commands/UpdateApplicationCommand.js +3 -3
  49. package/dist-cjs/commands/UpdateDeploymentGroupCommand.js +3 -3
  50. package/dist-cjs/endpoints.js +1 -1
  51. package/dist-cjs/protocols/Aws_json1_1.js +456 -456
  52. package/dist-cjs/runtimeConfig.browser.js +4 -4
  53. package/dist-cjs/runtimeConfig.js +9 -9
  54. package/dist-cjs/runtimeConfig.native.js +1 -1
  55. package/dist-cjs/waiters/waitForDeploymentSuccessful.js +3 -3
  56. package/dist-es/CodeDeploy.js +47 -47
  57. package/dist-es/pagination/ListApplicationRevisionsPaginator.js +4 -4
  58. package/dist-es/pagination/ListApplicationsPaginator.js +4 -4
  59. package/dist-es/pagination/ListDeploymentConfigsPaginator.js +4 -4
  60. package/dist-es/pagination/ListDeploymentGroupsPaginator.js +4 -4
  61. package/dist-es/pagination/ListDeploymentInstancesPaginator.js +4 -4
  62. package/dist-es/pagination/ListDeploymentsPaginator.js +4 -4
  63. package/dist-types/runtimeConfig.native.d.ts +2 -2
  64. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
  65. package/package.json +35 -35
@@ -11,7 +11,7 @@ class GetDeploymentTargetCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "CodeDeployClient";
@@ -27,10 +27,10 @@ class GetDeploymentTargetCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_json1_1_1.serializeAws_json1_1GetDeploymentTargetCommand(input, context);
30
+ return (0, Aws_json1_1_1.serializeAws_json1_1GetDeploymentTargetCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_json1_1_1.deserializeAws_json1_1GetDeploymentTargetCommand(output, context);
33
+ return (0, Aws_json1_1_1.deserializeAws_json1_1GetDeploymentTargetCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.GetDeploymentTargetCommand = GetDeploymentTargetCommand;
@@ -11,7 +11,7 @@ class GetOnPremisesInstanceCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "CodeDeployClient";
@@ -27,10 +27,10 @@ class GetOnPremisesInstanceCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_json1_1_1.serializeAws_json1_1GetOnPremisesInstanceCommand(input, context);
30
+ return (0, Aws_json1_1_1.serializeAws_json1_1GetOnPremisesInstanceCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_json1_1_1.deserializeAws_json1_1GetOnPremisesInstanceCommand(output, context);
33
+ return (0, Aws_json1_1_1.deserializeAws_json1_1GetOnPremisesInstanceCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.GetOnPremisesInstanceCommand = GetOnPremisesInstanceCommand;
@@ -11,7 +11,7 @@ class ListApplicationRevisionsCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "CodeDeployClient";
@@ -27,10 +27,10 @@ class ListApplicationRevisionsCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_json1_1_1.serializeAws_json1_1ListApplicationRevisionsCommand(input, context);
30
+ return (0, Aws_json1_1_1.serializeAws_json1_1ListApplicationRevisionsCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_json1_1_1.deserializeAws_json1_1ListApplicationRevisionsCommand(output, context);
33
+ return (0, Aws_json1_1_1.deserializeAws_json1_1ListApplicationRevisionsCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.ListApplicationRevisionsCommand = ListApplicationRevisionsCommand;
@@ -11,7 +11,7 @@ class ListApplicationsCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "CodeDeployClient";
@@ -27,10 +27,10 @@ class ListApplicationsCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_json1_1_1.serializeAws_json1_1ListApplicationsCommand(input, context);
30
+ return (0, Aws_json1_1_1.serializeAws_json1_1ListApplicationsCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_json1_1_1.deserializeAws_json1_1ListApplicationsCommand(output, context);
33
+ return (0, Aws_json1_1_1.deserializeAws_json1_1ListApplicationsCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.ListApplicationsCommand = ListApplicationsCommand;
@@ -11,7 +11,7 @@ class ListDeploymentConfigsCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "CodeDeployClient";
@@ -27,10 +27,10 @@ class ListDeploymentConfigsCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_json1_1_1.serializeAws_json1_1ListDeploymentConfigsCommand(input, context);
30
+ return (0, Aws_json1_1_1.serializeAws_json1_1ListDeploymentConfigsCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_json1_1_1.deserializeAws_json1_1ListDeploymentConfigsCommand(output, context);
33
+ return (0, Aws_json1_1_1.deserializeAws_json1_1ListDeploymentConfigsCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.ListDeploymentConfigsCommand = ListDeploymentConfigsCommand;
@@ -11,7 +11,7 @@ class ListDeploymentGroupsCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "CodeDeployClient";
@@ -27,10 +27,10 @@ class ListDeploymentGroupsCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_json1_1_1.serializeAws_json1_1ListDeploymentGroupsCommand(input, context);
30
+ return (0, Aws_json1_1_1.serializeAws_json1_1ListDeploymentGroupsCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_json1_1_1.deserializeAws_json1_1ListDeploymentGroupsCommand(output, context);
33
+ return (0, Aws_json1_1_1.deserializeAws_json1_1ListDeploymentGroupsCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.ListDeploymentGroupsCommand = ListDeploymentGroupsCommand;
@@ -11,7 +11,7 @@ class ListDeploymentInstancesCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "CodeDeployClient";
@@ -27,10 +27,10 @@ class ListDeploymentInstancesCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_json1_1_1.serializeAws_json1_1ListDeploymentInstancesCommand(input, context);
30
+ return (0, Aws_json1_1_1.serializeAws_json1_1ListDeploymentInstancesCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_json1_1_1.deserializeAws_json1_1ListDeploymentInstancesCommand(output, context);
33
+ return (0, Aws_json1_1_1.deserializeAws_json1_1ListDeploymentInstancesCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.ListDeploymentInstancesCommand = ListDeploymentInstancesCommand;
@@ -11,7 +11,7 @@ class ListDeploymentTargetsCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "CodeDeployClient";
@@ -27,10 +27,10 @@ class ListDeploymentTargetsCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_json1_1_1.serializeAws_json1_1ListDeploymentTargetsCommand(input, context);
30
+ return (0, Aws_json1_1_1.serializeAws_json1_1ListDeploymentTargetsCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_json1_1_1.deserializeAws_json1_1ListDeploymentTargetsCommand(output, context);
33
+ return (0, Aws_json1_1_1.deserializeAws_json1_1ListDeploymentTargetsCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.ListDeploymentTargetsCommand = ListDeploymentTargetsCommand;
@@ -11,7 +11,7 @@ class ListDeploymentsCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "CodeDeployClient";
@@ -27,10 +27,10 @@ class ListDeploymentsCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_json1_1_1.serializeAws_json1_1ListDeploymentsCommand(input, context);
30
+ return (0, Aws_json1_1_1.serializeAws_json1_1ListDeploymentsCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_json1_1_1.deserializeAws_json1_1ListDeploymentsCommand(output, context);
33
+ return (0, Aws_json1_1_1.deserializeAws_json1_1ListDeploymentsCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.ListDeploymentsCommand = ListDeploymentsCommand;
@@ -11,7 +11,7 @@ class ListGitHubAccountTokenNamesCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "CodeDeployClient";
@@ -27,10 +27,10 @@ class ListGitHubAccountTokenNamesCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_json1_1_1.serializeAws_json1_1ListGitHubAccountTokenNamesCommand(input, context);
30
+ return (0, Aws_json1_1_1.serializeAws_json1_1ListGitHubAccountTokenNamesCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_json1_1_1.deserializeAws_json1_1ListGitHubAccountTokenNamesCommand(output, context);
33
+ return (0, Aws_json1_1_1.deserializeAws_json1_1ListGitHubAccountTokenNamesCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.ListGitHubAccountTokenNamesCommand = ListGitHubAccountTokenNamesCommand;
@@ -11,7 +11,7 @@ class ListOnPremisesInstancesCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "CodeDeployClient";
@@ -27,10 +27,10 @@ class ListOnPremisesInstancesCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_json1_1_1.serializeAws_json1_1ListOnPremisesInstancesCommand(input, context);
30
+ return (0, Aws_json1_1_1.serializeAws_json1_1ListOnPremisesInstancesCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_json1_1_1.deserializeAws_json1_1ListOnPremisesInstancesCommand(output, context);
33
+ return (0, Aws_json1_1_1.deserializeAws_json1_1ListOnPremisesInstancesCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.ListOnPremisesInstancesCommand = ListOnPremisesInstancesCommand;
@@ -11,7 +11,7 @@ class ListTagsForResourceCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "CodeDeployClient";
@@ -27,10 +27,10 @@ class ListTagsForResourceCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_json1_1_1.serializeAws_json1_1ListTagsForResourceCommand(input, context);
30
+ return (0, Aws_json1_1_1.serializeAws_json1_1ListTagsForResourceCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_json1_1_1.deserializeAws_json1_1ListTagsForResourceCommand(output, context);
33
+ return (0, Aws_json1_1_1.deserializeAws_json1_1ListTagsForResourceCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
@@ -11,7 +11,7 @@ class PutLifecycleEventHookExecutionStatusCommand extends smithy_client_1.Comman
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "CodeDeployClient";
@@ -27,10 +27,10 @@ class PutLifecycleEventHookExecutionStatusCommand extends smithy_client_1.Comman
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_json1_1_1.serializeAws_json1_1PutLifecycleEventHookExecutionStatusCommand(input, context);
30
+ return (0, Aws_json1_1_1.serializeAws_json1_1PutLifecycleEventHookExecutionStatusCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_json1_1_1.deserializeAws_json1_1PutLifecycleEventHookExecutionStatusCommand(output, context);
33
+ return (0, Aws_json1_1_1.deserializeAws_json1_1PutLifecycleEventHookExecutionStatusCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.PutLifecycleEventHookExecutionStatusCommand = PutLifecycleEventHookExecutionStatusCommand;
@@ -11,7 +11,7 @@ class RegisterApplicationRevisionCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "CodeDeployClient";
@@ -27,10 +27,10 @@ class RegisterApplicationRevisionCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_json1_1_1.serializeAws_json1_1RegisterApplicationRevisionCommand(input, context);
30
+ return (0, Aws_json1_1_1.serializeAws_json1_1RegisterApplicationRevisionCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_json1_1_1.deserializeAws_json1_1RegisterApplicationRevisionCommand(output, context);
33
+ return (0, Aws_json1_1_1.deserializeAws_json1_1RegisterApplicationRevisionCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.RegisterApplicationRevisionCommand = RegisterApplicationRevisionCommand;
@@ -11,7 +11,7 @@ class RegisterOnPremisesInstanceCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "CodeDeployClient";
@@ -27,10 +27,10 @@ class RegisterOnPremisesInstanceCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_json1_1_1.serializeAws_json1_1RegisterOnPremisesInstanceCommand(input, context);
30
+ return (0, Aws_json1_1_1.serializeAws_json1_1RegisterOnPremisesInstanceCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_json1_1_1.deserializeAws_json1_1RegisterOnPremisesInstanceCommand(output, context);
33
+ return (0, Aws_json1_1_1.deserializeAws_json1_1RegisterOnPremisesInstanceCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.RegisterOnPremisesInstanceCommand = RegisterOnPremisesInstanceCommand;
@@ -11,7 +11,7 @@ class RemoveTagsFromOnPremisesInstancesCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "CodeDeployClient";
@@ -27,10 +27,10 @@ class RemoveTagsFromOnPremisesInstancesCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_json1_1_1.serializeAws_json1_1RemoveTagsFromOnPremisesInstancesCommand(input, context);
30
+ return (0, Aws_json1_1_1.serializeAws_json1_1RemoveTagsFromOnPremisesInstancesCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_json1_1_1.deserializeAws_json1_1RemoveTagsFromOnPremisesInstancesCommand(output, context);
33
+ return (0, Aws_json1_1_1.deserializeAws_json1_1RemoveTagsFromOnPremisesInstancesCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.RemoveTagsFromOnPremisesInstancesCommand = RemoveTagsFromOnPremisesInstancesCommand;
@@ -11,7 +11,7 @@ class SkipWaitTimeForInstanceTerminationCommand extends smithy_client_1.Command
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "CodeDeployClient";
@@ -27,10 +27,10 @@ class SkipWaitTimeForInstanceTerminationCommand extends smithy_client_1.Command
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_json1_1_1.serializeAws_json1_1SkipWaitTimeForInstanceTerminationCommand(input, context);
30
+ return (0, Aws_json1_1_1.serializeAws_json1_1SkipWaitTimeForInstanceTerminationCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_json1_1_1.deserializeAws_json1_1SkipWaitTimeForInstanceTerminationCommand(output, context);
33
+ return (0, Aws_json1_1_1.deserializeAws_json1_1SkipWaitTimeForInstanceTerminationCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.SkipWaitTimeForInstanceTerminationCommand = SkipWaitTimeForInstanceTerminationCommand;
@@ -11,7 +11,7 @@ class StopDeploymentCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "CodeDeployClient";
@@ -27,10 +27,10 @@ class StopDeploymentCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_json1_1_1.serializeAws_json1_1StopDeploymentCommand(input, context);
30
+ return (0, Aws_json1_1_1.serializeAws_json1_1StopDeploymentCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_json1_1_1.deserializeAws_json1_1StopDeploymentCommand(output, context);
33
+ return (0, Aws_json1_1_1.deserializeAws_json1_1StopDeploymentCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.StopDeploymentCommand = StopDeploymentCommand;
@@ -11,7 +11,7 @@ class TagResourceCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "CodeDeployClient";
@@ -27,10 +27,10 @@ class TagResourceCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_json1_1_1.serializeAws_json1_1TagResourceCommand(input, context);
30
+ return (0, Aws_json1_1_1.serializeAws_json1_1TagResourceCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_json1_1_1.deserializeAws_json1_1TagResourceCommand(output, context);
33
+ return (0, Aws_json1_1_1.deserializeAws_json1_1TagResourceCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.TagResourceCommand = TagResourceCommand;
@@ -11,7 +11,7 @@ class UntagResourceCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "CodeDeployClient";
@@ -27,10 +27,10 @@ class UntagResourceCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_json1_1_1.serializeAws_json1_1UntagResourceCommand(input, context);
30
+ return (0, Aws_json1_1_1.serializeAws_json1_1UntagResourceCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_json1_1_1.deserializeAws_json1_1UntagResourceCommand(output, context);
33
+ return (0, Aws_json1_1_1.deserializeAws_json1_1UntagResourceCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.UntagResourceCommand = UntagResourceCommand;
@@ -11,7 +11,7 @@ class UpdateApplicationCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "CodeDeployClient";
@@ -27,10 +27,10 @@ class UpdateApplicationCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_json1_1_1.serializeAws_json1_1UpdateApplicationCommand(input, context);
30
+ return (0, Aws_json1_1_1.serializeAws_json1_1UpdateApplicationCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_json1_1_1.deserializeAws_json1_1UpdateApplicationCommand(output, context);
33
+ return (0, Aws_json1_1_1.deserializeAws_json1_1UpdateApplicationCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.UpdateApplicationCommand = UpdateApplicationCommand;
@@ -11,7 +11,7 @@ class UpdateDeploymentGroupCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "CodeDeployClient";
@@ -27,10 +27,10 @@ class UpdateDeploymentGroupCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_json1_1_1.serializeAws_json1_1UpdateDeploymentGroupCommand(input, context);
30
+ return (0, Aws_json1_1_1.serializeAws_json1_1UpdateDeploymentGroupCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_json1_1_1.deserializeAws_json1_1UpdateDeploymentGroupCommand(output, context);
33
+ return (0, Aws_json1_1_1.deserializeAws_json1_1UpdateDeploymentGroupCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.UpdateDeploymentGroupCommand = UpdateDeploymentGroupCommand;
@@ -175,7 +175,7 @@ const partitionHash = {
175
175
  ],
176
176
  },
177
177
  };
178
- const defaultRegionInfoProvider = async (region, options) => config_resolver_1.getRegionInfo(region, {
178
+ const defaultRegionInfoProvider = async (region, options) => (0, config_resolver_1.getRegionInfo)(region, {
179
179
  ...options,
180
180
  signingService: "codedeploy",
181
181
  regionHash,