@aws-sdk/client-codepipeline 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 (58) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/protocols/Aws_json1_1.js +2 -2
  3. package/dist-es/CodePipeline.js +165 -158
  4. package/dist-es/CodePipelineClient.js +28 -22
  5. package/dist-es/commands/AcknowledgeJobCommand.js +28 -21
  6. package/dist-es/commands/AcknowledgeThirdPartyJobCommand.js +28 -21
  7. package/dist-es/commands/CreateCustomActionTypeCommand.js +28 -21
  8. package/dist-es/commands/CreatePipelineCommand.js +28 -21
  9. package/dist-es/commands/DeleteCustomActionTypeCommand.js +29 -22
  10. package/dist-es/commands/DeletePipelineCommand.js +29 -22
  11. package/dist-es/commands/DeleteWebhookCommand.js +28 -21
  12. package/dist-es/commands/DeregisterWebhookWithThirdPartyCommand.js +28 -21
  13. package/dist-es/commands/DisableStageTransitionCommand.js +29 -22
  14. package/dist-es/commands/EnableStageTransitionCommand.js +29 -22
  15. package/dist-es/commands/GetActionTypeCommand.js +28 -21
  16. package/dist-es/commands/GetJobDetailsCommand.js +28 -21
  17. package/dist-es/commands/GetPipelineCommand.js +28 -21
  18. package/dist-es/commands/GetPipelineExecutionCommand.js +28 -21
  19. package/dist-es/commands/GetPipelineStateCommand.js +28 -21
  20. package/dist-es/commands/GetThirdPartyJobDetailsCommand.js +28 -21
  21. package/dist-es/commands/ListActionExecutionsCommand.js +28 -21
  22. package/dist-es/commands/ListActionTypesCommand.js +28 -21
  23. package/dist-es/commands/ListPipelineExecutionsCommand.js +28 -21
  24. package/dist-es/commands/ListPipelinesCommand.js +28 -21
  25. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  26. package/dist-es/commands/ListWebhooksCommand.js +28 -21
  27. package/dist-es/commands/PollForJobsCommand.js +28 -21
  28. package/dist-es/commands/PollForThirdPartyJobsCommand.js +28 -21
  29. package/dist-es/commands/PutActionRevisionCommand.js +28 -21
  30. package/dist-es/commands/PutApprovalResultCommand.js +28 -21
  31. package/dist-es/commands/PutJobFailureResultCommand.js +29 -22
  32. package/dist-es/commands/PutJobSuccessResultCommand.js +29 -22
  33. package/dist-es/commands/PutThirdPartyJobFailureResultCommand.js +29 -22
  34. package/dist-es/commands/PutThirdPartyJobSuccessResultCommand.js +29 -22
  35. package/dist-es/commands/PutWebhookCommand.js +28 -21
  36. package/dist-es/commands/RegisterWebhookWithThirdPartyCommand.js +28 -21
  37. package/dist-es/commands/RetryStageExecutionCommand.js +28 -21
  38. package/dist-es/commands/StartPipelineExecutionCommand.js +28 -21
  39. package/dist-es/commands/StopPipelineExecutionCommand.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/UpdateActionTypeCommand.js +29 -22
  43. package/dist-es/commands/UpdatePipelineCommand.js +28 -21
  44. package/dist-es/endpoints.js +8 -8
  45. package/dist-es/models/CodePipelineServiceException.js +10 -5
  46. package/dist-es/models/models_0.js +570 -854
  47. package/dist-es/pagination/ListActionExecutionsPaginator.js +68 -25
  48. package/dist-es/pagination/ListActionTypesPaginator.js +67 -24
  49. package/dist-es/pagination/ListPipelineExecutionsPaginator.js +68 -25
  50. package/dist-es/pagination/ListPipelinesPaginator.js +68 -25
  51. package/dist-es/pagination/ListTagsForResourcePaginator.js +68 -25
  52. package/dist-es/pagination/ListWebhooksPaginator.js +68 -25
  53. package/dist-es/protocols/Aws_json1_1.js +3746 -3101
  54. package/dist-es/runtimeConfig.browser.js +12 -26
  55. package/dist-es/runtimeConfig.js +12 -30
  56. package/dist-es/runtimeConfig.native.js +5 -8
  57. package/dist-es/runtimeConfig.shared.js +11 -8
  58. package/package.json +5 -5
@@ -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 { EnableStageTransitionInputFilterSensitiveLog } from "../models/models_0";
4
5
  import { deserializeAws_json1_1EnableStageTransitionCommand, serializeAws_json1_1EnableStageTransitionCommand, } from "../protocols/Aws_json1_1";
