@aws-sdk/client-codepipeline 3.933.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
|
@@ -1,43 +1,47 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import {
|
|
2
|
+
ActionCategory,
|
|
3
|
+
ActionConfigurationPropertyType,
|
|
4
|
+
ActionExecutionStatus,
|
|
5
|
+
ActionOwner,
|
|
6
|
+
ApprovalStatus,
|
|
7
|
+
ArtifactLocationType,
|
|
8
|
+
ArtifactStoreType,
|
|
9
|
+
BlockerType,
|
|
10
|
+
ConditionExecutionStatus,
|
|
11
|
+
ConditionType,
|
|
12
|
+
EncryptionKeyType,
|
|
13
|
+
EnvironmentVariableType,
|
|
14
|
+
ExecutionMode,
|
|
15
|
+
ExecutionType,
|
|
16
|
+
ExecutorType,
|
|
17
|
+
FailureType,
|
|
18
|
+
GitPullRequestEventType,
|
|
19
|
+
JobStatus,
|
|
20
|
+
PipelineExecutionStatus,
|
|
21
|
+
PipelineTriggerProviderType,
|
|
22
|
+
PipelineType,
|
|
23
|
+
Result,
|
|
24
|
+
RetryTrigger,
|
|
25
|
+
RuleCategory,
|
|
26
|
+
RuleConfigurationPropertyType,
|
|
27
|
+
RuleExecutionStatus,
|
|
28
|
+
RuleOwner,
|
|
29
|
+
SourceRevisionType,
|
|
30
|
+
StageExecutionStatus,
|
|
31
|
+
StageRetryMode,
|
|
32
|
+
StageTransitionType,
|
|
33
|
+
StartTimeRange,
|
|
34
|
+
TargetFilterName,
|
|
35
|
+
TriggerType,
|
|
36
|
+
WebhookAuthenticationType,
|
|
37
|
+
} from "./enums";
|
|
3
38
|
export interface AcknowledgeJobInput {
|
|
4
39
|
jobId: string | undefined;
|
|
5
40
|
nonce: string | undefined;
|
|
6
41
|
}
|
|
7
|
-
export declare const JobStatus: {
|
|
8
|
-
readonly Created: "Created";
|
|
9
|
-
readonly Dispatched: "Dispatched";
|
|
10
|
-
readonly Failed: "Failed";
|
|
11
|
-
readonly InProgress: "InProgress";
|
|
12
|
-
readonly Queued: "Queued";
|
|
13
|
-
readonly Succeeded: "Succeeded";
|
|
14
|
-
readonly TimedOut: "TimedOut";
|
|
15
|
-
};
|
|
16
|
-
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
17
42
|
export interface AcknowledgeJobOutput {
|
|
18
43
|
status?: JobStatus | undefined;
|
|
19
44
|
}
|
|
20
|
-
export declare class InvalidNonceException extends __BaseException {
|
|
21
|
-
readonly name: "InvalidNonceException";
|
|
22
|
-
readonly $fault: "client";
|
|
23
|
-
constructor(
|
|
24
|
-
opts: __ExceptionOptionType<InvalidNonceException, __BaseException>
|
|
25
|
-
);
|
|
26
|
-
}
|
|
27
|
-
export declare class JobNotFoundException extends __BaseException {
|
|
28
|
-
readonly name: "JobNotFoundException";
|
|
29
|
-
readonly $fault: "client";
|
|
30
|
-
constructor(
|
|
31
|
-
opts: __ExceptionOptionType<JobNotFoundException, __BaseException>
|
|
32
|
-
);
|
|
33
|
-
}
|
|
34
|
-
export declare class ValidationException extends __BaseException {
|
|
35
|
-
readonly name: "ValidationException";
|
|
36
|
-
readonly $fault: "client";
|
|
37
|
-
constructor(
|
|
38
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
39
|
-
);
|
|
40
|
-
}
|
|
41
45
|
export interface AcknowledgeThirdPartyJobInput {
|
|
42
46
|
jobId: string | undefined;
|
|
43
47
|
nonce: string | undefined;
|
|
@@ -46,34 +50,9 @@ export interface AcknowledgeThirdPartyJobInput {
|
|
|
46
50
|
export interface AcknowledgeThirdPartyJobOutput {
|
|
47
51
|
status?: JobStatus | undefined;
|
|
48
52
|
}
|
|
49
|
-
export declare class InvalidClientTokenException extends __BaseException {
|
|
50
|
-
readonly name: "InvalidClientTokenException";
|
|
51
|
-
readonly $fault: "client";
|
|
52
|
-
constructor(
|
|
53
|
-
opts: __ExceptionOptionType<InvalidClientTokenException, __BaseException>
|
|
54
|
-
);
|
|
55
|
-
}
|
|
56
|
-
export declare const ActionCategory: {
|
|
57
|
-
readonly Approval: "Approval";
|
|
58
|
-
readonly Build: "Build";
|
|
59
|
-
readonly Compute: "Compute";
|
|
60
|
-
readonly Deploy: "Deploy";
|
|
61
|
-
readonly Invoke: "Invoke";
|
|
62
|
-
readonly Source: "Source";
|
|
63
|
-
readonly Test: "Test";
|
|
64
|
-
};
|
|
65
|
-
export type ActionCategory =
|
|
66
|
-
(typeof ActionCategory)[keyof typeof ActionCategory];
|
|
67
53
|
export interface ActionConfiguration {
|
|
68
54
|
configuration?: Record<string, string> | undefined;
|
|
69
55
|
}
|
|
70
|
-
export declare const ActionConfigurationPropertyType: {
|
|
71
|
-
readonly Boolean: "Boolean";
|
|
72
|
-
readonly Number: "Number";
|
|
73
|
-
readonly String: "String";
|
|
74
|
-
};
|
|
75
|
-
export type ActionConfigurationPropertyType =
|
|
76
|
-
(typeof ActionConfigurationPropertyType)[keyof typeof ActionConfigurationPropertyType];
|
|
77
56
|
export interface ActionConfigurationProperty {
|
|
78
57
|
name: string | undefined;
|
|
79
58
|
required: boolean | undefined;
|
|
@@ -87,24 +66,12 @@ export interface ActionContext {
|
|
|
87
66
|
name?: string | undefined;
|
|
88
67
|
actionExecutionId?: string | undefined;
|
|
89
68
|
}
|
|
90
|
-
export declare const ActionOwner: {
|
|
91
|
-
readonly AWS: "AWS";
|
|
92
|
-
readonly Custom: "Custom";
|
|
93
|
-
readonly ThirdParty: "ThirdParty";
|
|
94
|
-
};
|
|
95
|
-
export type ActionOwner = (typeof ActionOwner)[keyof typeof ActionOwner];
|
|
96
69
|
export interface ActionTypeId {
|
|
97
70
|
category: ActionCategory | undefined;
|
|
98
71
|
owner: ActionOwner | undefined;
|
|
99
72
|
provider: string | undefined;
|
|
100
73
|
version: string | undefined;
|
|
101
74
|
}
|
|
102
|
-
export declare const EnvironmentVariableType: {
|
|
103
|
-
readonly PLAINTEXT: "PLAINTEXT";
|
|
104
|
-
readonly SECRETS_MANAGER: "SECRETS_MANAGER";
|
|
105
|
-
};
|
|
106
|
-
export type EnvironmentVariableType =
|
|
107
|
-
(typeof EnvironmentVariableType)[keyof typeof EnvironmentVariableType];
|
|
108
75
|
export interface EnvironmentVariable {
|
|
109
76
|
name: string | undefined;
|
|
110
77
|
value: string | undefined;
|
|
@@ -136,14 +103,6 @@ export interface ErrorDetails {
|
|
|
136
103
|
code?: string | undefined;
|
|
137
104
|
message?: string | undefined;
|
|
138
105
|
}
|
|
139
|
-
export declare const ActionExecutionStatus: {
|
|
140
|
-
readonly Abandoned: "Abandoned";
|
|
141
|
-
readonly Failed: "Failed";
|
|
142
|
-
readonly InProgress: "InProgress";
|
|
143
|
-
readonly Succeeded: "Succeeded";
|
|
144
|
-
};
|
|
145
|
-
export type ActionExecutionStatus =
|
|
146
|
-
(typeof ActionExecutionStatus)[keyof typeof ActionExecutionStatus];
|
|
147
106
|
export interface ActionExecution {
|
|
148
107
|
actionExecutionId?: string | undefined;
|
|
149
108
|
status?: ActionExecutionStatus | undefined;
|
|
@@ -199,12 +158,6 @@ export interface ActionExecutionDetail {
|
|
|
199
158
|
input?: ActionExecutionInput | undefined;
|
|
200
159
|
output?: ActionExecutionOutput | undefined;
|
|
201
160
|
}
|
|
202
|
-
export declare const StartTimeRange: {
|
|
203
|
-
readonly All: "All";
|
|
204
|
-
readonly Latest: "Latest";
|
|
205
|
-
};
|
|
206
|
-
export type StartTimeRange =
|
|
207
|
-
(typeof StartTimeRange)[keyof typeof StartTimeRange];
|
|
208
161
|
export interface LatestInPipelineExecutionFilter {
|
|
209
162
|
pipelineExecutionId: string | undefined;
|
|
210
163
|
startTimeRange: StartTimeRange | undefined;
|
|
@@ -213,23 +166,6 @@ export interface ActionExecutionFilter {
|
|
|
213
166
|
pipelineExecutionId?: string | undefined;
|
|
214
167
|
latestInPipelineExecution?: LatestInPipelineExecutionFilter | undefined;
|
|
215
168
|
}
|
|
216
|
-
export declare class ActionExecutionNotFoundException extends __BaseException {
|
|
217
|
-
readonly name: "ActionExecutionNotFoundException";
|
|
218
|
-
readonly $fault: "client";
|
|
219
|
-
constructor(
|
|
220
|
-
opts: __ExceptionOptionType<
|
|
221
|
-
ActionExecutionNotFoundException,
|
|
222
|
-
__BaseException
|
|
223
|
-
>
|
|
224
|
-
);
|
|
225
|
-
}
|
|
226
|
-
export declare class ActionNotFoundException extends __BaseException {
|
|
227
|
-
readonly name: "ActionNotFoundException";
|
|
228
|
-
readonly $fault: "client";
|
|
229
|
-
constructor(
|
|
230
|
-
opts: __ExceptionOptionType<ActionNotFoundException, __BaseException>
|
|
231
|
-
);
|
|
232
|
-
}
|
|
233
169
|
export interface ActionRevision {
|
|
234
170
|
revisionId: string | undefined;
|
|
235
171
|
revisionChangeId: string | undefined;
|
|
@@ -274,11 +210,6 @@ export interface ExecutorConfiguration {
|
|
|
274
210
|
lambdaExecutorConfiguration?: LambdaExecutorConfiguration | undefined;
|
|
275
211
|
jobWorkerExecutorConfiguration?: JobWorkerExecutorConfiguration | undefined;
|
|
276
212
|
}
|
|
277
|
-
export declare const ExecutorType: {
|
|
278
|
-
readonly JobWorker: "JobWorker";
|
|
279
|
-
readonly Lambda: "Lambda";
|
|
280
|
-
};
|
|
281
|
-
export type ExecutorType = (typeof ExecutorType)[keyof typeof ExecutorType];
|
|
282
213
|
export interface ActionTypeExecutor {
|
|
283
214
|
configuration: ExecutorConfiguration | undefined;
|
|
284
215
|
type: ExecutorType | undefined;
|
|
@@ -318,29 +249,6 @@ export interface ActionTypeDeclaration {
|
|
|
318
249
|
properties?: ActionTypeProperty[] | undefined;
|
|
319
250
|
urls?: ActionTypeUrls | undefined;
|
|
320
251
|
}
|
|
321
|
-
export declare class ActionTypeNotFoundException extends __BaseException {
|
|
322
|
-
readonly name: "ActionTypeNotFoundException";
|
|
323
|
-
readonly $fault: "client";
|
|
324
|
-
constructor(
|
|
325
|
-
opts: __ExceptionOptionType<ActionTypeNotFoundException, __BaseException>
|
|
326
|
-
);
|
|
327
|
-
}
|
|
328
|
-
export declare class ApprovalAlreadyCompletedException extends __BaseException {
|
|
329
|
-
readonly name: "ApprovalAlreadyCompletedException";
|
|
330
|
-
readonly $fault: "client";
|
|
331
|
-
constructor(
|
|
332
|
-
opts: __ExceptionOptionType<
|
|
333
|
-
ApprovalAlreadyCompletedException,
|
|
334
|
-
__BaseException
|
|
335
|
-
>
|
|
336
|
-
);
|
|
337
|
-
}
|
|
338
|
-
export declare const ApprovalStatus: {
|
|
339
|
-
readonly Approved: "Approved";
|
|
340
|
-
readonly Rejected: "Rejected";
|
|
341
|
-
};
|
|
342
|
-
export type ApprovalStatus =
|
|
343
|
-
(typeof ApprovalStatus)[keyof typeof ApprovalStatus];
|
|
344
252
|
export interface ApprovalResult {
|
|
345
253
|
summary: string | undefined;
|
|
346
254
|
status: ApprovalStatus | undefined;
|
|
@@ -349,11 +257,6 @@ export interface S3ArtifactLocation {
|
|
|
349
257
|
bucketName: string | undefined;
|
|
350
258
|
objectKey: string | undefined;
|
|
351
259
|
}
|
|
352
|
-
export declare const ArtifactLocationType: {
|
|
353
|
-
readonly S3: "S3";
|
|
354
|
-
};
|
|
355
|
-
export type ArtifactLocationType =
|
|
356
|
-
(typeof ArtifactLocationType)[keyof typeof ArtifactLocationType];
|
|
357
260
|
export interface ArtifactLocation {
|
|
358
261
|
type?: ArtifactLocationType | undefined;
|
|
359
262
|
s3Location?: S3ArtifactLocation | undefined;
|
|
@@ -371,20 +274,10 @@ export interface ArtifactRevision {
|
|
|
371
274
|
created?: Date | undefined;
|
|
372
275
|
revisionUrl?: string | undefined;
|
|
373
276
|
}
|
|
374
|
-
export declare const EncryptionKeyType: {
|
|
375
|
-
readonly KMS: "KMS";
|
|
376
|
-
};
|
|
377
|
-
export type EncryptionKeyType =
|
|
378
|
-
(typeof EncryptionKeyType)[keyof typeof EncryptionKeyType];
|
|
379
277
|
export interface EncryptionKey {
|
|
380
278
|
id: string | undefined;
|
|
381
279
|
type: EncryptionKeyType | undefined;
|
|
382
280
|
}
|
|
383
|
-
export declare const ArtifactStoreType: {
|
|
384
|
-
readonly S3: "S3";
|
|
385
|
-
};
|
|
386
|
-
export type ArtifactStoreType =
|
|
387
|
-
(typeof ArtifactStoreType)[keyof typeof ArtifactStoreType];
|
|
388
281
|
export interface ArtifactStore {
|
|
389
282
|
type: ArtifactStoreType | undefined;
|
|
390
283
|
location: string | undefined;
|
|
@@ -395,21 +288,6 @@ export interface AWSSessionCredentials {
|
|
|
395
288
|
secretAccessKey: string | undefined;
|
|
396
289
|
sessionToken: string | undefined;
|
|
397
290
|
}
|
|
398
|
-
export declare const Result: {
|
|
399
|
-
readonly FAIL: "FAIL";
|
|
400
|
-
readonly RETRY: "RETRY";
|
|
401
|
-
readonly ROLLBACK: "ROLLBACK";
|
|
402
|
-
readonly SKIP: "SKIP";
|
|
403
|
-
};
|
|
404
|
-
export type Result = (typeof Result)[keyof typeof Result];
|
|
405
|
-
export declare const RuleCategory: {
|
|
406
|
-
readonly Rule: "Rule";
|
|
407
|
-
};
|
|
408
|
-
export type RuleCategory = (typeof RuleCategory)[keyof typeof RuleCategory];
|
|
409
|
-
export declare const RuleOwner: {
|
|
410
|
-
readonly AWS: "AWS";
|
|
411
|
-
};
|
|
412
|
-
export type RuleOwner = (typeof RuleOwner)[keyof typeof RuleOwner];
|
|
413
291
|
export interface RuleTypeId {
|
|
414
292
|
category: RuleCategory | undefined;
|
|
415
293
|
owner?: RuleOwner | undefined;
|
|
@@ -433,24 +311,10 @@ export interface Condition {
|
|
|
433
311
|
export interface BeforeEntryConditions {
|
|
434
312
|
conditions: Condition[] | undefined;
|
|
435
313
|
}
|
|
436
|
-
export declare const BlockerType: {
|
|
437
|
-
readonly Schedule: "Schedule";
|
|
438
|
-
};
|
|
439
|
-
export type BlockerType = (typeof BlockerType)[keyof typeof BlockerType];
|
|
440
314
|
export interface BlockerDeclaration {
|
|
441
315
|
name: string | undefined;
|
|
442
316
|
type: BlockerType | undefined;
|
|
443
317
|
}
|
|
444
|
-
export declare class ConcurrentModificationException extends __BaseException {
|
|
445
|
-
readonly name: "ConcurrentModificationException";
|
|
446
|
-
readonly $fault: "client";
|
|
447
|
-
constructor(
|
|
448
|
-
opts: __ExceptionOptionType<
|
|
449
|
-
ConcurrentModificationException,
|
|
450
|
-
__BaseException
|
|
451
|
-
>
|
|
452
|
-
);
|
|
453
|
-
}
|
|
454
318
|
export interface Tag {
|
|
455
319
|
key: string | undefined;
|
|
456
320
|
value: string | undefined;
|
|
@@ -469,44 +333,6 @@ export interface CreateCustomActionTypeOutput {
|
|
|
469
333
|
actionType: ActionType | undefined;
|
|
470
334
|
tags?: Tag[] | undefined;
|
|
471
335
|
}
|
|
472
|
-
export declare class InvalidTagsException extends __BaseException {
|
|
473
|
-
readonly name: "InvalidTagsException";
|
|
474
|
-
readonly $fault: "client";
|
|
475
|
-
constructor(
|
|
476
|
-
opts: __ExceptionOptionType<InvalidTagsException, __BaseException>
|
|
477
|
-
);
|
|
478
|
-
}
|
|
479
|
-
export declare class LimitExceededException extends __BaseException {
|
|
480
|
-
readonly name: "LimitExceededException";
|
|
481
|
-
readonly $fault: "client";
|
|
482
|
-
constructor(
|
|
483
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
484
|
-
);
|
|
485
|
-
}
|
|
486
|
-
export declare class TooManyTagsException extends __BaseException {
|
|
487
|
-
readonly name: "TooManyTagsException";
|
|
488
|
-
readonly $fault: "client";
|
|
489
|
-
constructor(
|
|
490
|
-
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
491
|
-
);
|
|
492
|
-
}
|
|
493
|
-
export declare const ExecutionMode: {
|
|
494
|
-
readonly PARALLEL: "PARALLEL";
|
|
495
|
-
readonly QUEUED: "QUEUED";
|
|
496
|
-
readonly SUPERSEDED: "SUPERSEDED";
|
|
497
|
-
};
|
|
498
|
-
export type ExecutionMode = (typeof ExecutionMode)[keyof typeof ExecutionMode];
|
|
499
|
-
export declare const PipelineType: {
|
|
500
|
-
readonly V1: "V1";
|
|
501
|
-
readonly V2: "V2";
|
|
502
|
-
};
|
|
503
|
-
export type PipelineType = (typeof PipelineType)[keyof typeof PipelineType];
|
|
504
|
-
export declare const StageRetryMode: {
|
|
505
|
-
readonly ALL_ACTIONS: "ALL_ACTIONS";
|
|
506
|
-
readonly FAILED_ACTIONS: "FAILED_ACTIONS";
|
|
507
|
-
};
|
|
508
|
-
export type StageRetryMode =
|
|
509
|
-
(typeof StageRetryMode)[keyof typeof StageRetryMode];
|
|
510
336
|
export interface RetryConfiguration {
|
|
511
337
|
retryMode?: StageRetryMode | undefined;
|
|
512
338
|
}
|
|
@@ -530,13 +356,6 @@ export interface GitBranchFilterCriteria {
|
|
|
530
356
|
includes?: string[] | undefined;
|
|
531
357
|
excludes?: string[] | undefined;
|
|
532
358
|
}
|
|
533
|
-
export declare const GitPullRequestEventType: {
|
|
534
|
-
readonly CLOSED: "CLOSED";
|
|
535
|
-
readonly OPEN: "OPEN";
|
|
536
|
-
readonly UPDATED: "UPDATED";
|
|
537
|
-
};
|
|
538
|
-
export type GitPullRequestEventType =
|
|
539
|
-
(typeof GitPullRequestEventType)[keyof typeof GitPullRequestEventType];
|
|
540
359
|
export interface GitFilePathFilterCriteria {
|
|
541
360
|
includes?: string[] | undefined;
|
|
542
361
|
excludes?: string[] | undefined;
|
|
@@ -560,11 +379,6 @@ export interface GitConfiguration {
|
|
|
560
379
|
push?: GitPushFilter[] | undefined;
|
|
561
380
|
pullRequest?: GitPullRequestFilter[] | undefined;
|
|
562
381
|
}
|
|
563
|
-
export declare const PipelineTriggerProviderType: {
|
|
564
|
-
readonly CodeStarSourceConnection: "CodeStarSourceConnection";
|
|
565
|
-
};
|
|
566
|
-
export type PipelineTriggerProviderType =
|
|
567
|
-
(typeof PipelineTriggerProviderType)[keyof typeof PipelineTriggerProviderType];
|
|
568
382
|
export interface PipelineTriggerDeclaration {
|
|
569
383
|
providerType: PipelineTriggerProviderType | undefined;
|
|
570
384
|
gitConfiguration: GitConfiguration | undefined;
|
|
@@ -594,50 +408,6 @@ export interface CreatePipelineOutput {
|
|
|
594
408
|
pipeline?: PipelineDeclaration | undefined;
|
|
595
409
|
tags?: Tag[] | undefined;
|
|
596
410
|
}
|
|
597
|
-
export declare class InvalidActionDeclarationException extends __BaseException {
|
|
598
|
-
readonly name: "InvalidActionDeclarationException";
|
|
599
|
-
readonly $fault: "client";
|
|
600
|
-
constructor(
|
|
601
|
-
opts: __ExceptionOptionType<
|
|
602
|
-
InvalidActionDeclarationException,
|
|
603
|
-
__BaseException
|
|
604
|
-
>
|
|
605
|
-
);
|
|
606
|
-
}
|
|
607
|
-
export declare class InvalidBlockerDeclarationException extends __BaseException {
|
|
608
|
-
readonly name: "InvalidBlockerDeclarationException";
|
|
609
|
-
readonly $fault: "client";
|
|
610
|
-
constructor(
|
|
611
|
-
opts: __ExceptionOptionType<
|
|
612
|
-
InvalidBlockerDeclarationException,
|
|
613
|
-
__BaseException
|
|
614
|
-
>
|
|
615
|
-
);
|
|
616
|
-
}
|
|
617
|
-
export declare class InvalidStageDeclarationException extends __BaseException {
|
|
618
|
-
readonly name: "InvalidStageDeclarationException";
|
|
619
|
-
readonly $fault: "client";
|
|
620
|
-
constructor(
|
|
621
|
-
opts: __ExceptionOptionType<
|
|
622
|
-
InvalidStageDeclarationException,
|
|
623
|
-
__BaseException
|
|
624
|
-
>
|
|
625
|
-
);
|
|
626
|
-
}
|
|
627
|
-
export declare class InvalidStructureException extends __BaseException {
|
|
628
|
-
readonly name: "InvalidStructureException";
|
|
629
|
-
readonly $fault: "client";
|
|
630
|
-
constructor(
|
|
631
|
-
opts: __ExceptionOptionType<InvalidStructureException, __BaseException>
|
|
632
|
-
);
|
|
633
|
-
}
|
|
634
|
-
export declare class PipelineNameInUseException extends __BaseException {
|
|
635
|
-
readonly name: "PipelineNameInUseException";
|
|
636
|
-
readonly $fault: "client";
|
|
637
|
-
constructor(
|
|
638
|
-
opts: __ExceptionOptionType<PipelineNameInUseException, __BaseException>
|
|
639
|
-
);
|
|
640
|
-
}
|
|
641
411
|
export interface DeleteCustomActionTypeInput {
|
|
642
412
|
category: ActionCategory | undefined;
|
|
643
413
|
provider: string | undefined;
|
|
@@ -654,39 +424,12 @@ export interface DeregisterWebhookWithThirdPartyInput {
|
|
|
654
424
|
webhookName?: string | undefined;
|
|
655
425
|
}
|
|
656
426
|
export interface DeregisterWebhookWithThirdPartyOutput {}
|
|
657
|
-
export declare class WebhookNotFoundException extends __BaseException {
|
|
658
|
-
readonly name: "WebhookNotFoundException";
|
|
659
|
-
readonly $fault: "client";
|
|
660
|
-
constructor(
|
|
661
|
-
opts: __ExceptionOptionType<WebhookNotFoundException, __BaseException>
|
|
662
|
-
);
|
|
663
|
-
}
|
|
664
|
-
export declare const StageTransitionType: {
|
|
665
|
-
readonly Inbound: "Inbound";
|
|
666
|
-
readonly Outbound: "Outbound";
|
|
667
|
-
};
|
|
668
|
-
export type StageTransitionType =
|
|
669
|
-
(typeof StageTransitionType)[keyof typeof StageTransitionType];
|
|
670
427
|
export interface DisableStageTransitionInput {
|
|
671
428
|
pipelineName: string | undefined;
|
|
672
429
|
stageName: string | undefined;
|
|
673
430
|
transitionType: StageTransitionType | undefined;
|
|
674
431
|
reason: string | undefined;
|
|
675
432
|
}
|
|
676
|
-
export declare class PipelineNotFoundException extends __BaseException {
|
|
677
|
-
readonly name: "PipelineNotFoundException";
|
|
678
|
-
readonly $fault: "client";
|
|
679
|
-
constructor(
|
|
680
|
-
opts: __ExceptionOptionType<PipelineNotFoundException, __BaseException>
|
|
681
|
-
);
|
|
682
|
-
}
|
|
683
|
-
export declare class StageNotFoundException extends __BaseException {
|
|
684
|
-
readonly name: "StageNotFoundException";
|
|
685
|
-
readonly $fault: "client";
|
|
686
|
-
constructor(
|
|
687
|
-
opts: __ExceptionOptionType<StageNotFoundException, __BaseException>
|
|
688
|
-
);
|
|
689
|
-
}
|
|
690
433
|
export interface EnableStageTransitionInput {
|
|
691
434
|
pipelineName: string | undefined;
|
|
692
435
|
stageName: string | undefined;
|
|
@@ -746,51 +489,13 @@ export interface GetPipelineOutput {
|
|
|
746
489
|
pipeline?: PipelineDeclaration | undefined;
|
|
747
490
|
metadata?: PipelineMetadata | undefined;
|
|
748
491
|
}
|
|
749
|
-
export declare class PipelineVersionNotFoundException extends __BaseException {
|
|
750
|
-
readonly name: "PipelineVersionNotFoundException";
|
|
751
|
-
readonly $fault: "client";
|
|
752
|
-
constructor(
|
|
753
|
-
opts: __ExceptionOptionType<
|
|
754
|
-
PipelineVersionNotFoundException,
|
|
755
|
-
__BaseException
|
|
756
|
-
>
|
|
757
|
-
);
|
|
758
|
-
}
|
|
759
492
|
export interface GetPipelineExecutionInput {
|
|
760
493
|
pipelineName: string | undefined;
|
|
761
494
|
pipelineExecutionId: string | undefined;
|
|
762
495
|
}
|
|
763
|
-
export declare const ExecutionType: {
|
|
764
|
-
readonly ROLLBACK: "ROLLBACK";
|
|
765
|
-
readonly STANDARD: "STANDARD";
|
|
766
|
-
};
|
|
767
|
-
export type ExecutionType = (typeof ExecutionType)[keyof typeof ExecutionType];
|
|
768
496
|
export interface PipelineRollbackMetadata {
|
|
769
497
|
rollbackTargetPipelineExecutionId?: string | undefined;
|
|
770
498
|
}
|
|
771
|
-
export declare const PipelineExecutionStatus: {
|
|
772
|
-
readonly Cancelled: "Cancelled";
|
|
773
|
-
readonly Failed: "Failed";
|
|
774
|
-
readonly InProgress: "InProgress";
|
|
775
|
-
readonly Stopped: "Stopped";
|
|
776
|
-
readonly Stopping: "Stopping";
|
|
777
|
-
readonly Succeeded: "Succeeded";
|
|
778
|
-
readonly Superseded: "Superseded";
|
|
779
|
-
};
|
|
780
|
-
export type PipelineExecutionStatus =
|
|
781
|
-
(typeof PipelineExecutionStatus)[keyof typeof PipelineExecutionStatus];
|
|
782
|
-
export declare const TriggerType: {
|
|
783
|
-
readonly AutomatedRollback: "AutomatedRollback";
|
|
784
|
-
readonly CloudWatchEvent: "CloudWatchEvent";
|
|
785
|
-
readonly CreatePipeline: "CreatePipeline";
|
|
786
|
-
readonly ManualRollback: "ManualRollback";
|
|
787
|
-
readonly PollForSourceChanges: "PollForSourceChanges";
|
|
788
|
-
readonly PutActionRevision: "PutActionRevision";
|
|
789
|
-
readonly StartPipelineExecution: "StartPipelineExecution";
|
|
790
|
-
readonly Webhook: "Webhook";
|
|
791
|
-
readonly WebhookV2: "WebhookV2";
|
|
792
|
-
};
|
|
793
|
-
export type TriggerType = (typeof TriggerType)[keyof typeof TriggerType];
|
|
794
499
|
export interface ExecutionTrigger {
|
|
795
500
|
triggerType?: TriggerType | undefined;
|
|
796
501
|
triggerDetail?: string | undefined;
|
|
@@ -815,30 +520,9 @@ export interface PipelineExecution {
|
|
|
815
520
|
export interface GetPipelineExecutionOutput {
|
|
816
521
|
pipelineExecution?: PipelineExecution | undefined;
|
|
817
522
|
}
|
|
818
|
-
export declare class PipelineExecutionNotFoundException extends __BaseException {
|
|
819
|
-
readonly name: "PipelineExecutionNotFoundException";
|
|
820
|
-
readonly $fault: "client";
|
|
821
|
-
constructor(
|
|
822
|
-
opts: __ExceptionOptionType<
|
|
823
|
-
PipelineExecutionNotFoundException,
|
|
824
|
-
__BaseException
|
|
825
|
-
>
|
|
826
|
-
);
|
|
827
|
-
}
|
|
828
523
|
export interface GetPipelineStateInput {
|
|
829
524
|
name: string | undefined;
|
|
830
525
|
}
|
|
831
|
-
export declare const ConditionExecutionStatus: {
|
|
832
|
-
readonly Abandoned: "Abandoned";
|
|
833
|
-
readonly Cancelled: "Cancelled";
|
|
834
|
-
readonly Errored: "Errored";
|
|
835
|
-
readonly Failed: "Failed";
|
|
836
|
-
readonly InProgress: "InProgress";
|
|
837
|
-
readonly Overridden: "Overridden";
|
|
838
|
-
readonly Succeeded: "Succeeded";
|
|
839
|
-
};
|
|
840
|
-
export type ConditionExecutionStatus =
|
|
841
|
-
(typeof ConditionExecutionStatus)[keyof typeof ConditionExecutionStatus];
|
|
842
526
|
export interface ConditionExecution {
|
|
843
527
|
status?: ConditionExecutionStatus | undefined;
|
|
844
528
|
summary?: string | undefined;
|
|
@@ -849,14 +533,6 @@ export interface RuleRevision {
|
|
|
849
533
|
revisionChangeId: string | undefined;
|
|
850
534
|
created: Date | undefined;
|
|
851
535
|
}
|
|
852
|
-
export declare const RuleExecutionStatus: {
|
|
853
|
-
readonly Abandoned: "Abandoned";
|
|
854
|
-
readonly Failed: "Failed";
|
|
855
|
-
readonly InProgress: "InProgress";
|
|
856
|
-
readonly Succeeded: "Succeeded";
|
|
857
|
-
};
|
|
858
|
-
export type RuleExecutionStatus =
|
|
859
|
-
(typeof RuleExecutionStatus)[keyof typeof RuleExecutionStatus];
|
|
860
536
|
export interface RuleExecution {
|
|
861
537
|
ruleExecutionId?: string | undefined;
|
|
862
538
|
status?: RuleExecutionStatus | undefined;
|
|
@@ -887,17 +563,6 @@ export interface StageConditionState {
|
|
|
887
563
|
latestExecution?: StageConditionsExecution | undefined;
|
|
888
564
|
conditionStates?: ConditionState[] | undefined;
|
|
889
565
|
}
|
|
890
|
-
export declare const StageExecutionStatus: {
|
|
891
|
-
readonly Cancelled: "Cancelled";
|
|
892
|
-
readonly Failed: "Failed";
|
|
893
|
-
readonly InProgress: "InProgress";
|
|
894
|
-
readonly Skipped: "Skipped";
|
|
895
|
-
readonly Stopped: "Stopped";
|
|
896
|
-
readonly Stopping: "Stopping";
|
|
897
|
-
readonly Succeeded: "Succeeded";
|
|
898
|
-
};
|
|
899
|
-
export type StageExecutionStatus =
|
|
900
|
-
(typeof StageExecutionStatus)[keyof typeof StageExecutionStatus];
|
|
901
566
|
export interface StageExecution {
|
|
902
567
|
pipelineExecutionId: string | undefined;
|
|
903
568
|
status: StageExecutionStatus | undefined;
|
|
@@ -909,11 +574,6 @@ export interface TransitionState {
|
|
|
909
574
|
lastChangedAt?: Date | undefined;
|
|
910
575
|
disabledReason?: string | undefined;
|
|
911
576
|
}
|
|
912
|
-
export declare const RetryTrigger: {
|
|
913
|
-
readonly AutomatedStageRetry: "AutomatedStageRetry";
|
|
914
|
-
readonly ManualStageRetry: "ManualStageRetry";
|
|
915
|
-
};
|
|
916
|
-
export type RetryTrigger = (typeof RetryTrigger)[keyof typeof RetryTrigger];
|
|
917
577
|
export interface RetryStageMetadata {
|
|
918
578
|
autoStageRetryAttempt?: number | undefined;
|
|
919
579
|
manualStageRetryAttempt?: number | undefined;
|
|
@@ -960,20 +620,6 @@ export interface ThirdPartyJobDetails {
|
|
|
960
620
|
export interface GetThirdPartyJobDetailsOutput {
|
|
961
621
|
jobDetails?: ThirdPartyJobDetails | undefined;
|
|
962
622
|
}
|
|
963
|
-
export declare class InvalidJobException extends __BaseException {
|
|
964
|
-
readonly name: "InvalidJobException";
|
|
965
|
-
readonly $fault: "client";
|
|
966
|
-
constructor(
|
|
967
|
-
opts: __ExceptionOptionType<InvalidJobException, __BaseException>
|
|
968
|
-
);
|
|
969
|
-
}
|
|
970
|
-
export declare class InvalidNextTokenException extends __BaseException {
|
|
971
|
-
readonly name: "InvalidNextTokenException";
|
|
972
|
-
readonly $fault: "client";
|
|
973
|
-
constructor(
|
|
974
|
-
opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
|
|
975
|
-
);
|
|
976
|
-
}
|
|
977
623
|
export interface ListActionExecutionsInput {
|
|
978
624
|
pipelineName: string | undefined;
|
|
979
625
|
filter?: ActionExecutionFilter | undefined;
|
|
@@ -993,11 +639,6 @@ export interface ListActionTypesOutput {
|
|
|
993
639
|
actionTypes: ActionType[] | undefined;
|
|
994
640
|
nextToken?: string | undefined;
|
|
995
641
|
}
|
|
996
|
-
export declare const TargetFilterName: {
|
|
997
|
-
readonly TARGET_STATUS: "TARGET_STATUS";
|
|
998
|
-
};
|
|
999
|
-
export type TargetFilterName =
|
|
1000
|
-
(typeof TargetFilterName)[keyof typeof TargetFilterName];
|
|
1001
642
|
export interface TargetFilter {
|
|
1002
643
|
name?: TargetFilterName | undefined;
|
|
1003
644
|
values?: string[] | undefined;
|
|
@@ -1134,13 +775,6 @@ export interface ListRuleTypesInput {
|
|
|
1134
775
|
ruleOwnerFilter?: RuleOwner | undefined;
|
|
1135
776
|
regionFilter?: string | undefined;
|
|
1136
777
|
}
|
|
1137
|
-
export declare const RuleConfigurationPropertyType: {
|
|
1138
|
-
readonly Boolean: "Boolean";
|
|
1139
|
-
readonly Number: "Number";
|
|
1140
|
-
readonly String: "String";
|
|
1141
|
-
};
|
|
1142
|
-
export type RuleConfigurationPropertyType =
|
|
1143
|
-
(typeof RuleConfigurationPropertyType)[keyof typeof RuleConfigurationPropertyType];
|
|
1144
778
|
export interface RuleConfigurationProperty {
|
|
1145
779
|
name: string | undefined;
|
|
1146
780
|
required: boolean | undefined;
|
|
@@ -1165,13 +799,6 @@ export interface RuleType {
|
|
|
1165
799
|
export interface ListRuleTypesOutput {
|
|
1166
800
|
ruleTypes: RuleType[] | undefined;
|
|
1167
801
|
}
|
|
1168
|
-
export declare class InvalidArnException extends __BaseException {
|
|
1169
|
-
readonly name: "InvalidArnException";
|
|
1170
|
-
readonly $fault: "client";
|
|
1171
|
-
constructor(
|
|
1172
|
-
opts: __ExceptionOptionType<InvalidArnException, __BaseException>
|
|
1173
|
-
);
|
|
1174
|
-
}
|
|
1175
802
|
export interface ListTagsForResourceInput {
|
|
1176
803
|
resourceArn: string | undefined;
|
|
1177
804
|
nextToken?: string | undefined;
|
|
@@ -1181,24 +808,10 @@ export interface ListTagsForResourceOutput {
|
|
|
1181
808
|
tags?: Tag[] | undefined;
|
|
1182
809
|
nextToken?: string | undefined;
|
|
1183
810
|
}
|
|
1184
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
1185
|
-
readonly name: "ResourceNotFoundException";
|
|
1186
|
-
readonly $fault: "client";
|
|
1187
|
-
constructor(
|
|
1188
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
1189
|
-
);
|
|
1190
|
-
}
|
|
1191
811
|
export interface ListWebhooksInput {
|
|
1192
812
|
NextToken?: string | undefined;
|
|
1193
813
|
MaxResults?: number | undefined;
|
|
1194
814
|
}
|
|
1195
|
-
export declare const WebhookAuthenticationType: {
|
|
1196
|
-
readonly GITHUB_HMAC: "GITHUB_HMAC";
|
|
1197
|
-
readonly IP: "IP";
|
|
1198
|
-
readonly UNAUTHENTICATED: "UNAUTHENTICATED";
|
|
1199
|
-
};
|
|
1200
|
-
export type WebhookAuthenticationType =
|
|
1201
|
-
(typeof WebhookAuthenticationType)[keyof typeof WebhookAuthenticationType];
|
|
1202
815
|
export interface WebhookAuthConfiguration {
|
|
1203
816
|
AllowedIPRange?: string | undefined;
|
|
1204
817
|
SecretToken?: string | undefined;
|
|
@@ -1228,46 +841,6 @@ export interface ListWebhooksOutput {
|
|
|
1228
841
|
webhooks?: ListWebhookItem[] | undefined;
|
|
1229
842
|
NextToken?: string | undefined;
|
|
1230
843
|
}
|
|
1231
|
-
export declare class ConcurrentPipelineExecutionsLimitExceededException extends __BaseException {
|
|
1232
|
-
readonly name: "ConcurrentPipelineExecutionsLimitExceededException";
|
|
1233
|
-
readonly $fault: "client";
|
|
1234
|
-
constructor(
|
|
1235
|
-
opts: __ExceptionOptionType<
|
|
1236
|
-
ConcurrentPipelineExecutionsLimitExceededException,
|
|
1237
|
-
__BaseException
|
|
1238
|
-
>
|
|
1239
|
-
);
|
|
1240
|
-
}
|
|
1241
|
-
export declare class ConditionNotOverridableException extends __BaseException {
|
|
1242
|
-
readonly name: "ConditionNotOverridableException";
|
|
1243
|
-
readonly $fault: "client";
|
|
1244
|
-
constructor(
|
|
1245
|
-
opts: __ExceptionOptionType<
|
|
1246
|
-
ConditionNotOverridableException,
|
|
1247
|
-
__BaseException
|
|
1248
|
-
>
|
|
1249
|
-
);
|
|
1250
|
-
}
|
|
1251
|
-
export declare class ConflictException extends __BaseException {
|
|
1252
|
-
readonly name: "ConflictException";
|
|
1253
|
-
readonly $fault: "client";
|
|
1254
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
1255
|
-
}
|
|
1256
|
-
export declare class NotLatestPipelineExecutionException extends __BaseException {
|
|
1257
|
-
readonly name: "NotLatestPipelineExecutionException";
|
|
1258
|
-
readonly $fault: "client";
|
|
1259
|
-
constructor(
|
|
1260
|
-
opts: __ExceptionOptionType<
|
|
1261
|
-
NotLatestPipelineExecutionException,
|
|
1262
|
-
__BaseException
|
|
1263
|
-
>
|
|
1264
|
-
);
|
|
1265
|
-
}
|
|
1266
|
-
export declare const ConditionType: {
|
|
1267
|
-
readonly BEFORE_ENTRY: "BEFORE_ENTRY";
|
|
1268
|
-
readonly ON_SUCCESS: "ON_SUCCESS";
|
|
1269
|
-
};
|
|
1270
|
-
export type ConditionType = (typeof ConditionType)[keyof typeof ConditionType];
|
|
1271
844
|
export interface OverrideStageConditionInput {
|
|
1272
845
|
pipelineName: string | undefined;
|
|
1273
846
|
stageName: string | undefined;
|
|
@@ -1309,13 +882,6 @@ export interface PutActionRevisionOutput {
|
|
|
1309
882
|
newRevision?: boolean | undefined;
|
|
1310
883
|
pipelineExecutionId?: string | undefined;
|
|
1311
884
|
}
|
|
1312
|
-
export declare class InvalidApprovalTokenException extends __BaseException {
|
|
1313
|
-
readonly name: "InvalidApprovalTokenException";
|
|
1314
|
-
readonly $fault: "client";
|
|
1315
|
-
constructor(
|
|
1316
|
-
opts: __ExceptionOptionType<InvalidApprovalTokenException, __BaseException>
|
|
1317
|
-
);
|
|
1318
|
-
}
|
|
1319
885
|
export interface PutApprovalResultInput {
|
|
1320
886
|
pipelineName: string | undefined;
|
|
1321
887
|
stageName: string | undefined;
|
|
@@ -1326,22 +892,6 @@ export interface PutApprovalResultInput {
|
|
|
1326
892
|
export interface PutApprovalResultOutput {
|
|
1327
893
|
approvedAt?: Date | undefined;
|
|
1328
894
|
}
|
|
1329
|
-
export declare class InvalidJobStateException extends __BaseException {
|
|
1330
|
-
readonly name: "InvalidJobStateException";
|
|
1331
|
-
readonly $fault: "client";
|
|
1332
|
-
constructor(
|
|
1333
|
-
opts: __ExceptionOptionType<InvalidJobStateException, __BaseException>
|
|
1334
|
-
);
|
|
1335
|
-
}
|
|
1336
|
-
export declare const FailureType: {
|
|
1337
|
-
readonly ConfigurationError: "ConfigurationError";
|
|
1338
|
-
readonly JobFailed: "JobFailed";
|
|
1339
|
-
readonly PermissionError: "PermissionError";
|
|
1340
|
-
readonly RevisionOutOfSync: "RevisionOutOfSync";
|
|
1341
|
-
readonly RevisionUnavailable: "RevisionUnavailable";
|
|
1342
|
-
readonly SystemUnavailable: "SystemUnavailable";
|
|
1343
|
-
};
|
|
1344
|
-
export type FailureType = (typeof FailureType)[keyof typeof FailureType];
|
|
1345
895
|
export interface FailureDetails {
|
|
1346
896
|
type: FailureType | undefined;
|
|
1347
897
|
message: string | undefined;
|
|
@@ -1351,16 +901,6 @@ export interface PutJobFailureResultInput {
|
|
|
1351
901
|
jobId: string | undefined;
|
|
1352
902
|
failureDetails: FailureDetails | undefined;
|
|
1353
903
|
}
|
|
1354
|
-
export declare class OutputVariablesSizeExceededException extends __BaseException {
|
|
1355
|
-
readonly name: "OutputVariablesSizeExceededException";
|
|
1356
|
-
readonly $fault: "client";
|
|
1357
|
-
constructor(
|
|
1358
|
-
opts: __ExceptionOptionType<
|
|
1359
|
-
OutputVariablesSizeExceededException,
|
|
1360
|
-
__BaseException
|
|
1361
|
-
>
|
|
1362
|
-
);
|
|
1363
|
-
}
|
|
1364
904
|
export interface CurrentRevision {
|
|
1365
905
|
revision: string | undefined;
|
|
1366
906
|
changeIdentifier: string | undefined;
|
|
@@ -1391,26 +931,6 @@ export interface PutThirdPartyJobSuccessResultInput {
|
|
|
1391
931
|
continuationToken?: string | undefined;
|
|
1392
932
|
executionDetails?: ExecutionDetails | undefined;
|
|
1393
933
|
}
|
|
1394
|
-
export declare class InvalidWebhookAuthenticationParametersException extends __BaseException {
|
|
1395
|
-
readonly name: "InvalidWebhookAuthenticationParametersException";
|
|
1396
|
-
readonly $fault: "client";
|
|
1397
|
-
constructor(
|
|
1398
|
-
opts: __ExceptionOptionType<
|
|
1399
|
-
InvalidWebhookAuthenticationParametersException,
|
|
1400
|
-
__BaseException
|
|
1401
|
-
>
|
|
1402
|
-
);
|
|
1403
|
-
}
|
|
1404
|
-
export declare class InvalidWebhookFilterPatternException extends __BaseException {
|
|
1405
|
-
readonly name: "InvalidWebhookFilterPatternException";
|
|
1406
|
-
readonly $fault: "client";
|
|
1407
|
-
constructor(
|
|
1408
|
-
opts: __ExceptionOptionType<
|
|
1409
|
-
InvalidWebhookFilterPatternException,
|
|
1410
|
-
__BaseException
|
|
1411
|
-
>
|
|
1412
|
-
);
|
|
1413
|
-
}
|
|
1414
934
|
export interface PutWebhookInput {
|
|
1415
935
|
webhook: WebhookDefinition | undefined;
|
|
1416
936
|
tags?: Tag[] | undefined;
|
|
@@ -1431,23 +951,6 @@ export interface RetryStageExecutionInput {
|
|
|
1431
951
|
export interface RetryStageExecutionOutput {
|
|
1432
952
|
pipelineExecutionId?: string | undefined;
|
|
1433
953
|
}
|
|
1434
|
-
export declare class StageNotRetryableException extends __BaseException {
|
|
1435
|
-
readonly name: "StageNotRetryableException";
|
|
1436
|
-
readonly $fault: "client";
|
|
1437
|
-
constructor(
|
|
1438
|
-
opts: __ExceptionOptionType<StageNotRetryableException, __BaseException>
|
|
1439
|
-
);
|
|
1440
|
-
}
|
|
1441
|
-
export declare class PipelineExecutionOutdatedException extends __BaseException {
|
|
1442
|
-
readonly name: "PipelineExecutionOutdatedException";
|
|
1443
|
-
readonly $fault: "client";
|
|
1444
|
-
constructor(
|
|
1445
|
-
opts: __ExceptionOptionType<
|
|
1446
|
-
PipelineExecutionOutdatedException,
|
|
1447
|
-
__BaseException
|
|
1448
|
-
>
|
|
1449
|
-
);
|
|
1450
|
-
}
|
|
1451
954
|
export interface RollbackStageInput {
|
|
1452
955
|
pipelineName: string | undefined;
|
|
1453
956
|
stageName: string | undefined;
|
|
@@ -1456,21 +959,6 @@ export interface RollbackStageInput {
|
|
|
1456
959
|
export interface RollbackStageOutput {
|
|
1457
960
|
pipelineExecutionId: string | undefined;
|
|
1458
961
|
}
|
|
1459
|
-
export declare class UnableToRollbackStageException extends __BaseException {
|
|
1460
|
-
readonly name: "UnableToRollbackStageException";
|
|
1461
|
-
readonly $fault: "client";
|
|
1462
|
-
constructor(
|
|
1463
|
-
opts: __ExceptionOptionType<UnableToRollbackStageException, __BaseException>
|
|
1464
|
-
);
|
|
1465
|
-
}
|
|
1466
|
-
export declare const SourceRevisionType: {
|
|
1467
|
-
readonly COMMIT_ID: "COMMIT_ID";
|
|
1468
|
-
readonly IMAGE_DIGEST: "IMAGE_DIGEST";
|
|
1469
|
-
readonly S3_OBJECT_KEY: "S3_OBJECT_KEY";
|
|
1470
|
-
readonly S3_OBJECT_VERSION_ID: "S3_OBJECT_VERSION_ID";
|
|
1471
|
-
};
|
|
1472
|
-
export type SourceRevisionType =
|
|
1473
|
-
(typeof SourceRevisionType)[keyof typeof SourceRevisionType];
|
|
1474
962
|
export interface SourceRevisionOverride {
|
|
1475
963
|
actionName: string | undefined;
|
|
1476
964
|
revisionType: SourceRevisionType | undefined;
|
|
@@ -1489,23 +977,6 @@ export interface StartPipelineExecutionInput {
|
|
|
1489
977
|
export interface StartPipelineExecutionOutput {
|
|
1490
978
|
pipelineExecutionId?: string | undefined;
|
|
1491
979
|
}
|
|
1492
|
-
export declare class DuplicatedStopRequestException extends __BaseException {
|
|
1493
|
-
readonly name: "DuplicatedStopRequestException";
|
|
1494
|
-
readonly $fault: "client";
|
|
1495
|
-
constructor(
|
|
1496
|
-
opts: __ExceptionOptionType<DuplicatedStopRequestException, __BaseException>
|
|
1497
|
-
);
|
|
1498
|
-
}
|
|
1499
|
-
export declare class PipelineExecutionNotStoppableException extends __BaseException {
|
|
1500
|
-
readonly name: "PipelineExecutionNotStoppableException";
|
|
1501
|
-
readonly $fault: "client";
|
|
1502
|
-
constructor(
|
|
1503
|
-
opts: __ExceptionOptionType<
|
|
1504
|
-
PipelineExecutionNotStoppableException,
|
|
1505
|
-
__BaseException
|
|
1506
|
-
>
|
|
1507
|
-
);
|
|
1508
|
-
}
|
|
1509
980
|
export interface StopPipelineExecutionInput {
|
|
1510
981
|
pipelineName: string | undefined;
|
|
1511
982
|
pipelineExecutionId: string | undefined;
|
|
@@ -1525,13 +996,6 @@ export interface UntagResourceInput {
|
|
|
1525
996
|
tagKeys: string[] | undefined;
|
|
1526
997
|
}
|
|
1527
998
|
export interface UntagResourceOutput {}
|
|
1528
|
-
export declare class RequestFailedException extends __BaseException {
|
|
1529
|
-
readonly name: "RequestFailedException";
|
|
1530
|
-
readonly $fault: "client";
|
|
1531
|
-
constructor(
|
|
1532
|
-
opts: __ExceptionOptionType<RequestFailedException, __BaseException>
|
|
1533
|
-
);
|
|
1534
|
-
}
|
|
1535
999
|
export interface UpdateActionTypeInput {
|
|
1536
1000
|
actionType: ActionTypeDeclaration | undefined;
|
|
1537
1001
|
}
|