@aws-sdk/client-codepipeline 3.948.0 → 3.953.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/index.js +1033 -667
- package/dist-cjs/runtimeConfig.shared.js +7 -6
- package/dist-es/commands/AcknowledgeJobCommand.js +2 -2
- package/dist-es/commands/AcknowledgeThirdPartyJobCommand.js +2 -2
- package/dist-es/commands/CreateCustomActionTypeCommand.js +2 -2
- package/dist-es/commands/CreatePipelineCommand.js +2 -2
- package/dist-es/commands/DeleteCustomActionTypeCommand.js +2 -2
- package/dist-es/commands/DeletePipelineCommand.js +2 -2
- package/dist-es/commands/DeleteWebhookCommand.js +2 -2
- package/dist-es/commands/DeregisterWebhookWithThirdPartyCommand.js +2 -2
- package/dist-es/commands/DisableStageTransitionCommand.js +2 -2
- package/dist-es/commands/EnableStageTransitionCommand.js +2 -2
- package/dist-es/commands/GetActionTypeCommand.js +2 -2
- package/dist-es/commands/GetJobDetailsCommand.js +2 -2
- package/dist-es/commands/GetPipelineCommand.js +2 -2
- package/dist-es/commands/GetPipelineExecutionCommand.js +2 -2
- package/dist-es/commands/GetPipelineStateCommand.js +2 -2
- package/dist-es/commands/GetThirdPartyJobDetailsCommand.js +2 -2
- package/dist-es/commands/ListActionExecutionsCommand.js +2 -2
- package/dist-es/commands/ListActionTypesCommand.js +2 -2
- package/dist-es/commands/ListDeployActionExecutionTargetsCommand.js +2 -2
- package/dist-es/commands/ListPipelineExecutionsCommand.js +2 -2
- package/dist-es/commands/ListPipelinesCommand.js +2 -2
- package/dist-es/commands/ListRuleExecutionsCommand.js +2 -2
- package/dist-es/commands/ListRuleTypesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListWebhooksCommand.js +2 -2
- package/dist-es/commands/OverrideStageConditionCommand.js +2 -2
- package/dist-es/commands/PollForJobsCommand.js +2 -2
- package/dist-es/commands/PollForThirdPartyJobsCommand.js +2 -2
- package/dist-es/commands/PutActionRevisionCommand.js +2 -2
- package/dist-es/commands/PutApprovalResultCommand.js +2 -2
- package/dist-es/commands/PutJobFailureResultCommand.js +2 -2
- package/dist-es/commands/PutJobSuccessResultCommand.js +2 -2
- package/dist-es/commands/PutThirdPartyJobFailureResultCommand.js +2 -2
- package/dist-es/commands/PutThirdPartyJobSuccessResultCommand.js +2 -2
- package/dist-es/commands/PutWebhookCommand.js +2 -2
- package/dist-es/commands/RegisterWebhookWithThirdPartyCommand.js +2 -2
- package/dist-es/commands/RetryStageExecutionCommand.js +2 -2
- package/dist-es/commands/RollbackStageCommand.js +2 -2
- package/dist-es/commands/StartPipelineExecutionCommand.js +2 -2
- package/dist-es/commands/StopPipelineExecutionCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateActionTypeCommand.js +2 -2
- package/dist-es/commands/UpdatePipelineCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +7 -6
- package/dist-es/schemas/schemas_0.js +613 -522
- package/dist-types/CodePipelineClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +276 -340
- package/dist-types/ts3.4/CodePipelineClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +275 -342
- package/package.json +34 -34
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RegisterWebhookWithThirdParty } from "../schemas/schemas_0";
|
|
4
|
+
import { RegisterWebhookWithThirdParty$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RegisterWebhookWithThirdPartyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RegisterWebhookWithThirdPartyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodePipeline_20150709", "RegisterWebhookWithThirdParty", {})
|
|
13
13
|
.n("CodePipelineClient", "RegisterWebhookWithThirdPartyCommand")
|
|
14
|
-
.sc(RegisterWebhookWithThirdParty)
|
|
14
|
+
.sc(RegisterWebhookWithThirdParty$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RetryStageExecution } from "../schemas/schemas_0";
|
|
4
|
+
import { RetryStageExecution$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RetryStageExecutionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RetryStageExecutionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodePipeline_20150709", "RetryStageExecution", {})
|
|
13
13
|
.n("CodePipelineClient", "RetryStageExecutionCommand")
|
|
14
|
-
.sc(RetryStageExecution)
|
|
14
|
+
.sc(RetryStageExecution$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RollbackStage } from "../schemas/schemas_0";
|
|
4
|
+
import { RollbackStage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RollbackStageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RollbackStageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodePipeline_20150709", "RollbackStage", {})
|
|
13
13
|
.n("CodePipelineClient", "RollbackStageCommand")
|
|
14
|
-
.sc(RollbackStage)
|
|
14
|
+
.sc(RollbackStage$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartPipelineExecution } from "../schemas/schemas_0";
|
|
4
|
+
import { StartPipelineExecution$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartPipelineExecutionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartPipelineExecutionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodePipeline_20150709", "StartPipelineExecution", {})
|
|
13
13
|
.n("CodePipelineClient", "StartPipelineExecutionCommand")
|
|
14
|
-
.sc(StartPipelineExecution)
|
|
14
|
+
.sc(StartPipelineExecution$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StopPipelineExecution } from "../schemas/schemas_0";
|
|
4
|
+
import { StopPipelineExecution$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopPipelineExecutionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopPipelineExecutionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodePipeline_20150709", "StopPipelineExecution", {})
|
|
13
13
|
.n("CodePipelineClient", "StopPipelineExecutionCommand")
|
|
14
|
-
.sc(StopPipelineExecution)
|
|
14
|
+
.sc(StopPipelineExecution$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodePipeline_20150709", "TagResource", {})
|
|
13
13
|
.n("CodePipelineClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodePipeline_20150709", "UntagResource", {})
|
|
13
13
|
.n("CodePipelineClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateActionType } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateActionType$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateActionTypeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateActionTypeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodePipeline_20150709", "UpdateActionType", {})
|
|
13
13
|
.n("CodePipelineClient", "UpdateActionTypeCommand")
|
|
14
|
-
.sc(UpdateActionType)
|
|
14
|
+
.sc(UpdateActionType$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdatePipeline } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdatePipeline$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdatePipelineCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdatePipelineCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CodePipeline_20150709", "UpdatePipeline", {})
|
|
13
13
|
.n("CodePipelineClient", "UpdatePipelineCommand")
|
|
14
|
-
.sc(UpdatePipeline)
|
|
14
|
+
.sc(UpdatePipeline$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,12 +23,13 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.codepipeline",
|
|
29
|
+
xmlNamespace: "http://codepipeline.amazonaws.com/doc/2015-07-09/",
|
|
30
|
+
version: "2015-07-09",
|
|
31
|
+
serviceTarget: "CodePipeline_20150709",
|
|
32
|
+
},
|
|
32
33
|
serviceId: config?.serviceId ?? "CodePipeline",
|
|
33
34
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
35
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|