@aws-sdk/client-codepipeline 3.300.0 → 3.301.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 (40) hide show
  1. package/dist-types/commands/AcknowledgeJobCommand.d.ts +1 -1
  2. package/dist-types/commands/AcknowledgeThirdPartyJobCommand.d.ts +1 -1
  3. package/dist-types/commands/CreateCustomActionTypeCommand.d.ts +7 -7
  4. package/dist-types/commands/CreatePipelineCommand.d.ts +19 -19
  5. package/dist-types/commands/DeleteCustomActionTypeCommand.d.ts +1 -1
  6. package/dist-types/commands/DeletePipelineCommand.d.ts +1 -1
  7. package/dist-types/commands/DeleteWebhookCommand.d.ts +1 -1
  8. package/dist-types/commands/DeregisterWebhookWithThirdPartyCommand.d.ts +1 -1
  9. package/dist-types/commands/DisableStageTransitionCommand.d.ts +1 -1
  10. package/dist-types/commands/EnableStageTransitionCommand.d.ts +1 -1
  11. package/dist-types/commands/GetActionTypeCommand.d.ts +1 -1
  12. package/dist-types/commands/GetJobDetailsCommand.d.ts +1 -1
  13. package/dist-types/commands/GetPipelineCommand.d.ts +1 -1
  14. package/dist-types/commands/GetPipelineExecutionCommand.d.ts +1 -1
  15. package/dist-types/commands/GetPipelineStateCommand.d.ts +1 -1
  16. package/dist-types/commands/GetThirdPartyJobDetailsCommand.d.ts +1 -1
  17. package/dist-types/commands/ListActionExecutionsCommand.d.ts +2 -2
  18. package/dist-types/commands/ListActionTypesCommand.d.ts +1 -1
  19. package/dist-types/commands/ListPipelineExecutionsCommand.d.ts +1 -1
  20. package/dist-types/commands/ListPipelinesCommand.d.ts +1 -1
  21. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  22. package/dist-types/commands/ListWebhooksCommand.d.ts +1 -1
  23. package/dist-types/commands/PollForJobsCommand.d.ts +3 -3
  24. package/dist-types/commands/PollForThirdPartyJobsCommand.d.ts +2 -2
  25. package/dist-types/commands/PutActionRevisionCommand.d.ts +2 -2
  26. package/dist-types/commands/PutApprovalResultCommand.d.ts +2 -2
  27. package/dist-types/commands/PutJobFailureResultCommand.d.ts +2 -2
  28. package/dist-types/commands/PutJobSuccessResultCommand.d.ts +4 -4
  29. package/dist-types/commands/PutThirdPartyJobFailureResultCommand.d.ts +2 -2
  30. package/dist-types/commands/PutThirdPartyJobSuccessResultCommand.d.ts +3 -3
  31. package/dist-types/commands/PutWebhookCommand.d.ts +7 -7
  32. package/dist-types/commands/RegisterWebhookWithThirdPartyCommand.d.ts +1 -1
  33. package/dist-types/commands/RetryStageExecutionCommand.d.ts +1 -1
  34. package/dist-types/commands/StartPipelineExecutionCommand.d.ts +1 -1
  35. package/dist-types/commands/StopPipelineExecutionCommand.d.ts +1 -1
  36. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  37. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  38. package/dist-types/commands/UpdateActionTypeCommand.d.ts +15 -15
  39. package/dist-types/commands/UpdatePipelineCommand.d.ts +17 -17
  40. package/package.json +3 -3
