@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.
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
@@ -26,12 +26,13 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ??
30
- new protocols_1.AwsJson1_1Protocol({
31
- defaultNamespace: "com.amazonaws.codepipeline",
32
- serviceTarget: "CodePipeline_20150709",
33
- awsQueryCompatible: false,
34
- }),
29
+ protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.codepipeline",
32
+ xmlNamespace: "http://codepipeline.amazonaws.com/doc/2015-07-09/",
33
+ version: "2015-07-09",
34
+ serviceTarget: "CodePipeline_20150709",
35
+ },
35
36
  serviceId: config?.serviceId ?? "CodePipeline",
36
37
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
37
38
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -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 { AcknowledgeJob } from "../schemas/schemas_0";
4
+ import { AcknowledgeJob$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AcknowledgeJobCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AcknowledgeJobCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "AcknowledgeJob", {})
13
13
  .n("CodePipelineClient", "AcknowledgeJobCommand")
14
- .sc(AcknowledgeJob)
14
+ .sc(AcknowledgeJob$)
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 { AcknowledgeThirdPartyJob } from "../schemas/schemas_0";
4
+ import { AcknowledgeThirdPartyJob$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AcknowledgeThirdPartyJobCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AcknowledgeThirdPartyJobCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "AcknowledgeThirdPartyJob", {})
13
13
  .n("CodePipelineClient", "AcknowledgeThirdPartyJobCommand")
14
- .sc(AcknowledgeThirdPartyJob)
14
+ .sc(AcknowledgeThirdPartyJob$)
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 { CreateCustomActionType } from "../schemas/schemas_0";
4
+ import { CreateCustomActionType$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateCustomActionTypeCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateCustomActionTypeCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "CreateCustomActionType", {})
13
13
  .n("CodePipelineClient", "CreateCustomActionTypeCommand")
14
- .sc(CreateCustomActionType)
14
+ .sc(CreateCustomActionType$)
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 { CreatePipeline } from "../schemas/schemas_0";
4
+ import { CreatePipeline$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreatePipelineCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreatePipelineCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "CreatePipeline", {})
13
13
  .n("CodePipelineClient", "CreatePipelineCommand")
14
- .sc(CreatePipeline)
14
+ .sc(CreatePipeline$)
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 { DeleteCustomActionType } from "../schemas/schemas_0";
4
+ import { DeleteCustomActionType$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteCustomActionTypeCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteCustomActionTypeCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "DeleteCustomActionType", {})
13
13
  .n("CodePipelineClient", "DeleteCustomActionTypeCommand")
14
- .sc(DeleteCustomActionType)
14
+ .sc(DeleteCustomActionType$)
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 { DeletePipeline } from "../schemas/schemas_0";
4
+ import { DeletePipeline$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeletePipelineCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeletePipelineCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "DeletePipeline", {})
13
13
  .n("CodePipelineClient", "DeletePipelineCommand")
14
- .sc(DeletePipeline)
14
+ .sc(DeletePipeline$)
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 { DeleteWebhook } from "../schemas/schemas_0";
4
+ import { DeleteWebhook$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteWebhookCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteWebhookCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "DeleteWebhook", {})
13
13
  .n("CodePipelineClient", "DeleteWebhookCommand")
14
- .sc(DeleteWebhook)
14
+ .sc(DeleteWebhook$)
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 { DeregisterWebhookWithThirdParty } from "../schemas/schemas_0";
4
+ import { DeregisterWebhookWithThirdParty$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeregisterWebhookWithThirdPartyCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeregisterWebhookWithThirdPartyCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "DeregisterWebhookWithThirdParty", {})
13
13
  .n("CodePipelineClient", "DeregisterWebhookWithThirdPartyCommand")
14
- .sc(DeregisterWebhookWithThirdParty)
14
+ .sc(DeregisterWebhookWithThirdParty$)
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 { DisableStageTransition } from "../schemas/schemas_0";
4
+ import { DisableStageTransition$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DisableStageTransitionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DisableStageTransitionCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "DisableStageTransition", {})
13
13
  .n("CodePipelineClient", "DisableStageTransitionCommand")
14
- .sc(DisableStageTransition)
14
+ .sc(DisableStageTransition$)
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 { EnableStageTransition } from "../schemas/schemas_0";
4
+ import { EnableStageTransition$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class EnableStageTransitionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class EnableStageTransitionCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "EnableStageTransition", {})
13
13
  .n("CodePipelineClient", "EnableStageTransitionCommand")
