@aws-sdk/client-codepipeline 3.321.1 → 3.326.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-types/commands/AcknowledgeJobCommand.d.ts +6 -0
- package/dist-types/commands/AcknowledgeThirdPartyJobCommand.d.ts +6 -0
- package/dist-types/commands/CreateCustomActionTypeCommand.d.ts +44 -0
- package/dist-types/commands/CreatePipelineCommand.d.ts +73 -0
- package/dist-types/commands/DeleteCustomActionTypeCommand.d.ts +4 -0
- package/dist-types/commands/DeletePipelineCommand.d.ts +4 -0
- package/dist-types/commands/DeleteWebhookCommand.d.ts +4 -0
- package/dist-types/commands/DeregisterWebhookWithThirdPartyCommand.d.ts +4 -0
- package/dist-types/commands/DisableStageTransitionCommand.d.ts +4 -0
- package/dist-types/commands/EnableStageTransitionCommand.d.ts +4 -0
- package/dist-types/commands/GetActionTypeCommand.d.ts +61 -0
- package/dist-types/commands/GetJobDetailsCommand.d.ts +70 -0
- package/dist-types/commands/GetPipelineCommand.d.ts +72 -0
- package/dist-types/commands/GetPipelineExecutionCommand.d.ts +22 -0
- package/dist-types/commands/GetPipelineStateCommand.d.ts +55 -0
- package/dist-types/commands/GetThirdPartyJobDetailsCommand.d.ts +70 -0
- package/dist-types/commands/ListActionExecutionsCommand.d.ts +63 -0
- package/dist-types/commands/ListActionTypesCommand.d.ts +41 -0
- package/dist-types/commands/ListPipelineExecutionsCommand.d.ts +29 -0
- package/dist-types/commands/ListPipelinesCommand.d.ts +14 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
- package/dist-types/commands/ListWebhooksCommand.d.ts +37 -0
- package/dist-types/commands/PollForJobsCommand.d.ts +73 -0
- package/dist-types/commands/PollForThirdPartyJobsCommand.d.ts +11 -0
- package/dist-types/commands/PutActionRevisionCommand.d.ts +7 -0
- package/dist-types/commands/PutApprovalResultCommand.d.ts +6 -0
- package/dist-types/commands/PutJobFailureResultCommand.d.ts +4 -0
- package/dist-types/commands/PutJobSuccessResultCommand.d.ts +4 -0
- package/dist-types/commands/PutThirdPartyJobFailureResultCommand.d.ts +4 -0
- package/dist-types/commands/PutThirdPartyJobSuccessResultCommand.d.ts +4 -0
- package/dist-types/commands/PutWebhookCommand.d.ts +34 -0
- package/dist-types/commands/RegisterWebhookWithThirdPartyCommand.d.ts +4 -0
- package/dist-types/commands/RetryStageExecutionCommand.d.ts +6 -0
- package/dist-types/commands/StartPipelineExecutionCommand.d.ts +6 -0
- package/dist-types/commands/StopPipelineExecutionCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateActionTypeCommand.d.ts +4 -0
- package/dist-types/commands/UpdatePipelineCommand.d.ts +67 -0
- package/package.json +16 -16
|
@@ -39,6 +39,74 @@ export interface GetThirdPartyJobDetailsCommandOutput extends GetThirdPartyJobDe
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new GetThirdPartyJobDetailsCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // GetThirdPartyJobDetailsOutput
|
|
43
|
+
* // jobDetails: { // ThirdPartyJobDetails
|
|
44
|
+
* // id: "STRING_VALUE",
|
|
45
|
+
* // data: { // ThirdPartyJobData
|
|
46
|
+
* // actionTypeId: { // ActionTypeId
|
|
47
|
+
* // category: "STRING_VALUE", // required
|
|
48
|
+
* // owner: "STRING_VALUE", // required
|
|
49
|
+
* // provider: "STRING_VALUE", // required
|
|
50
|
+
* // version: "STRING_VALUE", // required
|
|
51
|
+
* // },
|
|
52
|
+
* // actionConfiguration: { // ActionConfiguration
|
|
53
|
+
* // configuration: { // ActionConfigurationMap
|
|
54
|
+
* // "<keys>": "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // },
|
|
57
|
+
* // pipelineContext: { // PipelineContext
|
|
58
|
+
* // pipelineName: "STRING_VALUE",
|
|
59
|
+
* // stage: { // StageContext
|
|
60
|
+
* // name: "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // action: { // ActionContext
|
|
63
|
+
* // name: "STRING_VALUE",
|
|
64
|
+
* // actionExecutionId: "STRING_VALUE",
|
|
65
|
+
* // },
|
|
66
|
+
* // pipelineArn: "STRING_VALUE",
|
|
67
|
+
* // pipelineExecutionId: "STRING_VALUE",
|
|
68
|
+
* // },
|
|
69
|
+
* // inputArtifacts: [ // ArtifactList
|
|
70
|
+
* // { // Artifact
|
|
71
|
+
* // name: "STRING_VALUE",
|
|
72
|
+
* // revision: "STRING_VALUE",
|
|
73
|
+
* // location: { // ArtifactLocation
|
|
74
|
+
* // type: "STRING_VALUE",
|
|
75
|
+
* // s3Location: { // S3ArtifactLocation
|
|
76
|
+
* // bucketName: "STRING_VALUE", // required
|
|
77
|
+
* // objectKey: "STRING_VALUE", // required
|
|
78
|
+
* // },
|
|
79
|
+
* // },
|
|
80
|
+
* // },
|
|
81
|
+
* // ],
|
|
82
|
+
* // outputArtifacts: [
|
|
83
|
+
* // {
|
|
84
|
+
* // name: "STRING_VALUE",
|
|
85
|
+
* // revision: "STRING_VALUE",
|
|
86
|
+
* // location: {
|
|
87
|
+
* // type: "STRING_VALUE",
|
|
88
|
+
* // s3Location: {
|
|
89
|
+
* // bucketName: "STRING_VALUE", // required
|
|
90
|
+
* // objectKey: "STRING_VALUE", // required
|
|
91
|
+
* // },
|
|
92
|
+
* // },
|
|
93
|
+
* // },
|
|
94
|
+
* // ],
|
|
95
|
+
* // artifactCredentials: { // AWSSessionCredentials
|
|
96
|
+
* // accessKeyId: "STRING_VALUE", // required
|
|
97
|
+
* // secretAccessKey: "STRING_VALUE", // required
|
|
98
|
+
* // sessionToken: "STRING_VALUE", // required
|
|
99
|
+
* // },
|
|
100
|
+
* // continuationToken: "STRING_VALUE",
|
|
101
|
+
* // encryptionKey: { // EncryptionKey
|
|
102
|
+
* // id: "STRING_VALUE", // required
|
|
103
|
+
* // type: "STRING_VALUE", // required
|
|
104
|
+
* // },
|
|
105
|
+
* // },
|
|
106
|
+
* // nonce: "STRING_VALUE",
|
|
107
|
+
* // },
|
|
108
|
+
* // };
|
|
109
|
+
*
|
|
42
110
|
* ```
|
|
43
111
|
*
|
|
44
112
|
* @param GetThirdPartyJobDetailsCommandInput - {@link GetThirdPartyJobDetailsCommandInput}
|
|
@@ -59,6 +127,8 @@ export interface GetThirdPartyJobDetailsCommandOutput extends GetThirdPartyJobDe
|
|
|
59
127
|
* @throws {@link ValidationException} (client fault)
|
|
60
128
|
* <p>The validation was specified in an invalid format.</p>
|
|
61
129
|
*
|
|
130
|
+
* @throws {@link CodePipelineServiceException}
|
|
131
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
62
132
|
*
|
|
63
133
|
*/
|
|
64
134
|
export declare class GetThirdPartyJobDetailsCommand extends $Command<GetThirdPartyJobDetailsCommandInput, GetThirdPartyJobDetailsCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -36,6 +36,67 @@ export interface ListActionExecutionsCommandOutput extends ListActionExecutionsO
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new ListActionExecutionsCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // ListActionExecutionsOutput
|
|
40
|
+
* // actionExecutionDetails: [ // ActionExecutionDetailList
|
|
41
|
+
* // { // ActionExecutionDetail
|
|
42
|
+
* // pipelineExecutionId: "STRING_VALUE",
|
|
43
|
+
* // actionExecutionId: "STRING_VALUE",
|
|
44
|
+
* // pipelineVersion: Number("int"),
|
|
45
|
+
* // stageName: "STRING_VALUE",
|
|
46
|
+
* // actionName: "STRING_VALUE",
|
|
47
|
+
* // startTime: new Date("TIMESTAMP"),
|
|
48
|
+
* // lastUpdateTime: new Date("TIMESTAMP"),
|
|
49
|
+
* // status: "STRING_VALUE",
|
|
50
|
+
* // input: { // ActionExecutionInput
|
|
51
|
+
* // actionTypeId: { // ActionTypeId
|
|
52
|
+
* // category: "STRING_VALUE", // required
|
|
53
|
+
* // owner: "STRING_VALUE", // required
|
|
54
|
+
* // provider: "STRING_VALUE", // required
|
|
55
|
+
* // version: "STRING_VALUE", // required
|
|
56
|
+
* // },
|
|
57
|
+
* // configuration: { // ActionConfigurationMap
|
|
58
|
+
* // "<keys>": "STRING_VALUE",
|
|
59
|
+
* // },
|
|
60
|
+
* // resolvedConfiguration: { // ResolvedActionConfigurationMap
|
|
61
|
+
* // "<keys>": "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // roleArn: "STRING_VALUE",
|
|
64
|
+
* // region: "STRING_VALUE",
|
|
65
|
+
* // inputArtifacts: [ // ArtifactDetailList
|
|
66
|
+
* // { // ArtifactDetail
|
|
67
|
+
* // name: "STRING_VALUE",
|
|
68
|
+
* // s3location: { // S3Location
|
|
69
|
+
* // bucket: "STRING_VALUE",
|
|
70
|
+
* // key: "STRING_VALUE",
|
|
71
|
+
* // },
|
|
72
|
+
* // },
|
|
73
|
+
* // ],
|
|
74
|
+
* // namespace: "STRING_VALUE",
|
|
75
|
+
* // },
|
|
76
|
+
* // output: { // ActionExecutionOutput
|
|
77
|
+
* // outputArtifacts: [
|
|
78
|
+
* // {
|
|
79
|
+
* // name: "STRING_VALUE",
|
|
80
|
+
* // s3location: {
|
|
81
|
+
* // bucket: "STRING_VALUE",
|
|
82
|
+
* // key: "STRING_VALUE",
|
|
83
|
+
* // },
|
|
84
|
+
* // },
|
|
85
|
+
* // ],
|
|
86
|
+
* // executionResult: { // ActionExecutionResult
|
|
87
|
+
* // externalExecutionId: "STRING_VALUE",
|
|
88
|
+
* // externalExecutionSummary: "STRING_VALUE",
|
|
89
|
+
* // externalExecutionUrl: "STRING_VALUE",
|
|
90
|
+
* // },
|
|
91
|
+
* // outputVariables: { // OutputVariablesMap
|
|
92
|
+
* // "<keys>": "STRING_VALUE",
|
|
93
|
+
* // },
|
|
94
|
+
* // },
|
|
95
|
+
* // },
|
|
96
|
+
* // ],
|
|
97
|
+
* // nextToken: "STRING_VALUE",
|
|
98
|
+
* // };
|
|
99
|
+
*
|
|
39
100
|
* ```
|
|
40
101
|
*
|
|
41
102
|
* @param ListActionExecutionsCommandInput - {@link ListActionExecutionsCommandInput}
|
|
@@ -58,6 +119,8 @@ export interface ListActionExecutionsCommandOutput extends ListActionExecutionsO
|
|
|
58
119
|
* @throws {@link ValidationException} (client fault)
|
|
59
120
|
* <p>The validation was specified in an invalid format.</p>
|
|
60
121
|
*
|
|
122
|
+
* @throws {@link CodePipelineServiceException}
|
|
123
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
61
124
|
*
|
|
62
125
|
*/
|
|
63
126
|
export declare class ListActionExecutionsCommand extends $Command<ListActionExecutionsCommandInput, ListActionExecutionsCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -34,6 +34,45 @@ export interface ListActionTypesCommandOutput extends ListActionTypesOutput, __M
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListActionTypesCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListActionTypesOutput
|
|
38
|
+
* // actionTypes: [ // ActionTypeList // required
|
|
39
|
+
* // { // ActionType
|
|
40
|
+
* // id: { // ActionTypeId
|
|
41
|
+
* // category: "STRING_VALUE", // required
|
|
42
|
+
* // owner: "STRING_VALUE", // required
|
|
43
|
+
* // provider: "STRING_VALUE", // required
|
|
44
|
+
* // version: "STRING_VALUE", // required
|
|
45
|
+
* // },
|
|
46
|
+
* // settings: { // ActionTypeSettings
|
|
47
|
+
* // thirdPartyConfigurationUrl: "STRING_VALUE",
|
|
48
|
+
* // entityUrlTemplate: "STRING_VALUE",
|
|
49
|
+
* // executionUrlTemplate: "STRING_VALUE",
|
|
50
|
+
* // revisionUrlTemplate: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // actionConfigurationProperties: [ // ActionConfigurationPropertyList
|
|
53
|
+
* // { // ActionConfigurationProperty
|
|
54
|
+
* // name: "STRING_VALUE", // required
|
|
55
|
+
* // required: true || false, // required
|
|
56
|
+
* // key: true || false, // required
|
|
57
|
+
* // secret: true || false, // required
|
|
58
|
+
* // queryable: true || false,
|
|
59
|
+
* // description: "STRING_VALUE",
|
|
60
|
+
* // type: "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // inputArtifactDetails: { // ArtifactDetails
|
|
64
|
+
* // minimumCount: Number("int"), // required
|
|
65
|
+
* // maximumCount: Number("int"), // required
|
|
66
|
+
* // },
|
|
67
|
+
* // outputArtifactDetails: {
|
|
68
|
+
* // minimumCount: Number("int"), // required
|
|
69
|
+
* // maximumCount: Number("int"), // required
|
|
70
|
+
* // },
|
|
71
|
+
* // },
|
|
72
|
+
* // ],
|
|
73
|
+
* // nextToken: "STRING_VALUE",
|
|
74
|
+
* // };
|
|
75
|
+
*
|
|
37
76
|
* ```
|
|
38
77
|
*
|
|
39
78
|
* @param ListActionTypesCommandInput - {@link ListActionTypesCommandInput}
|
|
@@ -49,6 +88,8 @@ export interface ListActionTypesCommandOutput extends ListActionTypesOutput, __M
|
|
|
49
88
|
* @throws {@link ValidationException} (client fault)
|
|
50
89
|
* <p>The validation was specified in an invalid format.</p>
|
|
51
90
|
*
|
|
91
|
+
* @throws {@link CodePipelineServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
52
93
|
*
|
|
53
94
|
*/
|
|
54
95
|
export declare class ListActionTypesCommand extends $Command<ListActionTypesCommandInput, ListActionTypesCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -33,6 +33,33 @@ export interface ListPipelineExecutionsCommandOutput extends ListPipelineExecuti
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListPipelineExecutionsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListPipelineExecutionsOutput
|
|
37
|
+
* // pipelineExecutionSummaries: [ // PipelineExecutionSummaryList
|
|
38
|
+
* // { // PipelineExecutionSummary
|
|
39
|
+
* // pipelineExecutionId: "STRING_VALUE",
|
|
40
|
+
* // status: "STRING_VALUE",
|
|
41
|
+
* // startTime: new Date("TIMESTAMP"),
|
|
42
|
+
* // lastUpdateTime: new Date("TIMESTAMP"),
|
|
43
|
+
* // sourceRevisions: [ // SourceRevisionList
|
|
44
|
+
* // { // SourceRevision
|
|
45
|
+
* // actionName: "STRING_VALUE", // required
|
|
46
|
+
* // revisionId: "STRING_VALUE",
|
|
47
|
+
* // revisionSummary: "STRING_VALUE",
|
|
48
|
+
* // revisionUrl: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // trigger: { // ExecutionTrigger
|
|
52
|
+
* // triggerType: "STRING_VALUE",
|
|
53
|
+
* // triggerDetail: "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // stopTrigger: { // StopExecutionTrigger
|
|
56
|
+
* // reason: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // nextToken: "STRING_VALUE",
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
36
63
|
* ```
|
|
37
64
|
*
|
|
38
65
|
* @param ListPipelineExecutionsCommandInput - {@link ListPipelineExecutionsCommandInput}
|
|
@@ -51,6 +78,8 @@ export interface ListPipelineExecutionsCommandOutput extends ListPipelineExecuti
|
|
|
51
78
|
* @throws {@link ValidationException} (client fault)
|
|
52
79
|
* <p>The validation was specified in an invalid format.</p>
|
|
53
80
|
*
|
|
81
|
+
* @throws {@link CodePipelineServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
54
83
|
*
|
|
55
84
|
*/
|
|
56
85
|
export declare class ListPipelineExecutionsCommand extends $Command<ListPipelineExecutionsCommandInput, ListPipelineExecutionsCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -32,6 +32,18 @@ export interface ListPipelinesCommandOutput extends ListPipelinesOutput, __Metad
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListPipelinesCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListPipelinesOutput
|
|
36
|
+
* // pipelines: [ // PipelineList
|
|
37
|
+
* // { // PipelineSummary
|
|
38
|
+
* // name: "STRING_VALUE",
|
|
39
|
+
* // version: Number("int"),
|
|
40
|
+
* // created: new Date("TIMESTAMP"),
|
|
41
|
+
* // updated: new Date("TIMESTAMP"),
|
|
42
|
+
* // },
|
|
43
|
+
* // ],
|
|
44
|
+
* // nextToken: "STRING_VALUE",
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
35
47
|
* ```
|
|
36
48
|
*
|
|
37
49
|
* @param ListPipelinesCommandInput - {@link ListPipelinesCommandInput}
|
|
@@ -47,6 +59,8 @@ export interface ListPipelinesCommandOutput extends ListPipelinesOutput, __Metad
|
|
|
47
59
|
* @throws {@link ValidationException} (client fault)
|
|
48
60
|
* <p>The validation was specified in an invalid format.</p>
|
|
49
61
|
*
|
|
62
|
+
* @throws {@link CodePipelineServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
50
64
|
*
|
|
51
65
|
*/
|
|
52
66
|
export declare class ListPipelinesCommand extends $Command<ListPipelinesCommandInput, ListPipelinesCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -34,6 +34,16 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListTagsForResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListTagsForResourceOutput
|
|
38
|
+
* // tags: [ // TagList
|
|
39
|
+
* // { // Tag
|
|
40
|
+
* // key: "STRING_VALUE", // required
|
|
41
|
+
* // value: "STRING_VALUE", // required
|
|
42
|
+
* // },
|
|
43
|
+
* // ],
|
|
44
|
+
* // nextToken: "STRING_VALUE",
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
37
47
|
* ```
|
|
38
48
|
*
|
|
39
49
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -55,6 +65,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
55
65
|
* @throws {@link ValidationException} (client fault)
|
|
56
66
|
* <p>The validation was specified in an invalid format.</p>
|
|
57
67
|
*
|
|
68
|
+
* @throws {@link CodePipelineServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
58
70
|
*
|
|
59
71
|
*/
|
|
60
72
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -34,6 +34,41 @@ export interface ListWebhooksCommandOutput extends ListWebhooksOutput, __Metadat
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListWebhooksCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListWebhooksOutput
|
|
38
|
+
* // webhooks: [ // WebhookList
|
|
39
|
+
* // { // ListWebhookItem
|
|
40
|
+
* // definition: { // WebhookDefinition
|
|
41
|
+
* // name: "STRING_VALUE", // required
|
|
42
|
+
* // targetPipeline: "STRING_VALUE", // required
|
|
43
|
+
* // targetAction: "STRING_VALUE", // required
|
|
44
|
+
* // filters: [ // WebhookFilters // required
|
|
45
|
+
* // { // WebhookFilterRule
|
|
46
|
+
* // jsonPath: "STRING_VALUE", // required
|
|
47
|
+
* // matchEquals: "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // authentication: "STRING_VALUE", // required
|
|
51
|
+
* // authenticationConfiguration: { // WebhookAuthConfiguration
|
|
52
|
+
* // AllowedIPRange: "STRING_VALUE",
|
|
53
|
+
* // SecretToken: "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // },
|
|
56
|
+
* // url: "STRING_VALUE", // required
|
|
57
|
+
* // errorMessage: "STRING_VALUE",
|
|
58
|
+
* // errorCode: "STRING_VALUE",
|
|
59
|
+
* // lastTriggered: new Date("TIMESTAMP"),
|
|
60
|
+
* // arn: "STRING_VALUE",
|
|
61
|
+
* // tags: [ // TagList
|
|
62
|
+
* // { // Tag
|
|
63
|
+
* // key: "STRING_VALUE", // required
|
|
64
|
+
* // value: "STRING_VALUE", // required
|
|
65
|
+
* // },
|
|
66
|
+
* // ],
|
|
67
|
+
* // },
|
|
68
|
+
* // ],
|
|
69
|
+
* // NextToken: "STRING_VALUE",
|
|
70
|
+
* // };
|
|
71
|
+
*
|
|
37
72
|
* ```
|
|
38
73
|
*
|
|
39
74
|
* @param ListWebhooksCommandInput - {@link ListWebhooksCommandInput}
|
|
@@ -49,6 +84,8 @@ export interface ListWebhooksCommandOutput extends ListWebhooksOutput, __Metadat
|
|
|
49
84
|
* @throws {@link ValidationException} (client fault)
|
|
50
85
|
* <p>The validation was specified in an invalid format.</p>
|
|
51
86
|
*
|
|
87
|
+
* @throws {@link CodePipelineServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
52
89
|
*
|
|
53
90
|
*/
|
|
54
91
|
export declare class ListWebhooksCommand extends $Command<ListWebhooksCommandInput, ListWebhooksCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -49,6 +49,77 @@ export interface PollForJobsCommandOutput extends PollForJobsOutput, __MetadataB
|
|
|
49
49
|
* };
|
|
50
50
|
* const command = new PollForJobsCommand(input);
|
|
51
51
|
* const response = await client.send(command);
|
|
52
|
+
* // { // PollForJobsOutput
|
|
53
|
+
* // jobs: [ // JobList
|
|
54
|
+
* // { // Job
|
|
55
|
+
* // id: "STRING_VALUE",
|
|
56
|
+
* // data: { // JobData
|
|
57
|
+
* // actionTypeId: { // ActionTypeId
|
|
58
|
+
* // category: "STRING_VALUE", // required
|
|
59
|
+
* // owner: "STRING_VALUE", // required
|
|
60
|
+
* // provider: "STRING_VALUE", // required
|
|
61
|
+
* // version: "STRING_VALUE", // required
|
|
62
|
+
* // },
|
|
63
|
+
* // actionConfiguration: { // ActionConfiguration
|
|
64
|
+
* // configuration: { // ActionConfigurationMap
|
|
65
|
+
* // "<keys>": "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // },
|
|
68
|
+
* // pipelineContext: { // PipelineContext
|
|
69
|
+
* // pipelineName: "STRING_VALUE",
|
|
70
|
+
* // stage: { // StageContext
|
|
71
|
+
* // name: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
73
|
+
* // action: { // ActionContext
|
|
74
|
+
* // name: "STRING_VALUE",
|
|
75
|
+
* // actionExecutionId: "STRING_VALUE",
|
|
76
|
+
* // },
|
|
77
|
+
* // pipelineArn: "STRING_VALUE",
|
|
78
|
+
* // pipelineExecutionId: "STRING_VALUE",
|
|
79
|
+
* // },
|
|
80
|
+
* // inputArtifacts: [ // ArtifactList
|
|
81
|
+
* // { // Artifact
|
|
82
|
+
* // name: "STRING_VALUE",
|
|
83
|
+
* // revision: "STRING_VALUE",
|
|
84
|
+
* // location: { // ArtifactLocation
|
|
85
|
+
* // type: "STRING_VALUE",
|
|
86
|
+
* // s3Location: { // S3ArtifactLocation
|
|
87
|
+
* // bucketName: "STRING_VALUE", // required
|
|
88
|
+
* // objectKey: "STRING_VALUE", // required
|
|
89
|
+
* // },
|
|
90
|
+
* // },
|
|
91
|
+
* // },
|
|
92
|
+
* // ],
|
|
93
|
+
* // outputArtifacts: [
|
|
94
|
+
* // {
|
|
95
|
+
* // name: "STRING_VALUE",
|
|
96
|
+
* // revision: "STRING_VALUE",
|
|
97
|
+
* // location: {
|
|
98
|
+
* // type: "STRING_VALUE",
|
|
99
|
+
* // s3Location: {
|
|
100
|
+
* // bucketName: "STRING_VALUE", // required
|
|
101
|
+
* // objectKey: "STRING_VALUE", // required
|
|
102
|
+
* // },
|
|
103
|
+
* // },
|
|
104
|
+
* // },
|
|
105
|
+
* // ],
|
|
106
|
+
* // artifactCredentials: { // AWSSessionCredentials
|
|
107
|
+
* // accessKeyId: "STRING_VALUE", // required
|
|
108
|
+
* // secretAccessKey: "STRING_VALUE", // required
|
|
109
|
+
* // sessionToken: "STRING_VALUE", // required
|
|
110
|
+
* // },
|
|
111
|
+
* // continuationToken: "STRING_VALUE",
|
|
112
|
+
* // encryptionKey: { // EncryptionKey
|
|
113
|
+
* // id: "STRING_VALUE", // required
|
|
114
|
+
* // type: "STRING_VALUE", // required
|
|
115
|
+
* // },
|
|
116
|
+
* // },
|
|
117
|
+
* // nonce: "STRING_VALUE",
|
|
118
|
+
* // accountId: "STRING_VALUE",
|
|
119
|
+
* // },
|
|
120
|
+
* // ],
|
|
121
|
+
* // };
|
|
122
|
+
*
|
|
52
123
|
* ```
|
|
53
124
|
*
|
|
54
125
|
* @param PollForJobsCommandInput - {@link PollForJobsCommandInput}
|
|
@@ -63,6 +134,8 @@ export interface PollForJobsCommandOutput extends PollForJobsOutput, __MetadataB
|
|
|
63
134
|
* @throws {@link ValidationException} (client fault)
|
|
64
135
|
* <p>The validation was specified in an invalid format.</p>
|
|
65
136
|
*
|
|
137
|
+
* @throws {@link CodePipelineServiceException}
|
|
138
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
66
139
|
*
|
|
67
140
|
*/
|
|
68
141
|
export declare class PollForJobsCommand extends $Command<PollForJobsCommandInput, PollForJobsCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -43,6 +43,15 @@ export interface PollForThirdPartyJobsCommandOutput extends PollForThirdPartyJob
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new PollForThirdPartyJobsCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // { // PollForThirdPartyJobsOutput
|
|
47
|
+
* // jobs: [ // ThirdPartyJobList
|
|
48
|
+
* // { // ThirdPartyJob
|
|
49
|
+
* // clientId: "STRING_VALUE",
|
|
50
|
+
* // jobId: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
46
55
|
* ```
|
|
47
56
|
*
|
|
48
57
|
* @param PollForThirdPartyJobsCommandInput - {@link PollForThirdPartyJobsCommandInput}
|
|
@@ -57,6 +66,8 @@ export interface PollForThirdPartyJobsCommandOutput extends PollForThirdPartyJob
|
|
|
57
66
|
* @throws {@link ValidationException} (client fault)
|
|
58
67
|
* <p>The validation was specified in an invalid format.</p>
|
|
59
68
|
*
|
|
69
|
+
* @throws {@link CodePipelineServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
60
71
|
*
|
|
61
72
|
*/
|
|
62
73
|
export declare class PollForThirdPartyJobsCommand extends $Command<PollForThirdPartyJobsCommandInput, PollForThirdPartyJobsCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -38,6 +38,11 @@ export interface PutActionRevisionCommandOutput extends PutActionRevisionOutput,
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new PutActionRevisionCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // PutActionRevisionOutput
|
|
42
|
+
* // newRevision: true || false,
|
|
43
|
+
* // pipelineExecutionId: "STRING_VALUE",
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
41
46
|
* ```
|
|
42
47
|
*
|
|
43
48
|
* @param PutActionRevisionCommandInput - {@link PutActionRevisionCommandInput}
|
|
@@ -58,6 +63,8 @@ export interface PutActionRevisionCommandOutput extends PutActionRevisionOutput,
|
|
|
58
63
|
* @throws {@link ValidationException} (client fault)
|
|
59
64
|
* <p>The validation was specified in an invalid format.</p>
|
|
60
65
|
*
|
|
66
|
+
* @throws {@link CodePipelineServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
61
68
|
*
|
|
62
69
|
*/
|
|
63
70
|
export declare class PutActionRevisionCommand extends $Command<PutActionRevisionCommandInput, PutActionRevisionCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -39,6 +39,10 @@ export interface PutApprovalResultCommandOutput extends PutApprovalResultOutput,
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new PutApprovalResultCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // PutApprovalResultOutput
|
|
43
|
+
* // approvedAt: new Date("TIMESTAMP"),
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
42
46
|
* ```
|
|
43
47
|
*
|
|
44
48
|
* @param PutApprovalResultCommandInput - {@link PutApprovalResultCommandInput}
|
|
@@ -65,6 +69,8 @@ export interface PutApprovalResultCommandOutput extends PutApprovalResultOutput,
|
|
|
65
69
|
* @throws {@link ValidationException} (client fault)
|
|
66
70
|
* <p>The validation was specified in an invalid format.</p>
|
|
67
71
|
*
|
|
72
|
+
* @throws {@link CodePipelineServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
68
74
|
*
|
|
69
75
|
*/
|
|
70
76
|
export declare class PutApprovalResultCommand extends $Command<PutApprovalResultCommandInput, PutApprovalResultCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -37,6 +37,8 @@ export interface PutJobFailureResultCommandOutput extends __MetadataBearer {
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new PutJobFailureResultCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // {};
|
|
41
|
+
*
|
|
40
42
|
* ```
|
|
41
43
|
*
|
|
42
44
|
* @param PutJobFailureResultCommandInput - {@link PutJobFailureResultCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface PutJobFailureResultCommandOutput extends __MetadataBearer {
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* <p>The validation was specified in an invalid format.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link CodePipelineServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class PutJobFailureResultCommand extends $Command<PutJobFailureResultCommandInput, PutJobFailureResultCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -47,6 +47,8 @@ export interface PutJobSuccessResultCommandOutput extends __MetadataBearer {
|
|
|
47
47
|
* };
|
|
48
48
|
* const command = new PutJobSuccessResultCommand(input);
|
|
49
49
|
* const response = await client.send(command);
|
|
50
|
+
* // {};
|
|
51
|
+
*
|
|
50
52
|
* ```
|
|
51
53
|
*
|
|
52
54
|
* @param PutJobSuccessResultCommandInput - {@link PutJobSuccessResultCommandInput}
|
|
@@ -67,6 +69,8 @@ export interface PutJobSuccessResultCommandOutput extends __MetadataBearer {
|
|
|
67
69
|
* @throws {@link ValidationException} (client fault)
|
|
68
70
|
* <p>The validation was specified in an invalid format.</p>
|
|
69
71
|
*
|
|
72
|
+
* @throws {@link CodePipelineServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
70
74
|
*
|
|
71
75
|
*/
|
|
72
76
|
export declare class PutJobSuccessResultCommand extends $Command<PutJobSuccessResultCommandInput, PutJobSuccessResultCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -38,6 +38,8 @@ export interface PutThirdPartyJobFailureResultCommandOutput extends __MetadataBe
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new PutThirdPartyJobFailureResultCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // {};
|
|
42
|
+
*
|
|
41
43
|
* ```
|
|
42
44
|
*
|
|
43
45
|
* @param PutThirdPartyJobFailureResultCommandInput - {@link PutThirdPartyJobFailureResultCommandInput}
|
|
@@ -58,6 +60,8 @@ export interface PutThirdPartyJobFailureResultCommandOutput extends __MetadataBe
|
|
|
58
60
|
* @throws {@link ValidationException} (client fault)
|
|
59
61
|
* <p>The validation was specified in an invalid format.</p>
|
|
60
62
|
*
|
|
63
|
+
* @throws {@link CodePipelineServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
61
65
|
*
|
|
62
66
|
*/
|
|
63
67
|
export declare class PutThirdPartyJobFailureResultCommand extends $Command<PutThirdPartyJobFailureResultCommandInput, PutThirdPartyJobFailureResultCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -45,6 +45,8 @@ export interface PutThirdPartyJobSuccessResultCommandOutput extends __MetadataBe
|
|
|
45
45
|
* };
|
|
46
46
|
* const command = new PutThirdPartyJobSuccessResultCommand(input);
|
|
47
47
|
* const response = await client.send(command);
|
|
48
|
+
* // {};
|
|
49
|
+
*
|
|
48
50
|
* ```
|
|
49
51
|
*
|
|
50
52
|
* @param PutThirdPartyJobSuccessResultCommandInput - {@link PutThirdPartyJobSuccessResultCommandInput}
|
|
@@ -65,6 +67,8 @@ export interface PutThirdPartyJobSuccessResultCommandOutput extends __MetadataBe
|
|
|
65
67
|
* @throws {@link ValidationException} (client fault)
|
|
66
68
|
* <p>The validation was specified in an invalid format.</p>
|
|
67
69
|
*
|
|
70
|
+
* @throws {@link CodePipelineServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
68
72
|
*
|
|
69
73
|
*/
|
|
70
74
|
export declare class PutThirdPartyJobSuccessResultCommand extends $Command<PutThirdPartyJobSuccessResultCommandInput, PutThirdPartyJobSuccessResultCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -58,6 +58,38 @@ export interface PutWebhookCommandOutput extends PutWebhookOutput, __MetadataBea
|
|
|
58
58
|
* };
|
|
59
59
|
* const command = new PutWebhookCommand(input);
|
|
60
60
|
* const response = await client.send(command);
|
|
61
|
+
* // { // PutWebhookOutput
|
|
62
|
+
* // webhook: { // ListWebhookItem
|
|
63
|
+
* // definition: { // WebhookDefinition
|
|
64
|
+
* // name: "STRING_VALUE", // required
|
|
65
|
+
* // targetPipeline: "STRING_VALUE", // required
|
|
66
|
+
* // targetAction: "STRING_VALUE", // required
|
|
67
|
+
* // filters: [ // WebhookFilters // required
|
|
68
|
+
* // { // WebhookFilterRule
|
|
69
|
+
* // jsonPath: "STRING_VALUE", // required
|
|
70
|
+
* // matchEquals: "STRING_VALUE",
|
|
71
|
+
* // },
|
|
72
|
+
* // ],
|
|
73
|
+
* // authentication: "STRING_VALUE", // required
|
|
74
|
+
* // authenticationConfiguration: { // WebhookAuthConfiguration
|
|
75
|
+
* // AllowedIPRange: "STRING_VALUE",
|
|
76
|
+
* // SecretToken: "STRING_VALUE",
|
|
77
|
+
* // },
|
|
78
|
+
* // },
|
|
79
|
+
* // url: "STRING_VALUE", // required
|
|
80
|
+
* // errorMessage: "STRING_VALUE",
|
|
81
|
+
* // errorCode: "STRING_VALUE",
|
|
82
|
+
* // lastTriggered: new Date("TIMESTAMP"),
|
|
83
|
+
* // arn: "STRING_VALUE",
|
|
84
|
+
* // tags: [ // TagList
|
|
85
|
+
* // { // Tag
|
|
86
|
+
* // key: "STRING_VALUE", // required
|
|
87
|
+
* // value: "STRING_VALUE", // required
|
|
88
|
+
* // },
|
|
89
|
+
* // ],
|
|
90
|
+
* // },
|
|
91
|
+
* // };
|
|
92
|
+
*
|
|
61
93
|
* ```
|
|
62
94
|
*
|
|
63
95
|
* @param PutWebhookCommandInput - {@link PutWebhookCommandInput}
|
|
@@ -91,6 +123,8 @@ export interface PutWebhookCommandOutput extends PutWebhookOutput, __MetadataBea
|
|
|
91
123
|
* @throws {@link ValidationException} (client fault)
|
|
92
124
|
* <p>The validation was specified in an invalid format.</p>
|
|
93
125
|
*
|
|
126
|
+
* @throws {@link CodePipelineServiceException}
|
|
127
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
94
128
|
*
|
|
95
129
|
*/
|
|
96
130
|
export declare class PutWebhookCommand extends $Command<PutWebhookCommandInput, PutWebhookCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface RegisterWebhookWithThirdPartyCommandOutput extends RegisterWebh
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new RegisterWebhookWithThirdPartyCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param RegisterWebhookWithThirdPartyCommandInput - {@link RegisterWebhookWithThirdPartyCommandInput}
|
|
@@ -47,6 +49,8 @@ export interface RegisterWebhookWithThirdPartyCommandOutput extends RegisterWebh
|
|
|
47
49
|
* <p>The specified webhook was entered in an invalid format or cannot be
|
|
48
50
|
* found.</p>
|
|
49
51
|
*
|
|
52
|
+
* @throws {@link CodePipelineServiceException}
|
|
53
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
50
54
|
*
|
|
51
55
|
*/
|
|
52
56
|
export declare class RegisterWebhookWithThirdPartyCommand extends $Command<RegisterWebhookWithThirdPartyCommandInput, RegisterWebhookWithThirdPartyCommandOutput, CodePipelineClientResolvedConfig> {
|