@@ -27,7 +27,7 @@ export interface AcknowledgeJobCommandOutput extends AcknowledgeJobOutput, __Met
27
27
  * import { CodePipelineClient, AcknowledgeJobCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
28
28
  * // const { CodePipelineClient, AcknowledgeJobCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
29
29
  * const client = new CodePipelineClient(config);
30
- * const input = {
30
+ * const input = { // AcknowledgeJobInput
31
31
  * jobId: "STRING_VALUE", // required
32
32
  * nonce: "STRING_VALUE", // required
33
33
  * };
@@ -27,7 +27,7 @@ export interface AcknowledgeThirdPartyJobCommandOutput extends AcknowledgeThirdP
27
27
  * import { CodePipelineClient, AcknowledgeThirdPartyJobCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
28
28
  * // const { CodePipelineClient, AcknowledgeThirdPartyJobCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
29
29
  * const client = new CodePipelineClient(config);
30
- * const input = {
30
+ * const input = { // AcknowledgeThirdPartyJobInput
31
31
  * jobId: "STRING_VALUE", // required
32
32
  * nonce: "STRING_VALUE", // required
33
33
  * clientToken: "STRING_VALUE", // required
@@ -27,18 +27,18 @@ export interface CreateCustomActionTypeCommandOutput extends CreateCustomActionT
27
27
  * import { CodePipelineClient, CreateCustomActionTypeCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
28
28
  * // const { CodePipelineClient, CreateCustomActionTypeCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
29
29
  * const client = new CodePipelineClient(config);
30
- * const input = {
30
+ * const input = { // CreateCustomActionTypeInput
31
31
  * category: "STRING_VALUE", // required
32
32
  * provider: "STRING_VALUE", // required
33
33
  * version: "STRING_VALUE", // required
34
- * settings: {
34
+ * settings: { // ActionTypeSettings
35
35
  * thirdPartyConfigurationUrl: "STRING_VALUE",
36
36
  * entityUrlTemplate: "STRING_VALUE",
37
37
  * executionUrlTemplate: "STRING_VALUE",
38
38
  * revisionUrlTemplate: "STRING_VALUE",
39
39
  * },
40
- * configurationProperties: [
41
- * {
40
+ * configurationProperties: [ // ActionConfigurationPropertyList
41
+ * { // ActionConfigurationProperty
42
42
  * name: "STRING_VALUE", // required
43
43
  * required: true || false, // required
44
44
  * key: true || false, // required
@@ -48,7 +48,7 @@ export interface CreateCustomActionTypeCommandOutput extends CreateCustomActionT
48
48
  * type: "STRING_VALUE",
49
49
  * },
50
50
  * ],
51
- * inputArtifactDetails: {
51
+ * inputArtifactDetails: { // ArtifactDetails
52
52
  * minimumCount: Number("int"), // required
53
53
  * maximumCount: Number("int"), // required
54
54
  * },
@@ -56,8 +56,8 @@ export interface CreateCustomActionTypeCommandOutput extends CreateCustomActionT
56
56
  * minimumCount: Number("int"), // required
57
57
  * maximumCount: Number("int"), // required
58
58
  * },
59
- * tags: [
60
- * {
59
+ * tags: [ // TagList
60
+ * { // Tag
61
61
  * key: "STRING_VALUE", // required
62
62
  * value: "STRING_VALUE", // required
63
63
  * },
@@ -32,19 +32,19 @@ export interface CreatePipelineCommandOutput extends CreatePipelineOutput, __Met
32
32
  * import { CodePipelineClient, CreatePipelineCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
33
33
  * // const { CodePipelineClient, CreatePipelineCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
34
34
  * const client = new CodePipelineClient(config);
35
- * const input = {
36
- * pipeline: {
35
+ * const input = { // CreatePipelineInput
36
+ * pipeline: { // PipelineDeclaration
37
37
  * name: "STRING_VALUE", // required
38
38
  * roleArn: "STRING_VALUE", // required
39
- * artifactStore: {
39
+ * artifactStore: { // ArtifactStore
40
40
  * type: "STRING_VALUE", // required
41
41
  * location: "STRING_VALUE", // required
42
- * encryptionKey: {
42
+ * encryptionKey: { // EncryptionKey
43
43
  * id: "STRING_VALUE", // required
44
44
  * type: "STRING_VALUE", // required
45
45
  * },
46
46
  * },
47
- * artifactStores: {
47
+ * artifactStores: { // ArtifactStoreMap
48
48
  * "<keys>": {
49
49
  * type: "STRING_VALUE", // required
50
50
  * location: "STRING_VALUE", // required
@@ -54,35 +54,35 @@ export interface CreatePipelineCommandOutput extends CreatePipelineOutput, __Met
54
54
  * },
55
55
  * },
56
56
  * },
57
- * stages: [ // required
58
- * {
57
+ * stages: [ // PipelineStageDeclarationList // required
58
+ * { // StageDeclaration
59
59
  * name: "STRING_VALUE", // required
60
- * blockers: [
61
- * {
60
+ * blockers: [ // StageBlockerDeclarationList
61
+ * { // BlockerDeclaration
62
62
  * name: "STRING_VALUE", // required
63
63
  * type: "STRING_VALUE", // required
64
64
  * },
65
65
  * ],
66
- * actions: [ // required
67
- * {
66
+ * actions: [ // StageActionDeclarationList // required
67
+ * { // ActionDeclaration
68
68
  * name: "STRING_VALUE", // required
69
- * actionTypeId: {
69
+ * actionTypeId: { // ActionTypeId
70
70
  * category: "STRING_VALUE", // required
71
71
  * owner: "STRING_VALUE", // required
72
72
  * provider: "STRING_VALUE", // required
73
73
  * version: "STRING_VALUE", // required
74
74
  * },
75
75
  * runOrder: Number("int"),
76
- * configuration: {
76
+ * configuration: { // ActionConfigurationMap
77
77
  * "<keys>": "STRING_VALUE",
78
78
  * },
79
- * outputArtifacts: [
80
- * {
79
+ * outputArtifacts: [ // OutputArtifactList
80
+ * { // OutputArtifact
81
81
  * name: "STRING_VALUE", // required
82
82
  * },
83
83
  * ],
84
- * inputArtifacts: [
85
- * {
84
+ * inputArtifacts: [ // InputArtifactList
85
+ * { // InputArtifact
86
86
  * name: "STRING_VALUE", // required
87
87
  * },
88
88
  * ],
@@ -95,8 +95,8 @@ export interface CreatePipelineCommandOutput extends CreatePipelineOutput, __Met
95
95
  * ],
96
96
  * version: Number("int"),
97
97
  * },
98
- * tags: [
99
- * {
98
+ * tags: [ // TagList
99
+ * { // Tag
100
100
  * key: "STRING_VALUE", // required
101
101
  * value: "STRING_VALUE", // required
102
102
  * },
@@ -34,7 +34,7 @@ export interface DeleteCustomActionTypeCommandOutput extends __MetadataBearer {
34
34
  * import { CodePipelineClient, DeleteCustomActionTypeCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
35
35
  * // const { CodePipelineClient, DeleteCustomActionTypeCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
36
36
  * const client = new CodePipelineClient(config);
37
- * const input = {
37
+ * const input = { // DeleteCustomActionTypeInput
38
38
  * category: "STRING_VALUE", // required
39
39
  * provider: "STRING_VALUE", // required
40
40
  * version: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface DeletePipelineCommandOutput extends __MetadataBearer {
26
26
  * import { CodePipelineClient, DeletePipelineCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
27
27
  * // const { CodePipelineClient, DeletePipelineCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
28
28
  * const client = new CodePipelineClient(config);
29
- * const input = {
29
+ * const input = { // DeletePipelineInput
30
30
  * name: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeletePipelineCommand(input);
@@ -30,7 +30,7 @@ export interface DeleteWebhookCommandOutput extends DeleteWebhookOutput, __Metad
30
30
  * import { CodePipelineClient, DeleteWebhookCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
31
31
  * // const { CodePipelineClient, DeleteWebhookCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
32
32
  * const client = new CodePipelineClient(config);
33
- * const input = {
33
+ * const input = { // DeleteWebhookInput
34
34
  * name: "STRING_VALUE", // required
35
35
  * };
36
36
  * const command = new DeleteWebhookCommand(input);
@@ -28,7 +28,7 @@ export interface DeregisterWebhookWithThirdPartyCommandOutput extends Deregister
28
28
  * import { CodePipelineClient, DeregisterWebhookWithThirdPartyCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
29
29
  * // const { CodePipelineClient, DeregisterWebhookWithThirdPartyCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
30
30
  * const client = new CodePipelineClient(config);
31
- * const input = {
31
+ * const input = { // DeregisterWebhookWithThirdPartyInput
32
32
  * webhookName: "STRING_VALUE",
33
33
  * };
34
34
  * const command = new DeregisterWebhookWithThirdPartyCommand(input);
@@ -27,7 +27,7 @@ export interface DisableStageTransitionCommandOutput extends __MetadataBearer {
27
27
  * import { CodePipelineClient, DisableStageTransitionCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
28
28
  * // const { CodePipelineClient, DisableStageTransitionCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
29
29
  * const client = new CodePipelineClient(config);
30
- * const input = {
30
+ * const input = { // DisableStageTransitionInput
31
31
  * pipelineName: "STRING_VALUE", // required
32
32
  * stageName: "STRING_VALUE", // required
33
33
  * transitionType: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface EnableStageTransitionCommandOutput extends __MetadataBearer {
26
26
  * import { CodePipelineClient, EnableStageTransitionCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
27
27
  * // const { CodePipelineClient, EnableStageTransitionCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
28
28
  * const client = new CodePipelineClient(config);
29
- * const input = {
29
+ * const input = { // EnableStageTransitionInput
30
30
  * pipelineName: "STRING_VALUE", // required
31
31
  * stageName: "STRING_VALUE", // required
32
32
  * transitionType: "STRING_VALUE", // required
@@ -28,7 +28,7 @@ export interface GetActionTypeCommandOutput extends GetActionTypeOutput, __Metad
28
28
  * import { CodePipelineClient, GetActionTypeCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
29
29
  * // const { CodePipelineClient, GetActionTypeCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
30
30
  * const client = new CodePipelineClient(config);
31
- * const input = {
31
+ * const input = { // GetActionTypeInput
32
32
  * category: "STRING_VALUE", // required
33
33
  * owner: "STRING_VALUE", // required
34
34
  * provider: "STRING_VALUE", // required
@@ -32,7 +32,7 @@ export interface GetJobDetailsCommandOutput extends GetJobDetailsOutput, __Metad
32
32
  * import { CodePipelineClient, GetJobDetailsCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
33
33
  * // const { CodePipelineClient, GetJobDetailsCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
34
34
  * const client = new CodePipelineClient(config);
35
- * const input = {
35
+ * const input = { // GetJobDetailsInput
36
36
  * jobId: "STRING_VALUE", // required
37
37
  * };
38
38
  * const command = new GetJobDetailsCommand(input);
@@ -28,7 +28,7 @@ export interface GetPipelineCommandOutput extends GetPipelineOutput, __MetadataB
28
28
  * import { CodePipelineClient, GetPipelineCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
29
29
  * // const { CodePipelineClient, GetPipelineCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
30
30
  * const client = new CodePipelineClient(config);
31
- * const input = {
31
+ * const input = { // GetPipelineInput
32
32
  * name: "STRING_VALUE", // required
33
33
  * version: Number("int"),
34
34
  * };
@@ -28,7 +28,7 @@ export interface GetPipelineExecutionCommandOutput extends GetPipelineExecutionO
28
28
  * import { CodePipelineClient, GetPipelineExecutionCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
29
29
  * // const { CodePipelineClient, GetPipelineExecutionCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
30
30
  * const client = new CodePipelineClient(config);
31
- * const input = {
31
+ * const input = { // GetPipelineExecutionInput
32
32
  * pipelineName: "STRING_VALUE", // required
33
33
  * pipelineExecutionId: "STRING_VALUE", // required
34
34
  * };
@@ -32,7 +32,7 @@ export interface GetPipelineStateCommandOutput extends GetPipelineStateOutput, _
32
32
  * import { CodePipelineClient, GetPipelineStateCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
33
33
  * // const { CodePipelineClient, GetPipelineStateCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
34
34
  * const client = new CodePipelineClient(config);
35
- * const input = {
35
+ * const input = { // GetPipelineStateInput
36
36
  * name: "STRING_VALUE", // required
37
37
  * };
38
38
  * const command = new GetPipelineStateCommand(input);
@@ -33,7 +33,7 @@ export interface GetThirdPartyJobDetailsCommandOutput extends GetThirdPartyJobDe
33
33
  * import { CodePipelineClient, GetThirdPartyJobDetailsCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
34
34
  * // const { CodePipelineClient, GetThirdPartyJobDetailsCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
35
35
  * const client = new CodePipelineClient(config);
36
- * const input = {
36
+ * const input = { // GetThirdPartyJobDetailsInput
37
37
  * jobId: "STRING_VALUE", // required
38
38
  * clientToken: "STRING_VALUE", // required
39
39
  * };
@@ -26,9 +26,9 @@ export interface ListActionExecutionsCommandOutput extends ListActionExecutionsO
26
26
  * import { CodePipelineClient, ListActionExecutionsCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
27
27
  * // const { CodePipelineClient, ListActionExecutionsCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
28
28
  * const client = new CodePipelineClient(config);
29
- * const input = {
29
+ * const input = { // ListActionExecutionsInput
30
30
  * pipelineName: "STRING_VALUE", // required
31
- * filter: {
31
+ * filter: { // ActionExecutionFilter
32
32
  * pipelineExecutionId: "STRING_VALUE",
33
33
  * },
34
34
  * maxResults: Number("int"),
@@ -27,7 +27,7 @@ export interface ListActionTypesCommandOutput extends ListActionTypesOutput, __M
27
27
  * import { CodePipelineClient, ListActionTypesCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
28
28
  * // const { CodePipelineClient, ListActionTypesCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
29
29
  * const client = new CodePipelineClient(config);
30
- * const input = {
30
+ * const input = { // ListActionTypesInput
31
31
  * actionOwnerFilter: "STRING_VALUE",
32
32
  * nextToken: "STRING_VALUE",
33
33
  * regionFilter: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListPipelineExecutionsCommandOutput extends ListPipelineExecuti
26
26
  * import { CodePipelineClient, ListPipelineExecutionsCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
27
27
  * // const { CodePipelineClient, ListPipelineExecutionsCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
28
28
  * const client = new CodePipelineClient(config);
29
- * const input = {
29
+ * const input = { // ListPipelineExecutionsInput
30
30
  * pipelineName: "STRING_VALUE", // required
31
31
  * maxResults: Number("int"),
32
32
  * nextToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListPipelinesCommandOutput extends ListPipelinesOutput, __Metad
26
26
  * import { CodePipelineClient, ListPipelinesCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
27
27
  * // const { CodePipelineClient, ListPipelinesCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
28
28
  * const client = new CodePipelineClient(config);
29
- * const input = {
29
+ * const input = { // ListPipelinesInput
30
30
  * nextToken: "STRING_VALUE",
31
31
  * maxResults: Number("int"),
32
32
  * };
@@ -27,7 +27,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
27
27
  * import { CodePipelineClient, ListTagsForResourceCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
28
28
  * // const { CodePipelineClient, ListTagsForResourceCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
29
29
  * const client = new CodePipelineClient(config);
30
- * const input = {
30
+ * const input = { // ListTagsForResourceInput
31
31
  * resourceArn: "STRING_VALUE", // required
32
32
  * nextToken: "STRING_VALUE",
33
33
  * maxResults: Number("int"),
@@ -28,7 +28,7 @@ export interface ListWebhooksCommandOutput extends ListWebhooksOutput, __Metadat
28
28
  * import { CodePipelineClient, ListWebhooksCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
29
29
  * // const { CodePipelineClient, ListWebhooksCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
30
30
  * const client = new CodePipelineClient(config);
31
- * const input = {
31
+ * const input = { // ListWebhooksInput
32
32
  * NextToken: "STRING_VALUE",
33
33
  * MaxResults: Number("int"),
34
34
  * };
@@ -35,15 +35,15 @@ export interface PollForJobsCommandOutput extends PollForJobsOutput, __MetadataB
35
35
  * import { CodePipelineClient, PollForJobsCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
36
36
  * // const { CodePipelineClient, PollForJobsCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
37
37
  * const client = new CodePipelineClient(config);
38
- * const input = {
39
- * actionTypeId: {
38
+ * const input = { // PollForJobsInput
39
+ * actionTypeId: { // ActionTypeId
40
40
  * category: "STRING_VALUE", // required
41
41
  * owner: "STRING_VALUE", // required
42
42
  * provider: "STRING_VALUE", // required
43
43
  * version: "STRING_VALUE", // required
44
44
  * },
45
45
  * maxBatchSize: Number("int"),
46
- * queryParam: {
46
+ * queryParam: { // QueryParamMap
47
47
  * "<keys>": "STRING_VALUE",
48
48
  * },
49
49
  * };
@@ -32,8 +32,8 @@ export interface PollForThirdPartyJobsCommandOutput extends PollForThirdPartyJob
32
32
  * import { CodePipelineClient, PollForThirdPartyJobsCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
33
33
  * // const { CodePipelineClient, PollForThirdPartyJobsCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
34
34
  * const client = new CodePipelineClient(config);
35
- * const input = {
36
- * actionTypeId: {
35
+ * const input = { // PollForThirdPartyJobsInput
36
+ * actionTypeId: { // ActionTypeId
37
37
  * category: "STRING_VALUE", // required
38
38
  * owner: "STRING_VALUE", // required
39
39
  * provider: "STRING_VALUE", // required
@@ -26,11 +26,11 @@ export interface PutActionRevisionCommandOutput extends PutActionRevisionOutput,
26
26
  * import { CodePipelineClient, PutActionRevisionCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
27
27
  * // const { CodePipelineClient, PutActionRevisionCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
28
28
  * const client = new CodePipelineClient(config);
29
- * const input = {
29
+ * const input = { // PutActionRevisionInput
30
30
  * pipelineName: "STRING_VALUE", // required
31
31
  * stageName: "STRING_VALUE", // required
32
32
  * actionName: "STRING_VALUE", // required
33
- * actionRevision: {
33
+ * actionRevision: { // ActionRevision
34
34
  * revisionId: "STRING_VALUE", // required
35
35
  * revisionChangeId: "STRING_VALUE", // required
36
36
  * created: new Date("TIMESTAMP"), // required
@@ -27,11 +27,11 @@ export interface PutApprovalResultCommandOutput extends PutApprovalResultOutput,
27
27
  * import { CodePipelineClient, PutApprovalResultCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
28
28
  * // const { CodePipelineClient, PutApprovalResultCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
29
29
  * const client = new CodePipelineClient(config);
30
- * const input = {
30
+ * const input = { // PutApprovalResultInput
31
31
  * pipelineName: "STRING_VALUE", // required
32
32
  * stageName: "STRING_VALUE", // required
33
33
  * actionName: "STRING_VALUE", // required
34
- * result: {
34
+ * result: { // ApprovalResult
35
35
  * summary: "STRING_VALUE", // required
36
36
  * status: "STRING_VALUE", // required
37
37
  * },
@@ -27,9 +27,9 @@ export interface PutJobFailureResultCommandOutput extends __MetadataBearer {
27
27
  * import { CodePipelineClient, PutJobFailureResultCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
28
28
  * // const { CodePipelineClient, PutJobFailureResultCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
29
29
  * const client = new CodePipelineClient(config);
30
- * const input = {
30
+ * const input = { // PutJobFailureResultInput
31
31
  * jobId: "STRING_VALUE", // required
32
- * failureDetails: {
32
+ * failureDetails: { // FailureDetails
33
33
  * type: "STRING_VALUE", // required
34
34
  * message: "STRING_VALUE", // required
35
35
  * externalExecutionId: "STRING_VALUE",
@@ -27,21 +27,21 @@ export interface PutJobSuccessResultCommandOutput extends __MetadataBearer {
27
27
  * import { CodePipelineClient, PutJobSuccessResultCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
28
28
  * // const { CodePipelineClient, PutJobSuccessResultCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
29
29
  * const client = new CodePipelineClient(config);
30
- * const input = {
30
+ * const input = { // PutJobSuccessResultInput
31
31
  * jobId: "STRING_VALUE", // required
32
- * currentRevision: {
32
+ * currentRevision: { // CurrentRevision
33
33
  * revision: "STRING_VALUE", // required
34
34
  * changeIdentifier: "STRING_VALUE", // required
35
35
  * created: new Date("TIMESTAMP"),
36
36
  * revisionSummary: "STRING_VALUE",
37
37
  * },
38
38
  * continuationToken: "STRING_VALUE",
39
- * executionDetails: {
39
+ * executionDetails: { // ExecutionDetails
40
40
  * summary: "STRING_VALUE",
41
41
  * externalExecutionId: "STRING_VALUE",
42
42
  * percentComplete: Number("int"),
43
43
  * },
44
- * outputVariables: {
44
+ * outputVariables: { // OutputVariablesMap
45
45
  * "<keys>": "STRING_VALUE",
46
46
  * },
47
47
  * };
@@ -27,10 +27,10 @@ export interface PutThirdPartyJobFailureResultCommandOutput extends __MetadataBe
27
27
  * import { CodePipelineClient, PutThirdPartyJobFailureResultCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
28
28
  * // const { CodePipelineClient, PutThirdPartyJobFailureResultCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
29
29
  * const client = new CodePipelineClient(config);
30
- * const input = {
30
+ * const input = { // PutThirdPartyJobFailureResultInput
31
31
  * jobId: "STRING_VALUE", // required
32
32
  * clientToken: "STRING_VALUE", // required
33
- * failureDetails: {
33
+ * failureDetails: { // FailureDetails
34
34
  * type: "STRING_VALUE", // required
35
35
  * message: "STRING_VALUE", // required
36
36
  * externalExecutionId: "STRING_VALUE",
@@ -27,17 +27,17 @@ export interface PutThirdPartyJobSuccessResultCommandOutput extends __MetadataBe
27
27
  * import { CodePipelineClient, PutThirdPartyJobSuccessResultCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
28
28
  * // const { CodePipelineClient, PutThirdPartyJobSuccessResultCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
29
29
  * const client = new CodePipelineClient(config);
30
- * const input = {
30
+ * const input = { // PutThirdPartyJobSuccessResultInput
31
31
  * jobId: "STRING_VALUE", // required
32
32
  * clientToken: "STRING_VALUE", // required
33
- * currentRevision: {
33
+ * currentRevision: { // CurrentRevision
34
34
  * revision: "STRING_VALUE", // required
35
35
  * changeIdentifier: "STRING_VALUE", // required
36
36
  * created: new Date("TIMESTAMP"),
37
37
  * revisionSummary: "STRING_VALUE",
38
38
  * },
39
39
  * continuationToken: "STRING_VALUE",
40
- * executionDetails: {
40
+ * executionDetails: { // ExecutionDetails
41
41
  * summary: "STRING_VALUE",
42
42
  * externalExecutionId: "STRING_VALUE",
43
43
  * percentComplete: Number("int"),
@@ -32,25 +32,25 @@ export interface PutWebhookCommandOutput extends PutWebhookOutput, __MetadataBea
32
32
  * import { CodePipelineClient, PutWebhookCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
33
33
  * // const { CodePipelineClient, PutWebhookCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
34
34
  * const client = new CodePipelineClient(config);
35
- * const input = {
36
- * webhook: {
35
+ * const input = { // PutWebhookInput
36
+ * webhook: { // WebhookDefinition
37
37
  * name: "STRING_VALUE", // required
38
38
  * targetPipeline: "STRING_VALUE", // required
39
39
  * targetAction: "STRING_VALUE", // required
40
- * filters: [ // required
41
- * {
40
+ * filters: [ // WebhookFilters // required
41
+ * { // WebhookFilterRule
42
42
  * jsonPath: "STRING_VALUE", // required
43
43
  * matchEquals: "STRING_VALUE",
44
44
  * },
45
45
  * ],
46
46
  * authentication: "STRING_VALUE", // required
47
- * authenticationConfiguration: {
47
+ * authenticationConfiguration: { // WebhookAuthConfiguration
48
48
  * AllowedIPRange: "STRING_VALUE",
49
49
  * SecretToken: "STRING_VALUE",
50
50
  * },
51
51
  * },
52
- * tags: [
53
- * {
52
+ * tags: [ // TagList
53
+ * { // Tag
54
54
  * key: "STRING_VALUE", // required
55
55
  * value: "STRING_VALUE", // required
56
56
  * },
@@ -27,7 +27,7 @@ export interface RegisterWebhookWithThirdPartyCommandOutput extends RegisterWebh
27
27
  * import { CodePipelineClient, RegisterWebhookWithThirdPartyCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
28
28
  * // const { CodePipelineClient, RegisterWebhookWithThirdPartyCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
29
29
  * const client = new CodePipelineClient(config);
30
- * const input = {
30
+ * const input = { // RegisterWebhookWithThirdPartyInput
31
31
  * webhookName: "STRING_VALUE",
32
32
  * };
33
33
  * const command = new RegisterWebhookWithThirdPartyCommand(input);
@@ -29,7 +29,7 @@ export interface RetryStageExecutionCommandOutput extends RetryStageExecutionOut
29
29
  * import { CodePipelineClient, RetryStageExecutionCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
30
30
  * // const { CodePipelineClient, RetryStageExecutionCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
31
31
  * const client = new CodePipelineClient(config);
32
- * const input = {
32
+ * const input = { // RetryStageExecutionInput
33
33
  * pipelineName: "STRING_VALUE", // required
34
34
  * stageName: "STRING_VALUE", // required
35
35
  * pipelineExecutionId: "STRING_VALUE", // required
@@ -27,7 +27,7 @@ export interface StartPipelineExecutionCommandOutput extends StartPipelineExecut
27
27
  * import { CodePipelineClient, StartPipelineExecutionCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
28
28
  * // const { CodePipelineClient, StartPipelineExecutionCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
29
29
  * const client = new CodePipelineClient(config);
30
- * const input = {
30
+ * const input = { // StartPipelineExecutionInput
31
31
  * name: "STRING_VALUE", // required
32
32
  * clientRequestToken: "STRING_VALUE",
33
33
  * };
@@ -31,7 +31,7 @@ export interface StopPipelineExecutionCommandOutput extends StopPipelineExecutio
31
31
  * import { CodePipelineClient, StopPipelineExecutionCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
32
32
  * // const { CodePipelineClient, StopPipelineExecutionCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
33
33
  * const client = new CodePipelineClient(config);
34
- * const input = {
34
+ * const input = { // StopPipelineExecutionInput
35
35
  * pipelineName: "STRING_VALUE", // required
36
36
  * pipelineExecutionId: "STRING_VALUE", // required
37
37
  * abandon: true || false,
@@ -27,10 +27,10 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
27
27
  * import { CodePipelineClient, TagResourceCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
28
28
  * // const { CodePipelineClient, TagResourceCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
29
29
  * const client = new CodePipelineClient(config);
30
- * const input = {
30
+ * const input = { // TagResourceInput
31
31
  * resourceArn: "STRING_VALUE", // required
32
- * tags: [ // required
33
- * {
32
+ * tags: [ // TagList // required
33
+ * { // Tag
34
34
  * key: "STRING_VALUE", // required
35
35
  * value: "STRING_VALUE", // required
36
36
  * },
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
26
26
  * import { CodePipelineClient, UntagResourceCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
27
27
  * // const { CodePipelineClient, UntagResourceCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
28
28
  * const client = new CodePipelineClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceInput
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tagKeys: [ // required
31
+ * tagKeys: [ // TagKeyList // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -29,19 +29,19 @@ export interface UpdateActionTypeCommandOutput extends __MetadataBearer {
29
29
  * import { CodePipelineClient, UpdateActionTypeCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
30
30
  * // const { CodePipelineClient, UpdateActionTypeCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
31
31
  * const client = new CodePipelineClient(config);
32
- * const input = {
33
- * actionType: {
32
+ * const input = { // UpdateActionTypeInput
33
+ * actionType: { // ActionTypeDeclaration
34
34
  * description: "STRING_VALUE",
35
- * executor: {
36
- * configuration: {
37
- * lambdaExecutorConfiguration: {
35
+ * executor: { // ActionTypeExecutor
36
+ * configuration: { // ExecutorConfiguration
37
+ * lambdaExecutorConfiguration: { // LambdaExecutorConfiguration
38
38
  * lambdaFunctionArn: "STRING_VALUE", // required
39
39
  * },
40
- * jobWorkerExecutorConfiguration: {
41
- * pollingAccounts: [
40
+ * jobWorkerExecutorConfiguration: { // JobWorkerExecutorConfiguration
41
+ * pollingAccounts: [ // PollingAccountList
42
42
  * "STRING_VALUE",
43
43
  * ],
44
- * pollingServicePrincipals: [
44
+ * pollingServicePrincipals: [ // PollingServicePrincipalList
45
45
  * "STRING_VALUE",
46
46
  * ],
47
47
  * },
@@ -50,13 +50,13 @@ export interface UpdateActionTypeCommandOutput extends __MetadataBearer {
50
50
  * policyStatementsTemplate: "STRING_VALUE",
51
51
  * jobTimeout: Number("int"),
52
52
  * },
53
- * id: {
53
+ * id: { // ActionTypeIdentifier
54
54
  * category: "STRING_VALUE", // required
55
55
  * owner: "STRING_VALUE", // required
56
56
  * provider: "STRING_VALUE", // required
57
57
  * version: "STRING_VALUE", // required
58
58
  * },
59
- * inputArtifactDetails: {
59
+ * inputArtifactDetails: { // ActionTypeArtifactDetails
60
60
  * minimumCount: Number("int"), // required
61
61
  * maximumCount: Number("int"), // required
62
62
  * },
@@ -64,13 +64,13 @@ export interface UpdateActionTypeCommandOutput extends __MetadataBearer {
64
64
  * minimumCount: Number("int"), // required
65
65
  * maximumCount: Number("int"), // required
66
66
  * },
67
- * permissions: {
68
- * allowedAccounts: [ // required
67
+ * permissions: { // ActionTypePermissions
68
+ * allowedAccounts: [ // AllowedAccounts // required
69
69
  * "STRING_VALUE",
70
70
  * ],
71
71
  * },
72
- * properties: [
73
- * {
72
+ * properties: [ // ActionTypeProperties
73
+ * { // ActionTypeProperty
74
74
  * name: "STRING_VALUE", // required
75
75
  * optional: true || false, // required
76
76
  * key: true || false, // required
@@ -79,7 +79,7 @@ export interface UpdateActionTypeCommandOutput extends __MetadataBearer {
79
79
  * description: "STRING_VALUE",
80
80
  * },
81
81
  * ],
82
- * urls: {
82
+ * urls: { // ActionTypeUrls
83
83
  * configurationUrl: "STRING_VALUE",
84
84
  * entityUrlTemplate: "STRING_VALUE",
85
85
  * executionUrlTemplate: "STRING_VALUE",
@@ -29,19 +29,19 @@ export interface UpdatePipelineCommandOutput extends UpdatePipelineOutput, __Met
29
29
  * import { CodePipelineClient, UpdatePipelineCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
30
30
  * // const { CodePipelineClient, UpdatePipelineCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
31
31
  * const client = new CodePipelineClient(config);
32
- * const input = {
33
- * pipeline: {
32
+ * const input = { // UpdatePipelineInput
33
+ * pipeline: { // PipelineDeclaration
34
34
  * name: "STRING_VALUE", // required
35
35
  * roleArn: "STRING_VALUE", // required
36
- * artifactStore: {
36
+ * artifactStore: { // ArtifactStore
37
37
  * type: "STRING_VALUE", // required
38
38
  * location: "STRING_VALUE", // required
39
- * encryptionKey: {
39
+ * encryptionKey: { // EncryptionKey
40
40
  * id: "STRING_VALUE", // required
41
41
  * type: "STRING_VALUE", // required
42
42
  * },
43
43
  * },
44
- * artifactStores: {
44
+ * artifactStores: { // ArtifactStoreMap
45
45
  * "<keys>": {
46
46
  * type: "STRING_VALUE", // required
47
47
  * location: "STRING_VALUE", // required
@@ -51,35 +51,35 @@ export interface UpdatePipelineCommandOutput extends UpdatePipelineOutput, __Met
51
51
  * },
52
52
  * },
53
53
  * },
54
- * stages: [ // required
55
- * {
54
+ * stages: [ // PipelineStageDeclarationList // required
55
+ * { // StageDeclaration
56
56
  * name: "STRING_VALUE", // required
57
- * blockers: [
58
- * {
57
+ * blockers: [ // StageBlockerDeclarationList
58
+ * { // BlockerDeclaration
59
59
  * name: "STRING_VALUE", // required
60
60
  * type: "STRING_VALUE", // required
61
61
  * },
62
62
  * ],
63
- * actions: [ // required
64
- * {
63
+ * actions: [ // StageActionDeclarationList // required
64
+ * { // ActionDeclaration
65
65
  * name: "STRING_VALUE", // required
66
- * actionTypeId: {
66
+ * actionTypeId: { // ActionTypeId
67
67
  * category: "STRING_VALUE", // required
68
68
  * owner: "STRING_VALUE", // required
69
69
  * provider: "STRING_VALUE", // required
70
70
  * version: "STRING_VALUE", // required
71
71
  * },
72
72
  * runOrder: Number("int"),
73
- * configuration: {
73
+ * configuration: { // ActionConfigurationMap
74
74
  * "<keys>": "STRING_VALUE",
75
75
  * },
76
- * outputArtifacts: [
77
- * {
76
+ * outputArtifacts: [ // OutputArtifactList
77
+ * { // OutputArtifact
78
78
  * name: "STRING_VALUE", // required
79
79
  * },
80
80
  * ],
81
- * inputArtifacts: [
82
- * {
81
+ * inputArtifacts: [ // InputArtifactList
82
+ * { // InputArtifact
83
83
  * name: "STRING_VALUE", // required
84
84
  * },
85
85
  * ],
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-codepipeline",
3
3
  "description": "AWS SDK for JavaScript Codepipeline Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",