@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
|
@@ -33,6 +33,10 @@ export interface AcknowledgeJobCommandOutput extends AcknowledgeJobOutput, __Met
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new AcknowledgeJobCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // AcknowledgeJobOutput
|
|
37
|
+
* // status: "STRING_VALUE",
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
36
40
|
* ```
|
|
37
41
|
*
|
|
38
42
|
* @param AcknowledgeJobCommandInput - {@link AcknowledgeJobCommandInput}
|
|
@@ -50,6 +54,8 @@ export interface AcknowledgeJobCommandOutput extends AcknowledgeJobOutput, __Met
|
|
|
50
54
|
* @throws {@link ValidationException} (client fault)
|
|
51
55
|
* <p>The validation was specified in an invalid format.</p>
|
|
52
56
|
*
|
|
57
|
+
* @throws {@link CodePipelineServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
53
59
|
*
|
|
54
60
|
*/
|
|
55
61
|
export declare class AcknowledgeJobCommand extends $Command<AcknowledgeJobCommandInput, AcknowledgeJobCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -34,6 +34,10 @@ export interface AcknowledgeThirdPartyJobCommandOutput extends AcknowledgeThirdP
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new AcknowledgeThirdPartyJobCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // AcknowledgeThirdPartyJobOutput
|
|
38
|
+
* // status: "STRING_VALUE",
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
37
41
|
* ```
|
|
38
42
|
*
|
|
39
43
|
* @param AcknowledgeThirdPartyJobCommandInput - {@link AcknowledgeThirdPartyJobCommandInput}
|
|
@@ -54,6 +58,8 @@ export interface AcknowledgeThirdPartyJobCommandOutput extends AcknowledgeThirdP
|
|
|
54
58
|
* @throws {@link ValidationException} (client fault)
|
|
55
59
|
* <p>The validation was specified in an invalid format.</p>
|
|
56
60
|
*
|
|
61
|
+
* @throws {@link CodePipelineServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
57
63
|
*
|
|
58
64
|
*/
|
|
59
65
|
export declare class AcknowledgeThirdPartyJobCommand extends $Command<AcknowledgeThirdPartyJobCommandInput, AcknowledgeThirdPartyJobCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -65,6 +65,48 @@ export interface CreateCustomActionTypeCommandOutput extends CreateCustomActionT
|
|
|
65
65
|
* };
|
|
66
66
|
* const command = new CreateCustomActionTypeCommand(input);
|
|
67
67
|
* const response = await client.send(command);
|
|
68
|
+
* // { // CreateCustomActionTypeOutput
|
|
69
|
+
* // actionType: { // ActionType
|
|
70
|
+
* // id: { // ActionTypeId
|
|
71
|
+
* // category: "STRING_VALUE", // required
|
|
72
|
+
* // owner: "STRING_VALUE", // required
|
|
73
|
+
* // provider: "STRING_VALUE", // required
|
|
74
|
+
* // version: "STRING_VALUE", // required
|
|
75
|
+
* // },
|
|
76
|
+
* // settings: { // ActionTypeSettings
|
|
77
|
+
* // thirdPartyConfigurationUrl: "STRING_VALUE",
|
|
78
|
+
* // entityUrlTemplate: "STRING_VALUE",
|
|
79
|
+
* // executionUrlTemplate: "STRING_VALUE",
|
|
80
|
+
* // revisionUrlTemplate: "STRING_VALUE",
|
|
81
|
+
* // },
|
|
82
|
+
* // actionConfigurationProperties: [ // ActionConfigurationPropertyList
|
|
83
|
+
* // { // ActionConfigurationProperty
|
|
84
|
+
* // name: "STRING_VALUE", // required
|
|
85
|
+
* // required: true || false, // required
|
|
86
|
+
* // key: true || false, // required
|
|
87
|
+
* // secret: true || false, // required
|
|
88
|
+
* // queryable: true || false,
|
|
89
|
+
* // description: "STRING_VALUE",
|
|
90
|
+
* // type: "STRING_VALUE",
|
|
91
|
+
* // },
|
|
92
|
+
* // ],
|
|
93
|
+
* // inputArtifactDetails: { // ArtifactDetails
|
|
94
|
+
* // minimumCount: Number("int"), // required
|
|
95
|
+
* // maximumCount: Number("int"), // required
|
|
96
|
+
* // },
|
|
97
|
+
* // outputArtifactDetails: {
|
|
98
|
+
* // minimumCount: Number("int"), // required
|
|
99
|
+
* // maximumCount: Number("int"), // required
|
|
100
|
+
* // },
|
|
101
|
+
* // },
|
|
102
|
+
* // tags: [ // TagList
|
|
103
|
+
* // { // Tag
|
|
104
|
+
* // key: "STRING_VALUE", // required
|
|
105
|
+
* // value: "STRING_VALUE", // required
|
|
106
|
+
* // },
|
|
107
|
+
* // ],
|
|
108
|
+
* // };
|
|
109
|
+
*
|
|
68
110
|
* ```
|
|
69
111
|
*
|
|
70
112
|
* @param CreateCustomActionTypeCommandInput - {@link CreateCustomActionTypeCommandInput}
|
|
@@ -89,6 +131,8 @@ export interface CreateCustomActionTypeCommandOutput extends CreateCustomActionT
|
|
|
89
131
|
* @throws {@link ValidationException} (client fault)
|
|
90
132
|
* <p>The validation was specified in an invalid format.</p>
|
|
91
133
|
*
|
|
134
|
+
* @throws {@link CodePipelineServiceException}
|
|
135
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
92
136
|
*
|
|
93
137
|
*/
|
|
94
138
|
export declare class CreateCustomActionTypeCommand extends $Command<CreateCustomActionTypeCommandInput, CreateCustomActionTypeCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -104,6 +104,77 @@ export interface CreatePipelineCommandOutput extends CreatePipelineOutput, __Met
|
|
|
104
104
|
* };
|
|
105
105
|
* const command = new CreatePipelineCommand(input);
|
|
106
106
|
* const response = await client.send(command);
|
|
107
|
+
* // { // CreatePipelineOutput
|
|
108
|
+
* // pipeline: { // PipelineDeclaration
|
|
109
|
+
* // name: "STRING_VALUE", // required
|
|
110
|
+
* // roleArn: "STRING_VALUE", // required
|
|
111
|
+
* // artifactStore: { // ArtifactStore
|
|
112
|
+
* // type: "STRING_VALUE", // required
|
|
113
|
+
* // location: "STRING_VALUE", // required
|
|
114
|
+
* // encryptionKey: { // EncryptionKey
|
|
115
|
+
* // id: "STRING_VALUE", // required
|
|
116
|
+
* // type: "STRING_VALUE", // required
|
|
117
|
+
* // },
|
|
118
|
+
* // },
|
|
119
|
+
* // artifactStores: { // ArtifactStoreMap
|
|
120
|
+
* // "<keys>": {
|
|
121
|
+
* // type: "STRING_VALUE", // required
|
|
122
|
+
* // location: "STRING_VALUE", // required
|
|
123
|
+
* // encryptionKey: {
|
|
124
|
+
* // id: "STRING_VALUE", // required
|
|
125
|
+
* // type: "STRING_VALUE", // required
|
|
126
|
+
* // },
|
|
127
|
+
* // },
|
|
128
|
+
* // },
|
|
129
|
+
* // stages: [ // PipelineStageDeclarationList // required
|
|
130
|
+
* // { // StageDeclaration
|
|
131
|
+
* // name: "STRING_VALUE", // required
|
|
132
|
+
* // blockers: [ // StageBlockerDeclarationList
|
|
133
|
+
* // { // BlockerDeclaration
|
|
134
|
+
* // name: "STRING_VALUE", // required
|
|
135
|
+
* // type: "STRING_VALUE", // required
|
|
136
|
+
* // },
|
|
137
|
+
* // ],
|
|
138
|
+
* // actions: [ // StageActionDeclarationList // required
|
|
139
|
+
* // { // ActionDeclaration
|
|
140
|
+
* // name: "STRING_VALUE", // required
|
|
141
|
+
* // actionTypeId: { // ActionTypeId
|
|
142
|
+
* // category: "STRING_VALUE", // required
|
|
143
|
+
* // owner: "STRING_VALUE", // required
|
|
144
|
+
* // provider: "STRING_VALUE", // required
|
|
145
|
+
* // version: "STRING_VALUE", // required
|
|
146
|
+
* // },
|
|
147
|
+
* // runOrder: Number("int"),
|
|
148
|
+
* // configuration: { // ActionConfigurationMap
|
|
149
|
+
* // "<keys>": "STRING_VALUE",
|
|
150
|
+
* // },
|
|
151
|
+
* // outputArtifacts: [ // OutputArtifactList
|
|
152
|
+
* // { // OutputArtifact
|
|
153
|
+
* // name: "STRING_VALUE", // required
|
|
154
|
+
* // },
|
|
155
|
+
* // ],
|
|
156
|
+
* // inputArtifacts: [ // InputArtifactList
|
|
157
|
+
* // { // InputArtifact
|
|
158
|
+
* // name: "STRING_VALUE", // required
|
|
159
|
+
* // },
|
|
160
|
+
* // ],
|
|
161
|
+
* // roleArn: "STRING_VALUE",
|
|
162
|
+
* // region: "STRING_VALUE",
|
|
163
|
+
* // namespace: "STRING_VALUE",
|
|
164
|
+
* // },
|
|
165
|
+
* // ],
|
|
166
|
+
* // },
|
|
167
|
+
* // ],
|
|
168
|
+
* // version: Number("int"),
|
|
169
|
+
* // },
|
|
170
|
+
* // tags: [ // TagList
|
|
171
|
+
* // { // Tag
|
|
172
|
+
* // key: "STRING_VALUE", // required
|
|
173
|
+
* // value: "STRING_VALUE", // required
|
|
174
|
+
* // },
|
|
175
|
+
* // ],
|
|
176
|
+
* // };
|
|
177
|
+
*
|
|
107
178
|
* ```
|
|
108
179
|
*
|
|
109
180
|
* @param CreatePipelineCommandInput - {@link CreatePipelineCommandInput}
|
|
@@ -143,6 +214,8 @@ export interface CreatePipelineCommandOutput extends CreatePipelineOutput, __Met
|
|
|
143
214
|
* @throws {@link ValidationException} (client fault)
|
|
144
215
|
* <p>The validation was specified in an invalid format.</p>
|
|
145
216
|
*
|
|
217
|
+
* @throws {@link CodePipelineServiceException}
|
|
218
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
146
219
|
*
|
|
147
220
|
*/
|
|
148
221
|
export declare class CreatePipelineCommand extends $Command<CreatePipelineCommandInput, CreatePipelineCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -41,6 +41,8 @@ export interface DeleteCustomActionTypeCommandOutput extends __MetadataBearer {
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new DeleteCustomActionTypeCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // {};
|
|
45
|
+
*
|
|
44
46
|
* ```
|
|
45
47
|
*
|
|
46
48
|
* @param DeleteCustomActionTypeCommandInput - {@link DeleteCustomActionTypeCommandInput}
|
|
@@ -55,6 +57,8 @@ export interface DeleteCustomActionTypeCommandOutput extends __MetadataBearer {
|
|
|
55
57
|
* @throws {@link ValidationException} (client fault)
|
|
56
58
|
* <p>The validation was specified in an invalid format.</p>
|
|
57
59
|
*
|
|
60
|
+
* @throws {@link CodePipelineServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
58
62
|
*
|
|
59
63
|
*/
|
|
60
64
|
export declare class DeleteCustomActionTypeCommand extends $Command<DeleteCustomActionTypeCommandInput, DeleteCustomActionTypeCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeletePipelineCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeletePipelineCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeletePipelineCommandInput - {@link DeletePipelineCommandInput}
|
|
@@ -45,6 +47,8 @@ export interface DeletePipelineCommandOutput extends __MetadataBearer {
|
|
|
45
47
|
* @throws {@link ValidationException} (client fault)
|
|
46
48
|
* <p>The validation was specified in an invalid format.</p>
|
|
47
49
|
*
|
|
50
|
+
* @throws {@link CodePipelineServiceException}
|
|
51
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
48
52
|
*
|
|
49
53
|
*/
|
|
50
54
|
export declare class DeletePipelineCommand extends $Command<DeletePipelineCommandInput, DeletePipelineCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -35,6 +35,8 @@ export interface DeleteWebhookCommandOutput extends DeleteWebhookOutput, __Metad
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DeleteWebhookCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param DeleteWebhookCommandInput - {@link DeleteWebhookCommandInput}
|
|
@@ -49,6 +51,8 @@ export interface DeleteWebhookCommandOutput extends DeleteWebhookOutput, __Metad
|
|
|
49
51
|
* @throws {@link ValidationException} (client fault)
|
|
50
52
|
* <p>The validation was specified in an invalid format.</p>
|
|
51
53
|
*
|
|
54
|
+
* @throws {@link CodePipelineServiceException}
|
|
55
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
52
56
|
*
|
|
53
57
|
*/
|
|
54
58
|
export declare class DeleteWebhookCommand extends $Command<DeleteWebhookCommandInput, DeleteWebhookCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface DeregisterWebhookWithThirdPartyCommandOutput extends Deregister
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeregisterWebhookWithThirdPartyCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param DeregisterWebhookWithThirdPartyCommandInput - {@link DeregisterWebhookWithThirdPartyCommandInput}
|
|
@@ -48,6 +50,8 @@ export interface DeregisterWebhookWithThirdPartyCommandOutput extends Deregister
|
|
|
48
50
|
* <p>The specified webhook was entered in an invalid format or cannot be
|
|
49
51
|
* found.</p>
|
|
50
52
|
*
|
|
53
|
+
* @throws {@link CodePipelineServiceException}
|
|
54
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
51
55
|
*
|
|
52
56
|
*/
|
|
53
57
|
export declare class DeregisterWebhookWithThirdPartyCommand extends $Command<DeregisterWebhookWithThirdPartyCommandInput, DeregisterWebhookWithThirdPartyCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -35,6 +35,8 @@ export interface DisableStageTransitionCommandOutput extends __MetadataBearer {
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DisableStageTransitionCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param DisableStageTransitionCommandInput - {@link DisableStageTransitionCommandInput}
|
|
@@ -52,6 +54,8 @@ export interface DisableStageTransitionCommandOutput extends __MetadataBearer {
|
|
|
52
54
|
* @throws {@link ValidationException} (client fault)
|
|
53
55
|
* <p>The validation was specified in an invalid format.</p>
|
|
54
56
|
*
|
|
57
|
+
* @throws {@link CodePipelineServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
55
59
|
*
|
|
56
60
|
*/
|
|
57
61
|
export declare class DisableStageTransitionCommand extends $Command<DisableStageTransitionCommandInput, DisableStageTransitionCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface EnableStageTransitionCommandOutput extends __MetadataBearer {
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new EnableStageTransitionCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param EnableStageTransitionCommandInput - {@link EnableStageTransitionCommandInput}
|
|
@@ -50,6 +52,8 @@ export interface EnableStageTransitionCommandOutput extends __MetadataBearer {
|
|
|
50
52
|
* @throws {@link ValidationException} (client fault)
|
|
51
53
|
* <p>The validation was specified in an invalid format.</p>
|
|
52
54
|
*
|
|
55
|
+
* @throws {@link CodePipelineServiceException}
|
|
56
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
53
57
|
*
|
|
54
58
|
*/
|
|
55
59
|
export declare class EnableStageTransitionCommand extends $Command<EnableStageTransitionCommandInput, EnableStageTransitionCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -36,6 +36,65 @@ export interface GetActionTypeCommandOutput extends GetActionTypeOutput, __Metad
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new GetActionTypeCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // GetActionTypeOutput
|
|
40
|
+
* // actionType: { // ActionTypeDeclaration
|
|
41
|
+
* // description: "STRING_VALUE",
|
|
42
|
+
* // executor: { // ActionTypeExecutor
|
|
43
|
+
* // configuration: { // ExecutorConfiguration
|
|
44
|
+
* // lambdaExecutorConfiguration: { // LambdaExecutorConfiguration
|
|
45
|
+
* // lambdaFunctionArn: "STRING_VALUE", // required
|
|
46
|
+
* // },
|
|
47
|
+
* // jobWorkerExecutorConfiguration: { // JobWorkerExecutorConfiguration
|
|
48
|
+
* // pollingAccounts: [ // PollingAccountList
|
|
49
|
+
* // "STRING_VALUE",
|
|
50
|
+
* // ],
|
|
51
|
+
* // pollingServicePrincipals: [ // PollingServicePrincipalList
|
|
52
|
+
* // "STRING_VALUE",
|
|
53
|
+
* // ],
|
|
54
|
+
* // },
|
|
55
|
+
* // },
|
|
56
|
+
* // type: "STRING_VALUE", // required
|
|
57
|
+
* // policyStatementsTemplate: "STRING_VALUE",
|
|
58
|
+
* // jobTimeout: Number("int"),
|
|
59
|
+
* // },
|
|
60
|
+
* // id: { // ActionTypeIdentifier
|
|
61
|
+
* // category: "STRING_VALUE", // required
|
|
62
|
+
* // owner: "STRING_VALUE", // required
|
|
63
|
+
* // provider: "STRING_VALUE", // required
|
|
64
|
+
* // version: "STRING_VALUE", // required
|
|
65
|
+
* // },
|
|
66
|
+
* // inputArtifactDetails: { // ActionTypeArtifactDetails
|
|
67
|
+
* // minimumCount: Number("int"), // required
|
|
68
|
+
* // maximumCount: Number("int"), // required
|
|
69
|
+
* // },
|
|
70
|
+
* // outputArtifactDetails: {
|
|
71
|
+
* // minimumCount: Number("int"), // required
|
|
72
|
+
* // maximumCount: Number("int"), // required
|
|
73
|
+
* // },
|
|
74
|
+
* // permissions: { // ActionTypePermissions
|
|
75
|
+
* // allowedAccounts: [ // AllowedAccounts // required
|
|
76
|
+
* // "STRING_VALUE",
|
|
77
|
+
* // ],
|
|
78
|
+
* // },
|
|
79
|
+
* // properties: [ // ActionTypeProperties
|
|
80
|
+
* // { // ActionTypeProperty
|
|
81
|
+
* // name: "STRING_VALUE", // required
|
|
82
|
+
* // optional: true || false, // required
|
|
83
|
+
* // key: true || false, // required
|
|
84
|
+
* // noEcho: true || false, // required
|
|
85
|
+
* // queryable: true || false,
|
|
86
|
+
* // description: "STRING_VALUE",
|
|
87
|
+
* // },
|
|
88
|
+
* // ],
|
|
89
|
+
* // urls: { // ActionTypeUrls
|
|
90
|
+
* // configurationUrl: "STRING_VALUE",
|
|
91
|
+
* // entityUrlTemplate: "STRING_VALUE",
|
|
92
|
+
* // executionUrlTemplate: "STRING_VALUE",
|
|
93
|
+
* // revisionUrlTemplate: "STRING_VALUE",
|
|
94
|
+
* // },
|
|
95
|
+
* // },
|
|
96
|
+
* // };
|
|
97
|
+
*
|
|
39
98
|
* ```
|
|
40
99
|
*
|
|
41
100
|
* @param GetActionTypeCommandInput - {@link GetActionTypeCommandInput}
|
|
@@ -50,6 +109,8 @@ export interface GetActionTypeCommandOutput extends GetActionTypeOutput, __Metad
|
|
|
50
109
|
* @throws {@link ValidationException} (client fault)
|
|
51
110
|
* <p>The validation was specified in an invalid format.</p>
|
|
52
111
|
*
|
|
112
|
+
* @throws {@link CodePipelineServiceException}
|
|
113
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
53
114
|
*
|
|
54
115
|
*/
|
|
55
116
|
export declare class GetActionTypeCommand extends $Command<GetActionTypeCommandInput, GetActionTypeCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -37,6 +37,74 @@ export interface GetJobDetailsCommandOutput extends GetJobDetailsOutput, __Metad
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new GetJobDetailsCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // GetJobDetailsOutput
|
|
41
|
+
* // jobDetails: { // JobDetails
|
|
42
|
+
* // id: "STRING_VALUE",
|
|
43
|
+
* // data: { // JobData
|
|
44
|
+
* // actionTypeId: { // ActionTypeId
|
|
45
|
+
* // category: "STRING_VALUE", // required
|
|
46
|
+
* // owner: "STRING_VALUE", // required
|
|
47
|
+
* // provider: "STRING_VALUE", // required
|
|
48
|
+
* // version: "STRING_VALUE", // required
|
|
49
|
+
* // },
|
|
50
|
+
* // actionConfiguration: { // ActionConfiguration
|
|
51
|
+
* // configuration: { // ActionConfigurationMap
|
|
52
|
+
* // "<keys>": "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // },
|
|
55
|
+
* // pipelineContext: { // PipelineContext
|
|
56
|
+
* // pipelineName: "STRING_VALUE",
|
|
57
|
+
* // stage: { // StageContext
|
|
58
|
+
* // name: "STRING_VALUE",
|
|
59
|
+
* // },
|
|
60
|
+
* // action: { // ActionContext
|
|
61
|
+
* // name: "STRING_VALUE",
|
|
62
|
+
* // actionExecutionId: "STRING_VALUE",
|
|
63
|
+
* // },
|
|
64
|
+
* // pipelineArn: "STRING_VALUE",
|
|
65
|
+
* // pipelineExecutionId: "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // inputArtifacts: [ // ArtifactList
|
|
68
|
+
* // { // Artifact
|
|
69
|
+
* // name: "STRING_VALUE",
|
|
70
|
+
* // revision: "STRING_VALUE",
|
|
71
|
+
* // location: { // ArtifactLocation
|
|
72
|
+
* // type: "STRING_VALUE",
|
|
73
|
+
* // s3Location: { // S3ArtifactLocation
|
|
74
|
+
* // bucketName: "STRING_VALUE", // required
|
|
75
|
+
* // objectKey: "STRING_VALUE", // required
|
|
76
|
+
* // },
|
|
77
|
+
* // },
|
|
78
|
+
* // },
|
|
79
|
+
* // ],
|
|
80
|
+
* // outputArtifacts: [
|
|
81
|
+
* // {
|
|
82
|
+
* // name: "STRING_VALUE",
|
|
83
|
+
* // revision: "STRING_VALUE",
|
|
84
|
+
* // location: {
|
|
85
|
+
* // type: "STRING_VALUE",
|
|
86
|
+
* // s3Location: {
|
|
87
|
+
* // bucketName: "STRING_VALUE", // required
|
|
88
|
+
* // objectKey: "STRING_VALUE", // required
|
|
89
|
+
* // },
|
|
90
|
+
* // },
|
|
91
|
+
* // },
|
|
92
|
+
* // ],
|
|
93
|
+
* // artifactCredentials: { // AWSSessionCredentials
|
|
94
|
+
* // accessKeyId: "STRING_VALUE", // required
|
|
95
|
+
* // secretAccessKey: "STRING_VALUE", // required
|
|
96
|
+
* // sessionToken: "STRING_VALUE", // required
|
|
97
|
+
* // },
|
|
98
|
+
* // continuationToken: "STRING_VALUE",
|
|
99
|
+
* // encryptionKey: { // EncryptionKey
|
|
100
|
+
* // id: "STRING_VALUE", // required
|
|
101
|
+
* // type: "STRING_VALUE", // required
|
|
102
|
+
* // },
|
|
103
|
+
* // },
|
|
104
|
+
* // accountId: "STRING_VALUE",
|
|
105
|
+
* // },
|
|
106
|
+
* // };
|
|
107
|
+
*
|
|
40
108
|
* ```
|
|
41
109
|
*
|
|
42
110
|
* @param GetJobDetailsCommandInput - {@link GetJobDetailsCommandInput}
|
|
@@ -51,6 +119,8 @@ export interface GetJobDetailsCommandOutput extends GetJobDetailsOutput, __Metad
|
|
|
51
119
|
* @throws {@link ValidationException} (client fault)
|
|
52
120
|
* <p>The validation was specified in an invalid format.</p>
|
|
53
121
|
*
|
|
122
|
+
* @throws {@link CodePipelineServiceException}
|
|
123
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
54
124
|
*
|
|
55
125
|
*/
|
|
56
126
|
export declare class GetJobDetailsCommand extends $Command<GetJobDetailsCommandInput, GetJobDetailsCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -34,6 +34,76 @@ export interface GetPipelineCommandOutput extends GetPipelineOutput, __MetadataB
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetPipelineCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // GetPipelineOutput
|
|
38
|
+
* // pipeline: { // PipelineDeclaration
|
|
39
|
+
* // name: "STRING_VALUE", // required
|
|
40
|
+
* // roleArn: "STRING_VALUE", // required
|
|
41
|
+
* // artifactStore: { // ArtifactStore
|
|
42
|
+
* // type: "STRING_VALUE", // required
|
|
43
|
+
* // location: "STRING_VALUE", // required
|
|
44
|
+
* // encryptionKey: { // EncryptionKey
|
|
45
|
+
* // id: "STRING_VALUE", // required
|
|
46
|
+
* // type: "STRING_VALUE", // required
|
|
47
|
+
* // },
|
|
48
|
+
* // },
|
|
49
|
+
* // artifactStores: { // ArtifactStoreMap
|
|
50
|
+
* // "<keys>": {
|
|
51
|
+
* // type: "STRING_VALUE", // required
|
|
52
|
+
* // location: "STRING_VALUE", // required
|
|
53
|
+
* // encryptionKey: {
|
|
54
|
+
* // id: "STRING_VALUE", // required
|
|
55
|
+
* // type: "STRING_VALUE", // required
|
|
56
|
+
* // },
|
|
57
|
+
* // },
|
|
58
|
+
* // },
|
|
59
|
+
* // stages: [ // PipelineStageDeclarationList // required
|
|
60
|
+
* // { // StageDeclaration
|
|
61
|
+
* // name: "STRING_VALUE", // required
|
|
62
|
+
* // blockers: [ // StageBlockerDeclarationList
|
|
63
|
+
* // { // BlockerDeclaration
|
|
64
|
+
* // name: "STRING_VALUE", // required
|
|
65
|
+
* // type: "STRING_VALUE", // required
|
|
66
|
+
* // },
|
|
67
|
+
* // ],
|
|
68
|
+
* // actions: [ // StageActionDeclarationList // required
|
|
69
|
+
* // { // ActionDeclaration
|
|
70
|
+
* // name: "STRING_VALUE", // required
|
|
71
|
+
* // actionTypeId: { // ActionTypeId
|
|
72
|
+
* // category: "STRING_VALUE", // required
|
|
73
|
+
* // owner: "STRING_VALUE", // required
|
|
74
|
+
* // provider: "STRING_VALUE", // required
|
|
75
|
+
* // version: "STRING_VALUE", // required
|
|
76
|
+
* // },
|
|
77
|
+
* // runOrder: Number("int"),
|
|
78
|
+
* // configuration: { // ActionConfigurationMap
|
|
79
|
+
* // "<keys>": "STRING_VALUE",
|
|
80
|
+
* // },
|
|
81
|
+
* // outputArtifacts: [ // OutputArtifactList
|
|
82
|
+
* // { // OutputArtifact
|
|
83
|
+
* // name: "STRING_VALUE", // required
|
|
84
|
+
* // },
|
|
85
|
+
* // ],
|
|
86
|
+
* // inputArtifacts: [ // InputArtifactList
|
|
87
|
+
* // { // InputArtifact
|
|
88
|
+
* // name: "STRING_VALUE", // required
|
|
89
|
+
* // },
|
|
90
|
+
* // ],
|
|
91
|
+
* // roleArn: "STRING_VALUE",
|
|
92
|
+
* // region: "STRING_VALUE",
|
|
93
|
+
* // namespace: "STRING_VALUE",
|
|
94
|
+
* // },
|
|
95
|
+
* // ],
|
|
96
|
+
* // },
|
|
97
|
+
* // ],
|
|
98
|
+
* // version: Number("int"),
|
|
99
|
+
* // },
|
|
100
|
+
* // metadata: { // PipelineMetadata
|
|
101
|
+
* // pipelineArn: "STRING_VALUE",
|
|
102
|
+
* // created: new Date("TIMESTAMP"),
|
|
103
|
+
* // updated: new Date("TIMESTAMP"),
|
|
104
|
+
* // },
|
|
105
|
+
* // };
|
|
106
|
+
*
|
|
37
107
|
* ```
|
|
38
108
|
*
|
|
39
109
|
* @param GetPipelineCommandInput - {@link GetPipelineCommandInput}
|
|
@@ -52,6 +122,8 @@ export interface GetPipelineCommandOutput extends GetPipelineOutput, __MetadataB
|
|
|
52
122
|
* @throws {@link ValidationException} (client fault)
|
|
53
123
|
* <p>The validation was specified in an invalid format.</p>
|
|
54
124
|
*
|
|
125
|
+
* @throws {@link CodePipelineServiceException}
|
|
126
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
55
127
|
*
|
|
56
128
|
*/
|
|
57
129
|
export declare class GetPipelineCommand extends $Command<GetPipelineCommandInput, GetPipelineCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -34,6 +34,26 @@ export interface GetPipelineExecutionCommandOutput extends GetPipelineExecutionO
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetPipelineExecutionCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // GetPipelineExecutionOutput
|
|
38
|
+
* // pipelineExecution: { // PipelineExecution
|
|
39
|
+
* // pipelineName: "STRING_VALUE",
|
|
40
|
+
* // pipelineVersion: Number("int"),
|
|
41
|
+
* // pipelineExecutionId: "STRING_VALUE",
|
|
42
|
+
* // status: "STRING_VALUE",
|
|
43
|
+
* // statusSummary: "STRING_VALUE",
|
|
44
|
+
* // artifactRevisions: [ // ArtifactRevisionList
|
|
45
|
+
* // { // ArtifactRevision
|
|
46
|
+
* // name: "STRING_VALUE",
|
|
47
|
+
* // revisionId: "STRING_VALUE",
|
|
48
|
+
* // revisionChangeIdentifier: "STRING_VALUE",
|
|
49
|
+
* // revisionSummary: "STRING_VALUE",
|
|
50
|
+
* // created: new Date("TIMESTAMP"),
|
|
51
|
+
* // revisionUrl: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // },
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
37
57
|
* ```
|
|
38
58
|
*
|
|
39
59
|
* @param GetPipelineExecutionCommandInput - {@link GetPipelineExecutionCommandInput}
|
|
@@ -52,6 +72,8 @@ export interface GetPipelineExecutionCommandOutput extends GetPipelineExecutionO
|
|
|
52
72
|
* @throws {@link ValidationException} (client fault)
|
|
53
73
|
* <p>The validation was specified in an invalid format.</p>
|
|
54
74
|
*
|
|
75
|
+
* @throws {@link CodePipelineServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
55
77
|
*
|
|
56
78
|
*/
|
|
57
79
|
export declare class GetPipelineExecutionCommand extends $Command<GetPipelineExecutionCommandInput, GetPipelineExecutionCommandOutput, CodePipelineClientResolvedConfig> {
|
|
@@ -37,6 +37,59 @@ export interface GetPipelineStateCommandOutput extends GetPipelineStateOutput, _
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new GetPipelineStateCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // GetPipelineStateOutput
|
|
41
|
+
* // pipelineName: "STRING_VALUE",
|
|
42
|
+
* // pipelineVersion: Number("int"),
|
|
43
|
+
* // stageStates: [ // StageStateList
|
|
44
|
+
* // { // StageState
|
|
45
|
+
* // stageName: "STRING_VALUE",
|
|
46
|
+
* // inboundExecution: { // StageExecution
|
|
47
|
+
* // pipelineExecutionId: "STRING_VALUE", // required
|
|
48
|
+
* // status: "STRING_VALUE", // required
|
|
49
|
+
* // },
|
|
50
|
+
* // inboundTransitionState: { // TransitionState
|
|
51
|
+
* // enabled: true || false,
|
|
52
|
+
* // lastChangedBy: "STRING_VALUE",
|
|
53
|
+
* // lastChangedAt: new Date("TIMESTAMP"),
|
|
54
|
+
* // disabledReason: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // actionStates: [ // ActionStateList
|
|
57
|
+
* // { // ActionState
|
|
58
|
+
* // actionName: "STRING_VALUE",
|
|
59
|
+
* // currentRevision: { // ActionRevision
|
|
60
|
+
* // revisionId: "STRING_VALUE", // required
|
|
61
|
+
* // revisionChangeId: "STRING_VALUE", // required
|
|
62
|
+
* // created: new Date("TIMESTAMP"), // required
|
|
63
|
+
* // },
|
|
64
|
+
* // latestExecution: { // ActionExecution
|
|
65
|
+
* // actionExecutionId: "STRING_VALUE",
|
|
66
|
+
* // status: "STRING_VALUE",
|
|
67
|
+
* // summary: "STRING_VALUE",
|
|
68
|
+
* // lastStatusChange: new Date("TIMESTAMP"),
|
|
69
|
+
* // token: "STRING_VALUE",
|
|
70
|
+
* // lastUpdatedBy: "STRING_VALUE",
|
|
71
|
+
* // externalExecutionId: "STRING_VALUE",
|
|
72
|
+
* // externalExecutionUrl: "STRING_VALUE",
|
|
73
|
+
* // percentComplete: Number("int"),
|
|
74
|
+
* // errorDetails: { // ErrorDetails
|
|
75
|
+
* // code: "STRING_VALUE",
|
|
76
|
+
* // message: "STRING_VALUE",
|
|
77
|
+
* // },
|
|
78
|
+
* // },
|
|
79
|
+
* // entityUrl: "STRING_VALUE",
|
|
80
|
+
* // revisionUrl: "STRING_VALUE",
|
|
81
|
+
* // },
|
|
82
|
+
* // ],
|
|
83
|
+
* // latestExecution: {
|
|
84
|
+
* // pipelineExecutionId: "STRING_VALUE", // required
|
|
85
|
+
* // status: "STRING_VALUE", // required
|
|
86
|
+
* // },
|
|
87
|
+
* // },
|
|
88
|
+
* // ],
|
|
89
|
+
* // created: new Date("TIMESTAMP"),
|
|
90
|
+
* // updated: new Date("TIMESTAMP"),
|
|
91
|
+
* // };
|
|
92
|
+
*
|
|
40
93
|
* ```
|
|
41
94
|
*
|
|
42
95
|
* @param GetPipelineStateCommandInput - {@link GetPipelineStateCommandInput}
|
|
@@ -51,6 +104,8 @@ export interface GetPipelineStateCommandOutput extends GetPipelineStateOutput, _
|
|
|
51
104
|
* @throws {@link ValidationException} (client fault)
|
|
52
105
|
* <p>The validation was specified in an invalid format.</p>
|
|
53
106
|
*
|
|
107
|
+
* @throws {@link CodePipelineServiceException}
|
|
108
|
+
* <p>Base exception class for all service exceptions from CodePipeline service.</p>
|
|
54
109
|
*
|
|
55
110
|
*/
|
|
56
111
|
export declare class GetPipelineStateCommand extends $Command<GetPipelineStateCommandInput, GetPipelineStateCommandOutput, CodePipelineClientResolvedConfig> {
|