14
- .sc(EnableStageTransition)
14
+ .sc(EnableStageTransition$)
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 { GetActionType } from "../schemas/schemas_0";
4
+ import { GetActionType$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetActionTypeCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetActionTypeCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "GetActionType", {})
13
13
  .n("CodePipelineClient", "GetActionTypeCommand")
14
- .sc(GetActionType)
14
+ .sc(GetActionType$)
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 { GetJobDetails } from "../schemas/schemas_0";
4
+ import { GetJobDetails$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetJobDetailsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetJobDetailsCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "GetJobDetails", {})
13
13
  .n("CodePipelineClient", "GetJobDetailsCommand")
14
- .sc(GetJobDetails)
14
+ .sc(GetJobDetails$)
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 { GetPipeline } from "../schemas/schemas_0";
4
+ import { GetPipeline$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetPipelineCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetPipelineCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "GetPipeline", {})
13
13
  .n("CodePipelineClient", "GetPipelineCommand")
14
- .sc(GetPipeline)
14
+ .sc(GetPipeline$)
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 { GetPipelineExecution } from "../schemas/schemas_0";
4
+ import { GetPipelineExecution$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetPipelineExecutionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetPipelineExecutionCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "GetPipelineExecution", {})
13
13
  .n("CodePipelineClient", "GetPipelineExecutionCommand")
14
- .sc(GetPipelineExecution)
14
+ .sc(GetPipelineExecution$)
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 { GetPipelineState } from "../schemas/schemas_0";
4
+ import { GetPipelineState$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetPipelineStateCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetPipelineStateCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "GetPipelineState", {})
13
13
  .n("CodePipelineClient", "GetPipelineStateCommand")
14
- .sc(GetPipelineState)
14
+ .sc(GetPipelineState$)
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 { GetThirdPartyJobDetails } from "../schemas/schemas_0";
4
+ import { GetThirdPartyJobDetails$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetThirdPartyJobDetailsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetThirdPartyJobDetailsCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "GetThirdPartyJobDetails", {})
13
13
  .n("CodePipelineClient", "GetThirdPartyJobDetailsCommand")
14
- .sc(GetThirdPartyJobDetails)
14
+ .sc(GetThirdPartyJobDetails$)
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 { ListActionExecutions } from "../schemas/schemas_0";
4
+ import { ListActionExecutions$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListActionExecutionsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListActionExecutionsCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "ListActionExecutions", {})
13
13
  .n("CodePipelineClient", "ListActionExecutionsCommand")
14
- .sc(ListActionExecutions)
14
+ .sc(ListActionExecutions$)
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 { ListActionTypes } from "../schemas/schemas_0";
4
+ import { ListActionTypes$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListActionTypesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListActionTypesCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "ListActionTypes", {})
13
13
  .n("CodePipelineClient", "ListActionTypesCommand")
14
- .sc(ListActionTypes)
14
+ .sc(ListActionTypes$)
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 { ListDeployActionExecutionTargets } from "../schemas/schemas_0";
4
+ import { ListDeployActionExecutionTargets$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListDeployActionExecutionTargetsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListDeployActionExecutionTargetsCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "ListDeployActionExecutionTargets", {})
13
13
  .n("CodePipelineClient", "ListDeployActionExecutionTargetsCommand")
14
- .sc(ListDeployActionExecutionTargets)
14
+ .sc(ListDeployActionExecutionTargets$)
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 { ListPipelineExecutions } from "../schemas/schemas_0";
4
+ import { ListPipelineExecutions$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListPipelineExecutionsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListPipelineExecutionsCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "ListPipelineExecutions", {})
13
13
  .n("CodePipelineClient", "ListPipelineExecutionsCommand")
14
- .sc(ListPipelineExecutions)
14
+ .sc(ListPipelineExecutions$)
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 { ListPipelines } from "../schemas/schemas_0";
4
+ import { ListPipelines$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListPipelinesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListPipelinesCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "ListPipelines", {})
13
13
  .n("CodePipelineClient", "ListPipelinesCommand")
14
- .sc(ListPipelines)
14
+ .sc(ListPipelines$)
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 { ListRuleExecutions } from "../schemas/schemas_0";
4
+ import { ListRuleExecutions$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListRuleExecutionsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListRuleExecutionsCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "ListRuleExecutions", {})
13
13
  .n("CodePipelineClient", "ListRuleExecutionsCommand")
14
- .sc(ListRuleExecutions)
14
+ .sc(ListRuleExecutions$)
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 { ListRuleTypes } from "../schemas/schemas_0";
4
+ import { ListRuleTypes$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListRuleTypesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListRuleTypesCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "ListRuleTypes", {})
13
13
  .n("CodePipelineClient", "ListRuleTypesCommand")
