@aws-sdk/client-codepipeline 3.952.0 → 3.954.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 (64) hide show
  1. package/dist-cjs/index.js +1033 -667
  2. package/dist-cjs/runtimeConfig.shared.js +7 -6
  3. package/dist-es/commands/AcknowledgeJobCommand.js +2 -2
  4. package/dist-es/commands/AcknowledgeThirdPartyJobCommand.js +2 -2
  5. package/dist-es/commands/CreateCustomActionTypeCommand.js +2 -2
  6. package/dist-es/commands/CreatePipelineCommand.js +2 -2
  7. package/dist-es/commands/DeleteCustomActionTypeCommand.js +2 -2
  8. package/dist-es/commands/DeletePipelineCommand.js +2 -2
  9. package/dist-es/commands/DeleteWebhookCommand.js +2 -2
  10. package/dist-es/commands/DeregisterWebhookWithThirdPartyCommand.js +2 -2
  11. package/dist-es/commands/DisableStageTransitionCommand.js +2 -2
  12. package/dist-es/commands/EnableStageTransitionCommand.js +2 -2
  13. package/dist-es/commands/GetActionTypeCommand.js +2 -2
  14. package/dist-es/commands/GetJobDetailsCommand.js +2 -2
  15. package/dist-es/commands/GetPipelineCommand.js +2 -2
  16. package/dist-es/commands/GetPipelineExecutionCommand.js +2 -2
  17. package/dist-es/commands/GetPipelineStateCommand.js +2 -2
  18. package/dist-es/commands/GetThirdPartyJobDetailsCommand.js +2 -2
  19. package/dist-es/commands/ListActionExecutionsCommand.js +2 -2
  20. package/dist-es/commands/ListActionTypesCommand.js +2 -2
  21. package/dist-es/commands/ListDeployActionExecutionTargetsCommand.js +2 -2
  22. package/dist-es/commands/ListPipelineExecutionsCommand.js +2 -2
  23. package/dist-es/commands/ListPipelinesCommand.js +2 -2
  24. package/dist-es/commands/ListRuleExecutionsCommand.js +2 -2
  25. package/dist-es/commands/ListRuleTypesCommand.js +2 -2
  26. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  27. package/dist-es/commands/ListWebhooksCommand.js +2 -2
  28. package/dist-es/commands/OverrideStageConditionCommand.js +2 -2
  29. package/dist-es/commands/PollForJobsCommand.js +2 -2
  30. package/dist-es/commands/PollForThirdPartyJobsCommand.js +2 -2
  31. package/dist-es/commands/PutActionRevisionCommand.js +2 -2
  32. package/dist-es/commands/PutApprovalResultCommand.js +2 -2
  33. package/dist-es/commands/PutJobFailureResultCommand.js +2 -2
  34. package/dist-es/commands/PutJobSuccessResultCommand.js +2 -2
  35. package/dist-es/commands/PutThirdPartyJobFailureResultCommand.js +2 -2
  36. package/dist-es/commands/PutThirdPartyJobSuccessResultCommand.js +2 -2
  37. package/dist-es/commands/PutWebhookCommand.js +2 -2
  38. package/dist-es/commands/RegisterWebhookWithThirdPartyCommand.js +2 -2
  39. package/dist-es/commands/RetryStageExecutionCommand.js +2 -2
  40. package/dist-es/commands/RollbackStageCommand.js +2 -2
  41. package/dist-es/commands/StartPipelineExecutionCommand.js +2 -2
  42. package/dist-es/commands/StopPipelineExecutionCommand.js +2 -2
  43. package/dist-es/commands/TagResourceCommand.js +2 -2
  44. package/dist-es/commands/UntagResourceCommand.js +2 -2
  45. package/dist-es/commands/UpdateActionTypeCommand.js +2 -2
  46. package/dist-es/commands/UpdatePipelineCommand.js +2 -2
  47. package/dist-es/index.js +1 -0
  48. package/dist-es/runtimeConfig.shared.js +7 -6
  49. package/dist-es/schemas/schemas_0.js +613 -522
  50. package/dist-types/CodePipelineClient.d.ts +1 -10
  51. package/dist-types/index.d.ts +1 -0
  52. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  53. package/dist-types/runtimeConfig.d.ts +6 -2
  54. package/dist-types/runtimeConfig.native.d.ts +6 -2
  55. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  56. package/dist-types/schemas/schemas_0.d.ts +276 -340
  57. package/dist-types/ts3.4/CodePipelineClient.d.ts +0 -4
  58. package/dist-types/ts3.4/index.d.ts +1 -0
  59. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  60. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  61. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  62. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  63. package/dist-types/ts3.4/schemas/schemas_0.d.ts +275 -342
  64. 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
@@ -1,6 +1,7 @@
1
1
  export * from "./CodePipelineClient";
2
2
  export * from "./CodePipeline";
3
3
  export * from "./commands";
4
+ export * from "./schemas/schemas_0";
4
5
  export * from "./pagination";
5
6
  export * from "./models/enums";
6
7
  export * from "./models/errors";
@@ -23,12 +23,13 @@ export const getRuntimeConfig = (config) => {
23
23
  },
24
24
  ],
25
25
  logger: config?.logger ?? new NoOpLogger(),
26
- protocol: config?.protocol ??
27
- new AwsJson1_1Protocol({
28
- defaultNamespace: "com.amazonaws.codepipeline",
29
- serviceTarget: "CodePipeline_20150709",
30
- awsQueryCompatible: false,
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,