5
- export class EnableStageTransitionCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var EnableStageTransitionCommand = (function (_super) {
7
+ __extends(EnableStageTransitionCommand, _super);
8
+ function EnableStageTransitionCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ EnableStageTransitionCommand.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 = "CodePipelineClient";
15
- const commandName = "EnableStageTransitionCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CodePipelineClient";
18
+ var commandName = "EnableStageTransitionCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: EnableStageTransitionInputFilterSensitiveLog,
21
- outputFilterSensitiveLog: (output) => output,
24
+ outputFilterSensitiveLog: function (output) { return output; },
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
+ EnableStageTransitionCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1EnableStageTransitionCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ EnableStageTransitionCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1EnableStageTransitionCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return EnableStageTransitionCommand;
38
+ }($Command));
39
+ export { EnableStageTransitionCommand };
@@ -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 { GetActionTypeInputFilterSensitiveLog, GetActionTypeOutputFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1GetActionTypeCommand, serializeAws_json1_1GetActionTypeCommand, } from "../protocols/Aws_json1_1";
5
- export class GetActionTypeCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetActionTypeCommand = (function (_super) {
7
+ __extends(GetActionTypeCommand, _super);
8
+ function GetActionTypeCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetActionTypeCommand.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 = "CodePipelineClient";
15
- const commandName = "GetActionTypeCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CodePipelineClient";
18
+ var commandName = "GetActionTypeCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetActionTypeInputFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetActionTypeOutputFilterSensitiveLog,
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
+ GetActionTypeCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1GetActionTypeCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetActionTypeCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1GetActionTypeCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetActionTypeCommand;
38
+ }($Command));
39
+ export { GetActionTypeCommand };
@@ -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 { GetJobDetailsInputFilterSensitiveLog, GetJobDetailsOutputFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1GetJobDetailsCommand, serializeAws_json1_1GetJobDetailsCommand, } from "../protocols/Aws_json1_1";
5
- export class GetJobDetailsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetJobDetailsCommand = (function (_super) {
7
+ __extends(GetJobDetailsCommand, _super);
8
+ function GetJobDetailsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetJobDetailsCommand.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 = "CodePipelineClient";
15
- const commandName = "GetJobDetailsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CodePipelineClient";
18
+ var commandName = "GetJobDetailsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetJobDetailsInputFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetJobDetailsOutputFilterSensitiveLog,
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
+ GetJobDetailsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1GetJobDetailsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetJobDetailsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1GetJobDetailsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetJobDetailsCommand;
38
+ }($Command));
39
+ export { GetJobDetailsCommand };
@@ -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 { GetPipelineInputFilterSensitiveLog, GetPipelineOutputFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1GetPipelineCommand, serializeAws_json1_1GetPipelineCommand, } from "../protocols/Aws_json1_1";
5
- export class GetPipelineCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetPipelineCommand = (function (_super) {
7
+ __extends(GetPipelineCommand, _super);
8
+ function GetPipelineCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetPipelineCommand.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 = "CodePipelineClient";
15
- const commandName = "GetPipelineCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CodePipelineClient";
18
+ var commandName = "GetPipelineCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetPipelineInputFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetPipelineOutputFilterSensitiveLog,
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
+ GetPipelineCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1GetPipelineCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetPipelineCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1GetPipelineCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetPipelineCommand;
38
+ }($Command));
39
+ export { GetPipelineCommand };
@@ -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 { GetPipelineExecutionInputFilterSensitiveLog, GetPipelineExecutionOutputFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1GetPipelineExecutionCommand, serializeAws_json1_1GetPipelineExecutionCommand, } from "../protocols/Aws_json1_1";
5
- export class GetPipelineExecutionCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetPipelineExecutionCommand = (function (_super) {
7
+ __extends(GetPipelineExecutionCommand, _super);
8
+ function GetPipelineExecutionCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetPipelineExecutionCommand.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 = "CodePipelineClient";
15
- const commandName = "GetPipelineExecutionCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CodePipelineClient";
18
+ var commandName = "GetPipelineExecutionCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetPipelineExecutionInputFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetPipelineExecutionOutputFilterSensitiveLog,
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
+ GetPipelineExecutionCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1GetPipelineExecutionCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetPipelineExecutionCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1GetPipelineExecutionCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetPipelineExecutionCommand;
38
+ }($Command));
39
+ export { GetPipelineExecutionCommand };
@@ -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 { GetPipelineStateInputFilterSensitiveLog, GetPipelineStateOutputFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1GetPipelineStateCommand, serializeAws_json1_1GetPipelineStateCommand, } from "../protocols/Aws_json1_1";
5
- export class GetPipelineStateCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetPipelineStateCommand = (function (_super) {
7
+ __extends(GetPipelineStateCommand, _super);
8
+ function GetPipelineStateCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetPipelineStateCommand.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 = "CodePipelineClient";
15
- const commandName = "GetPipelineStateCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CodePipelineClient";
18
+ var commandName = "GetPipelineStateCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetPipelineStateInputFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetPipelineStateOutputFilterSensitiveLog,
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
+ GetPipelineStateCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1GetPipelineStateCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetPipelineStateCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1GetPipelineStateCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetPipelineStateCommand;
38
+ }($Command));
39
+ export { GetPipelineStateCommand };
@@ -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 { GetThirdPartyJobDetailsInputFilterSensitiveLog, GetThirdPartyJobDetailsOutputFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1GetThirdPartyJobDetailsCommand, serializeAws_json1_1GetThirdPartyJobDetailsCommand, } from "../protocols/Aws_json1_1";
5
- export class GetThirdPartyJobDetailsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetThirdPartyJobDetailsCommand = (function (_super) {
7
+ __extends(GetThirdPartyJobDetailsCommand, _super);
8
+ function GetThirdPartyJobDetailsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetThirdPartyJobDetailsCommand.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 = "CodePipelineClient";
15
- const commandName = "GetThirdPartyJobDetailsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CodePipelineClient";
18
+ var commandName = "GetThirdPartyJobDetailsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetThirdPartyJobDetailsInputFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetThirdPartyJobDetailsOutputFilterSensitiveLog,
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
+ GetThirdPartyJobDetailsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1GetThirdPartyJobDetailsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetThirdPartyJobDetailsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1GetThirdPartyJobDetailsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetThirdPartyJobDetailsCommand;
38
+ }($Command));
39
+ export { GetThirdPartyJobDetailsCommand };
@@ -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 { ListActionExecutionsInputFilterSensitiveLog, ListActionExecutionsOutputFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListActionExecutionsCommand, serializeAws_json1_1ListActionExecutionsCommand, } from "../protocols/Aws_json1_1";
5
- export class ListActionExecutionsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListActionExecutionsCommand = (function (_super) {
7
+ __extends(ListActionExecutionsCommand, _super);
8
+ function ListActionExecutionsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListActionExecutionsCommand.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 = "CodePipelineClient";
15
- const commandName = "ListActionExecutionsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CodePipelineClient";
18
+ var commandName = "ListActionExecutionsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListActionExecutionsInputFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListActionExecutionsOutputFilterSensitiveLog,
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
+ ListActionExecutionsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListActionExecutionsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListActionExecutionsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListActionExecutionsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListActionExecutionsCommand;
38
+ }($Command));
39
+ export { ListActionExecutionsCommand };
@@ -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 { ListActionTypesInputFilterSensitiveLog, ListActionTypesOutputFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListActionTypesCommand, serializeAws_json1_1ListActionTypesCommand, } from "../protocols/Aws_json1_1";
5
- export class ListActionTypesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListActionTypesCommand = (function (_super) {
7
+ __extends(ListActionTypesCommand, _super);
8
+ function ListActionTypesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListActionTypesCommand.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 = "CodePipelineClient";
15
- const commandName = "ListActionTypesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CodePipelineClient";
18
+ var commandName = "ListActionTypesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListActionTypesInputFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListActionTypesOutputFilterSensitiveLog,
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
+ ListActionTypesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListActionTypesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListActionTypesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListActionTypesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListActionTypesCommand;
38
+ }($Command));
39
+ export { ListActionTypesCommand };
@@ -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 { ListPipelineExecutionsInputFilterSensitiveLog, ListPipelineExecutionsOutputFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1ListPipelineExecutionsCommand, serializeAws_json1_1ListPipelineExecutionsCommand, } from "../protocols/Aws_json1_1";
5
- export class ListPipelineExecutionsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListPipelineExecutionsCommand = (function (_super) {
7
+ __extends(ListPipelineExecutionsCommand, _super);
8
+ function ListPipelineExecutionsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListPipelineExecutionsCommand.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 = "CodePipelineClient";
15
- const commandName = "ListPipelineExecutionsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "CodePipelineClient";
18
+ var commandName = "ListPipelineExecutionsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListPipelineExecutionsInputFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListPipelineExecutionsOutputFilterSensitiveLog,
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
+ ListPipelineExecutionsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1ListPipelineExecutionsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListPipelineExecutionsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1ListPipelineExecutionsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListPipelineExecutionsCommand;
38
+ }($Command));
39
+ export { ListPipelineExecutionsCommand };