@aws-sdk/client-codepipeline 3.490.0 → 3.495.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/CodePipeline.js +1 -89
- package/dist-cjs/CodePipelineClient.js +1 -43
- package/dist-cjs/commands/AcknowledgeJobCommand.js +1 -28
- package/dist-cjs/commands/AcknowledgeThirdPartyJobCommand.js +1 -28
- package/dist-cjs/commands/CreateCustomActionTypeCommand.js +1 -28
- package/dist-cjs/commands/CreatePipelineCommand.js +1 -28
- package/dist-cjs/commands/DeleteCustomActionTypeCommand.js +1 -28
- package/dist-cjs/commands/DeletePipelineCommand.js +1 -28
- package/dist-cjs/commands/DeleteWebhookCommand.js +1 -28
- package/dist-cjs/commands/DeregisterWebhookWithThirdPartyCommand.js +1 -28
- package/dist-cjs/commands/DisableStageTransitionCommand.js +1 -28
- package/dist-cjs/commands/EnableStageTransitionCommand.js +1 -28
- package/dist-cjs/commands/GetActionTypeCommand.js +1 -28
- package/dist-cjs/commands/GetJobDetailsCommand.js +1 -29
- package/dist-cjs/commands/GetPipelineCommand.js +1 -28
- package/dist-cjs/commands/GetPipelineExecutionCommand.js +1 -28
- package/dist-cjs/commands/GetPipelineStateCommand.js +1 -28
- package/dist-cjs/commands/GetThirdPartyJobDetailsCommand.js +1 -29
- package/dist-cjs/commands/ListActionExecutionsCommand.js +1 -28
- package/dist-cjs/commands/ListActionTypesCommand.js +1 -28
- package/dist-cjs/commands/ListPipelineExecutionsCommand.js +1 -28
- package/dist-cjs/commands/ListPipelinesCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
- package/dist-cjs/commands/ListWebhooksCommand.js +1 -28
- package/dist-cjs/commands/PollForJobsCommand.js +1 -29
- package/dist-cjs/commands/PollForThirdPartyJobsCommand.js +1 -28
- package/dist-cjs/commands/PutActionRevisionCommand.js +1 -28
- package/dist-cjs/commands/PutApprovalResultCommand.js +1 -28
- package/dist-cjs/commands/PutJobFailureResultCommand.js +1 -28
- package/dist-cjs/commands/PutJobSuccessResultCommand.js +1 -28
- package/dist-cjs/commands/PutThirdPartyJobFailureResultCommand.js +1 -28
- package/dist-cjs/commands/PutThirdPartyJobSuccessResultCommand.js +1 -28
- package/dist-cjs/commands/PutWebhookCommand.js +1 -28
- package/dist-cjs/commands/RegisterWebhookWithThirdPartyCommand.js +1 -28
- package/dist-cjs/commands/RetryStageExecutionCommand.js +1 -28
- package/dist-cjs/commands/StartPipelineExecutionCommand.js +1 -28
- package/dist-cjs/commands/StopPipelineExecutionCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateActionTypeCommand.js +1 -28
- package/dist-cjs/commands/UpdatePipelineCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -42
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +4299 -11
- package/dist-cjs/models/CodePipelineServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -633
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListActionExecutionsPaginator.js +1 -7
- package/dist-cjs/pagination/ListActionTypesPaginator.js +1 -7
- package/dist-cjs/pagination/ListPipelineExecutionsPaginator.js +1 -7
- package/dist-cjs/pagination/ListPipelinesPaginator.js +1 -7
- package/dist-cjs/pagination/ListTagsForResourcePaginator.js +1 -7
- package/dist-cjs/pagination/ListWebhooksPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -10
- package/dist-cjs/protocols/Aws_json1_1.js +1 -2528
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateActionTypeCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class UpdateActionTypeCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("CodePipeline_20150709", "UpdateActionType", {})
|
|
22
|
-
.n("CodePipelineClient", "UpdateActionTypeCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_UpdateActionTypeCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_UpdateActionTypeCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.UpdateActionTypeCommand = UpdateActionTypeCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdatePipelineCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class UpdatePipelineCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("CodePipeline_20150709", "UpdatePipeline", {})
|
|
22
|
-
.n("CodePipelineClient", "UpdatePipelineCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_UpdatePipelineCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_UpdatePipelineCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.UpdatePipelineCommand = UpdatePipelineCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,42 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./AcknowledgeJobCommand"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./AcknowledgeThirdPartyJobCommand"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./CreateCustomActionTypeCommand"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./CreatePipelineCommand"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./DeleteCustomActionTypeCommand"), exports);
|
|
9
|
-
tslib_1.__exportStar(require("./DeletePipelineCommand"), exports);
|
|
10
|
-
tslib_1.__exportStar(require("./DeleteWebhookCommand"), exports);
|
|
11
|
-
tslib_1.__exportStar(require("./DeregisterWebhookWithThirdPartyCommand"), exports);
|
|
12
|
-
tslib_1.__exportStar(require("./DisableStageTransitionCommand"), exports);
|
|
13
|
-
tslib_1.__exportStar(require("./EnableStageTransitionCommand"), exports);
|
|
14
|
-
tslib_1.__exportStar(require("./GetActionTypeCommand"), exports);
|
|
15
|
-
tslib_1.__exportStar(require("./GetJobDetailsCommand"), exports);
|
|
16
|
-
tslib_1.__exportStar(require("./GetPipelineCommand"), exports);
|
|
17
|
-
tslib_1.__exportStar(require("./GetPipelineExecutionCommand"), exports);
|
|
18
|
-
tslib_1.__exportStar(require("./GetPipelineStateCommand"), exports);
|
|
19
|
-
tslib_1.__exportStar(require("./GetThirdPartyJobDetailsCommand"), exports);
|
|
20
|
-
tslib_1.__exportStar(require("./ListActionExecutionsCommand"), exports);
|
|
21
|
-
tslib_1.__exportStar(require("./ListActionTypesCommand"), exports);
|
|
22
|
-
tslib_1.__exportStar(require("./ListPipelineExecutionsCommand"), exports);
|
|
23
|
-
tslib_1.__exportStar(require("./ListPipelinesCommand"), exports);
|
|
24
|
-
tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
|
|
25
|
-
tslib_1.__exportStar(require("./ListWebhooksCommand"), exports);
|
|
26
|
-
tslib_1.__exportStar(require("./PollForJobsCommand"), exports);
|
|
27
|
-
tslib_1.__exportStar(require("./PollForThirdPartyJobsCommand"), exports);
|
|
28
|
-
tslib_1.__exportStar(require("./PutActionRevisionCommand"), exports);
|
|
29
|
-
tslib_1.__exportStar(require("./PutApprovalResultCommand"), exports);
|
|
30
|
-
tslib_1.__exportStar(require("./PutJobFailureResultCommand"), exports);
|
|
31
|
-
tslib_1.__exportStar(require("./PutJobSuccessResultCommand"), exports);
|
|
32
|
-
tslib_1.__exportStar(require("./PutThirdPartyJobFailureResultCommand"), exports);
|
|
33
|
-
tslib_1.__exportStar(require("./PutThirdPartyJobSuccessResultCommand"), exports);
|
|
34
|
-
tslib_1.__exportStar(require("./PutWebhookCommand"), exports);
|
|
35
|
-
tslib_1.__exportStar(require("./RegisterWebhookWithThirdPartyCommand"), exports);
|
|
36
|
-
tslib_1.__exportStar(require("./RetryStageExecutionCommand"), exports);
|
|
37
|
-
tslib_1.__exportStar(require("./StartPipelineExecutionCommand"), exports);
|
|
38
|
-
tslib_1.__exportStar(require("./StopPipelineExecutionCommand"), exports);
|
|
39
|
-
tslib_1.__exportStar(require("./TagResourceCommand"), exports);
|
|
40
|
-
tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
|
|
41
|
-
tslib_1.__exportStar(require("./UpdateActionTypeCommand"), exports);
|
|
42
|
-
tslib_1.__exportStar(require("./UpdatePipelineCommand"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,18 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.commonParams = exports.resolveClientEndpointParameters = void 0;
|
|
4
|
-
const resolveClientEndpointParameters = (options) => {
|
|
5
|
-
return {
|
|
6
|
-
...options,
|
|
7
|
-
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
8
|
-
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
9
|
-
defaultSigningName: "codepipeline",
|
|
10
|
-
};
|
|
11
|
-
};
|
|
12
|
-
exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
|
|
13
|
-
exports.commonParams = {
|
|
14
|
-
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
15
|
-
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
16
|
-
Region: { type: "builtInParams", name: "region" },
|
|
17
|
-
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
18
|
-
};
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("./index.js");
|