@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,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { CodePipelineServiceException as __BaseException } from "./CodePipelineServiceException";
|
|
1
|
+
import { ActionCategory, ActionConfigurationPropertyType, ActionExecutionStatus, ActionOwner, ApprovalStatus, ArtifactLocationType, ArtifactStoreType, BlockerType, ConditionExecutionStatus, ConditionType, EncryptionKeyType, EnvironmentVariableType, ExecutionMode, ExecutionType, ExecutorType, FailureType, GitPullRequestEventType, JobStatus, PipelineExecutionStatus, PipelineTriggerProviderType, PipelineType, Result, RetryTrigger, RuleCategory, RuleConfigurationPropertyType, RuleExecutionStatus, RuleOwner, SourceRevisionType, StageExecutionStatus, StageRetryMode, StageTransitionType, StartTimeRange, TargetFilterName, TriggerType, WebhookAuthenticationType } from "./enums";
|
|
3
2
|
/**
|
|
4
3
|
* <p>Represents the input of an AcknowledgeJob action.</p>
|
|
5
4
|
* @public
|
|
@@ -19,23 +18,6 @@ export interface AcknowledgeJobInput {
|
|
|
19
18
|
*/
|
|
20
19
|
nonce: string | undefined;
|
|
21
20
|
}
|
|
22
|
-
/**
|
|
23
|
-
* @public
|
|
24
|
-
* @enum
|
|
25
|
-
*/
|
|
26
|
-
export declare const JobStatus: {
|
|
27
|
-
readonly Created: "Created";
|
|
28
|
-
readonly Dispatched: "Dispatched";
|
|
29
|
-
readonly Failed: "Failed";
|
|
30
|
-
readonly InProgress: "InProgress";
|
|
31
|
-
readonly Queued: "Queued";
|
|
32
|
-
readonly Succeeded: "Succeeded";
|
|
33
|
-
readonly TimedOut: "TimedOut";
|
|
34
|
-
};
|
|
35
|
-
/**
|
|
36
|
-
* @public
|
|
37
|
-
*/
|
|
38
|
-
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
39
21
|
/**
|
|
40
22
|
* <p>Represents the output of an AcknowledgeJob action.</p>
|
|
41
23
|
* @public
|
|
@@ -47,42 +29,6 @@ export interface AcknowledgeJobOutput {
|
|
|
47
29
|
*/
|
|
48
30
|
status?: JobStatus | undefined;
|
|
49
31
|
}
|
|
50
|
-
/**
|
|
51
|
-
* <p>The nonce was specified in an invalid format.</p>
|
|
52
|
-
* @public
|
|
53
|
-
*/
|
|
54
|
-
export declare class InvalidNonceException extends __BaseException {
|
|
55
|
-
readonly name: "InvalidNonceException";
|
|
56
|
-
readonly $fault: "client";
|
|
57
|
-
/**
|
|
58
|
-
* @internal
|
|
59
|
-
*/
|
|
60
|
-
constructor(opts: __ExceptionOptionType<InvalidNonceException, __BaseException>);
|
|
61
|
-
}
|
|
62
|
-
/**
|
|
63
|
-
* <p>The job was specified in an invalid format or cannot be found.</p>
|
|
64
|
-
* @public
|
|
65
|
-
*/
|
|
66
|
-
export declare class JobNotFoundException extends __BaseException {
|
|
67
|
-
readonly name: "JobNotFoundException";
|
|
68
|
-
readonly $fault: "client";
|
|
69
|
-
/**
|
|
70
|
-
* @internal
|
|
71
|
-
*/
|
|
72
|
-
constructor(opts: __ExceptionOptionType<JobNotFoundException, __BaseException>);
|
|
73
|
-
}
|
|
74
|
-
/**
|
|
75
|
-
* <p>The validation was specified in an invalid format.</p>
|
|
76
|
-
* @public
|
|
77
|
-
*/
|
|
78
|
-
export declare class ValidationException extends __BaseException {
|
|
79
|
-
readonly name: "ValidationException";
|
|
80
|
-
readonly $fault: "client";
|
|
81
|
-
/**
|
|
82
|
-
* @internal
|
|
83
|
-
*/
|
|
84
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
85
|
-
}
|
|
86
32
|
/**
|
|
87
33
|
* <p>Represents the input of an AcknowledgeThirdPartyJob action.</p>
|
|
88
34
|
* @public
|
|
@@ -118,35 +64,6 @@ export interface AcknowledgeThirdPartyJobOutput {
|
|
|
118
64
|
*/
|
|
119
65
|
status?: JobStatus | undefined;
|
|
120
66
|
}
|
|
121
|
-
/**
|
|
122
|
-
* <p>The client token was specified in an invalid format</p>
|
|
123
|
-
* @public
|
|
124
|
-
*/
|
|
125
|
-
export declare class InvalidClientTokenException extends __BaseException {
|
|
126
|
-
readonly name: "InvalidClientTokenException";
|
|
127
|
-
readonly $fault: "client";
|
|
128
|
-
/**
|
|
129
|
-
* @internal
|
|
130
|
-
*/
|
|
131
|
-
constructor(opts: __ExceptionOptionType<InvalidClientTokenException, __BaseException>);
|
|
132
|
-
}
|
|
133
|
-
/**
|
|
134
|
-
* @public
|
|
135
|
-
* @enum
|
|
136
|
-
*/
|
|
137
|
-
export declare const ActionCategory: {
|
|
138
|
-
readonly Approval: "Approval";
|
|
139
|
-
readonly Build: "Build";
|
|
140
|
-
readonly Compute: "Compute";
|
|
141
|
-
readonly Deploy: "Deploy";
|
|
142
|
-
readonly Invoke: "Invoke";
|
|
143
|
-
readonly Source: "Source";
|
|
144
|
-
readonly Test: "Test";
|
|
145
|
-
};
|
|
146
|
-
/**
|
|
147
|
-
* @public
|
|
148
|
-
*/
|
|
149
|
-
export type ActionCategory = (typeof ActionCategory)[keyof typeof ActionCategory];
|
|
150
67
|
/**
|
|
151
68
|
* <p>Represents information about an action configuration.</p>
|
|
152
69
|
* @public
|
|
@@ -158,19 +75,6 @@ export interface ActionConfiguration {
|
|
|
158
75
|
*/
|
|
159
76
|
configuration?: Record<string, string> | undefined;
|
|
160
77
|
}
|
|
161
|
-
/**
|
|
162
|
-
* @public
|
|
163
|
-
* @enum
|
|
164
|
-
*/
|
|
165
|
-
export declare const ActionConfigurationPropertyType: {
|
|
166
|
-
readonly Boolean: "Boolean";
|
|
167
|
-
readonly Number: "Number";
|
|
168
|
-
readonly String: "String";
|
|
169
|
-
};
|
|
170
|
-
/**
|
|
171
|
-
* @public
|
|
172
|
-
*/
|
|
173
|
-
export type ActionConfigurationPropertyType = (typeof ActionConfigurationPropertyType)[keyof typeof ActionConfigurationPropertyType];
|
|
174
78
|
/**
|
|
175
79
|
* <p>Represents information about an action configuration property.</p>
|
|
176
80
|
* @public
|
|
@@ -240,19 +144,6 @@ export interface ActionContext {
|
|
|
240
144
|
*/
|
|
241
145
|
actionExecutionId?: string | undefined;
|
|
242
146
|
}
|
|
243
|
-
/**
|
|
244
|
-
* @public
|
|
245
|
-
* @enum
|
|
246
|
-
*/
|
|
247
|
-
export declare const ActionOwner: {
|
|
248
|
-
readonly AWS: "AWS";
|
|
249
|
-
readonly Custom: "Custom";
|
|
250
|
-
readonly ThirdParty: "ThirdParty";
|
|
251
|
-
};
|
|
252
|
-
/**
|
|
253
|
-
* @public
|
|
254
|
-
*/
|
|
255
|
-
export type ActionOwner = (typeof ActionOwner)[keyof typeof ActionOwner];
|
|
256
147
|
/**
|
|
257
148
|
* <p>Represents information about an action type.</p>
|
|
258
149
|
* @public
|
|
@@ -310,18 +201,6 @@ export interface ActionTypeId {
|
|
|
310
201
|
*/
|
|
311
202
|
version: string | undefined;
|
|
312
203
|
}
|
|
313
|
-
/**
|
|
314
|
-
* @public
|
|
315
|
-
* @enum
|
|
316
|
-
*/
|
|
317
|
-
export declare const EnvironmentVariableType: {
|
|
318
|
-
readonly PLAINTEXT: "PLAINTEXT";
|
|
319
|
-
readonly SECRETS_MANAGER: "SECRETS_MANAGER";
|
|
320
|
-
};
|
|
321
|
-
/**
|
|
322
|
-
* @public
|
|
323
|
-
*/
|
|
324
|
-
export type EnvironmentVariableType = (typeof EnvironmentVariableType)[keyof typeof EnvironmentVariableType];
|
|
325
204
|
/**
|
|
326
205
|
* <p>The environment variables for the action.</p>
|
|
327
206
|
* @public
|
|
@@ -500,20 +379,6 @@ export interface ErrorDetails {
|
|
|
500
379
|
*/
|
|
501
380
|
message?: string | undefined;
|
|
502
381
|
}
|
|
503
|
-
/**
|
|
504
|
-
* @public
|
|
505
|
-
* @enum
|
|
506
|
-
*/
|
|
507
|
-
export declare const ActionExecutionStatus: {
|
|
508
|
-
readonly Abandoned: "Abandoned";
|
|
509
|
-
readonly Failed: "Failed";
|
|
510
|
-
readonly InProgress: "InProgress";
|
|
511
|
-
readonly Succeeded: "Succeeded";
|
|
512
|
-
};
|
|
513
|
-
/**
|
|
514
|
-
* @public
|
|
515
|
-
*/
|
|
516
|
-
export type ActionExecutionStatus = (typeof ActionExecutionStatus)[keyof typeof ActionExecutionStatus];
|
|
517
382
|
/**
|
|
518
383
|
* <p>Represents information about the run of an action.</p>
|
|
519
384
|
* @public
|
|
@@ -783,18 +648,6 @@ export interface ActionExecutionDetail {
|
|
|
783
648
|
*/
|
|
784
649
|
output?: ActionExecutionOutput | undefined;
|
|
785
650
|
}
|
|
786
|
-
/**
|
|
787
|
-
* @public
|
|
788
|
-
* @enum
|
|
789
|
-
*/
|
|
790
|
-
export declare const StartTimeRange: {
|
|
791
|
-
readonly All: "All";
|
|
792
|
-
readonly Latest: "Latest";
|
|
793
|
-
};
|
|
794
|
-
/**
|
|
795
|
-
* @public
|
|
796
|
-
*/
|
|
797
|
-
export type StartTimeRange = (typeof StartTimeRange)[keyof typeof StartTimeRange];
|
|
798
651
|
/**
|
|
799
652
|
* <p>The field that specifies to filter on the latest execution in the
|
|
800
653
|
* pipeline.</p>
|
|
@@ -845,30 +698,6 @@ export interface ActionExecutionFilter {
|
|
|
845
698
|
*/
|
|
846
699
|
latestInPipelineExecution?: LatestInPipelineExecutionFilter | undefined;
|
|
847
700
|
}
|
|
848
|
-
/**
|
|
849
|
-
* <p>The action execution was not found.</p>
|
|
850
|
-
* @public
|
|
851
|
-
*/
|
|
852
|
-
export declare class ActionExecutionNotFoundException extends __BaseException {
|
|
853
|
-
readonly name: "ActionExecutionNotFoundException";
|
|
854
|
-
readonly $fault: "client";
|
|
855
|
-
/**
|
|
856
|
-
* @internal
|
|
857
|
-
*/
|
|
858
|
-
constructor(opts: __ExceptionOptionType<ActionExecutionNotFoundException, __BaseException>);
|
|
859
|
-
}
|
|
860
|
-
/**
|
|
861
|
-
* <p>The specified action cannot be found.</p>
|
|
862
|
-
* @public
|
|
863
|
-
*/
|
|
864
|
-
export declare class ActionNotFoundException extends __BaseException {
|
|
865
|
-
readonly name: "ActionNotFoundException";
|
|
866
|
-
readonly $fault: "client";
|
|
867
|
-
/**
|
|
868
|
-
* @internal
|
|
869
|
-
*/
|
|
870
|
-
constructor(opts: __ExceptionOptionType<ActionNotFoundException, __BaseException>);
|
|
871
|
-
}
|
|
872
701
|
/**
|
|
873
702
|
* <p>Represents information about the version (or revision) of an action.</p>
|
|
874
703
|
* @public
|
|
@@ -1077,18 +906,6 @@ export interface ExecutorConfiguration {
|
|
|
1077
906
|
*/
|
|
1078
907
|
jobWorkerExecutorConfiguration?: JobWorkerExecutorConfiguration | undefined;
|
|
1079
908
|
}
|
|
1080
|
-
/**
|
|
1081
|
-
* @public
|
|
1082
|
-
* @enum
|
|
1083
|
-
*/
|
|
1084
|
-
export declare const ExecutorType: {
|
|
1085
|
-
readonly JobWorker: "JobWorker";
|
|
1086
|
-
readonly Lambda: "Lambda";
|
|
1087
|
-
};
|
|
1088
|
-
/**
|
|
1089
|
-
* @public
|
|
1090
|
-
*/
|
|
1091
|
-
export type ExecutorType = (typeof ExecutorType)[keyof typeof ExecutorType];
|
|
1092
909
|
/**
|
|
1093
910
|
* <p>The action engine, or executor, for an action type created for a provider, where the
|
|
1094
911
|
* action is to be used by customers of the provider. The action engine is associated with
|
|
@@ -1326,42 +1143,6 @@ export interface ActionTypeDeclaration {
|
|
|
1326
1143
|
*/
|
|
1327
1144
|
urls?: ActionTypeUrls | undefined;
|
|
1328
1145
|
}
|
|
1329
|
-
/**
|
|
1330
|
-
* <p>The specified action type cannot be found.</p>
|
|
1331
|
-
* @public
|
|
1332
|
-
*/
|
|
1333
|
-
export declare class ActionTypeNotFoundException extends __BaseException {
|
|
1334
|
-
readonly name: "ActionTypeNotFoundException";
|
|
1335
|
-
readonly $fault: "client";
|
|
1336
|
-
/**
|
|
1337
|
-
* @internal
|
|
1338
|
-
*/
|
|
1339
|
-
constructor(opts: __ExceptionOptionType<ActionTypeNotFoundException, __BaseException>);
|
|
1340
|
-
}
|
|
1341
|
-
/**
|
|
1342
|
-
* <p>The approval action has already been approved or rejected.</p>
|
|
1343
|
-
* @public
|
|
1344
|
-
*/
|
|
1345
|
-
export declare class ApprovalAlreadyCompletedException extends __BaseException {
|
|
1346
|
-
readonly name: "ApprovalAlreadyCompletedException";
|
|
1347
|
-
readonly $fault: "client";
|
|
1348
|
-
/**
|
|
1349
|
-
* @internal
|
|
1350
|
-
*/
|
|
1351
|
-
constructor(opts: __ExceptionOptionType<ApprovalAlreadyCompletedException, __BaseException>);
|
|
1352
|
-
}
|
|
1353
|
-
/**
|
|
1354
|
-
* @public
|
|
1355
|
-
* @enum
|
|
1356
|
-
*/
|
|
1357
|
-
export declare const ApprovalStatus: {
|
|
1358
|
-
readonly Approved: "Approved";
|
|
1359
|
-
readonly Rejected: "Rejected";
|
|
1360
|
-
};
|
|
1361
|
-
/**
|
|
1362
|
-
* @public
|
|
1363
|
-
*/
|
|
1364
|
-
export type ApprovalStatus = (typeof ApprovalStatus)[keyof typeof ApprovalStatus];
|
|
1365
1146
|
/**
|
|
1366
1147
|
* <p>Represents information about the result of an approval request.</p>
|
|
1367
1148
|
* @public
|
|
@@ -1396,17 +1177,6 @@ export interface S3ArtifactLocation {
|
|
|
1396
1177
|
*/
|
|
1397
1178
|
objectKey: string | undefined;
|
|
1398
1179
|
}
|
|
1399
|
-
/**
|
|
1400
|
-
* @public
|
|
1401
|
-
* @enum
|
|
1402
|
-
*/
|
|
1403
|
-
export declare const ArtifactLocationType: {
|
|
1404
|
-
readonly S3: "S3";
|
|
1405
|
-
};
|
|
1406
|
-
/**
|
|
1407
|
-
* @public
|
|
1408
|
-
*/
|
|
1409
|
-
export type ArtifactLocationType = (typeof ArtifactLocationType)[keyof typeof ArtifactLocationType];
|
|
1410
1180
|
/**
|
|
1411
1181
|
* <p>Represents information about the location of an artifact.</p>
|
|
1412
1182
|
* @public
|
|
@@ -1491,17 +1261,6 @@ export interface ArtifactRevision {
|
|
|
1491
1261
|
*/
|
|
1492
1262
|
revisionUrl?: string | undefined;
|
|
1493
1263
|
}
|
|
1494
|
-
/**
|
|
1495
|
-
* @public
|
|
1496
|
-
* @enum
|
|
1497
|
-
*/
|
|
1498
|
-
export declare const EncryptionKeyType: {
|
|
1499
|
-
readonly KMS: "KMS";
|
|
1500
|
-
};
|
|
1501
|
-
/**
|
|
1502
|
-
* @public
|
|
1503
|
-
*/
|
|
1504
|
-
export type EncryptionKeyType = (typeof EncryptionKeyType)[keyof typeof EncryptionKeyType];
|
|
1505
1264
|
/**
|
|
1506
1265
|
* <p>Represents information about the key used to encrypt data in the artifact store,
|
|
1507
1266
|
* such as an Amazon Web Services Key Management Service (Key Management Service)
|
|
@@ -1529,17 +1288,6 @@ export interface EncryptionKey {
|
|
|
1529
1288
|
*/
|
|
1530
1289
|
type: EncryptionKeyType | undefined;
|
|
1531
1290
|
}
|
|
1532
|
-
/**
|
|
1533
|
-
* @public
|
|
1534
|
-
* @enum
|
|
1535
|
-
*/
|
|
1536
|
-
export declare const ArtifactStoreType: {
|
|
1537
|
-
readonly S3: "S3";
|
|
1538
|
-
};
|
|
1539
|
-
/**
|
|
1540
|
-
* @public
|
|
1541
|
-
*/
|
|
1542
|
-
export type ArtifactStoreType = (typeof ArtifactStoreType)[keyof typeof ArtifactStoreType];
|
|
1543
1291
|
/**
|
|
1544
1292
|
* <p>The S3 bucket where artifacts for the pipeline are stored.</p>
|
|
1545
1293
|
* <note>
|
|
@@ -1597,42 +1345,6 @@ export interface AWSSessionCredentials {
|
|
|
1597
1345
|
*/
|
|
1598
1346
|
sessionToken: string | undefined;
|
|
1599
1347
|
}
|
|
1600
|
-
/**
|
|
1601
|
-
* @public
|
|
1602
|
-
* @enum
|
|
1603
|
-
*/
|
|
1604
|
-
export declare const Result: {
|
|
1605
|
-
readonly FAIL: "FAIL";
|
|
1606
|
-
readonly RETRY: "RETRY";
|
|
1607
|
-
readonly ROLLBACK: "ROLLBACK";
|
|
1608
|
-
readonly SKIP: "SKIP";
|
|
1609
|
-
};
|
|
1610
|
-
/**
|
|
1611
|
-
* @public
|
|
1612
|
-
*/
|
|
1613
|
-
export type Result = (typeof Result)[keyof typeof Result];
|
|
1614
|
-
/**
|
|
1615
|
-
* @public
|
|
1616
|
-
* @enum
|
|
1617
|
-
*/
|
|
1618
|
-
export declare const RuleCategory: {
|
|
1619
|
-
readonly Rule: "Rule";
|
|
1620
|
-
};
|
|
1621
|
-
/**
|
|
1622
|
-
* @public
|
|
1623
|
-
*/
|
|
1624
|
-
export type RuleCategory = (typeof RuleCategory)[keyof typeof RuleCategory];
|
|
1625
|
-
/**
|
|
1626
|
-
* @public
|
|
1627
|
-
* @enum
|
|
1628
|
-
*/
|
|
1629
|
-
export declare const RuleOwner: {
|
|
1630
|
-
readonly AWS: "AWS";
|
|
1631
|
-
};
|
|
1632
|
-
/**
|
|
1633
|
-
* @public
|
|
1634
|
-
*/
|
|
1635
|
-
export type RuleOwner = (typeof RuleOwner)[keyof typeof RuleOwner];
|
|
1636
1348
|
/**
|
|
1637
1349
|
* <p>The ID for the rule type, which is made up of the combined values for category, owner,
|
|
1638
1350
|
* provider, and version. For more information about conditions, see <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html">Stage
|
|
@@ -1758,17 +1470,6 @@ export interface BeforeEntryConditions {
|
|
|
1758
1470
|
*/
|
|
1759
1471
|
conditions: Condition[] | undefined;
|
|
1760
1472
|
}
|
|
1761
|
-
/**
|
|
1762
|
-
* @public
|
|
1763
|
-
* @enum
|
|
1764
|
-
*/
|
|
1765
|
-
export declare const BlockerType: {
|
|
1766
|
-
readonly Schedule: "Schedule";
|
|
1767
|
-
};
|
|
1768
|
-
/**
|
|
1769
|
-
* @public
|
|
1770
|
-
*/
|
|
1771
|
-
export type BlockerType = (typeof BlockerType)[keyof typeof BlockerType];
|
|
1772
1473
|
/**
|
|
1773
1474
|
* <p>Reserved for future use.</p>
|
|
1774
1475
|
* @public
|
|
@@ -1785,18 +1486,6 @@ export interface BlockerDeclaration {
|
|
|
1785
1486
|
*/
|
|
1786
1487
|
type: BlockerType | undefined;
|
|
1787
1488
|
}
|
|
1788
|
-
/**
|
|
1789
|
-
* <p>Unable to modify the tag due to a simultaneous update request.</p>
|
|
1790
|
-
* @public
|
|
1791
|
-
*/
|
|
1792
|
-
export declare class ConcurrentModificationException extends __BaseException {
|
|
1793
|
-
readonly name: "ConcurrentModificationException";
|
|
1794
|
-
readonly $fault: "client";
|
|
1795
|
-
/**
|
|
1796
|
-
* @internal
|
|
1797
|
-
*/
|
|
1798
|
-
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
1799
|
-
}
|
|
1800
1489
|
/**
|
|
1801
1490
|
* <p>A tag is a key-value pair that is used to manage the resource.</p>
|
|
1802
1491
|
* @public
|
|
@@ -1884,80 +1573,6 @@ export interface CreateCustomActionTypeOutput {
|
|
|
1884
1573
|
*/
|
|
1885
1574
|
tags?: Tag[] | undefined;
|
|
1886
1575
|
}
|
|
1887
|
-
/**
|
|
1888
|
-
* <p>The specified resource tags are invalid.</p>
|
|
1889
|
-
* @public
|
|
1890
|
-
*/
|
|
1891
|
-
export declare class InvalidTagsException extends __BaseException {
|
|
1892
|
-
readonly name: "InvalidTagsException";
|
|
1893
|
-
readonly $fault: "client";
|
|
1894
|
-
/**
|
|
1895
|
-
* @internal
|
|
1896
|
-
*/
|
|
1897
|
-
constructor(opts: __ExceptionOptionType<InvalidTagsException, __BaseException>);
|
|
1898
|
-
}
|
|
1899
|
-
/**
|
|
1900
|
-
* <p>The number of pipelines associated with the Amazon Web Services account has exceeded
|
|
1901
|
-
* the limit allowed for the account.</p>
|
|
1902
|
-
* @public
|
|
1903
|
-
*/
|
|
1904
|
-
export declare class LimitExceededException extends __BaseException {
|
|
1905
|
-
readonly name: "LimitExceededException";
|
|
1906
|
-
readonly $fault: "client";
|
|
1907
|
-
/**
|
|
1908
|
-
* @internal
|
|
1909
|
-
*/
|
|
1910
|
-
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
1911
|
-
}
|
|
1912
|
-
/**
|
|
1913
|
-
* <p>The tags limit for a resource has been exceeded.</p>
|
|
1914
|
-
* @public
|
|
1915
|
-
*/
|
|
1916
|
-
export declare class TooManyTagsException extends __BaseException {
|
|
1917
|
-
readonly name: "TooManyTagsException";
|
|
1918
|
-
readonly $fault: "client";
|
|
1919
|
-
/**
|
|
1920
|
-
* @internal
|
|
1921
|
-
*/
|
|
1922
|
-
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
1923
|
-
}
|
|
1924
|
-
/**
|
|
1925
|
-
* @public
|
|
1926
|
-
* @enum
|
|
1927
|
-
*/
|
|
1928
|
-
export declare const ExecutionMode: {
|
|
1929
|
-
readonly PARALLEL: "PARALLEL";
|
|
1930
|
-
readonly QUEUED: "QUEUED";
|
|
1931
|
-
readonly SUPERSEDED: "SUPERSEDED";
|
|
1932
|
-
};
|
|
1933
|
-
/**
|
|
1934
|
-
* @public
|
|
1935
|
-
*/
|
|
1936
|
-
export type ExecutionMode = (typeof ExecutionMode)[keyof typeof ExecutionMode];
|
|
1937
|
-
/**
|
|
1938
|
-
* @public
|
|
1939
|
-
* @enum
|
|
1940
|
-
*/
|
|
1941
|
-
export declare const PipelineType: {
|
|
1942
|
-
readonly V1: "V1";
|
|
1943
|
-
readonly V2: "V2";
|
|
1944
|
-
};
|
|
1945
|
-
/**
|
|
1946
|
-
* @public
|
|
1947
|
-
*/
|
|
1948
|
-
export type PipelineType = (typeof PipelineType)[keyof typeof PipelineType];
|
|
1949
|
-
/**
|
|
1950
|
-
* @public
|
|
1951
|
-
* @enum
|
|
1952
|
-
*/
|
|
1953
|
-
export declare const StageRetryMode: {
|
|
1954
|
-
readonly ALL_ACTIONS: "ALL_ACTIONS";
|
|
1955
|
-
readonly FAILED_ACTIONS: "FAILED_ACTIONS";
|
|
1956
|
-
};
|
|
1957
|
-
/**
|
|
1958
|
-
* @public
|
|
1959
|
-
*/
|
|
1960
|
-
export type StageRetryMode = (typeof StageRetryMode)[keyof typeof StageRetryMode];
|
|
1961
1576
|
/**
|
|
1962
1577
|
* <p>The retry configuration specifies automatic retry for a failed stage, along with the
|
|
1963
1578
|
* configured retry mode.</p>
|
|
@@ -2073,19 +1688,6 @@ export interface GitBranchFilterCriteria {
|
|
|
2073
1688
|
*/
|
|
2074
1689
|
excludes?: string[] | undefined;
|
|
2075
1690
|
}
|
|
2076
|
-
/**
|
|
2077
|
-
* @public
|
|
2078
|
-
* @enum
|
|
2079
|
-
*/
|
|
2080
|
-
export declare const GitPullRequestEventType: {
|
|
2081
|
-
readonly CLOSED: "CLOSED";
|
|
2082
|
-
readonly OPEN: "OPEN";
|
|
2083
|
-
readonly UPDATED: "UPDATED";
|
|
2084
|
-
};
|
|
2085
|
-
/**
|
|
2086
|
-
* @public
|
|
2087
|
-
*/
|
|
2088
|
-
export type GitPullRequestEventType = (typeof GitPullRequestEventType)[keyof typeof GitPullRequestEventType];
|
|
2089
1691
|
/**
|
|
2090
1692
|
* <p>The Git repository file paths specified as filter criteria to start the
|
|
2091
1693
|
* pipeline.</p>
|
|
@@ -2220,17 +1822,6 @@ export interface GitConfiguration {
|
|
|
2220
1822
|
*/
|
|
2221
1823
|
pullRequest?: GitPullRequestFilter[] | undefined;
|
|
2222
1824
|
}
|
|
2223
|
-
/**
|
|
2224
|
-
* @public
|
|
2225
|
-
* @enum
|
|
2226
|
-
*/
|
|
2227
|
-
export declare const PipelineTriggerProviderType: {
|
|
2228
|
-
readonly CodeStarSourceConnection: "CodeStarSourceConnection";
|
|
2229
|
-
};
|
|
2230
|
-
/**
|
|
2231
|
-
* @public
|
|
2232
|
-
*/
|
|
2233
|
-
export type PipelineTriggerProviderType = (typeof PipelineTriggerProviderType)[keyof typeof PipelineTriggerProviderType];
|
|
2234
1825
|
/**
|
|
2235
1826
|
* <p>Represents information about the specified trigger configuration, such as the
|
|
2236
1827
|
* filter criteria and the source stage for the action that contains the trigger.</p>
|
|
@@ -2416,66 +2007,6 @@ export interface CreatePipelineOutput {
|
|
|
2416
2007
|
*/
|
|
2417
2008
|
tags?: Tag[] | undefined;
|
|
2418
2009
|
}
|
|
2419
|
-
/**
|
|
2420
|
-
* <p>The action declaration was specified in an invalid format.</p>
|
|
2421
|
-
* @public
|
|
2422
|
-
*/
|
|
2423
|
-
export declare class InvalidActionDeclarationException extends __BaseException {
|
|
2424
|
-
readonly name: "InvalidActionDeclarationException";
|
|
2425
|
-
readonly $fault: "client";
|
|
2426
|
-
/**
|
|
2427
|
-
* @internal
|
|
2428
|
-
*/
|
|
2429
|
-
constructor(opts: __ExceptionOptionType<InvalidActionDeclarationException, __BaseException>);
|
|
2430
|
-
}
|
|
2431
|
-
/**
|
|
2432
|
-
* <p>Reserved for future use.</p>
|
|
2433
|
-
* @public
|
|
2434
|
-
*/
|
|
2435
|
-
export declare class InvalidBlockerDeclarationException extends __BaseException {
|
|
2436
|
-
readonly name: "InvalidBlockerDeclarationException";
|
|
2437
|
-
readonly $fault: "client";
|
|
2438
|
-
/**
|
|
2439
|
-
* @internal
|
|
2440
|
-
*/
|
|
2441
|
-
constructor(opts: __ExceptionOptionType<InvalidBlockerDeclarationException, __BaseException>);
|
|
2442
|
-
}
|
|
2443
|
-
/**
|
|
2444
|
-
* <p>The stage declaration was specified in an invalid format.</p>
|
|
2445
|
-
* @public
|
|
2446
|
-
*/
|
|
2447
|
-
export declare class InvalidStageDeclarationException extends __BaseException {
|
|
2448
|
-
readonly name: "InvalidStageDeclarationException";
|
|
2449
|
-
readonly $fault: "client";
|
|
2450
|
-
/**
|
|
2451
|
-
* @internal
|
|
2452
|
-
*/
|
|
2453
|
-
constructor(opts: __ExceptionOptionType<InvalidStageDeclarationException, __BaseException>);
|
|
2454
|
-
}
|
|
2455
|
-
/**
|
|
2456
|
-
* <p>The structure was specified in an invalid format.</p>
|
|
2457
|
-
* @public
|
|
2458
|
-
*/
|
|
2459
|
-
export declare class InvalidStructureException extends __BaseException {
|
|
2460
|
-
readonly name: "InvalidStructureException";
|
|
2461
|
-
readonly $fault: "client";
|
|
2462
|
-
/**
|
|
2463
|
-
* @internal
|
|
2464
|
-
*/
|
|
2465
|
-
constructor(opts: __ExceptionOptionType<InvalidStructureException, __BaseException>);
|
|
2466
|
-
}
|
|
2467
|
-
/**
|
|
2468
|
-
* <p>The specified pipeline name is already in use.</p>
|
|
2469
|
-
* @public
|
|
2470
|
-
*/
|
|
2471
|
-
export declare class PipelineNameInUseException extends __BaseException {
|
|
2472
|
-
readonly name: "PipelineNameInUseException";
|
|
2473
|
-
readonly $fault: "client";
|
|
2474
|
-
/**
|
|
2475
|
-
* @internal
|
|
2476
|
-
*/
|
|
2477
|
-
constructor(opts: __ExceptionOptionType<PipelineNameInUseException, __BaseException>);
|
|
2478
|
-
}
|
|
2479
2010
|
/**
|
|
2480
2011
|
* <p>Represents the input of a <code>DeleteCustomActionType</code> operation. The custom
|
|
2481
2012
|
* action will be marked as deleted.</p>
|
|
@@ -2541,31 +2072,6 @@ export interface DeregisterWebhookWithThirdPartyInput {
|
|
|
2541
2072
|
*/
|
|
2542
2073
|
export interface DeregisterWebhookWithThirdPartyOutput {
|
|
2543
2074
|
}
|
|
2544
|
-
/**
|
|
2545
|
-
* <p>The specified webhook was entered in an invalid format or cannot be
|
|
2546
|
-
* found.</p>
|
|
2547
|
-
* @public
|
|
2548
|
-
*/
|
|
2549
|
-
export declare class WebhookNotFoundException extends __BaseException {
|
|
2550
|
-
readonly name: "WebhookNotFoundException";
|
|
2551
|
-
readonly $fault: "client";
|
|
2552
|
-
/**
|
|
2553
|
-
* @internal
|
|
2554
|
-
*/
|
|
2555
|
-
constructor(opts: __ExceptionOptionType<WebhookNotFoundException, __BaseException>);
|
|
2556
|
-
}
|
|
2557
|
-
/**
|
|
2558
|
-
* @public
|
|
2559
|
-
* @enum
|
|
2560
|
-
*/
|
|
2561
|
-
export declare const StageTransitionType: {
|
|
2562
|
-
readonly Inbound: "Inbound";
|
|
2563
|
-
readonly Outbound: "Outbound";
|
|
2564
|
-
};
|
|
2565
|
-
/**
|
|
2566
|
-
* @public
|
|
2567
|
-
*/
|
|
2568
|
-
export type StageTransitionType = (typeof StageTransitionType)[keyof typeof StageTransitionType];
|
|
2569
2075
|
/**
|
|
2570
2076
|
* <p>Represents the input of a <code>DisableStageTransition</code> action.</p>
|
|
2571
2077
|
* @public
|
|
@@ -2599,30 +2105,6 @@ export interface DisableStageTransitionInput {
|
|
|
2599
2105
|
*/
|
|
2600
2106
|
reason: string | undefined;
|
|
2601
2107
|
}
|
|
2602
|
-
/**
|
|
2603
|
-
* <p>The pipeline was specified in an invalid format or cannot be found.</p>
|
|
2604
|
-
* @public
|
|
2605
|
-
*/
|
|
2606
|
-
export declare class PipelineNotFoundException extends __BaseException {
|
|
2607
|
-
readonly name: "PipelineNotFoundException";
|
|
2608
|
-
readonly $fault: "client";
|
|
2609
|
-
/**
|
|
2610
|
-
* @internal
|
|
2611
|
-
*/
|
|
2612
|
-
constructor(opts: __ExceptionOptionType<PipelineNotFoundException, __BaseException>);
|
|
2613
|
-
}
|
|
2614
|
-
/**
|
|
2615
|
-
* <p>The stage was specified in an invalid format or cannot be found.</p>
|
|
2616
|
-
* @public
|
|
2617
|
-
*/
|
|
2618
|
-
export declare class StageNotFoundException extends __BaseException {
|
|
2619
|
-
readonly name: "StageNotFoundException";
|
|
2620
|
-
readonly $fault: "client";
|
|
2621
|
-
/**
|
|
2622
|
-
* @internal
|
|
2623
|
-
*/
|
|
2624
|
-
constructor(opts: __ExceptionOptionType<StageNotFoundException, __BaseException>);
|
|
2625
|
-
}
|
|
2626
2108
|
/**
|
|
2627
2109
|
* <p>Represents the input of an <code>EnableStageTransition</code> action.</p>
|
|
2628
2110
|
* @public
|
|
@@ -2950,19 +2432,6 @@ export interface GetPipelineOutput {
|
|
|
2950
2432
|
*/
|
|
2951
2433
|
metadata?: PipelineMetadata | undefined;
|
|
2952
2434
|
}
|
|
2953
|
-
/**
|
|
2954
|
-
* <p>The pipeline version was specified in an invalid format or cannot be
|
|
2955
|
-
* found.</p>
|
|
2956
|
-
* @public
|
|
2957
|
-
*/
|
|
2958
|
-
export declare class PipelineVersionNotFoundException extends __BaseException {
|
|
2959
|
-
readonly name: "PipelineVersionNotFoundException";
|
|
2960
|
-
readonly $fault: "client";
|
|
2961
|
-
/**
|
|
2962
|
-
* @internal
|
|
2963
|
-
*/
|
|
2964
|
-
constructor(opts: __ExceptionOptionType<PipelineVersionNotFoundException, __BaseException>);
|
|
2965
|
-
}
|
|
2966
2435
|
/**
|
|
2967
2436
|
* <p>Represents the input of a <code>GetPipelineExecution</code> action.</p>
|
|
2968
2437
|
* @public
|
|
@@ -2980,18 +2449,6 @@ export interface GetPipelineExecutionInput {
|
|
|
2980
2449
|
*/
|
|
2981
2450
|
pipelineExecutionId: string | undefined;
|
|
2982
2451
|
}
|
|
2983
|
-
/**
|
|
2984
|
-
* @public
|
|
2985
|
-
* @enum
|
|
2986
|
-
*/
|
|
2987
|
-
export declare const ExecutionType: {
|
|
2988
|
-
readonly ROLLBACK: "ROLLBACK";
|
|
2989
|
-
readonly STANDARD: "STANDARD";
|
|
2990
|
-
};
|
|
2991
|
-
/**
|
|
2992
|
-
* @public
|
|
2993
|
-
*/
|
|
2994
|
-
export type ExecutionType = (typeof ExecutionType)[keyof typeof ExecutionType];
|
|
2995
2452
|
/**
|
|
2996
2453
|
* <p>The metadata for the stage execution to be rolled back.</p>
|
|
2997
2454
|
* @public
|
|
@@ -3003,42 +2460,6 @@ export interface PipelineRollbackMetadata {
|
|
|
3003
2460
|
*/
|
|
3004
2461
|
rollbackTargetPipelineExecutionId?: string | undefined;
|
|
3005
2462
|
}
|
|
3006
|
-
/**
|
|
3007
|
-
* @public
|
|
3008
|
-
* @enum
|
|
3009
|
-
*/
|
|
3010
|
-
export declare const PipelineExecutionStatus: {
|
|
3011
|
-
readonly Cancelled: "Cancelled";
|
|
3012
|
-
readonly Failed: "Failed";
|
|
3013
|
-
readonly InProgress: "InProgress";
|
|
3014
|
-
readonly Stopped: "Stopped";
|
|
3015
|
-
readonly Stopping: "Stopping";
|
|
3016
|
-
readonly Succeeded: "Succeeded";
|
|
3017
|
-
readonly Superseded: "Superseded";
|
|
3018
|
-
};
|
|
3019
|
-
/**
|
|
3020
|
-
* @public
|
|
3021
|
-
*/
|
|
3022
|
-
export type PipelineExecutionStatus = (typeof PipelineExecutionStatus)[keyof typeof PipelineExecutionStatus];
|
|
3023
|
-
/**
|
|
3024
|
-
* @public
|
|
3025
|
-
* @enum
|
|
3026
|
-
*/
|
|
3027
|
-
export declare const TriggerType: {
|
|
3028
|
-
readonly AutomatedRollback: "AutomatedRollback";
|
|
3029
|
-
readonly CloudWatchEvent: "CloudWatchEvent";
|
|
3030
|
-
readonly CreatePipeline: "CreatePipeline";
|
|
3031
|
-
readonly ManualRollback: "ManualRollback";
|
|
3032
|
-
readonly PollForSourceChanges: "PollForSourceChanges";
|
|
3033
|
-
readonly PutActionRevision: "PutActionRevision";
|
|
3034
|
-
readonly StartPipelineExecution: "StartPipelineExecution";
|
|
3035
|
-
readonly Webhook: "Webhook";
|
|
3036
|
-
readonly WebhookV2: "WebhookV2";
|
|
3037
|
-
};
|
|
3038
|
-
/**
|
|
3039
|
-
* @public
|
|
3040
|
-
*/
|
|
3041
|
-
export type TriggerType = (typeof TriggerType)[keyof typeof TriggerType];
|
|
3042
2463
|
/**
|
|
3043
2464
|
* <p>The interaction or event that started a pipeline execution.</p>
|
|
3044
2465
|
* @public
|
|
@@ -3177,19 +2598,6 @@ export interface GetPipelineExecutionOutput {
|
|
|
3177
2598
|
*/
|
|
3178
2599
|
pipelineExecution?: PipelineExecution | undefined;
|
|
3179
2600
|
}
|
|
3180
|
-
/**
|
|
3181
|
-
* <p>The pipeline execution was specified in an invalid format or cannot be found, or an
|
|
3182
|
-
* execution ID does not belong to the specified pipeline. </p>
|
|
3183
|
-
* @public
|
|
3184
|
-
*/
|
|
3185
|
-
export declare class PipelineExecutionNotFoundException extends __BaseException {
|
|
3186
|
-
readonly name: "PipelineExecutionNotFoundException";
|
|
3187
|
-
readonly $fault: "client";
|
|
3188
|
-
/**
|
|
3189
|
-
* @internal
|
|
3190
|
-
*/
|
|
3191
|
-
constructor(opts: __ExceptionOptionType<PipelineExecutionNotFoundException, __BaseException>);
|
|
3192
|
-
}
|
|
3193
2601
|
/**
|
|
3194
2602
|
* <p>Represents the input of a <code>GetPipelineState</code> action.</p>
|
|
3195
2603
|
* @public
|
|
@@ -3201,23 +2609,6 @@ export interface GetPipelineStateInput {
|
|
|
3201
2609
|
*/
|
|
3202
2610
|
name: string | undefined;
|
|
3203
2611
|
}
|
|
3204
|
-
/**
|
|
3205
|
-
* @public
|
|
3206
|
-
* @enum
|
|
3207
|
-
*/
|
|
3208
|
-
export declare const ConditionExecutionStatus: {
|
|
3209
|
-
readonly Abandoned: "Abandoned";
|
|
3210
|
-
readonly Cancelled: "Cancelled";
|
|
3211
|
-
readonly Errored: "Errored";
|
|
3212
|
-
readonly Failed: "Failed";
|
|
3213
|
-
readonly InProgress: "InProgress";
|
|
3214
|
-
readonly Overridden: "Overridden";
|
|
3215
|
-
readonly Succeeded: "Succeeded";
|
|
3216
|
-
};
|
|
3217
|
-
/**
|
|
3218
|
-
* @public
|
|
3219
|
-
*/
|
|
3220
|
-
export type ConditionExecutionStatus = (typeof ConditionExecutionStatus)[keyof typeof ConditionExecutionStatus];
|
|
3221
2612
|
/**
|
|
3222
2613
|
* <p>The run of a condition.</p>
|
|
3223
2614
|
* @public
|
|
@@ -3262,20 +2653,6 @@ export interface RuleRevision {
|
|
|
3262
2653
|
*/
|
|
3263
2654
|
created: Date | undefined;
|
|
3264
2655
|
}
|
|
3265
|
-
/**
|
|
3266
|
-
* @public
|
|
3267
|
-
* @enum
|
|
3268
|
-
*/
|
|
3269
|
-
export declare const RuleExecutionStatus: {
|
|
3270
|
-
readonly Abandoned: "Abandoned";
|
|
3271
|
-
readonly Failed: "Failed";
|
|
3272
|
-
readonly InProgress: "InProgress";
|
|
3273
|
-
readonly Succeeded: "Succeeded";
|
|
3274
|
-
};
|
|
3275
|
-
/**
|
|
3276
|
-
* @public
|
|
3277
|
-
*/
|
|
3278
|
-
export type RuleExecutionStatus = (typeof RuleExecutionStatus)[keyof typeof RuleExecutionStatus];
|
|
3279
2656
|
/**
|
|
3280
2657
|
* <p>Represents information about each time a rule is run as part of the pipeline execution
|
|
3281
2658
|
* for a pipeline configured with conditions.</p>
|
|
@@ -3415,23 +2792,6 @@ export interface StageConditionState {
|
|
|
3415
2792
|
*/
|
|
3416
2793
|
conditionStates?: ConditionState[] | undefined;
|
|
3417
2794
|
}
|
|
3418
|
-
/**
|
|
3419
|
-
* @public
|
|
3420
|
-
* @enum
|
|
3421
|
-
*/
|
|
3422
|
-
export declare const StageExecutionStatus: {
|
|
3423
|
-
readonly Cancelled: "Cancelled";
|
|
3424
|
-
readonly Failed: "Failed";
|
|
3425
|
-
readonly InProgress: "InProgress";
|
|
3426
|
-
readonly Skipped: "Skipped";
|
|
3427
|
-
readonly Stopped: "Stopped";
|
|
3428
|
-
readonly Stopping: "Stopping";
|
|
3429
|
-
readonly Succeeded: "Succeeded";
|
|
3430
|
-
};
|
|
3431
|
-
/**
|
|
3432
|
-
* @public
|
|
3433
|
-
*/
|
|
3434
|
-
export type StageExecutionStatus = (typeof StageExecutionStatus)[keyof typeof StageExecutionStatus];
|
|
3435
2795
|
/**
|
|
3436
2796
|
* <p>Represents information about the run of a stage.</p>
|
|
3437
2797
|
* @public
|
|
@@ -3488,18 +2848,6 @@ export interface TransitionState {
|
|
|
3488
2848
|
*/
|
|
3489
2849
|
disabledReason?: string | undefined;
|
|
3490
2850
|
}
|
|
3491
|
-
/**
|
|
3492
|
-
* @public
|
|
3493
|
-
* @enum
|
|
3494
|
-
*/
|
|
3495
|
-
export declare const RetryTrigger: {
|
|
3496
|
-
readonly AutomatedStageRetry: "AutomatedStageRetry";
|
|
3497
|
-
readonly ManualStageRetry: "ManualStageRetry";
|
|
3498
|
-
};
|
|
3499
|
-
/**
|
|
3500
|
-
* @public
|
|
3501
|
-
*/
|
|
3502
|
-
export type RetryTrigger = (typeof RetryTrigger)[keyof typeof RetryTrigger];
|
|
3503
2851
|
/**
|
|
3504
2852
|
* <p>The details of a specific automatic retry on stage failure, including the attempt
|
|
3505
2853
|
* number and trigger.</p>
|
|
@@ -3732,31 +3080,6 @@ export interface GetThirdPartyJobDetailsOutput {
|
|
|
3732
3080
|
*/
|
|
3733
3081
|
jobDetails?: ThirdPartyJobDetails | undefined;
|
|
3734
3082
|
}
|
|
3735
|
-
/**
|
|
3736
|
-
* <p>The job was specified in an invalid format or cannot be found.</p>
|
|
3737
|
-
* @public
|
|
3738
|
-
*/
|
|
3739
|
-
export declare class InvalidJobException extends __BaseException {
|
|
3740
|
-
readonly name: "InvalidJobException";
|
|
3741
|
-
readonly $fault: "client";
|
|
3742
|
-
/**
|
|
3743
|
-
* @internal
|
|
3744
|
-
*/
|
|
3745
|
-
constructor(opts: __ExceptionOptionType<InvalidJobException, __BaseException>);
|
|
3746
|
-
}
|
|
3747
|
-
/**
|
|
3748
|
-
* <p>The next token was specified in an invalid format. Make sure that the next token
|
|
3749
|
-
* you provide is the token returned by a previous call.</p>
|
|
3750
|
-
* @public
|
|
3751
|
-
*/
|
|
3752
|
-
export declare class InvalidNextTokenException extends __BaseException {
|
|
3753
|
-
readonly name: "InvalidNextTokenException";
|
|
3754
|
-
readonly $fault: "client";
|
|
3755
|
-
/**
|
|
3756
|
-
* @internal
|
|
3757
|
-
*/
|
|
3758
|
-
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
3759
|
-
}
|
|
3760
3083
|
/**
|
|
3761
3084
|
* @public
|
|
3762
3085
|
*/
|
|
@@ -3843,17 +3166,6 @@ export interface ListActionTypesOutput {
|
|
|
3843
3166
|
*/
|
|
3844
3167
|
nextToken?: string | undefined;
|
|
3845
3168
|
}
|
|
3846
|
-
/**
|
|
3847
|
-
* @public
|
|
3848
|
-
* @enum
|
|
3849
|
-
*/
|
|
3850
|
-
export declare const TargetFilterName: {
|
|
3851
|
-
readonly TARGET_STATUS: "TARGET_STATUS";
|
|
3852
|
-
};
|
|
3853
|
-
/**
|
|
3854
|
-
* @public
|
|
3855
|
-
*/
|
|
3856
|
-
export type TargetFilterName = (typeof TargetFilterName)[keyof typeof TargetFilterName];
|
|
3857
3169
|
/**
|
|
3858
3170
|
* <p>Filters the list of targets.</p>
|
|
3859
3171
|
* @public
|
|
@@ -4533,19 +3845,6 @@ export interface ListRuleTypesInput {
|
|
|
4533
3845
|
*/
|
|
4534
3846
|
regionFilter?: string | undefined;
|
|
4535
3847
|
}
|
|
4536
|
-
/**
|
|
4537
|
-
* @public
|
|
4538
|
-
* @enum
|
|
4539
|
-
*/
|
|
4540
|
-
export declare const RuleConfigurationPropertyType: {
|
|
4541
|
-
readonly Boolean: "Boolean";
|
|
4542
|
-
readonly Number: "Number";
|
|
4543
|
-
readonly String: "String";
|
|
4544
|
-
};
|
|
4545
|
-
/**
|
|
4546
|
-
* @public
|
|
4547
|
-
*/
|
|
4548
|
-
export type RuleConfigurationPropertyType = (typeof RuleConfigurationPropertyType)[keyof typeof RuleConfigurationPropertyType];
|
|
4549
3848
|
/**
|
|
4550
3849
|
* <p>Represents information about a rule configuration property.</p>
|
|
4551
3850
|
* @public
|
|
@@ -4665,18 +3964,6 @@ export interface ListRuleTypesOutput {
|
|
|
4665
3964
|
*/
|
|
4666
3965
|
ruleTypes: RuleType[] | undefined;
|
|
4667
3966
|
}
|
|
4668
|
-
/**
|
|
4669
|
-
* <p>The specified resource ARN is invalid.</p>
|
|
4670
|
-
* @public
|
|
4671
|
-
*/
|
|
4672
|
-
export declare class InvalidArnException extends __BaseException {
|
|
4673
|
-
readonly name: "InvalidArnException";
|
|
4674
|
-
readonly $fault: "client";
|
|
4675
|
-
/**
|
|
4676
|
-
* @internal
|
|
4677
|
-
*/
|
|
4678
|
-
constructor(opts: __ExceptionOptionType<InvalidArnException, __BaseException>);
|
|
4679
|
-
}
|
|
4680
3967
|
/**
|
|
4681
3968
|
* @public
|
|
4682
3969
|
*/
|
|
@@ -4717,18 +4004,6 @@ export interface ListTagsForResourceOutput {
|
|
|
4717
4004
|
*/
|
|
4718
4005
|
nextToken?: string | undefined;
|
|
4719
4006
|
}
|
|
4720
|
-
/**
|
|
4721
|
-
* <p>The resource was specified in an invalid format.</p>
|
|
4722
|
-
* @public
|
|
4723
|
-
*/
|
|
4724
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
4725
|
-
readonly name: "ResourceNotFoundException";
|
|
4726
|
-
readonly $fault: "client";
|
|
4727
|
-
/**
|
|
4728
|
-
* @internal
|
|
4729
|
-
*/
|
|
4730
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
4731
|
-
}
|
|
4732
4007
|
/**
|
|
4733
4008
|
* @public
|
|
4734
4009
|
*/
|
|
@@ -4746,19 +4021,6 @@ export interface ListWebhooksInput {
|
|
|
4746
4021
|
*/
|
|
4747
4022
|
MaxResults?: number | undefined;
|
|
4748
4023
|
}
|
|
4749
|
-
/**
|
|
4750
|
-
* @public
|
|
4751
|
-
* @enum
|
|
4752
|
-
*/
|
|
4753
|
-
export declare const WebhookAuthenticationType: {
|
|
4754
|
-
readonly GITHUB_HMAC: "GITHUB_HMAC";
|
|
4755
|
-
readonly IP: "IP";
|
|
4756
|
-
readonly UNAUTHENTICATED: "UNAUTHENTICATED";
|
|
4757
|
-
};
|
|
4758
|
-
/**
|
|
4759
|
-
* @public
|
|
4760
|
-
*/
|
|
4761
|
-
export type WebhookAuthenticationType = (typeof WebhookAuthenticationType)[keyof typeof WebhookAuthenticationType];
|
|
4762
4024
|
/**
|
|
4763
4025
|
* <p>The authentication applied to incoming webhook trigger requests.</p>
|
|
4764
4026
|
* @public
|
|
@@ -4954,69 +4216,6 @@ export interface ListWebhooksOutput {
|
|
|
4954
4216
|
*/
|
|
4955
4217
|
NextToken?: string | undefined;
|
|
4956
4218
|
}
|
|
4957
|
-
/**
|
|
4958
|
-
* <p>The pipeline has reached the limit for concurrent pipeline executions.</p>
|
|
4959
|
-
* @public
|
|
4960
|
-
*/
|
|
4961
|
-
export declare class ConcurrentPipelineExecutionsLimitExceededException extends __BaseException {
|
|
4962
|
-
readonly name: "ConcurrentPipelineExecutionsLimitExceededException";
|
|
4963
|
-
readonly $fault: "client";
|
|
4964
|
-
/**
|
|
4965
|
-
* @internal
|
|
4966
|
-
*/
|
|
4967
|
-
constructor(opts: __ExceptionOptionType<ConcurrentPipelineExecutionsLimitExceededException, __BaseException>);
|
|
4968
|
-
}
|
|
4969
|
-
/**
|
|
4970
|
-
* <p>Unable to override because the condition does not allow overrides.</p>
|
|
4971
|
-
* @public
|
|
4972
|
-
*/
|
|
4973
|
-
export declare class ConditionNotOverridableException extends __BaseException {
|
|
4974
|
-
readonly name: "ConditionNotOverridableException";
|
|
4975
|
-
readonly $fault: "client";
|
|
4976
|
-
/**
|
|
4977
|
-
* @internal
|
|
4978
|
-
*/
|
|
4979
|
-
constructor(opts: __ExceptionOptionType<ConditionNotOverridableException, __BaseException>);
|
|
4980
|
-
}
|
|
4981
|
-
/**
|
|
4982
|
-
* <p>Your request cannot be handled because the pipeline is busy handling ongoing
|
|
4983
|
-
* activities. Try again later.</p>
|
|
4984
|
-
* @public
|
|
4985
|
-
*/
|
|
4986
|
-
export declare class ConflictException extends __BaseException {
|
|
4987
|
-
readonly name: "ConflictException";
|
|
4988
|
-
readonly $fault: "client";
|
|
4989
|
-
/**
|
|
4990
|
-
* @internal
|
|
4991
|
-
*/
|
|
4992
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
4993
|
-
}
|
|
4994
|
-
/**
|
|
4995
|
-
* <p>The stage has failed in a later run of the pipeline and the
|
|
4996
|
-
* <code>pipelineExecutionId</code> associated with the request is out of
|
|
4997
|
-
* date.</p>
|
|
4998
|
-
* @public
|
|
4999
|
-
*/
|
|
5000
|
-
export declare class NotLatestPipelineExecutionException extends __BaseException {
|
|
5001
|
-
readonly name: "NotLatestPipelineExecutionException";
|
|
5002
|
-
readonly $fault: "client";
|
|
5003
|
-
/**
|
|
5004
|
-
* @internal
|
|
5005
|
-
*/
|
|
5006
|
-
constructor(opts: __ExceptionOptionType<NotLatestPipelineExecutionException, __BaseException>);
|
|
5007
|
-
}
|
|
5008
|
-
/**
|
|
5009
|
-
* @public
|
|
5010
|
-
* @enum
|
|
5011
|
-
*/
|
|
5012
|
-
export declare const ConditionType: {
|
|
5013
|
-
readonly BEFORE_ENTRY: "BEFORE_ENTRY";
|
|
5014
|
-
readonly ON_SUCCESS: "ON_SUCCESS";
|
|
5015
|
-
};
|
|
5016
|
-
/**
|
|
5017
|
-
* @public
|
|
5018
|
-
*/
|
|
5019
|
-
export type ConditionType = (typeof ConditionType)[keyof typeof ConditionType];
|
|
5020
4219
|
/**
|
|
5021
4220
|
* @public
|
|
5022
4221
|
*/
|
|
@@ -5194,18 +4393,6 @@ export interface PutActionRevisionOutput {
|
|
|
5194
4393
|
*/
|
|
5195
4394
|
pipelineExecutionId?: string | undefined;
|
|
5196
4395
|
}
|
|
5197
|
-
/**
|
|
5198
|
-
* <p>The approval request already received a response or has expired.</p>
|
|
5199
|
-
* @public
|
|
5200
|
-
*/
|
|
5201
|
-
export declare class InvalidApprovalTokenException extends __BaseException {
|
|
5202
|
-
readonly name: "InvalidApprovalTokenException";
|
|
5203
|
-
readonly $fault: "client";
|
|
5204
|
-
/**
|
|
5205
|
-
* @internal
|
|
5206
|
-
*/
|
|
5207
|
-
constructor(opts: __ExceptionOptionType<InvalidApprovalTokenException, __BaseException>);
|
|
5208
|
-
}
|
|
5209
4396
|
/**
|
|
5210
4397
|
* <p>Represents the input of a <code>PutApprovalResult</code> action.</p>
|
|
5211
4398
|
* @public
|
|
@@ -5256,34 +4443,6 @@ export interface PutApprovalResultOutput {
|
|
|
5256
4443
|
*/
|
|
5257
4444
|
approvedAt?: Date | undefined;
|
|
5258
4445
|
}
|
|
5259
|
-
/**
|
|
5260
|
-
* <p>The job state was specified in an invalid format.</p>
|
|
5261
|
-
* @public
|
|
5262
|
-
*/
|
|
5263
|
-
export declare class InvalidJobStateException extends __BaseException {
|
|
5264
|
-
readonly name: "InvalidJobStateException";
|
|
5265
|
-
readonly $fault: "client";
|
|
5266
|
-
/**
|
|
5267
|
-
* @internal
|
|
5268
|
-
*/
|
|
5269
|
-
constructor(opts: __ExceptionOptionType<InvalidJobStateException, __BaseException>);
|
|
5270
|
-
}
|
|
5271
|
-
/**
|
|
5272
|
-
* @public
|
|
5273
|
-
* @enum
|
|
5274
|
-
*/
|
|
5275
|
-
export declare const FailureType: {
|
|
5276
|
-
readonly ConfigurationError: "ConfigurationError";
|
|
5277
|
-
readonly JobFailed: "JobFailed";
|
|
5278
|
-
readonly PermissionError: "PermissionError";
|
|
5279
|
-
readonly RevisionOutOfSync: "RevisionOutOfSync";
|
|
5280
|
-
readonly RevisionUnavailable: "RevisionUnavailable";
|
|
5281
|
-
readonly SystemUnavailable: "SystemUnavailable";
|
|
5282
|
-
};
|
|
5283
|
-
/**
|
|
5284
|
-
* @public
|
|
5285
|
-
*/
|
|
5286
|
-
export type FailureType = (typeof FailureType)[keyof typeof FailureType];
|
|
5287
4446
|
/**
|
|
5288
4447
|
* <p>Represents information about failure details.</p>
|
|
5289
4448
|
* @public
|
|
@@ -5322,18 +4481,6 @@ export interface PutJobFailureResultInput {
|
|
|
5322
4481
|
*/
|
|
5323
4482
|
failureDetails: FailureDetails | undefined;
|
|
5324
4483
|
}
|
|
5325
|
-
/**
|
|
5326
|
-
* <p>Exceeded the total size limit for all variables in the pipeline.</p>
|
|
5327
|
-
* @public
|
|
5328
|
-
*/
|
|
5329
|
-
export declare class OutputVariablesSizeExceededException extends __BaseException {
|
|
5330
|
-
readonly name: "OutputVariablesSizeExceededException";
|
|
5331
|
-
readonly $fault: "client";
|
|
5332
|
-
/**
|
|
5333
|
-
* @internal
|
|
5334
|
-
*/
|
|
5335
|
-
constructor(opts: __ExceptionOptionType<OutputVariablesSizeExceededException, __BaseException>);
|
|
5336
|
-
}
|
|
5337
4484
|
/**
|
|
5338
4485
|
* <p>Represents information about a current revision.</p>
|
|
5339
4486
|
* @public
|
|
@@ -5488,30 +4635,6 @@ export interface PutThirdPartyJobSuccessResultInput {
|
|
|
5488
4635
|
*/
|
|
5489
4636
|
executionDetails?: ExecutionDetails | undefined;
|
|
5490
4637
|
}
|
|
5491
|
-
/**
|
|
5492
|
-
* <p>The specified authentication type is in an invalid format.</p>
|
|
5493
|
-
* @public
|
|
5494
|
-
*/
|
|
5495
|
-
export declare class InvalidWebhookAuthenticationParametersException extends __BaseException {
|
|
5496
|
-
readonly name: "InvalidWebhookAuthenticationParametersException";
|
|
5497
|
-
readonly $fault: "client";
|
|
5498
|
-
/**
|
|
5499
|
-
* @internal
|
|
5500
|
-
*/
|
|
5501
|
-
constructor(opts: __ExceptionOptionType<InvalidWebhookAuthenticationParametersException, __BaseException>);
|
|
5502
|
-
}
|
|
5503
|
-
/**
|
|
5504
|
-
* <p>The specified event filter rule is in an invalid format.</p>
|
|
5505
|
-
* @public
|
|
5506
|
-
*/
|
|
5507
|
-
export declare class InvalidWebhookFilterPatternException extends __BaseException {
|
|
5508
|
-
readonly name: "InvalidWebhookFilterPatternException";
|
|
5509
|
-
readonly $fault: "client";
|
|
5510
|
-
/**
|
|
5511
|
-
* @internal
|
|
5512
|
-
*/
|
|
5513
|
-
constructor(opts: __ExceptionOptionType<InvalidWebhookFilterPatternException, __BaseException>);
|
|
5514
|
-
}
|
|
5515
4638
|
/**
|
|
5516
4639
|
* @public
|
|
5517
4640
|
*/
|
|
@@ -5595,33 +4718,6 @@ export interface RetryStageExecutionOutput {
|
|
|
5595
4718
|
*/
|
|
5596
4719
|
pipelineExecutionId?: string | undefined;
|
|
5597
4720
|
}
|
|
5598
|
-
/**
|
|
5599
|
-
* <p>Unable to retry. The pipeline structure or stage state might have changed while
|
|
5600
|
-
* actions awaited retry, or the stage contains no failed
|
|
5601
|
-
* actions.</p>
|
|
5602
|
-
* @public
|
|
5603
|
-
*/
|
|
5604
|
-
export declare class StageNotRetryableException extends __BaseException {
|
|
5605
|
-
readonly name: "StageNotRetryableException";
|
|
5606
|
-
readonly $fault: "client";
|
|
5607
|
-
/**
|
|
5608
|
-
* @internal
|
|
5609
|
-
*/
|
|
5610
|
-
constructor(opts: __ExceptionOptionType<StageNotRetryableException, __BaseException>);
|
|
5611
|
-
}
|
|
5612
|
-
/**
|
|
5613
|
-
* <p>The specified pipeline execution is outdated and cannot be used as a target pipeline
|
|
5614
|
-
* execution for rollback.</p>
|
|
5615
|
-
* @public
|
|
5616
|
-
*/
|
|
5617
|
-
export declare class PipelineExecutionOutdatedException extends __BaseException {
|
|
5618
|
-
readonly name: "PipelineExecutionOutdatedException";
|
|
5619
|
-
readonly $fault: "client";
|
|
5620
|
-
/**
|
|
5621
|
-
* @internal
|
|
5622
|
-
*/
|
|
5623
|
-
constructor(opts: __ExceptionOptionType<PipelineExecutionOutdatedException, __BaseException>);
|
|
5624
|
-
}
|
|
5625
4721
|
/**
|
|
5626
4722
|
* @public
|
|
5627
4723
|
*/
|
|
@@ -5653,34 +4749,6 @@ export interface RollbackStageOutput {
|
|
|
5653
4749
|
*/
|
|
5654
4750
|
pipelineExecutionId: string | undefined;
|
|
5655
4751
|
}
|
|
5656
|
-
/**
|
|
5657
|
-
* <p>Unable to roll back the stage. The cause might be if the pipeline version has changed
|
|
5658
|
-
* since the target pipeline execution was deployed, the stage is currently running, or an
|
|
5659
|
-
* incorrect target pipeline execution ID was provided.</p>
|
|
5660
|
-
* @public
|
|
5661
|
-
*/
|
|
5662
|
-
export declare class UnableToRollbackStageException extends __BaseException {
|
|
5663
|
-
readonly name: "UnableToRollbackStageException";
|
|
5664
|
-
readonly $fault: "client";
|
|
5665
|
-
/**
|
|
5666
|
-
* @internal
|
|
5667
|
-
*/
|
|
5668
|
-
constructor(opts: __ExceptionOptionType<UnableToRollbackStageException, __BaseException>);
|
|
5669
|
-
}
|
|
5670
|
-
/**
|
|
5671
|
-
* @public
|
|
5672
|
-
* @enum
|
|
5673
|
-
*/
|
|
5674
|
-
export declare const SourceRevisionType: {
|
|
5675
|
-
readonly COMMIT_ID: "COMMIT_ID";
|
|
5676
|
-
readonly IMAGE_DIGEST: "IMAGE_DIGEST";
|
|
5677
|
-
readonly S3_OBJECT_KEY: "S3_OBJECT_KEY";
|
|
5678
|
-
readonly S3_OBJECT_VERSION_ID: "S3_OBJECT_VERSION_ID";
|
|
5679
|
-
};
|
|
5680
|
-
/**
|
|
5681
|
-
* @public
|
|
5682
|
-
*/
|
|
5683
|
-
export type SourceRevisionType = (typeof SourceRevisionType)[keyof typeof SourceRevisionType];
|
|
5684
4752
|
/**
|
|
5685
4753
|
* <p>A list that allows you to specify, or override, the source revision for a pipeline
|
|
5686
4754
|
* execution that's being started. A source revision is the version with all the changes to
|
|
@@ -5770,35 +4838,6 @@ export interface StartPipelineExecutionOutput {
|
|
|
5770
4838
|
*/
|
|
5771
4839
|
pipelineExecutionId?: string | undefined;
|
|
5772
4840
|
}
|
|
5773
|
-
/**
|
|
5774
|
-
* <p>The pipeline execution is already in a <code>Stopping</code> state. If you already
|
|
5775
|
-
* chose to stop and wait, you cannot make that request again. You can choose to stop and
|
|
5776
|
-
* abandon now, but be aware that this option can lead to failed tasks or out of sequence
|
|
5777
|
-
* tasks. If you already chose to stop and abandon, you cannot make that request
|
|
5778
|
-
* again.</p>
|
|
5779
|
-
* @public
|
|
5780
|
-
*/
|
|
5781
|
-
export declare class DuplicatedStopRequestException extends __BaseException {
|
|
5782
|
-
readonly name: "DuplicatedStopRequestException";
|
|
5783
|
-
readonly $fault: "client";
|
|
5784
|
-
/**
|
|
5785
|
-
* @internal
|
|
5786
|
-
*/
|
|
5787
|
-
constructor(opts: __ExceptionOptionType<DuplicatedStopRequestException, __BaseException>);
|
|
5788
|
-
}
|
|
5789
|
-
/**
|
|
5790
|
-
* <p>Unable to stop the pipeline execution. The execution might already be in a
|
|
5791
|
-
* <code>Stopped</code> state, or it might no longer be in progress.</p>
|
|
5792
|
-
* @public
|
|
5793
|
-
*/
|
|
5794
|
-
export declare class PipelineExecutionNotStoppableException extends __BaseException {
|
|
5795
|
-
readonly name: "PipelineExecutionNotStoppableException";
|
|
5796
|
-
readonly $fault: "client";
|
|
5797
|
-
/**
|
|
5798
|
-
* @internal
|
|
5799
|
-
*/
|
|
5800
|
-
constructor(opts: __ExceptionOptionType<PipelineExecutionNotStoppableException, __BaseException>);
|
|
5801
|
-
}
|
|
5802
4841
|
/**
|
|
5803
4842
|
* @public
|
|
5804
4843
|
*/
|
|
@@ -5880,18 +4919,6 @@ export interface UntagResourceInput {
|
|
|
5880
4919
|
*/
|
|
5881
4920
|
export interface UntagResourceOutput {
|
|
5882
4921
|
}
|
|
5883
|
-
/**
|
|
5884
|
-
* <p>The request failed because of an unknown error, exception, or failure.</p>
|
|
5885
|
-
* @public
|
|
5886
|
-
*/
|
|
5887
|
-
export declare class RequestFailedException extends __BaseException {
|
|
5888
|
-
readonly name: "RequestFailedException";
|
|
5889
|
-
readonly $fault: "client";
|
|
5890
|
-
/**
|
|
5891
|
-
* @internal
|
|
5892
|
-
*/
|
|
5893
|
-
constructor(opts: __ExceptionOptionType<RequestFailedException, __BaseException>);
|
|
5894
|
-
}
|
|
5895
4922
|
/**
|
|
5896
4923
|
* @public
|
|
5897
4924
|
*/
|