14
- .sc(ListRuleTypes)
14
+ .sc(ListRuleTypes$)
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 { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "ListTagsForResource", {})
13
13
  .n("CodePipelineClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource)
14
+ .sc(ListTagsForResource$)
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 { ListWebhooks } from "../schemas/schemas_0";
4
+ import { ListWebhooks$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListWebhooksCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListWebhooksCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "ListWebhooks", {})
13
13
  .n("CodePipelineClient", "ListWebhooksCommand")
14
- .sc(ListWebhooks)
14
+ .sc(ListWebhooks$)
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 { OverrideStageCondition } from "../schemas/schemas_0";
4
+ import { OverrideStageCondition$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class OverrideStageConditionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class OverrideStageConditionCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "OverrideStageCondition", {})
13
13
  .n("CodePipelineClient", "OverrideStageConditionCommand")
14
- .sc(OverrideStageCondition)
14
+ .sc(OverrideStageCondition$)
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 { PollForJobs } from "../schemas/schemas_0";
4
+ import { PollForJobs$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PollForJobsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PollForJobsCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "PollForJobs", {})
13
13
  .n("CodePipelineClient", "PollForJobsCommand")
14
- .sc(PollForJobs)
14
+ .sc(PollForJobs$)
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 { PollForThirdPartyJobs } from "../schemas/schemas_0";
4
+ import { PollForThirdPartyJobs$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PollForThirdPartyJobsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PollForThirdPartyJobsCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "PollForThirdPartyJobs", {})
13
13
  .n("CodePipelineClient", "PollForThirdPartyJobsCommand")
14
- .sc(PollForThirdPartyJobs)
14
+ .sc(PollForThirdPartyJobs$)
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 { PutActionRevision } from "../schemas/schemas_0";
4
+ import { PutActionRevision$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutActionRevisionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutActionRevisionCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "PutActionRevision", {})
13
13
  .n("CodePipelineClient", "PutActionRevisionCommand")
14
- .sc(PutActionRevision)
14
+ .sc(PutActionRevision$)
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 { PutApprovalResult } from "../schemas/schemas_0";
4
+ import { PutApprovalResult$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutApprovalResultCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutApprovalResultCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "PutApprovalResult", {})
13
13
  .n("CodePipelineClient", "PutApprovalResultCommand")
14
- .sc(PutApprovalResult)
14
+ .sc(PutApprovalResult$)
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 { PutJobFailureResult } from "../schemas/schemas_0";
4
+ import { PutJobFailureResult$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutJobFailureResultCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutJobFailureResultCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "PutJobFailureResult", {})
13
13
  .n("CodePipelineClient", "PutJobFailureResultCommand")
14
- .sc(PutJobFailureResult)
14
+ .sc(PutJobFailureResult$)
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 { PutJobSuccessResult } from "../schemas/schemas_0";
4
+ import { PutJobSuccessResult$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutJobSuccessResultCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutJobSuccessResultCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "PutJobSuccessResult", {})
13
13
  .n("CodePipelineClient", "PutJobSuccessResultCommand")
14
- .sc(PutJobSuccessResult)
14
+ .sc(PutJobSuccessResult$)
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 { PutThirdPartyJobFailureResult } from "../schemas/schemas_0";
4
+ import { PutThirdPartyJobFailureResult$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutThirdPartyJobFailureResultCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutThirdPartyJobFailureResultCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "PutThirdPartyJobFailureResult", {})
13
13
  .n("CodePipelineClient", "PutThirdPartyJobFailureResultCommand")
14
- .sc(PutThirdPartyJobFailureResult)
14
+ .sc(PutThirdPartyJobFailureResult$)
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 { PutThirdPartyJobSuccessResult } from "../schemas/schemas_0";
4
+ import { PutThirdPartyJobSuccessResult$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutThirdPartyJobSuccessResultCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutThirdPartyJobSuccessResultCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "PutThirdPartyJobSuccessResult", {})
13
13
  .n("CodePipelineClient", "PutThirdPartyJobSuccessResultCommand")
14
- .sc(PutThirdPartyJobSuccessResult)
14
+ .sc(PutThirdPartyJobSuccessResult$)
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 { PutWebhook } from "../schemas/schemas_0";
4
+ import { PutWebhook$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutWebhookCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutWebhookCommand extends $Command
11
11
  })
12
12
  .s("CodePipeline_20150709", "PutWebhook", {})
13
13
  .n("CodePipelineClient", "PutWebhookCommand")
14
- .sc(PutWebhook)
14
+ .sc(PutWebhook$)
15
15
  .build() {
16
16
  }