@aws-sdk/client-codepipeline 3.934.0 → 3.935.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-cjs/index.js +183 -182
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +182 -0
- package/dist-es/models/errors.js +493 -0
- package/dist-es/models/models_0.js +1 -675
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +462 -0
- package/dist-types/models/errors.d.ts +512 -0
- package/dist-types/models/models_0.d.ts +1 -974
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +238 -0
- package/dist-types/ts3.4/models/errors.d.ts +335 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -573
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,462 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const JobStatus: {
|
|
6
|
+
readonly Created: "Created";
|
|
7
|
+
readonly Dispatched: "Dispatched";
|
|
8
|
+
readonly Failed: "Failed";
|
|
9
|
+
readonly InProgress: "InProgress";
|
|
10
|
+
readonly Queued: "Queued";
|
|
11
|
+
readonly Succeeded: "Succeeded";
|
|
12
|
+
readonly TimedOut: "TimedOut";
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
18
|
+
/**
|
|
19
|
+
* @public
|
|
20
|
+
* @enum
|
|
21
|
+
*/
|
|
22
|
+
export declare const ActionCategory: {
|
|
23
|
+
readonly Approval: "Approval";
|
|
24
|
+
readonly Build: "Build";
|
|
25
|
+
readonly Compute: "Compute";
|
|
26
|
+
readonly Deploy: "Deploy";
|
|
27
|
+
readonly Invoke: "Invoke";
|
|
28
|
+
readonly Source: "Source";
|
|
29
|
+
readonly Test: "Test";
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
34
|
+
export type ActionCategory = (typeof ActionCategory)[keyof typeof ActionCategory];
|
|
35
|
+
/**
|
|
36
|
+
* @public
|
|
37
|
+
* @enum
|
|
38
|
+
*/
|
|
39
|
+
export declare const ActionConfigurationPropertyType: {
|
|
40
|
+
readonly Boolean: "Boolean";
|
|
41
|
+
readonly Number: "Number";
|
|
42
|
+
readonly String: "String";
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
export type ActionConfigurationPropertyType = (typeof ActionConfigurationPropertyType)[keyof typeof ActionConfigurationPropertyType];
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
* @enum
|
|
51
|
+
*/
|
|
52
|
+
export declare const ActionOwner: {
|
|
53
|
+
readonly AWS: "AWS";
|
|
54
|
+
readonly Custom: "Custom";
|
|
55
|
+
readonly ThirdParty: "ThirdParty";
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
export type ActionOwner = (typeof ActionOwner)[keyof typeof ActionOwner];
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
* @enum
|
|
64
|
+
*/
|
|
65
|
+
export declare const EnvironmentVariableType: {
|
|
66
|
+
readonly PLAINTEXT: "PLAINTEXT";
|
|
67
|
+
readonly SECRETS_MANAGER: "SECRETS_MANAGER";
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
export type EnvironmentVariableType = (typeof EnvironmentVariableType)[keyof typeof EnvironmentVariableType];
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
* @enum
|
|
76
|
+
*/
|
|
77
|
+
export declare const ActionExecutionStatus: {
|
|
78
|
+
readonly Abandoned: "Abandoned";
|
|
79
|
+
readonly Failed: "Failed";
|
|
80
|
+
readonly InProgress: "InProgress";
|
|
81
|
+
readonly Succeeded: "Succeeded";
|
|
82
|
+
};
|
|
83
|
+
/**
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
export type ActionExecutionStatus = (typeof ActionExecutionStatus)[keyof typeof ActionExecutionStatus];
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
* @enum
|
|
90
|
+
*/
|
|
91
|
+
export declare const StartTimeRange: {
|
|
92
|
+
readonly All: "All";
|
|
93
|
+
readonly Latest: "Latest";
|
|
94
|
+
};
|
|
95
|
+
/**
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
98
|
+
export type StartTimeRange = (typeof StartTimeRange)[keyof typeof StartTimeRange];
|
|
99
|
+
/**
|
|
100
|
+
* @public
|
|
101
|
+
* @enum
|
|
102
|
+
*/
|
|
103
|
+
export declare const ExecutorType: {
|
|
104
|
+
readonly JobWorker: "JobWorker";
|
|
105
|
+
readonly Lambda: "Lambda";
|
|
106
|
+
};
|
|
107
|
+
/**
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
export type ExecutorType = (typeof ExecutorType)[keyof typeof ExecutorType];
|
|
111
|
+
/**
|
|
112
|
+
* @public
|
|
113
|
+
* @enum
|
|
114
|
+
*/
|
|
115
|
+
export declare const ApprovalStatus: {
|
|
116
|
+
readonly Approved: "Approved";
|
|
117
|
+
readonly Rejected: "Rejected";
|
|
118
|
+
};
|
|
119
|
+
/**
|
|
120
|
+
* @public
|
|
121
|
+
*/
|
|
122
|
+
export type ApprovalStatus = (typeof ApprovalStatus)[keyof typeof ApprovalStatus];
|
|
123
|
+
/**
|
|
124
|
+
* @public
|
|
125
|
+
* @enum
|
|
126
|
+
*/
|
|
127
|
+
export declare const ArtifactLocationType: {
|
|
128
|
+
readonly S3: "S3";
|
|
129
|
+
};
|
|
130
|
+
/**
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
133
|
+
export type ArtifactLocationType = (typeof ArtifactLocationType)[keyof typeof ArtifactLocationType];
|
|
134
|
+
/**
|
|
135
|
+
* @public
|
|
136
|
+
* @enum
|
|
137
|
+
*/
|
|
138
|
+
export declare const EncryptionKeyType: {
|
|
139
|
+
readonly KMS: "KMS";
|
|
140
|
+
};
|
|
141
|
+
/**
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
144
|
+
export type EncryptionKeyType = (typeof EncryptionKeyType)[keyof typeof EncryptionKeyType];
|
|
145
|
+
/**
|
|
146
|
+
* @public
|
|
147
|
+
* @enum
|
|
148
|
+
*/
|
|
149
|
+
export declare const ArtifactStoreType: {
|
|
150
|
+
readonly S3: "S3";
|
|
151
|
+
};
|
|
152
|
+
/**
|
|
153
|
+
* @public
|
|
154
|
+
*/
|
|
155
|
+
export type ArtifactStoreType = (typeof ArtifactStoreType)[keyof typeof ArtifactStoreType];
|
|
156
|
+
/**
|
|
157
|
+
* @public
|
|
158
|
+
* @enum
|
|
159
|
+
*/
|
|
160
|
+
export declare const Result: {
|
|
161
|
+
readonly FAIL: "FAIL";
|
|
162
|
+
readonly RETRY: "RETRY";
|
|
163
|
+
readonly ROLLBACK: "ROLLBACK";
|
|
164
|
+
readonly SKIP: "SKIP";
|
|
165
|
+
};
|
|
166
|
+
/**
|
|
167
|
+
* @public
|
|
168
|
+
*/
|
|
169
|
+
export type Result = (typeof Result)[keyof typeof Result];
|
|
170
|
+
/**
|
|
171
|
+
* @public
|
|
172
|
+
* @enum
|
|
173
|
+
*/
|
|
174
|
+
export declare const RuleCategory: {
|
|
175
|
+
readonly Rule: "Rule";
|
|
176
|
+
};
|
|
177
|
+
/**
|
|
178
|
+
* @public
|
|
179
|
+
*/
|
|
180
|
+
export type RuleCategory = (typeof RuleCategory)[keyof typeof RuleCategory];
|
|
181
|
+
/**
|
|
182
|
+
* @public
|
|
183
|
+
* @enum
|
|
184
|
+
*/
|
|
185
|
+
export declare const RuleOwner: {
|
|
186
|
+
readonly AWS: "AWS";
|
|
187
|
+
};
|
|
188
|
+
/**
|
|
189
|
+
* @public
|
|
190
|
+
*/
|
|
191
|
+
export type RuleOwner = (typeof RuleOwner)[keyof typeof RuleOwner];
|
|
192
|
+
/**
|
|
193
|
+
* @public
|
|
194
|
+
* @enum
|
|
195
|
+
*/
|
|
196
|
+
export declare const BlockerType: {
|
|
197
|
+
readonly Schedule: "Schedule";
|
|
198
|
+
};
|
|
199
|
+
/**
|
|
200
|
+
* @public
|
|
201
|
+
*/
|
|
202
|
+
export type BlockerType = (typeof BlockerType)[keyof typeof BlockerType];
|
|
203
|
+
/**
|
|
204
|
+
* @public
|
|
205
|
+
* @enum
|
|
206
|
+
*/
|
|
207
|
+
export declare const ExecutionMode: {
|
|
208
|
+
readonly PARALLEL: "PARALLEL";
|
|
209
|
+
readonly QUEUED: "QUEUED";
|
|
210
|
+
readonly SUPERSEDED: "SUPERSEDED";
|
|
211
|
+
};
|
|
212
|
+
/**
|
|
213
|
+
* @public
|
|
214
|
+
*/
|
|
215
|
+
export type ExecutionMode = (typeof ExecutionMode)[keyof typeof ExecutionMode];
|
|
216
|
+
/**
|
|
217
|
+
* @public
|
|
218
|
+
* @enum
|
|
219
|
+
*/
|
|
220
|
+
export declare const PipelineType: {
|
|
221
|
+
readonly V1: "V1";
|
|
222
|
+
readonly V2: "V2";
|
|
223
|
+
};
|
|
224
|
+
/**
|
|
225
|
+
* @public
|
|
226
|
+
*/
|
|
227
|
+
export type PipelineType = (typeof PipelineType)[keyof typeof PipelineType];
|
|
228
|
+
/**
|
|
229
|
+
* @public
|
|
230
|
+
* @enum
|
|
231
|
+
*/
|
|
232
|
+
export declare const StageRetryMode: {
|
|
233
|
+
readonly ALL_ACTIONS: "ALL_ACTIONS";
|
|
234
|
+
readonly FAILED_ACTIONS: "FAILED_ACTIONS";
|
|
235
|
+
};
|
|
236
|
+
/**
|
|
237
|
+
* @public
|
|
238
|
+
*/
|
|
239
|
+
export type StageRetryMode = (typeof StageRetryMode)[keyof typeof StageRetryMode];
|
|
240
|
+
/**
|
|
241
|
+
* @public
|
|
242
|
+
* @enum
|
|
243
|
+
*/
|
|
244
|
+
export declare const GitPullRequestEventType: {
|
|
245
|
+
readonly CLOSED: "CLOSED";
|
|
246
|
+
readonly OPEN: "OPEN";
|
|
247
|
+
readonly UPDATED: "UPDATED";
|
|
248
|
+
};
|
|
249
|
+
/**
|
|
250
|
+
* @public
|
|
251
|
+
*/
|
|
252
|
+
export type GitPullRequestEventType = (typeof GitPullRequestEventType)[keyof typeof GitPullRequestEventType];
|
|
253
|
+
/**
|
|
254
|
+
* @public
|
|
255
|
+
* @enum
|
|
256
|
+
*/
|
|
257
|
+
export declare const PipelineTriggerProviderType: {
|
|
258
|
+
readonly CodeStarSourceConnection: "CodeStarSourceConnection";
|
|
259
|
+
};
|
|
260
|
+
/**
|
|
261
|
+
* @public
|
|
262
|
+
*/
|
|
263
|
+
export type PipelineTriggerProviderType = (typeof PipelineTriggerProviderType)[keyof typeof PipelineTriggerProviderType];
|
|
264
|
+
/**
|
|
265
|
+
* @public
|
|
266
|
+
* @enum
|
|
267
|
+
*/
|
|
268
|
+
export declare const StageTransitionType: {
|
|
269
|
+
readonly Inbound: "Inbound";
|
|
270
|
+
readonly Outbound: "Outbound";
|
|
271
|
+
};
|
|
272
|
+
/**
|
|
273
|
+
* @public
|
|
274
|
+
*/
|
|
275
|
+
export type StageTransitionType = (typeof StageTransitionType)[keyof typeof StageTransitionType];
|
|
276
|
+
/**
|
|
277
|
+
* @public
|
|
278
|
+
* @enum
|
|
279
|
+
*/
|
|
280
|
+
export declare const ExecutionType: {
|
|
281
|
+
readonly ROLLBACK: "ROLLBACK";
|
|
282
|
+
readonly STANDARD: "STANDARD";
|
|
283
|
+
};
|
|
284
|
+
/**
|
|
285
|
+
* @public
|
|
286
|
+
*/
|
|
287
|
+
export type ExecutionType = (typeof ExecutionType)[keyof typeof ExecutionType];
|
|
288
|
+
/**
|
|
289
|
+
* @public
|
|
290
|
+
* @enum
|
|
291
|
+
*/
|
|
292
|
+
export declare const PipelineExecutionStatus: {
|
|
293
|
+
readonly Cancelled: "Cancelled";
|
|
294
|
+
readonly Failed: "Failed";
|
|
295
|
+
readonly InProgress: "InProgress";
|
|
296
|
+
readonly Stopped: "Stopped";
|
|
297
|
+
readonly Stopping: "Stopping";
|
|
298
|
+
readonly Succeeded: "Succeeded";
|
|
299
|
+
readonly Superseded: "Superseded";
|
|
300
|
+
};
|
|
301
|
+
/**
|
|
302
|
+
* @public
|
|
303
|
+
*/
|
|
304
|
+
export type PipelineExecutionStatus = (typeof PipelineExecutionStatus)[keyof typeof PipelineExecutionStatus];
|
|
305
|
+
/**
|
|
306
|
+
* @public
|
|
307
|
+
* @enum
|
|
308
|
+
*/
|
|
309
|
+
export declare const TriggerType: {
|
|
310
|
+
readonly AutomatedRollback: "AutomatedRollback";
|
|
311
|
+
readonly CloudWatchEvent: "CloudWatchEvent";
|
|
312
|
+
readonly CreatePipeline: "CreatePipeline";
|
|
313
|
+
readonly ManualRollback: "ManualRollback";
|
|
314
|
+
readonly PollForSourceChanges: "PollForSourceChanges";
|
|
315
|
+
readonly PutActionRevision: "PutActionRevision";
|
|
316
|
+
readonly StartPipelineExecution: "StartPipelineExecution";
|
|
317
|
+
readonly Webhook: "Webhook";
|
|
318
|
+
readonly WebhookV2: "WebhookV2";
|
|
319
|
+
};
|
|
320
|
+
/**
|
|
321
|
+
* @public
|
|
322
|
+
*/
|
|
323
|
+
export type TriggerType = (typeof TriggerType)[keyof typeof TriggerType];
|
|
324
|
+
/**
|
|
325
|
+
* @public
|
|
326
|
+
* @enum
|
|
327
|
+
*/
|
|
328
|
+
export declare const ConditionExecutionStatus: {
|
|
329
|
+
readonly Abandoned: "Abandoned";
|
|
330
|
+
readonly Cancelled: "Cancelled";
|
|
331
|
+
readonly Errored: "Errored";
|
|
332
|
+
readonly Failed: "Failed";
|
|
333
|
+
readonly InProgress: "InProgress";
|
|
334
|
+
readonly Overridden: "Overridden";
|
|
335
|
+
readonly Succeeded: "Succeeded";
|
|
336
|
+
};
|
|
337
|
+
/**
|
|
338
|
+
* @public
|
|
339
|
+
*/
|
|
340
|
+
export type ConditionExecutionStatus = (typeof ConditionExecutionStatus)[keyof typeof ConditionExecutionStatus];
|
|
341
|
+
/**
|
|
342
|
+
* @public
|
|
343
|
+
* @enum
|
|
344
|
+
*/
|
|
345
|
+
export declare const RuleExecutionStatus: {
|
|
346
|
+
readonly Abandoned: "Abandoned";
|
|
347
|
+
readonly Failed: "Failed";
|
|
348
|
+
readonly InProgress: "InProgress";
|
|
349
|
+
readonly Succeeded: "Succeeded";
|
|
350
|
+
};
|
|
351
|
+
/**
|
|
352
|
+
* @public
|
|
353
|
+
*/
|
|
354
|
+
export type RuleExecutionStatus = (typeof RuleExecutionStatus)[keyof typeof RuleExecutionStatus];
|
|
355
|
+
/**
|
|
356
|
+
* @public
|
|
357
|
+
* @enum
|
|
358
|
+
*/
|
|
359
|
+
export declare const StageExecutionStatus: {
|
|
360
|
+
readonly Cancelled: "Cancelled";
|
|
361
|
+
readonly Failed: "Failed";
|
|
362
|
+
readonly InProgress: "InProgress";
|
|
363
|
+
readonly Skipped: "Skipped";
|
|
364
|
+
readonly Stopped: "Stopped";
|
|
365
|
+
readonly Stopping: "Stopping";
|
|
366
|
+
readonly Succeeded: "Succeeded";
|
|
367
|
+
};
|
|
368
|
+
/**
|
|
369
|
+
* @public
|
|
370
|
+
*/
|
|
371
|
+
export type StageExecutionStatus = (typeof StageExecutionStatus)[keyof typeof StageExecutionStatus];
|
|
372
|
+
/**
|
|
373
|
+
* @public
|
|
374
|
+
* @enum
|
|
375
|
+
*/
|
|
376
|
+
export declare const RetryTrigger: {
|
|
377
|
+
readonly AutomatedStageRetry: "AutomatedStageRetry";
|
|
378
|
+
readonly ManualStageRetry: "ManualStageRetry";
|
|
379
|
+
};
|
|
380
|
+
/**
|
|
381
|
+
* @public
|
|
382
|
+
*/
|
|
383
|
+
export type RetryTrigger = (typeof RetryTrigger)[keyof typeof RetryTrigger];
|
|
384
|
+
/**
|
|
385
|
+
* @public
|
|
386
|
+
* @enum
|
|
387
|
+
*/
|
|
388
|
+
export declare const TargetFilterName: {
|
|
389
|
+
readonly TARGET_STATUS: "TARGET_STATUS";
|
|
390
|
+
};
|
|
391
|
+
/**
|
|
392
|
+
* @public
|
|
393
|
+
*/
|
|
394
|
+
export type TargetFilterName = (typeof TargetFilterName)[keyof typeof TargetFilterName];
|
|
395
|
+
/**
|
|
396
|
+
* @public
|
|
397
|
+
* @enum
|
|
398
|
+
*/
|
|
399
|
+
export declare const RuleConfigurationPropertyType: {
|
|
400
|
+
readonly Boolean: "Boolean";
|
|
401
|
+
readonly Number: "Number";
|
|
402
|
+
readonly String: "String";
|
|
403
|
+
};
|
|
404
|
+
/**
|
|
405
|
+
* @public
|
|
406
|
+
*/
|
|
407
|
+
export type RuleConfigurationPropertyType = (typeof RuleConfigurationPropertyType)[keyof typeof RuleConfigurationPropertyType];
|
|
408
|
+
/**
|
|
409
|
+
* @public
|
|
410
|
+
* @enum
|
|
411
|
+
*/
|
|
412
|
+
export declare const WebhookAuthenticationType: {
|
|
413
|
+
readonly GITHUB_HMAC: "GITHUB_HMAC";
|
|
414
|
+
readonly IP: "IP";
|
|
415
|
+
readonly UNAUTHENTICATED: "UNAUTHENTICATED";
|
|
416
|
+
};
|
|
417
|
+
/**
|
|
418
|
+
* @public
|
|
419
|
+
*/
|
|
420
|
+
export type WebhookAuthenticationType = (typeof WebhookAuthenticationType)[keyof typeof WebhookAuthenticationType];
|
|
421
|
+
/**
|
|
422
|
+
* @public
|
|
423
|
+
* @enum
|
|
424
|
+
*/
|
|
425
|
+
export declare const ConditionType: {
|
|
426
|
+
readonly BEFORE_ENTRY: "BEFORE_ENTRY";
|
|
427
|
+
readonly ON_SUCCESS: "ON_SUCCESS";
|
|
428
|
+
};
|
|
429
|
+
/**
|
|
430
|
+
* @public
|
|
431
|
+
*/
|
|
432
|
+
export type ConditionType = (typeof ConditionType)[keyof typeof ConditionType];
|
|
433
|
+
/**
|
|
434
|
+
* @public
|
|
435
|
+
* @enum
|
|
436
|
+
*/
|
|
437
|
+
export declare const FailureType: {
|
|
438
|
+
readonly ConfigurationError: "ConfigurationError";
|
|
439
|
+
readonly JobFailed: "JobFailed";
|
|
440
|
+
readonly PermissionError: "PermissionError";
|
|
441
|
+
readonly RevisionOutOfSync: "RevisionOutOfSync";
|
|
442
|
+
readonly RevisionUnavailable: "RevisionUnavailable";
|
|
443
|
+
readonly SystemUnavailable: "SystemUnavailable";
|
|
444
|
+
};
|
|
445
|
+
/**
|
|
446
|
+
* @public
|
|
447
|
+
*/
|
|
448
|
+
export type FailureType = (typeof FailureType)[keyof typeof FailureType];
|
|
449
|
+
/**
|
|
450
|
+
* @public
|
|
451
|
+
* @enum
|
|
452
|
+
*/
|
|
453
|
+
export declare const SourceRevisionType: {
|
|
454
|
+
readonly COMMIT_ID: "COMMIT_ID";
|
|
455
|
+
readonly IMAGE_DIGEST: "IMAGE_DIGEST";
|
|
456
|
+
readonly S3_OBJECT_KEY: "S3_OBJECT_KEY";
|
|
457
|
+
readonly S3_OBJECT_VERSION_ID: "S3_OBJECT_VERSION_ID";
|
|
458
|
+
};
|
|
459
|
+
/**
|
|
460
|
+
* @public
|
|
461
|
+
*/
|
|
462
|
+
export type SourceRevisionType = (typeof SourceRevisionType)[keyof typeof SourceRevisionType];
|