@aws-sdk/client-codepipeline 3.1075.0 → 3.1077.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 +3027 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/CodePipelineServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -493
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -39
- package/dist-cjs/schemas/schemas_0.js +0 -2279
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
const {
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultCodePipelineHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "codepipeline",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultCodePipelineHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -31,6 +68,2663 @@ const commonParams = {
|
|
|
31
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
69
|
};
|
|
33
70
|
|
|
71
|
+
var version = "3.1076.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const k = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [g]],
|
|
80
|
+
[c, j],
|
|
81
|
+
["aws.partition", j, d],
|
|
82
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
83
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
86
|
+
],
|
|
87
|
+
results: [
|
|
88
|
+
[a],
|
|
89
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
90
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
91
|
+
[g, i],
|
|
92
|
+
["https://codepipeline-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
93
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
94
|
+
["https://codepipeline-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
95
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
96
|
+
["https://codepipeline.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
97
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
98
|
+
["https://codepipeline.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
99
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
100
|
+
]
|
|
101
|
+
};
|
|
102
|
+
const root = 2;
|
|
103
|
+
const r = 100_000_000;
|
|
104
|
+
const nodes = new Int32Array([
|
|
105
|
+
-1, 1, -1,
|
|
106
|
+
0, 12, 3,
|
|
107
|
+
1, 4, r + 11,
|
|
108
|
+
2, 5, r + 11,
|
|
109
|
+
3, 8, 6,
|
|
110
|
+
4, 7, r + 10,
|
|
111
|
+
5, r + 8, r + 9,
|
|
112
|
+
4, 10, 9,
|
|
113
|
+
6, r + 6, r + 7,
|
|
114
|
+
5, 11, r + 5,
|
|
115
|
+
6, r + 4, r + 5,
|
|
116
|
+
3, r + 1, 13,
|
|
117
|
+
4, r + 2, r + 3,
|
|
118
|
+
]);
|
|
119
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
120
|
+
|
|
121
|
+
const cache = new EndpointCache({
|
|
122
|
+
size: 50,
|
|
123
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
124
|
+
});
|
|
125
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
126
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
127
|
+
endpointParams: endpointParams,
|
|
128
|
+
logger: context.logger,
|
|
129
|
+
}));
|
|
130
|
+
};
|
|
131
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
132
|
+
|
|
133
|
+
class CodePipelineServiceException extends ServiceException {
|
|
134
|
+
constructor(options) {
|
|
135
|
+
super(options);
|
|
136
|
+
Object.setPrototypeOf(this, CodePipelineServiceException.prototype);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
class InvalidNonceException extends CodePipelineServiceException {
|
|
141
|
+
name = "InvalidNonceException";
|
|
142
|
+
$fault = "client";
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "InvalidNonceException",
|
|
146
|
+
$fault: "client",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, InvalidNonceException.prototype);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
class JobNotFoundException extends CodePipelineServiceException {
|
|
153
|
+
name = "JobNotFoundException";
|
|
154
|
+
$fault = "client";
|
|
155
|
+
constructor(opts) {
|
|
156
|
+
super({
|
|
157
|
+
name: "JobNotFoundException",
|
|
158
|
+
$fault: "client",
|
|
159
|
+
...opts,
|
|
160
|
+
});
|
|
161
|
+
Object.setPrototypeOf(this, JobNotFoundException.prototype);
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
class ValidationException extends CodePipelineServiceException {
|
|
165
|
+
name = "ValidationException";
|
|
166
|
+
$fault = "client";
|
|
167
|
+
constructor(opts) {
|
|
168
|
+
super({
|
|
169
|
+
name: "ValidationException",
|
|
170
|
+
$fault: "client",
|
|
171
|
+
...opts,
|
|
172
|
+
});
|
|
173
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
class InvalidClientTokenException extends CodePipelineServiceException {
|
|
177
|
+
name = "InvalidClientTokenException";
|
|
178
|
+
$fault = "client";
|
|
179
|
+
constructor(opts) {
|
|
180
|
+
super({
|
|
181
|
+
name: "InvalidClientTokenException",
|
|
182
|
+
$fault: "client",
|
|
183
|
+
...opts,
|
|
184
|
+
});
|
|
185
|
+
Object.setPrototypeOf(this, InvalidClientTokenException.prototype);
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
class ActionExecutionNotFoundException extends CodePipelineServiceException {
|
|
189
|
+
name = "ActionExecutionNotFoundException";
|
|
190
|
+
$fault = "client";
|
|
191
|
+
constructor(opts) {
|
|
192
|
+
super({
|
|
193
|
+
name: "ActionExecutionNotFoundException",
|
|
194
|
+
$fault: "client",
|
|
195
|
+
...opts,
|
|
196
|
+
});
|
|
197
|
+
Object.setPrototypeOf(this, ActionExecutionNotFoundException.prototype);
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
class ActionNotFoundException extends CodePipelineServiceException {
|
|
201
|
+
name = "ActionNotFoundException";
|
|
202
|
+
$fault = "client";
|
|
203
|
+
constructor(opts) {
|
|
204
|
+
super({
|
|
205
|
+
name: "ActionNotFoundException",
|
|
206
|
+
$fault: "client",
|
|
207
|
+
...opts,
|
|
208
|
+
});
|
|
209
|
+
Object.setPrototypeOf(this, ActionNotFoundException.prototype);
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
class ActionTypeNotFoundException extends CodePipelineServiceException {
|
|
213
|
+
name = "ActionTypeNotFoundException";
|
|
214
|
+
$fault = "client";
|
|
215
|
+
constructor(opts) {
|
|
216
|
+
super({
|
|
217
|
+
name: "ActionTypeNotFoundException",
|
|
218
|
+
$fault: "client",
|
|
219
|
+
...opts,
|
|
220
|
+
});
|
|
221
|
+
Object.setPrototypeOf(this, ActionTypeNotFoundException.prototype);
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
class ApprovalAlreadyCompletedException extends CodePipelineServiceException {
|
|
225
|
+
name = "ApprovalAlreadyCompletedException";
|
|
226
|
+
$fault = "client";
|
|
227
|
+
constructor(opts) {
|
|
228
|
+
super({
|
|
229
|
+
name: "ApprovalAlreadyCompletedException",
|
|
230
|
+
$fault: "client",
|
|
231
|
+
...opts,
|
|
232
|
+
});
|
|
233
|
+
Object.setPrototypeOf(this, ApprovalAlreadyCompletedException.prototype);
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
class ConcurrentModificationException extends CodePipelineServiceException {
|
|
237
|
+
name = "ConcurrentModificationException";
|
|
238
|
+
$fault = "client";
|
|
239
|
+
constructor(opts) {
|
|
240
|
+
super({
|
|
241
|
+
name: "ConcurrentModificationException",
|
|
242
|
+
$fault: "client",
|
|
243
|
+
...opts,
|
|
244
|
+
});
|
|
245
|
+
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
class InvalidTagsException extends CodePipelineServiceException {
|
|
249
|
+
name = "InvalidTagsException";
|
|
250
|
+
$fault = "client";
|
|
251
|
+
constructor(opts) {
|
|
252
|
+
super({
|
|
253
|
+
name: "InvalidTagsException",
|
|
254
|
+
$fault: "client",
|
|
255
|
+
...opts,
|
|
256
|
+
});
|
|
257
|
+
Object.setPrototypeOf(this, InvalidTagsException.prototype);
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
class LimitExceededException extends CodePipelineServiceException {
|
|
261
|
+
name = "LimitExceededException";
|
|
262
|
+
$fault = "client";
|
|
263
|
+
constructor(opts) {
|
|
264
|
+
super({
|
|
265
|
+
name: "LimitExceededException",
|
|
266
|
+
$fault: "client",
|
|
267
|
+
...opts,
|
|
268
|
+
});
|
|
269
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
class TooManyTagsException extends CodePipelineServiceException {
|
|
273
|
+
name = "TooManyTagsException";
|
|
274
|
+
$fault = "client";
|
|
275
|
+
constructor(opts) {
|
|
276
|
+
super({
|
|
277
|
+
name: "TooManyTagsException",
|
|
278
|
+
$fault: "client",
|
|
279
|
+
...opts,
|
|
280
|
+
});
|
|
281
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
class InvalidActionDeclarationException extends CodePipelineServiceException {
|
|
285
|
+
name = "InvalidActionDeclarationException";
|
|
286
|
+
$fault = "client";
|
|
287
|
+
constructor(opts) {
|
|
288
|
+
super({
|
|
289
|
+
name: "InvalidActionDeclarationException",
|
|
290
|
+
$fault: "client",
|
|
291
|
+
...opts,
|
|
292
|
+
});
|
|
293
|
+
Object.setPrototypeOf(this, InvalidActionDeclarationException.prototype);
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
class InvalidBlockerDeclarationException extends CodePipelineServiceException {
|
|
297
|
+
name = "InvalidBlockerDeclarationException";
|
|
298
|
+
$fault = "client";
|
|
299
|
+
constructor(opts) {
|
|
300
|
+
super({
|
|
301
|
+
name: "InvalidBlockerDeclarationException",
|
|
302
|
+
$fault: "client",
|
|
303
|
+
...opts,
|
|
304
|
+
});
|
|
305
|
+
Object.setPrototypeOf(this, InvalidBlockerDeclarationException.prototype);
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
class InvalidStageDeclarationException extends CodePipelineServiceException {
|
|
309
|
+
name = "InvalidStageDeclarationException";
|
|
310
|
+
$fault = "client";
|
|
311
|
+
constructor(opts) {
|
|
312
|
+
super({
|
|
313
|
+
name: "InvalidStageDeclarationException",
|
|
314
|
+
$fault: "client",
|
|
315
|
+
...opts,
|
|
316
|
+
});
|
|
317
|
+
Object.setPrototypeOf(this, InvalidStageDeclarationException.prototype);
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
class InvalidStructureException extends CodePipelineServiceException {
|
|
321
|
+
name = "InvalidStructureException";
|
|
322
|
+
$fault = "client";
|
|
323
|
+
constructor(opts) {
|
|
324
|
+
super({
|
|
325
|
+
name: "InvalidStructureException",
|
|
326
|
+
$fault: "client",
|
|
327
|
+
...opts,
|
|
328
|
+
});
|
|
329
|
+
Object.setPrototypeOf(this, InvalidStructureException.prototype);
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
class PipelineNameInUseException extends CodePipelineServiceException {
|
|
333
|
+
name = "PipelineNameInUseException";
|
|
334
|
+
$fault = "client";
|
|
335
|
+
constructor(opts) {
|
|
336
|
+
super({
|
|
337
|
+
name: "PipelineNameInUseException",
|
|
338
|
+
$fault: "client",
|
|
339
|
+
...opts,
|
|
340
|
+
});
|
|
341
|
+
Object.setPrototypeOf(this, PipelineNameInUseException.prototype);
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
class WebhookNotFoundException extends CodePipelineServiceException {
|
|
345
|
+
name = "WebhookNotFoundException";
|
|
346
|
+
$fault = "client";
|
|
347
|
+
constructor(opts) {
|
|
348
|
+
super({
|
|
349
|
+
name: "WebhookNotFoundException",
|
|
350
|
+
$fault: "client",
|
|
351
|
+
...opts,
|
|
352
|
+
});
|
|
353
|
+
Object.setPrototypeOf(this, WebhookNotFoundException.prototype);
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
class PipelineNotFoundException extends CodePipelineServiceException {
|
|
357
|
+
name = "PipelineNotFoundException";
|
|
358
|
+
$fault = "client";
|
|
359
|
+
constructor(opts) {
|
|
360
|
+
super({
|
|
361
|
+
name: "PipelineNotFoundException",
|
|
362
|
+
$fault: "client",
|
|
363
|
+
...opts,
|
|
364
|
+
});
|
|
365
|
+
Object.setPrototypeOf(this, PipelineNotFoundException.prototype);
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
class StageNotFoundException extends CodePipelineServiceException {
|
|
369
|
+
name = "StageNotFoundException";
|
|
370
|
+
$fault = "client";
|
|
371
|
+
constructor(opts) {
|
|
372
|
+
super({
|
|
373
|
+
name: "StageNotFoundException",
|
|
374
|
+
$fault: "client",
|
|
375
|
+
...opts,
|
|
376
|
+
});
|
|
377
|
+
Object.setPrototypeOf(this, StageNotFoundException.prototype);
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
class PipelineVersionNotFoundException extends CodePipelineServiceException {
|
|
381
|
+
name = "PipelineVersionNotFoundException";
|
|
382
|
+
$fault = "client";
|
|
383
|
+
constructor(opts) {
|
|
384
|
+
super({
|
|
385
|
+
name: "PipelineVersionNotFoundException",
|
|
386
|
+
$fault: "client",
|
|
387
|
+
...opts,
|
|
388
|
+
});
|
|
389
|
+
Object.setPrototypeOf(this, PipelineVersionNotFoundException.prototype);
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
class PipelineExecutionNotFoundException extends CodePipelineServiceException {
|
|
393
|
+
name = "PipelineExecutionNotFoundException";
|
|
394
|
+
$fault = "client";
|
|
395
|
+
constructor(opts) {
|
|
396
|
+
super({
|
|
397
|
+
name: "PipelineExecutionNotFoundException",
|
|
398
|
+
$fault: "client",
|
|
399
|
+
...opts,
|
|
400
|
+
});
|
|
401
|
+
Object.setPrototypeOf(this, PipelineExecutionNotFoundException.prototype);
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
class InvalidJobException extends CodePipelineServiceException {
|
|
405
|
+
name = "InvalidJobException";
|
|
406
|
+
$fault = "client";
|
|
407
|
+
constructor(opts) {
|
|
408
|
+
super({
|
|
409
|
+
name: "InvalidJobException",
|
|
410
|
+
$fault: "client",
|
|
411
|
+
...opts,
|
|
412
|
+
});
|
|
413
|
+
Object.setPrototypeOf(this, InvalidJobException.prototype);
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
class InvalidNextTokenException extends CodePipelineServiceException {
|
|
417
|
+
name = "InvalidNextTokenException";
|
|
418
|
+
$fault = "client";
|
|
419
|
+
constructor(opts) {
|
|
420
|
+
super({
|
|
421
|
+
name: "InvalidNextTokenException",
|
|
422
|
+
$fault: "client",
|
|
423
|
+
...opts,
|
|
424
|
+
});
|
|
425
|
+
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
426
|
+
}
|
|
427
|
+
}
|
|
428
|
+
class InvalidArnException extends CodePipelineServiceException {
|
|
429
|
+
name = "InvalidArnException";
|
|
430
|
+
$fault = "client";
|
|
431
|
+
constructor(opts) {
|
|
432
|
+
super({
|
|
433
|
+
name: "InvalidArnException",
|
|
434
|
+
$fault: "client",
|
|
435
|
+
...opts,
|
|
436
|
+
});
|
|
437
|
+
Object.setPrototypeOf(this, InvalidArnException.prototype);
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
class ResourceNotFoundException extends CodePipelineServiceException {
|
|
441
|
+
name = "ResourceNotFoundException";
|
|
442
|
+
$fault = "client";
|
|
443
|
+
constructor(opts) {
|
|
444
|
+
super({
|
|
445
|
+
name: "ResourceNotFoundException",
|
|
446
|
+
$fault: "client",
|
|
447
|
+
...opts,
|
|
448
|
+
});
|
|
449
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
class ConcurrentPipelineExecutionsLimitExceededException extends CodePipelineServiceException {
|
|
453
|
+
name = "ConcurrentPipelineExecutionsLimitExceededException";
|
|
454
|
+
$fault = "client";
|
|
455
|
+
constructor(opts) {
|
|
456
|
+
super({
|
|
457
|
+
name: "ConcurrentPipelineExecutionsLimitExceededException",
|
|
458
|
+
$fault: "client",
|
|
459
|
+
...opts,
|
|
460
|
+
});
|
|
461
|
+
Object.setPrototypeOf(this, ConcurrentPipelineExecutionsLimitExceededException.prototype);
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
class ConditionNotOverridableException extends CodePipelineServiceException {
|
|
465
|
+
name = "ConditionNotOverridableException";
|
|
466
|
+
$fault = "client";
|
|
467
|
+
constructor(opts) {
|
|
468
|
+
super({
|
|
469
|
+
name: "ConditionNotOverridableException",
|
|
470
|
+
$fault: "client",
|
|
471
|
+
...opts,
|
|
472
|
+
});
|
|
473
|
+
Object.setPrototypeOf(this, ConditionNotOverridableException.prototype);
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
class ConflictException extends CodePipelineServiceException {
|
|
477
|
+
name = "ConflictException";
|
|
478
|
+
$fault = "client";
|
|
479
|
+
constructor(opts) {
|
|
480
|
+
super({
|
|
481
|
+
name: "ConflictException",
|
|
482
|
+
$fault: "client",
|
|
483
|
+
...opts,
|
|
484
|
+
});
|
|
485
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
class NotLatestPipelineExecutionException extends CodePipelineServiceException {
|
|
489
|
+
name = "NotLatestPipelineExecutionException";
|
|
490
|
+
$fault = "client";
|
|
491
|
+
constructor(opts) {
|
|
492
|
+
super({
|
|
493
|
+
name: "NotLatestPipelineExecutionException",
|
|
494
|
+
$fault: "client",
|
|
495
|
+
...opts,
|
|
496
|
+
});
|
|
497
|
+
Object.setPrototypeOf(this, NotLatestPipelineExecutionException.prototype);
|
|
498
|
+
}
|
|
499
|
+
}
|
|
500
|
+
class InvalidApprovalTokenException extends CodePipelineServiceException {
|
|
501
|
+
name = "InvalidApprovalTokenException";
|
|
502
|
+
$fault = "client";
|
|
503
|
+
constructor(opts) {
|
|
504
|
+
super({
|
|
505
|
+
name: "InvalidApprovalTokenException",
|
|
506
|
+
$fault: "client",
|
|
507
|
+
...opts,
|
|
508
|
+
});
|
|
509
|
+
Object.setPrototypeOf(this, InvalidApprovalTokenException.prototype);
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
class InvalidJobStateException extends CodePipelineServiceException {
|
|
513
|
+
name = "InvalidJobStateException";
|
|
514
|
+
$fault = "client";
|
|
515
|
+
constructor(opts) {
|
|
516
|
+
super({
|
|
517
|
+
name: "InvalidJobStateException",
|
|
518
|
+
$fault: "client",
|
|
519
|
+
...opts,
|
|
520
|
+
});
|
|
521
|
+
Object.setPrototypeOf(this, InvalidJobStateException.prototype);
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
class OutputVariablesSizeExceededException extends CodePipelineServiceException {
|
|
525
|
+
name = "OutputVariablesSizeExceededException";
|
|
526
|
+
$fault = "client";
|
|
527
|
+
constructor(opts) {
|
|
528
|
+
super({
|
|
529
|
+
name: "OutputVariablesSizeExceededException",
|
|
530
|
+
$fault: "client",
|
|
531
|
+
...opts,
|
|
532
|
+
});
|
|
533
|
+
Object.setPrototypeOf(this, OutputVariablesSizeExceededException.prototype);
|
|
534
|
+
}
|
|
535
|
+
}
|
|
536
|
+
class InvalidWebhookAuthenticationParametersException extends CodePipelineServiceException {
|
|
537
|
+
name = "InvalidWebhookAuthenticationParametersException";
|
|
538
|
+
$fault = "client";
|
|
539
|
+
constructor(opts) {
|
|
540
|
+
super({
|
|
541
|
+
name: "InvalidWebhookAuthenticationParametersException",
|
|
542
|
+
$fault: "client",
|
|
543
|
+
...opts,
|
|
544
|
+
});
|
|
545
|
+
Object.setPrototypeOf(this, InvalidWebhookAuthenticationParametersException.prototype);
|
|
546
|
+
}
|
|
547
|
+
}
|
|
548
|
+
class InvalidWebhookFilterPatternException extends CodePipelineServiceException {
|
|
549
|
+
name = "InvalidWebhookFilterPatternException";
|
|
550
|
+
$fault = "client";
|
|
551
|
+
constructor(opts) {
|
|
552
|
+
super({
|
|
553
|
+
name: "InvalidWebhookFilterPatternException",
|
|
554
|
+
$fault: "client",
|
|
555
|
+
...opts,
|
|
556
|
+
});
|
|
557
|
+
Object.setPrototypeOf(this, InvalidWebhookFilterPatternException.prototype);
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
class StageNotRetryableException extends CodePipelineServiceException {
|
|
561
|
+
name = "StageNotRetryableException";
|
|
562
|
+
$fault = "client";
|
|
563
|
+
constructor(opts) {
|
|
564
|
+
super({
|
|
565
|
+
name: "StageNotRetryableException",
|
|
566
|
+
$fault: "client",
|
|
567
|
+
...opts,
|
|
568
|
+
});
|
|
569
|
+
Object.setPrototypeOf(this, StageNotRetryableException.prototype);
|
|
570
|
+
}
|
|
571
|
+
}
|
|
572
|
+
class PipelineExecutionOutdatedException extends CodePipelineServiceException {
|
|
573
|
+
name = "PipelineExecutionOutdatedException";
|
|
574
|
+
$fault = "client";
|
|
575
|
+
constructor(opts) {
|
|
576
|
+
super({
|
|
577
|
+
name: "PipelineExecutionOutdatedException",
|
|
578
|
+
$fault: "client",
|
|
579
|
+
...opts,
|
|
580
|
+
});
|
|
581
|
+
Object.setPrototypeOf(this, PipelineExecutionOutdatedException.prototype);
|
|
582
|
+
}
|
|
583
|
+
}
|
|
584
|
+
class UnableToRollbackStageException extends CodePipelineServiceException {
|
|
585
|
+
name = "UnableToRollbackStageException";
|
|
586
|
+
$fault = "client";
|
|
587
|
+
constructor(opts) {
|
|
588
|
+
super({
|
|
589
|
+
name: "UnableToRollbackStageException",
|
|
590
|
+
$fault: "client",
|
|
591
|
+
...opts,
|
|
592
|
+
});
|
|
593
|
+
Object.setPrototypeOf(this, UnableToRollbackStageException.prototype);
|
|
594
|
+
}
|
|
595
|
+
}
|
|
596
|
+
class DuplicatedStopRequestException extends CodePipelineServiceException {
|
|
597
|
+
name = "DuplicatedStopRequestException";
|
|
598
|
+
$fault = "client";
|
|
599
|
+
constructor(opts) {
|
|
600
|
+
super({
|
|
601
|
+
name: "DuplicatedStopRequestException",
|
|
602
|
+
$fault: "client",
|
|
603
|
+
...opts,
|
|
604
|
+
});
|
|
605
|
+
Object.setPrototypeOf(this, DuplicatedStopRequestException.prototype);
|
|
606
|
+
}
|
|
607
|
+
}
|
|
608
|
+
class PipelineExecutionNotStoppableException extends CodePipelineServiceException {
|
|
609
|
+
name = "PipelineExecutionNotStoppableException";
|
|
610
|
+
$fault = "client";
|
|
611
|
+
constructor(opts) {
|
|
612
|
+
super({
|
|
613
|
+
name: "PipelineExecutionNotStoppableException",
|
|
614
|
+
$fault: "client",
|
|
615
|
+
...opts,
|
|
616
|
+
});
|
|
617
|
+
Object.setPrototypeOf(this, PipelineExecutionNotStoppableException.prototype);
|
|
618
|
+
}
|
|
619
|
+
}
|
|
620
|
+
class RequestFailedException extends CodePipelineServiceException {
|
|
621
|
+
name = "RequestFailedException";
|
|
622
|
+
$fault = "client";
|
|
623
|
+
constructor(opts) {
|
|
624
|
+
super({
|
|
625
|
+
name: "RequestFailedException",
|
|
626
|
+
$fault: "client",
|
|
627
|
+
...opts,
|
|
628
|
+
});
|
|
629
|
+
Object.setPrototypeOf(this, RequestFailedException.prototype);
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
const _A = "Artifact";
|
|
634
|
+
const _AACE = "ApprovalAlreadyCompletedException";
|
|
635
|
+
const _AC = "ActionConfiguration";
|
|
636
|
+
const _ACP = "ActionConfigurationProperty";
|
|
637
|
+
const _ACPL = "ActionConfigurationPropertyList";
|
|
638
|
+
const _ACc = "ActionContext";
|
|
639
|
+
const _AD = "ActionDeclaration";
|
|
640
|
+
const _ADL = "ArtifactDetailList";
|
|
641
|
+
const _ADr = "ArtifactDetail";
|
|
642
|
+
const _ADrt = "ArtifactDetails";
|
|
643
|
+
const _AE = "ActionExecution";
|
|
644
|
+
const _AED = "ActionExecutionDetail";
|
|
645
|
+
const _AEDL = "ActionExecutionDetailList";
|
|
646
|
+
const _AEF = "ActionExecutionFilter";
|
|
647
|
+
const _AEI = "ActionExecutionInput";
|
|
648
|
+
const _AENFE = "ActionExecutionNotFoundException";
|
|
649
|
+
const _AEO = "ActionExecutionOutput";
|
|
650
|
+
const _AER = "ActionExecutionResult";
|
|
651
|
+
const _AIPR = "AllowedIPRange";
|
|
652
|
+
const _AJ = "AcknowledgeJob";
|
|
653
|
+
const _AJI = "AcknowledgeJobInput";
|
|
654
|
+
const _AJO = "AcknowledgeJobOutput";
|
|
655
|
+
const _AKI = "AccessKeyId";
|
|
656
|
+
const _AL = "ArtifactLocation";
|
|
657
|
+
const _ALr = "ArtifactList";
|
|
658
|
+
const _ANFE = "ActionNotFoundException";
|
|
659
|
+
const _AR = "ActionRevision";
|
|
660
|
+
const _ARL = "ArtifactRevisionList";
|
|
661
|
+
const _ARp = "ApprovalResult";
|
|
662
|
+
const _ARr = "ArtifactRevision";
|
|
663
|
+
const _AS = "ActionState";
|
|
664
|
+
const _ASL = "ActionStateList";
|
|
665
|
+
const _ASM = "ArtifactStoreMap";
|
|
666
|
+
const _ASr = "ArtifactStore";
|
|
667
|
+
const _AT = "ActionType";
|
|
668
|
+
const _ATAD = "ActionTypeArtifactDetails";
|
|
669
|
+
const _ATD = "ActionTypeDeclaration";
|
|
670
|
+
const _ATE = "ActionTypeExecutor";
|
|
671
|
+
const _ATI = "ActionTypeId";
|
|
672
|
+
const _ATIc = "ActionTypeIdentifier";
|
|
673
|
+
const _ATL = "ActionTypeList";
|
|
674
|
+
const _ATNFE = "ActionTypeNotFoundException";
|
|
675
|
+
const _ATP = "ActionTypePermissions";
|
|
676
|
+
const _ATPJ = "AcknowledgeThirdPartyJob";
|
|
677
|
+
const _ATPJI = "AcknowledgeThirdPartyJobInput";
|
|
678
|
+
const _ATPJO = "AcknowledgeThirdPartyJobOutput";
|
|
679
|
+
const _ATPc = "ActionTypeProperty";
|
|
680
|
+
const _ATPct = "ActionTypeProperties";
|
|
681
|
+
const _ATS = "ActionTypeSettings";
|
|
682
|
+
const _ATU = "ActionTypeUrls";
|
|
683
|
+
const _AWSSC = "AWSSessionCredentials";
|
|
684
|
+
const _BD = "BlockerDeclaration";
|
|
685
|
+
const _BEC = "BeforeEntryConditions";
|
|
686
|
+
const _C = "Condition";
|
|
687
|
+
const _CCAT = "CreateCustomActionType";
|
|
688
|
+
const _CCATI = "CreateCustomActionTypeInput";
|
|
689
|
+
const _CCATO = "CreateCustomActionTypeOutput";
|
|
690
|
+
const _CE = "ConflictException";
|
|
691
|
+
const _CEo = "ConditionExecution";
|
|
692
|
+
const _CL = "ConditionList";
|
|
693
|
+
const _CME = "ConcurrentModificationException";
|
|
694
|
+
const _CNOE = "ConditionNotOverridableException";
|
|
695
|
+
const _CP = "CreatePipeline";
|
|
696
|
+
const _CPELEE = "ConcurrentPipelineExecutionsLimitExceededException";
|
|
697
|
+
const _CPI = "CreatePipelineInput";
|
|
698
|
+
const _CPO = "CreatePipelineOutput";
|
|
699
|
+
const _CR = "CurrentRevision";
|
|
700
|
+
const _CS = "ConditionState";
|
|
701
|
+
const _CSL = "ConditionStateList";
|
|
702
|
+
const _DAET = "DeployActionExecutionTarget";
|
|
703
|
+
const _DAETL = "DeployActionExecutionTargetList";
|
|
704
|
+
const _DCAT = "DeleteCustomActionType";
|
|
705
|
+
const _DCATI = "DeleteCustomActionTypeInput";
|
|
706
|
+
const _DP = "DeletePipeline";
|
|
707
|
+
const _DPI = "DeletePipelineInput";
|
|
708
|
+
const _DSRE = "DuplicatedStopRequestException";
|
|
709
|
+
const _DST = "DisableStageTransition";
|
|
710
|
+
const _DSTI = "DisableStageTransitionInput";
|
|
711
|
+
const _DTE = "DeployTargetEvent";
|
|
712
|
+
const _DTEC = "DeployTargetEventContext";
|
|
713
|
+
const _DTEL = "DeployTargetEventList";
|
|
714
|
+
const _DW = "DeleteWebhook";
|
|
715
|
+
const _DWI = "DeleteWebhookInput";
|
|
716
|
+
const _DWO = "DeleteWebhookOutput";
|
|
717
|
+
const _DWWTP = "DeregisterWebhookWithThirdParty";
|
|
718
|
+
const _DWWTPI = "DeregisterWebhookWithThirdPartyInput";
|
|
719
|
+
const _DWWTPO = "DeregisterWebhookWithThirdPartyOutput";
|
|
720
|
+
const _EC = "ExecutorConfiguration";
|
|
721
|
+
const _ED = "ErrorDetails";
|
|
722
|
+
const _EDx = "ExecutionDetails";
|
|
723
|
+
const _EK = "EncryptionKey";
|
|
724
|
+
const _EST = "EnableStageTransition";
|
|
725
|
+
const _ESTI = "EnableStageTransitionInput";
|
|
726
|
+
const _ET = "ExecutionTrigger";
|
|
727
|
+
const _EV = "EnvironmentVariable";
|
|
728
|
+
const _EVL = "EnvironmentVariableList";
|
|
729
|
+
const _FC = "FailureConditions";
|
|
730
|
+
const _FD = "FailureDetails";
|
|
731
|
+
const _GAT = "GetActionType";
|
|
732
|
+
const _GATI = "GetActionTypeInput";
|
|
733
|
+
const _GATO = "GetActionTypeOutput";
|
|
734
|
+
const _GBFC = "GitBranchFilterCriteria";
|
|
735
|
+
const _GC = "GitConfiguration";
|
|
736
|
+
const _GFPFC = "GitFilePathFilterCriteria";
|
|
737
|
+
const _GJD = "GetJobDetails";
|
|
738
|
+
const _GJDI = "GetJobDetailsInput";
|
|
739
|
+
const _GJDO = "GetJobDetailsOutput";
|
|
740
|
+
const _GP = "GetPipeline";
|
|
741
|
+
const _GPE = "GetPipelineExecution";
|
|
742
|
+
const _GPEI = "GetPipelineExecutionInput";
|
|
743
|
+
const _GPEO = "GetPipelineExecutionOutput";
|
|
744
|
+
const _GPF = "GitPushFilter";
|
|
745
|
+
const _GPFL = "GitPushFilterList";
|
|
746
|
+
const _GPI = "GetPipelineInput";
|
|
747
|
+
const _GPO = "GetPipelineOutput";
|
|
748
|
+
const _GPRF = "GitPullRequestFilter";
|
|
749
|
+
const _GPRFL = "GitPullRequestFilterList";
|
|
750
|
+
const _GPS = "GetPipelineState";
|
|
751
|
+
const _GPSI = "GetPipelineStateInput";
|
|
752
|
+
const _GPSO = "GetPipelineStateOutput";
|
|
753
|
+
const _GTFC = "GitTagFilterCriteria";
|
|
754
|
+
const _GTPJD = "GetThirdPartyJobDetails";
|
|
755
|
+
const _GTPJDI = "GetThirdPartyJobDetailsInput";
|
|
756
|
+
const _GTPJDO = "GetThirdPartyJobDetailsOutput";
|
|
757
|
+
const _IA = "InputArtifact";
|
|
758
|
+
const _IADE = "InvalidActionDeclarationException";
|
|
759
|
+
const _IAE = "InvalidArnException";
|
|
760
|
+
const _IAL = "InputArtifactList";
|
|
761
|
+
const _IATE = "InvalidApprovalTokenException";
|
|
762
|
+
const _IBDE = "InvalidBlockerDeclarationException";
|
|
763
|
+
const _ICTE = "InvalidClientTokenException";
|
|
764
|
+
const _IJE = "InvalidJobException";
|
|
765
|
+
const _IJSE = "InvalidJobStateException";
|
|
766
|
+
const _INE = "InvalidNonceException";
|
|
767
|
+
const _INTE = "InvalidNextTokenException";
|
|
768
|
+
const _ISDE = "InvalidStageDeclarationException";
|
|
769
|
+
const _ISE = "InvalidStructureException";
|
|
770
|
+
const _ITE = "InvalidTagsException";
|
|
771
|
+
const _IWAPE = "InvalidWebhookAuthenticationParametersException";
|
|
772
|
+
const _IWFPE = "InvalidWebhookFilterPatternException";
|
|
773
|
+
const _J = "Job";
|
|
774
|
+
const _JD = "JobData";
|
|
775
|
+
const _JDo = "JobDetails";
|
|
776
|
+
const _JL = "JobList";
|
|
777
|
+
const _JNFE = "JobNotFoundException";
|
|
778
|
+
const _JWEC = "JobWorkerExecutorConfiguration";
|
|
779
|
+
const _LAE = "ListActionExecutions";
|
|
780
|
+
const _LAEI = "ListActionExecutionsInput";
|
|
781
|
+
const _LAEO = "ListActionExecutionsOutput";
|
|
782
|
+
const _LAT = "ListActionTypes";
|
|
783
|
+
const _LATI = "ListActionTypesInput";
|
|
784
|
+
const _LATO = "ListActionTypesOutput";
|
|
785
|
+
const _LDAET = "ListDeployActionExecutionTargets";
|
|
786
|
+
const _LDAETI = "ListDeployActionExecutionTargetsInput";
|
|
787
|
+
const _LDAETO = "ListDeployActionExecutionTargetsOutput";
|
|
788
|
+
const _LEC = "LambdaExecutorConfiguration";
|
|
789
|
+
const _LEE = "LimitExceededException";
|
|
790
|
+
const _LIPEF = "LatestInPipelineExecutionFilter";
|
|
791
|
+
const _LP = "ListPipelines";
|
|
792
|
+
const _LPE = "ListPipelineExecutions";
|
|
793
|
+
const _LPEI = "ListPipelineExecutionsInput";
|
|
794
|
+
const _LPEO = "ListPipelineExecutionsOutput";
|
|
795
|
+
const _LPI = "ListPipelinesInput";
|
|
796
|
+
const _LPO = "ListPipelinesOutput";
|
|
797
|
+
const _LRE = "ListRuleExecutions";
|
|
798
|
+
const _LREI = "ListRuleExecutionsInput";
|
|
799
|
+
const _LREO = "ListRuleExecutionsOutput";
|
|
800
|
+
const _LRT = "ListRuleTypes";
|
|
801
|
+
const _LRTI = "ListRuleTypesInput";
|
|
802
|
+
const _LRTO = "ListRuleTypesOutput";
|
|
803
|
+
const _LTFR = "ListTagsForResource";
|
|
804
|
+
const _LTFRI = "ListTagsForResourceInput";
|
|
805
|
+
const _LTFRO = "ListTagsForResourceOutput";
|
|
806
|
+
const _LW = "ListWebhooks";
|
|
807
|
+
const _LWI = "ListWebhookItem";
|
|
808
|
+
const _LWIi = "ListWebhooksInput";
|
|
809
|
+
const _LWO = "ListWebhooksOutput";
|
|
810
|
+
const _MR = "MaxResults";
|
|
811
|
+
const _NLPEE = "NotLatestPipelineExecutionException";
|
|
812
|
+
const _NT = "NextToken";
|
|
813
|
+
const _OA = "OutputArtifact";
|
|
814
|
+
const _OAL = "OutputArtifactList";
|
|
815
|
+
const _OSC = "OverrideStageCondition";
|
|
816
|
+
const _OSCI = "OverrideStageConditionInput";
|
|
817
|
+
const _OVSEE = "OutputVariablesSizeExceededException";
|
|
818
|
+
const _PAR = "PutActionRevision";
|
|
819
|
+
const _PARI = "PutActionRevisionInput";
|
|
820
|
+
const _PARIu = "PutApprovalResultInput";
|
|
821
|
+
const _PARO = "PutActionRevisionOutput";
|
|
822
|
+
const _PAROu = "PutApprovalResultOutput";
|
|
823
|
+
const _PARu = "PutApprovalResult";
|
|
824
|
+
const _PC = "PipelineContext";
|
|
825
|
+
const _PD = "PipelineDeclaration";
|
|
826
|
+
const _PE = "PipelineExecution";
|
|
827
|
+
const _PEF = "PipelineExecutionFilter";
|
|
828
|
+
const _PENFE = "PipelineExecutionNotFoundException";
|
|
829
|
+
const _PENSE = "PipelineExecutionNotStoppableException";
|
|
830
|
+
const _PEOE = "PipelineExecutionOutdatedException";
|
|
831
|
+
const _PES = "PipelineExecutionSummary";
|
|
832
|
+
const _PESL = "PipelineExecutionSummaryList";
|
|
833
|
+
const _PFJ = "PollForJobs";
|
|
834
|
+
const _PFJI = "PollForJobsInput";
|
|
835
|
+
const _PFJO = "PollForJobsOutput";
|
|
836
|
+
const _PFTPJ = "PollForThirdPartyJobs";
|
|
837
|
+
const _PFTPJI = "PollForThirdPartyJobsInput";
|
|
838
|
+
const _PFTPJO = "PollForThirdPartyJobsOutput";
|
|
839
|
+
const _PJFR = "PutJobFailureResult";
|
|
840
|
+
const _PJFRI = "PutJobFailureResultInput";
|
|
841
|
+
const _PJSR = "PutJobSuccessResult";
|
|
842
|
+
const _PJSRI = "PutJobSuccessResultInput";
|
|
843
|
+
const _PL = "PipelineList";
|
|
844
|
+
const _PM = "PipelineMetadata";
|
|
845
|
+
const _PNFE = "PipelineNotFoundException";
|
|
846
|
+
const _PNIUE = "PipelineNameInUseException";
|
|
847
|
+
const _PRM = "PipelineRollbackMetadata";
|
|
848
|
+
const _PS = "PipelineSummary";
|
|
849
|
+
const _PSDL = "PipelineStageDeclarationList";
|
|
850
|
+
const _PTD = "PipelineTriggerDeclaration";
|
|
851
|
+
const _PTDL = "PipelineTriggerDeclarationList";
|
|
852
|
+
const _PTPJFR = "PutThirdPartyJobFailureResult";
|
|
853
|
+
const _PTPJFRI = "PutThirdPartyJobFailureResultInput";
|
|
854
|
+
const _PTPJSR = "PutThirdPartyJobSuccessResult";
|
|
855
|
+
const _PTPJSRI = "PutThirdPartyJobSuccessResultInput";
|
|
856
|
+
const _PV = "PipelineVariable";
|
|
857
|
+
const _PVD = "PipelineVariableDeclaration";
|
|
858
|
+
const _PVDL = "PipelineVariableDeclarationList";
|
|
859
|
+
const _PVL = "PipelineVariableList";
|
|
860
|
+
const _PVNFE = "PipelineVersionNotFoundException";
|
|
861
|
+
const _PW = "PutWebhook";
|
|
862
|
+
const _PWI = "PutWebhookInput";
|
|
863
|
+
const _PWO = "PutWebhookOutput";
|
|
864
|
+
const _RC = "RetryConfiguration";
|
|
865
|
+
const _RCP = "RuleConfigurationProperty";
|
|
866
|
+
const _RCPL = "RuleConfigurationPropertyList";
|
|
867
|
+
const _RD = "RuleDeclaration";
|
|
868
|
+
const _RDL = "RuleDeclarationList";
|
|
869
|
+
const _RE = "RuleExecution";
|
|
870
|
+
const _RED = "RuleExecutionDetail";
|
|
871
|
+
const _REDL = "RuleExecutionDetailList";
|
|
872
|
+
const _REF = "RuleExecutionFilter";
|
|
873
|
+
const _REI = "RuleExecutionInput";
|
|
874
|
+
const _REO = "RuleExecutionOutput";
|
|
875
|
+
const _RER = "RuleExecutionResult";
|
|
876
|
+
const _RFE = "RequestFailedException";
|
|
877
|
+
const _RNFE = "ResourceNotFoundException";
|
|
878
|
+
const _RPV = "ResolvedPipelineVariable";
|
|
879
|
+
const _RPVL = "ResolvedPipelineVariableList";
|
|
880
|
+
const _RR = "RuleRevision";
|
|
881
|
+
const _RS = "RuleState";
|
|
882
|
+
const _RSE = "RetryStageExecution";
|
|
883
|
+
const _RSEI = "RetryStageExecutionInput";
|
|
884
|
+
const _RSEO = "RetryStageExecutionOutput";
|
|
885
|
+
const _RSI = "RollbackStageInput";
|
|
886
|
+
const _RSL = "RuleStateList";
|
|
887
|
+
const _RSM = "RetryStageMetadata";
|
|
888
|
+
const _RSO = "RollbackStageOutput";
|
|
889
|
+
const _RSo = "RollbackStage";
|
|
890
|
+
const _RT = "RuleType";
|
|
891
|
+
const _RTI = "RuleTypeId";
|
|
892
|
+
const _RTL = "RuleTypeList";
|
|
893
|
+
const _RTS = "RuleTypeSettings";
|
|
894
|
+
const _RWWTP = "RegisterWebhookWithThirdParty";
|
|
895
|
+
const _RWWTPI = "RegisterWebhookWithThirdPartyInput";
|
|
896
|
+
const _RWWTPO = "RegisterWebhookWithThirdPartyOutput";
|
|
897
|
+
const _SADL = "StageActionDeclarationList";
|
|
898
|
+
const _SAK = "SecretAccessKey";
|
|
899
|
+
const _SAL = "S3ArtifactLocation";
|
|
900
|
+
const _SBDL = "StageBlockerDeclarationList";
|
|
901
|
+
const _SC = "StageContext";
|
|
902
|
+
const _SCE = "StageConditionsExecution";
|
|
903
|
+
const _SCS = "StageConditionState";
|
|
904
|
+
const _SCu = "SuccessConditions";
|
|
905
|
+
const _SD = "StageDeclaration";
|
|
906
|
+
const _SE = "StageExecution";
|
|
907
|
+
const _SEL = "StageExecutionList";
|
|
908
|
+
const _SET = "StopExecutionTrigger";
|
|
909
|
+
const _SISF = "SucceededInStageFilter";
|
|
910
|
+
const _SL = "S3Location";
|
|
911
|
+
const _SNFE = "StageNotFoundException";
|
|
912
|
+
const _SNRE = "StageNotRetryableException";
|
|
913
|
+
const _SPE = "StartPipelineExecution";
|
|
914
|
+
const _SPEI = "StartPipelineExecutionInput";
|
|
915
|
+
const _SPEIt = "StopPipelineExecutionInput";
|
|
916
|
+
const _SPEO = "StartPipelineExecutionOutput";
|
|
917
|
+
const _SPEOt = "StopPipelineExecutionOutput";
|
|
918
|
+
const _SPEt = "StopPipelineExecution";
|
|
919
|
+
const _SR = "SourceRevision";
|
|
920
|
+
const _SRL = "SourceRevisionList";
|
|
921
|
+
const _SRO = "SourceRevisionOverride";
|
|
922
|
+
const _SROL = "SourceRevisionOverrideList";
|
|
923
|
+
const _SS = "StageState";
|
|
924
|
+
const _SSL = "StageStateList";
|
|
925
|
+
const _ST = "SessionToken";
|
|
926
|
+
const _STe = "SecretToken";
|
|
927
|
+
const _T = "Tag";
|
|
928
|
+
const _TF = "TargetFilter";
|
|
929
|
+
const _TFL = "TargetFilterList";
|
|
930
|
+
const _TL = "TagList";
|
|
931
|
+
const _TMTE = "TooManyTagsException";
|
|
932
|
+
const _TPJ = "ThirdPartyJob";
|
|
933
|
+
const _TPJD = "ThirdPartyJobData";
|
|
934
|
+
const _TPJDh = "ThirdPartyJobDetails";
|
|
935
|
+
const _TPJL = "ThirdPartyJobList";
|
|
936
|
+
const _TR = "TagResource";
|
|
937
|
+
const _TRI = "TagResourceInput";
|
|
938
|
+
const _TRO = "TagResourceOutput";
|
|
939
|
+
const _TS = "TransitionState";
|
|
940
|
+
const _UAT = "UpdateActionType";
|
|
941
|
+
const _UATI = "UpdateActionTypeInput";
|
|
942
|
+
const _UP = "UpdatePipeline";
|
|
943
|
+
const _UPI = "UpdatePipelineInput";
|
|
944
|
+
const _UPO = "UpdatePipelineOutput";
|
|
945
|
+
const _UR = "UntagResource";
|
|
946
|
+
const _URI = "UntagResourceInput";
|
|
947
|
+
const _URO = "UntagResourceOutput";
|
|
948
|
+
const _UTRSE = "UnableToRollbackStageException";
|
|
949
|
+
const _VE = "ValidationException";
|
|
950
|
+
const _WAC = "WebhookAuthConfiguration";
|
|
951
|
+
const _WD = "WebhookDefinition";
|
|
952
|
+
const _WF = "WebhookFilters";
|
|
953
|
+
const _WFR = "WebhookFilterRule";
|
|
954
|
+
const _WL = "WebhookList";
|
|
955
|
+
const _WNFE = "WebhookNotFoundException";
|
|
956
|
+
const _a = "arn";
|
|
957
|
+
const _aA = "allowedAccounts";
|
|
958
|
+
const _aAp = "approvedAt";
|
|
959
|
+
const _aC = "actionConfiguration";
|
|
960
|
+
const _aCP = "actionConfigurationProperties";
|
|
961
|
+
const _aCr = "artifactCredentials";
|
|
962
|
+
const _aCu = "authenticationConfiguration";
|
|
963
|
+
const _aED = "actionExecutionDetails";
|
|
964
|
+
const _aEI = "actionExecutionId";
|
|
965
|
+
const _aI = "accountId";
|
|
966
|
+
const _aKI = "accessKeyId";
|
|
967
|
+
const _aN = "actionName";
|
|
968
|
+
const _aOF = "actionOwnerFilter";
|
|
969
|
+
const _aR = "artifactRevisions";
|
|
970
|
+
const _aRc = "actionRevision";
|
|
971
|
+
const _aS = "artifactStore";
|
|
972
|
+
const _aSRA = "autoStageRetryAttempt";
|
|
973
|
+
const _aSc = "actionStates";
|
|
974
|
+
const _aSr = "artifactStores";
|
|
975
|
+
const _aT = "actionType";
|
|
976
|
+
const _aTI = "actionTypeId";
|
|
977
|
+
const _aTc = "actionTypes";
|
|
978
|
+
const _ab = "abandon";
|
|
979
|
+
const _ac = "action";
|
|
980
|
+
const _act = "actions";
|
|
981
|
+
const _au = "authentication";
|
|
982
|
+
const _b = "branches";
|
|
983
|
+
const _bE = "beforeEntry";
|
|
984
|
+
const _bECS = "beforeEntryConditionState";
|
|
985
|
+
const _bN = "bucketName";
|
|
986
|
+
const _bl = "blockers";
|
|
987
|
+
const _bu = "bucket";
|
|
988
|
+
const _c = "client";
|
|
989
|
+
const _cI = "changeIdentifier";
|
|
990
|
+
const _cIl = "clientId";
|
|
991
|
+
const _cP = "configurationProperties";
|
|
992
|
+
const _cR = "currentRevision";
|
|
993
|
+
const _cRT = "clientRequestToken";
|
|
994
|
+
const _cS = "conditionStates";
|
|
995
|
+
const _cT = "clientToken";
|
|
996
|
+
const _cTo = "continuationToken";
|
|
997
|
+
const _cTon = "conditionType";
|
|
998
|
+
const _cU = "configurationUrl";
|
|
999
|
+
const _ca = "category";
|
|
1000
|
+
const _co = "configuration";
|
|
1001
|
+
const _cod = "code";
|
|
1002
|
+
const _com = "commands";
|
|
1003
|
+
const _con = "conditions";
|
|
1004
|
+
const _cont = "context";
|
|
1005
|
+
const _cr = "created";
|
|
1006
|
+
const _d = "description";
|
|
1007
|
+
const _dR = "disabledReason";
|
|
1008
|
+
const _dV = "defaultValue";
|
|
1009
|
+
const _da = "data";
|
|
1010
|
+
const _de = "definition";
|
|
1011
|
+
const _e = "error";
|
|
1012
|
+
const _eC = "errorCode";
|
|
1013
|
+
const _eD = "errorDetails";
|
|
1014
|
+
const _eDx = "executionDetails";
|
|
1015
|
+
const _eEI = "externalExecutionId";
|
|
1016
|
+
const _eES = "externalExecutionSummary";
|
|
1017
|
+
const _eEU = "externalExecutionUrl";
|
|
1018
|
+
const _eK = "encryptionKey";
|
|
1019
|
+
const _eM = "errorMessage";
|
|
1020
|
+
const _eMx = "executionMode";
|
|
1021
|
+
const _eR = "executionResult";
|
|
1022
|
+
const _eT = "endTime";
|
|
1023
|
+
const _eTx = "executionType";
|
|
1024
|
+
const _eU = "entityUrl";
|
|
1025
|
+
const _eUT = "entityUrlTemplate";
|
|
1026
|
+
const _eUTx = "executionUrlTemplate";
|
|
1027
|
+
const _eV = "environmentVariables";
|
|
1028
|
+
const _en = "enabled";
|
|
1029
|
+
const _ev = "events";
|
|
1030
|
+
const _ex = "executor";
|
|
1031
|
+
const _exc = "excludes";
|
|
1032
|
+
const _f = "filter";
|
|
1033
|
+
const _fD = "failureDetails";
|
|
1034
|
+
const _fP = "filePaths";
|
|
1035
|
+
const _fi = "filters";
|
|
1036
|
+
const _fil = "files";
|
|
1037
|
+
const _gC = "gitConfiguration";
|
|
1038
|
+
const _hE = "httpError";
|
|
1039
|
+
const _i = "input";
|
|
1040
|
+
const _iA = "inputArtifacts";
|
|
1041
|
+
const _iAD = "inputArtifactDetails";
|
|
1042
|
+
const _iE = "inboundExecution";
|
|
1043
|
+
const _iEn = "inboundExecutions";
|
|
1044
|
+
const _iTS = "inboundTransitionState";
|
|
1045
|
+
const _id = "id";
|
|
1046
|
+
const _in = "includes";
|
|
1047
|
+
const _j = "jobs";
|
|
1048
|
+
const _jD = "jobDetails";
|
|
1049
|
+
const _jI = "jobId";
|
|
1050
|
+
const _jP = "jsonPath";
|
|
1051
|
+
const _jT = "jobTimeout";
|
|
1052
|
+
const _jWEC = "jobWorkerExecutorConfiguration";
|
|
1053
|
+
const _k = "key";
|
|
1054
|
+
const _l = "location";
|
|
1055
|
+
const _lCA = "lastChangedAt";
|
|
1056
|
+
const _lCB = "lastChangedBy";
|
|
1057
|
+
const _lE = "latestExecution";
|
|
1058
|
+
const _lEC = "lambdaExecutorConfiguration";
|
|
1059
|
+
const _lFA = "lambdaFunctionArn";
|
|
1060
|
+
const _lIPE = "latestInPipelineExecution";
|
|
1061
|
+
const _lRT = "latestRetryTrigger";
|
|
1062
|
+
const _lSARN = "logStreamARN";
|
|
1063
|
+
const _lSC = "lastStatusChange";
|
|
1064
|
+
const _lT = "lastTriggered";
|
|
1065
|
+
const _lUB = "lastUpdatedBy";
|
|
1066
|
+
const _lUT = "lastUpdateTime";
|
|
1067
|
+
const _m = "message";
|
|
1068
|
+
const _mBS = "maxBatchSize";
|
|
1069
|
+
const _mC = "minimumCount";
|
|
1070
|
+
const _mCa = "maximumCount";
|
|
1071
|
+
const _mE = "matchEquals";
|
|
1072
|
+
const _mR = "maxResults";
|
|
1073
|
+
const _mSRA = "manualStageRetryAttempt";
|
|
1074
|
+
const _me = "metadata";
|
|
1075
|
+
const _n = "nonce";
|
|
1076
|
+
const _nE = "noEcho";
|
|
1077
|
+
const _nR = "newRevision";
|
|
1078
|
+
const _nT = "nextToken";
|
|
1079
|
+
const _na = "name";
|
|
1080
|
+
const _nam = "namespace";
|
|
1081
|
+
const _o = "output";
|
|
1082
|
+
const _oA = "outputArtifacts";
|
|
1083
|
+
const _oAD = "outputArtifactDetails";
|
|
1084
|
+
const _oF = "onFailure";
|
|
1085
|
+
const _oFCS = "onFailureConditionState";
|
|
1086
|
+
const _oK = "objectKey";
|
|
1087
|
+
const _oS = "onSuccess";
|
|
1088
|
+
const _oSCS = "onSuccessConditionState";
|
|
1089
|
+
const _oV = "outputVariables";
|
|
1090
|
+
const _op = "optional";
|
|
1091
|
+
const _ow = "owner";
|
|
1092
|
+
const _p = "permissions";
|
|
1093
|
+
const _pA = "pollingAccounts";
|
|
1094
|
+
const _pAi = "pipelineArn";
|
|
1095
|
+
const _pC = "percentComplete";
|
|
1096
|
+
const _pCi = "pipelineContext";
|
|
1097
|
+
const _pDA = "pollingDisabledAt";
|
|
1098
|
+
const _pE = "pipelineExecution";
|
|
1099
|
+
const _pEI = "pipelineExecutionId";
|
|
1100
|
+
const _pES = "pipelineExecutionSummaries";
|
|
1101
|
+
const _pN = "pipelineName";
|
|
1102
|
+
const _pR = "pullRequest";
|
|
1103
|
+
const _pSP = "pollingServicePrincipals";
|
|
1104
|
+
const _pST = "policyStatementsTemplate";
|
|
1105
|
+
const _pT = "pipelineType";
|
|
1106
|
+
const _pTr = "providerType";
|
|
1107
|
+
const _pV = "pipelineVersion";
|
|
1108
|
+
const _pi = "pipeline";
|
|
1109
|
+
const _pip = "pipelines";
|
|
1110
|
+
const _pr = "properties";
|
|
1111
|
+
const _pro = "provider";
|
|
1112
|
+
const _pu = "push";
|
|
1113
|
+
const _q = "queryable";
|
|
1114
|
+
const _qP = "queryParam";
|
|
1115
|
+
const _r = "required";
|
|
1116
|
+
const _rA = "roleArn";
|
|
1117
|
+
const _rAe = "resourceArn";
|
|
1118
|
+
const _rC = "resolvedConfiguration";
|
|
1119
|
+
const _rCI = "revisionChangeId";
|
|
1120
|
+
const _rCIe = "revisionChangeIdentifier";
|
|
1121
|
+
const _rCP = "ruleConfigurationProperties";
|
|
1122
|
+
const _rCe = "retryConfiguration";
|
|
1123
|
+
const _rED = "ruleExecutionDetails";
|
|
1124
|
+
const _rEI = "ruleExecutionId";
|
|
1125
|
+
const _rF = "regionFilter";
|
|
1126
|
+
const _rI = "revisionId";
|
|
1127
|
+
const _rM = "rollbackMetadata";
|
|
1128
|
+
const _rMe = "retryMode";
|
|
1129
|
+
const _rN = "ruleName";
|
|
1130
|
+
const _rO = "runOrder";
|
|
1131
|
+
const _rOF = "ruleOwnerFilter";
|
|
1132
|
+
const _rS = "revisionSummary";
|
|
1133
|
+
const _rSM = "retryStageMetadata";
|
|
1134
|
+
const _rSu = "ruleStates";
|
|
1135
|
+
const _rT = "ruleTypes";
|
|
1136
|
+
const _rTI = "ruleTypeId";
|
|
1137
|
+
const _rTPEI = "rollbackTargetPipelineExecutionId";
|
|
1138
|
+
const _rTe = "revisionType";
|
|
1139
|
+
const _rU = "revisionUrl";
|
|
1140
|
+
const _rUT = "revisionUrlTemplate";
|
|
1141
|
+
const _rV = "resolvedValue";
|
|
1142
|
+
const _rVe = "revisionValue";
|
|
1143
|
+
const _re = "region";
|
|
1144
|
+
const _rea = "reason";
|
|
1145
|
+
const _res = "result";
|
|
1146
|
+
const _rev = "revision";
|
|
1147
|
+
const _ru = "rules";
|
|
1148
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.codepipeline";
|
|
1149
|
+
const _sAK = "secretAccessKey";
|
|
1150
|
+
const _sAN = "sourceActionName";
|
|
1151
|
+
const _sCI = "ssmCommandId";
|
|
1152
|
+
const _sIS = "succeededInStage";
|
|
1153
|
+
const _sL = "s3Location";
|
|
1154
|
+
const _sN = "stageName";
|
|
1155
|
+
const _sR = "sourceRevisions";
|
|
1156
|
+
const _sS = "stageStates";
|
|
1157
|
+
const _sSt = "statusSummary";
|
|
1158
|
+
const _sT = "startTime";
|
|
1159
|
+
const _sTR = "startTimeRange";
|
|
1160
|
+
const _sTe = "sessionToken";
|
|
1161
|
+
const _sTt = "stopTrigger";
|
|
1162
|
+
const _se = "secret";
|
|
1163
|
+
const _set = "settings";
|
|
1164
|
+
const _sl = "s3location";
|
|
1165
|
+
const _st = "status";
|
|
1166
|
+
const _sta = "stage";
|
|
1167
|
+
const _stag = "stages";
|
|
1168
|
+
const _su = "summary";
|
|
1169
|
+
const _t = "type";
|
|
1170
|
+
const _tA = "targetAction";
|
|
1171
|
+
const _tD = "triggerDetail";
|
|
1172
|
+
const _tI = "targetId";
|
|
1173
|
+
const _tIM = "timeoutInMinutes";
|
|
1174
|
+
const _tK = "tagKeys";
|
|
1175
|
+
const _tP = "targetPipeline";
|
|
1176
|
+
const _tPCU = "thirdPartyConfigurationUrl";
|
|
1177
|
+
const _tPEI = "targetPipelineExecutionId";
|
|
1178
|
+
const _tT = "targetType";
|
|
1179
|
+
const _tTr = "transitionType";
|
|
1180
|
+
const _tTri = "triggerType";
|
|
1181
|
+
const _ta = "tags";
|
|
1182
|
+
const _tar = "targets";
|
|
1183
|
+
const _to = "token";
|
|
1184
|
+
const _tr = "triggers";
|
|
1185
|
+
const _tri = "trigger";
|
|
1186
|
+
const _u = "urls";
|
|
1187
|
+
const _uB = "updatedBy";
|
|
1188
|
+
const _up = "updated";
|
|
1189
|
+
const _ur = "url";
|
|
1190
|
+
const _v = "version";
|
|
1191
|
+
const _va = "value";
|
|
1192
|
+
const _val = "values";
|
|
1193
|
+
const _var = "variables";
|
|
1194
|
+
const _w = "webhooks";
|
|
1195
|
+
const _wN = "webhookName";
|
|
1196
|
+
const _we = "webhook";
|
|
1197
|
+
const n0 = "com.amazonaws.codepipeline";
|
|
1198
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
1199
|
+
var CodePipelineServiceException$ = [-3, _s, "CodePipelineServiceException", 0, [], []];
|
|
1200
|
+
_s_registry.registerError(CodePipelineServiceException$, CodePipelineServiceException);
|
|
1201
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
1202
|
+
var ActionExecutionNotFoundException$ = [-3, n0, _AENFE,
|
|
1203
|
+
{ [_e]: _c },
|
|
1204
|
+
[_m],
|
|
1205
|
+
[0]
|
|
1206
|
+
];
|
|
1207
|
+
n0_registry.registerError(ActionExecutionNotFoundException$, ActionExecutionNotFoundException);
|
|
1208
|
+
var ActionNotFoundException$ = [-3, n0, _ANFE,
|
|
1209
|
+
{ [_e]: _c },
|
|
1210
|
+
[_m],
|
|
1211
|
+
[0]
|
|
1212
|
+
];
|
|
1213
|
+
n0_registry.registerError(ActionNotFoundException$, ActionNotFoundException);
|
|
1214
|
+
var ActionTypeNotFoundException$ = [-3, n0, _ATNFE,
|
|
1215
|
+
{ [_e]: _c },
|
|
1216
|
+
[_m],
|
|
1217
|
+
[0]
|
|
1218
|
+
];
|
|
1219
|
+
n0_registry.registerError(ActionTypeNotFoundException$, ActionTypeNotFoundException);
|
|
1220
|
+
var ApprovalAlreadyCompletedException$ = [-3, n0, _AACE,
|
|
1221
|
+
{ [_e]: _c },
|
|
1222
|
+
[_m],
|
|
1223
|
+
[0]
|
|
1224
|
+
];
|
|
1225
|
+
n0_registry.registerError(ApprovalAlreadyCompletedException$, ApprovalAlreadyCompletedException);
|
|
1226
|
+
var ConcurrentModificationException$ = [-3, n0, _CME,
|
|
1227
|
+
{ [_e]: _c },
|
|
1228
|
+
[_m],
|
|
1229
|
+
[0]
|
|
1230
|
+
];
|
|
1231
|
+
n0_registry.registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
1232
|
+
var ConcurrentPipelineExecutionsLimitExceededException$ = [-3, n0, _CPELEE,
|
|
1233
|
+
{ [_e]: _c },
|
|
1234
|
+
[_m],
|
|
1235
|
+
[0]
|
|
1236
|
+
];
|
|
1237
|
+
n0_registry.registerError(ConcurrentPipelineExecutionsLimitExceededException$, ConcurrentPipelineExecutionsLimitExceededException);
|
|
1238
|
+
var ConditionNotOverridableException$ = [-3, n0, _CNOE,
|
|
1239
|
+
{ [_e]: _c },
|
|
1240
|
+
[_m],
|
|
1241
|
+
[0]
|
|
1242
|
+
];
|
|
1243
|
+
n0_registry.registerError(ConditionNotOverridableException$, ConditionNotOverridableException);
|
|
1244
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
1245
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
1246
|
+
[_m],
|
|
1247
|
+
[0]
|
|
1248
|
+
];
|
|
1249
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
1250
|
+
var DuplicatedStopRequestException$ = [-3, n0, _DSRE,
|
|
1251
|
+
{ [_e]: _c },
|
|
1252
|
+
[_m],
|
|
1253
|
+
[0]
|
|
1254
|
+
];
|
|
1255
|
+
n0_registry.registerError(DuplicatedStopRequestException$, DuplicatedStopRequestException);
|
|
1256
|
+
var InvalidActionDeclarationException$ = [-3, n0, _IADE,
|
|
1257
|
+
{ [_e]: _c },
|
|
1258
|
+
[_m],
|
|
1259
|
+
[0]
|
|
1260
|
+
];
|
|
1261
|
+
n0_registry.registerError(InvalidActionDeclarationException$, InvalidActionDeclarationException);
|
|
1262
|
+
var InvalidApprovalTokenException$ = [-3, n0, _IATE,
|
|
1263
|
+
{ [_e]: _c },
|
|
1264
|
+
[_m],
|
|
1265
|
+
[0]
|
|
1266
|
+
];
|
|
1267
|
+
n0_registry.registerError(InvalidApprovalTokenException$, InvalidApprovalTokenException);
|
|
1268
|
+
var InvalidArnException$ = [-3, n0, _IAE,
|
|
1269
|
+
{ [_e]: _c },
|
|
1270
|
+
[_m],
|
|
1271
|
+
[0]
|
|
1272
|
+
];
|
|
1273
|
+
n0_registry.registerError(InvalidArnException$, InvalidArnException);
|
|
1274
|
+
var InvalidBlockerDeclarationException$ = [-3, n0, _IBDE,
|
|
1275
|
+
{ [_e]: _c },
|
|
1276
|
+
[_m],
|
|
1277
|
+
[0]
|
|
1278
|
+
];
|
|
1279
|
+
n0_registry.registerError(InvalidBlockerDeclarationException$, InvalidBlockerDeclarationException);
|
|
1280
|
+
var InvalidClientTokenException$ = [-3, n0, _ICTE,
|
|
1281
|
+
{ [_e]: _c },
|
|
1282
|
+
[_m],
|
|
1283
|
+
[0]
|
|
1284
|
+
];
|
|
1285
|
+
n0_registry.registerError(InvalidClientTokenException$, InvalidClientTokenException);
|
|
1286
|
+
var InvalidJobException$ = [-3, n0, _IJE,
|
|
1287
|
+
{ [_e]: _c },
|
|
1288
|
+
[_m],
|
|
1289
|
+
[0]
|
|
1290
|
+
];
|
|
1291
|
+
n0_registry.registerError(InvalidJobException$, InvalidJobException);
|
|
1292
|
+
var InvalidJobStateException$ = [-3, n0, _IJSE,
|
|
1293
|
+
{ [_e]: _c },
|
|
1294
|
+
[_m],
|
|
1295
|
+
[0]
|
|
1296
|
+
];
|
|
1297
|
+
n0_registry.registerError(InvalidJobStateException$, InvalidJobStateException);
|
|
1298
|
+
var InvalidNextTokenException$ = [-3, n0, _INTE,
|
|
1299
|
+
{ [_e]: _c },
|
|
1300
|
+
[_m],
|
|
1301
|
+
[0]
|
|
1302
|
+
];
|
|
1303
|
+
n0_registry.registerError(InvalidNextTokenException$, InvalidNextTokenException);
|
|
1304
|
+
var InvalidNonceException$ = [-3, n0, _INE,
|
|
1305
|
+
{ [_e]: _c },
|
|
1306
|
+
[_m],
|
|
1307
|
+
[0]
|
|
1308
|
+
];
|
|
1309
|
+
n0_registry.registerError(InvalidNonceException$, InvalidNonceException);
|
|
1310
|
+
var InvalidStageDeclarationException$ = [-3, n0, _ISDE,
|
|
1311
|
+
{ [_e]: _c },
|
|
1312
|
+
[_m],
|
|
1313
|
+
[0]
|
|
1314
|
+
];
|
|
1315
|
+
n0_registry.registerError(InvalidStageDeclarationException$, InvalidStageDeclarationException);
|
|
1316
|
+
var InvalidStructureException$ = [-3, n0, _ISE,
|
|
1317
|
+
{ [_e]: _c },
|
|
1318
|
+
[_m],
|
|
1319
|
+
[0]
|
|
1320
|
+
];
|
|
1321
|
+
n0_registry.registerError(InvalidStructureException$, InvalidStructureException);
|
|
1322
|
+
var InvalidTagsException$ = [-3, n0, _ITE,
|
|
1323
|
+
{ [_e]: _c },
|
|
1324
|
+
[_m],
|
|
1325
|
+
[0]
|
|
1326
|
+
];
|
|
1327
|
+
n0_registry.registerError(InvalidTagsException$, InvalidTagsException);
|
|
1328
|
+
var InvalidWebhookAuthenticationParametersException$ = [-3, n0, _IWAPE,
|
|
1329
|
+
{ [_e]: _c },
|
|
1330
|
+
[_m],
|
|
1331
|
+
[0]
|
|
1332
|
+
];
|
|
1333
|
+
n0_registry.registerError(InvalidWebhookAuthenticationParametersException$, InvalidWebhookAuthenticationParametersException);
|
|
1334
|
+
var InvalidWebhookFilterPatternException$ = [-3, n0, _IWFPE,
|
|
1335
|
+
{ [_e]: _c },
|
|
1336
|
+
[_m],
|
|
1337
|
+
[0]
|
|
1338
|
+
];
|
|
1339
|
+
n0_registry.registerError(InvalidWebhookFilterPatternException$, InvalidWebhookFilterPatternException);
|
|
1340
|
+
var JobNotFoundException$ = [-3, n0, _JNFE,
|
|
1341
|
+
{ [_e]: _c },
|
|
1342
|
+
[_m],
|
|
1343
|
+
[0]
|
|
1344
|
+
];
|
|
1345
|
+
n0_registry.registerError(JobNotFoundException$, JobNotFoundException);
|
|
1346
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
1347
|
+
{ [_e]: _c },
|
|
1348
|
+
[_m],
|
|
1349
|
+
[0]
|
|
1350
|
+
];
|
|
1351
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
1352
|
+
var NotLatestPipelineExecutionException$ = [-3, n0, _NLPEE,
|
|
1353
|
+
{ [_e]: _c },
|
|
1354
|
+
[_m],
|
|
1355
|
+
[0]
|
|
1356
|
+
];
|
|
1357
|
+
n0_registry.registerError(NotLatestPipelineExecutionException$, NotLatestPipelineExecutionException);
|
|
1358
|
+
var OutputVariablesSizeExceededException$ = [-3, n0, _OVSEE,
|
|
1359
|
+
{ [_e]: _c },
|
|
1360
|
+
[_m],
|
|
1361
|
+
[0]
|
|
1362
|
+
];
|
|
1363
|
+
n0_registry.registerError(OutputVariablesSizeExceededException$, OutputVariablesSizeExceededException);
|
|
1364
|
+
var PipelineExecutionNotFoundException$ = [-3, n0, _PENFE,
|
|
1365
|
+
{ [_e]: _c },
|
|
1366
|
+
[_m],
|
|
1367
|
+
[0]
|
|
1368
|
+
];
|
|
1369
|
+
n0_registry.registerError(PipelineExecutionNotFoundException$, PipelineExecutionNotFoundException);
|
|
1370
|
+
var PipelineExecutionNotStoppableException$ = [-3, n0, _PENSE,
|
|
1371
|
+
{ [_e]: _c },
|
|
1372
|
+
[_m],
|
|
1373
|
+
[0]
|
|
1374
|
+
];
|
|
1375
|
+
n0_registry.registerError(PipelineExecutionNotStoppableException$, PipelineExecutionNotStoppableException);
|
|
1376
|
+
var PipelineExecutionOutdatedException$ = [-3, n0, _PEOE,
|
|
1377
|
+
{ [_e]: _c },
|
|
1378
|
+
[_m],
|
|
1379
|
+
[0]
|
|
1380
|
+
];
|
|
1381
|
+
n0_registry.registerError(PipelineExecutionOutdatedException$, PipelineExecutionOutdatedException);
|
|
1382
|
+
var PipelineNameInUseException$ = [-3, n0, _PNIUE,
|
|
1383
|
+
{ [_e]: _c },
|
|
1384
|
+
[_m],
|
|
1385
|
+
[0]
|
|
1386
|
+
];
|
|
1387
|
+
n0_registry.registerError(PipelineNameInUseException$, PipelineNameInUseException);
|
|
1388
|
+
var PipelineNotFoundException$ = [-3, n0, _PNFE,
|
|
1389
|
+
{ [_e]: _c },
|
|
1390
|
+
[_m],
|
|
1391
|
+
[0]
|
|
1392
|
+
];
|
|
1393
|
+
n0_registry.registerError(PipelineNotFoundException$, PipelineNotFoundException);
|
|
1394
|
+
var PipelineVersionNotFoundException$ = [-3, n0, _PVNFE,
|
|
1395
|
+
{ [_e]: _c },
|
|
1396
|
+
[_m],
|
|
1397
|
+
[0]
|
|
1398
|
+
];
|
|
1399
|
+
n0_registry.registerError(PipelineVersionNotFoundException$, PipelineVersionNotFoundException);
|
|
1400
|
+
var RequestFailedException$ = [-3, n0, _RFE,
|
|
1401
|
+
{ [_e]: _c },
|
|
1402
|
+
[_m],
|
|
1403
|
+
[0]
|
|
1404
|
+
];
|
|
1405
|
+
n0_registry.registerError(RequestFailedException$, RequestFailedException);
|
|
1406
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1407
|
+
{ [_e]: _c },
|
|
1408
|
+
[_m],
|
|
1409
|
+
[0]
|
|
1410
|
+
];
|
|
1411
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1412
|
+
var StageNotFoundException$ = [-3, n0, _SNFE,
|
|
1413
|
+
{ [_e]: _c },
|
|
1414
|
+
[_m],
|
|
1415
|
+
[0]
|
|
1416
|
+
];
|
|
1417
|
+
n0_registry.registerError(StageNotFoundException$, StageNotFoundException);
|
|
1418
|
+
var StageNotRetryableException$ = [-3, n0, _SNRE,
|
|
1419
|
+
{ [_e]: _c },
|
|
1420
|
+
[_m],
|
|
1421
|
+
[0]
|
|
1422
|
+
];
|
|
1423
|
+
n0_registry.registerError(StageNotRetryableException$, StageNotRetryableException);
|
|
1424
|
+
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
1425
|
+
{ [_e]: _c },
|
|
1426
|
+
[_m],
|
|
1427
|
+
[0]
|
|
1428
|
+
];
|
|
1429
|
+
n0_registry.registerError(TooManyTagsException$, TooManyTagsException);
|
|
1430
|
+
var UnableToRollbackStageException$ = [-3, n0, _UTRSE,
|
|
1431
|
+
{ [_e]: _c },
|
|
1432
|
+
[_m],
|
|
1433
|
+
[0]
|
|
1434
|
+
];
|
|
1435
|
+
n0_registry.registerError(UnableToRollbackStageException$, UnableToRollbackStageException);
|
|
1436
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
1437
|
+
{ [_e]: _c },
|
|
1438
|
+
[_m],
|
|
1439
|
+
[0]
|
|
1440
|
+
];
|
|
1441
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
1442
|
+
var WebhookNotFoundException$ = [-3, n0, _WNFE,
|
|
1443
|
+
{ [_e]: _c },
|
|
1444
|
+
[],
|
|
1445
|
+
[]
|
|
1446
|
+
];
|
|
1447
|
+
n0_registry.registerError(WebhookNotFoundException$, WebhookNotFoundException);
|
|
1448
|
+
const errorTypeRegistries = [
|
|
1449
|
+
_s_registry,
|
|
1450
|
+
n0_registry,
|
|
1451
|
+
];
|
|
1452
|
+
var AccessKeyId = [0, n0, _AKI, 8, 0];
|
|
1453
|
+
var SecretAccessKey = [0, n0, _SAK, 8, 0];
|
|
1454
|
+
var SessionToken = [0, n0, _ST, 8, 0];
|
|
1455
|
+
var AcknowledgeJobInput$ = [3, n0, _AJI,
|
|
1456
|
+
0,
|
|
1457
|
+
[_jI, _n],
|
|
1458
|
+
[0, 0], 2
|
|
1459
|
+
];
|
|
1460
|
+
var AcknowledgeJobOutput$ = [3, n0, _AJO,
|
|
1461
|
+
0,
|
|
1462
|
+
[_st],
|
|
1463
|
+
[0]
|
|
1464
|
+
];
|
|
1465
|
+
var AcknowledgeThirdPartyJobInput$ = [3, n0, _ATPJI,
|
|
1466
|
+
0,
|
|
1467
|
+
[_jI, _n, _cT],
|
|
1468
|
+
[0, 0, 0], 3
|
|
1469
|
+
];
|
|
1470
|
+
var AcknowledgeThirdPartyJobOutput$ = [3, n0, _ATPJO,
|
|
1471
|
+
0,
|
|
1472
|
+
[_st],
|
|
1473
|
+
[0]
|
|
1474
|
+
];
|
|
1475
|
+
var ActionConfiguration$ = [3, n0, _AC,
|
|
1476
|
+
0,
|
|
1477
|
+
[_co],
|
|
1478
|
+
[128 | 0]
|
|
1479
|
+
];
|
|
1480
|
+
var ActionConfigurationProperty$ = [3, n0, _ACP,
|
|
1481
|
+
0,
|
|
1482
|
+
[_na, _r, _k, _se, _q, _d, _t],
|
|
1483
|
+
[0, 2, 2, 2, 2, 0, 0], 4
|
|
1484
|
+
];
|
|
1485
|
+
var ActionContext$ = [3, n0, _ACc,
|
|
1486
|
+
0,
|
|
1487
|
+
[_na, _aEI],
|
|
1488
|
+
[0, 0]
|
|
1489
|
+
];
|
|
1490
|
+
var ActionDeclaration$ = [3, n0, _AD,
|
|
1491
|
+
0,
|
|
1492
|
+
[_na, _aTI, _rO, _co, _com, _oA, _iA, _oV, _rA, _re, _nam, _tIM, _eV],
|
|
1493
|
+
[0, () => ActionTypeId$, 1, 128 | 0, 64 | 0, () => OutputArtifactList, () => InputArtifactList, 64 | 0, 0, 0, 0, 1, () => EnvironmentVariableList], 2
|
|
1494
|
+
];
|
|
1495
|
+
var ActionExecution$ = [3, n0, _AE,
|
|
1496
|
+
0,
|
|
1497
|
+
[_aEI, _st, _su, _lSC, _to, _lUB, _eEI, _eEU, _pC, _eD, _lSARN],
|
|
1498
|
+
[0, 0, 0, 4, 0, 0, 0, 0, 1, () => ErrorDetails$, 0]
|
|
1499
|
+
];
|
|
1500
|
+
var ActionExecutionDetail$ = [3, n0, _AED,
|
|
1501
|
+
0,
|
|
1502
|
+
[_pEI, _aEI, _pV, _sN, _aN, _sT, _lUT, _uB, _st, _i, _o],
|
|
1503
|
+
[0, 0, 1, 0, 0, 4, 4, 0, 0, () => ActionExecutionInput$, () => ActionExecutionOutput$]
|
|
1504
|
+
];
|
|
1505
|
+
var ActionExecutionFilter$ = [3, n0, _AEF,
|
|
1506
|
+
0,
|
|
1507
|
+
[_pEI, _lIPE],
|
|
1508
|
+
[0, () => LatestInPipelineExecutionFilter$]
|
|
1509
|
+
];
|
|
1510
|
+
var ActionExecutionInput$ = [3, n0, _AEI,
|
|
1511
|
+
0,
|
|
1512
|
+
[_aTI, _co, _rC, _rA, _re, _iA, _nam],
|
|
1513
|
+
[() => ActionTypeId$, 128 | 0, 128 | 0, 0, 0, () => ArtifactDetailList, 0]
|
|
1514
|
+
];
|
|
1515
|
+
var ActionExecutionOutput$ = [3, n0, _AEO,
|
|
1516
|
+
0,
|
|
1517
|
+
[_oA, _eR, _oV],
|
|
1518
|
+
[() => ArtifactDetailList, () => ActionExecutionResult$, 128 | 0]
|
|
1519
|
+
];
|
|
1520
|
+
var ActionExecutionResult$ = [3, n0, _AER,
|
|
1521
|
+
0,
|
|
1522
|
+
[_eEI, _eES, _eEU, _eD, _lSARN],
|
|
1523
|
+
[0, 0, 0, () => ErrorDetails$, 0]
|
|
1524
|
+
];
|
|
1525
|
+
var ActionRevision$ = [3, n0, _AR,
|
|
1526
|
+
0,
|
|
1527
|
+
[_rI, _rCI, _cr],
|
|
1528
|
+
[0, 0, 4], 3
|
|
1529
|
+
];
|
|
1530
|
+
var ActionState$ = [3, n0, _AS,
|
|
1531
|
+
0,
|
|
1532
|
+
[_aN, _cR, _lE, _eU, _rU],
|
|
1533
|
+
[0, () => ActionRevision$, () => ActionExecution$, 0, 0]
|
|
1534
|
+
];
|
|
1535
|
+
var ActionType$ = [3, n0, _AT,
|
|
1536
|
+
0,
|
|
1537
|
+
[_id, _iAD, _oAD, _set, _aCP],
|
|
1538
|
+
[() => ActionTypeId$, () => ArtifactDetails$, () => ArtifactDetails$, () => ActionTypeSettings$, () => ActionConfigurationPropertyList], 3
|
|
1539
|
+
];
|
|
1540
|
+
var ActionTypeArtifactDetails$ = [3, n0, _ATAD,
|
|
1541
|
+
0,
|
|
1542
|
+
[_mC, _mCa],
|
|
1543
|
+
[1, 1], 2
|
|
1544
|
+
];
|
|
1545
|
+
var ActionTypeDeclaration$ = [3, n0, _ATD,
|
|
1546
|
+
0,
|
|
1547
|
+
[_ex, _id, _iAD, _oAD, _d, _p, _pr, _u],
|
|
1548
|
+
[() => ActionTypeExecutor$, () => ActionTypeIdentifier$, () => ActionTypeArtifactDetails$, () => ActionTypeArtifactDetails$, 0, () => ActionTypePermissions$, () => ActionTypeProperties, () => ActionTypeUrls$], 4
|
|
1549
|
+
];
|
|
1550
|
+
var ActionTypeExecutor$ = [3, n0, _ATE,
|
|
1551
|
+
0,
|
|
1552
|
+
[_co, _t, _pST, _jT],
|
|
1553
|
+
[() => ExecutorConfiguration$, 0, 0, 1], 2
|
|
1554
|
+
];
|
|
1555
|
+
var ActionTypeId$ = [3, n0, _ATI,
|
|
1556
|
+
0,
|
|
1557
|
+
[_ca, _ow, _pro, _v],
|
|
1558
|
+
[0, 0, 0, 0], 4
|
|
1559
|
+
];
|
|
1560
|
+
var ActionTypeIdentifier$ = [3, n0, _ATIc,
|
|
1561
|
+
0,
|
|
1562
|
+
[_ca, _ow, _pro, _v],
|
|
1563
|
+
[0, 0, 0, 0], 4
|
|
1564
|
+
];
|
|
1565
|
+
var ActionTypePermissions$ = [3, n0, _ATP,
|
|
1566
|
+
0,
|
|
1567
|
+
[_aA],
|
|
1568
|
+
[64 | 0], 1
|
|
1569
|
+
];
|
|
1570
|
+
var ActionTypeProperty$ = [3, n0, _ATPc,
|
|
1571
|
+
0,
|
|
1572
|
+
[_na, _op, _k, _nE, _q, _d],
|
|
1573
|
+
[0, 2, 2, 2, 2, 0], 4
|
|
1574
|
+
];
|
|
1575
|
+
var ActionTypeSettings$ = [3, n0, _ATS,
|
|
1576
|
+
0,
|
|
1577
|
+
[_tPCU, _eUT, _eUTx, _rUT],
|
|
1578
|
+
[0, 0, 0, 0]
|
|
1579
|
+
];
|
|
1580
|
+
var ActionTypeUrls$ = [3, n0, _ATU,
|
|
1581
|
+
0,
|
|
1582
|
+
[_cU, _eUT, _eUTx, _rUT],
|
|
1583
|
+
[0, 0, 0, 0]
|
|
1584
|
+
];
|
|
1585
|
+
var ApprovalResult$ = [3, n0, _ARp,
|
|
1586
|
+
0,
|
|
1587
|
+
[_su, _st],
|
|
1588
|
+
[0, 0], 2
|
|
1589
|
+
];
|
|
1590
|
+
var Artifact$ = [3, n0, _A,
|
|
1591
|
+
0,
|
|
1592
|
+
[_na, _rev, _l],
|
|
1593
|
+
[0, 0, () => ArtifactLocation$]
|
|
1594
|
+
];
|
|
1595
|
+
var ArtifactDetail$ = [3, n0, _ADr,
|
|
1596
|
+
0,
|
|
1597
|
+
[_na, _sl],
|
|
1598
|
+
[0, () => S3Location$]
|
|
1599
|
+
];
|
|
1600
|
+
var ArtifactDetails$ = [3, n0, _ADrt,
|
|
1601
|
+
0,
|
|
1602
|
+
[_mC, _mCa],
|
|
1603
|
+
[1, 1], 2
|
|
1604
|
+
];
|
|
1605
|
+
var ArtifactLocation$ = [3, n0, _AL,
|
|
1606
|
+
0,
|
|
1607
|
+
[_t, _sL],
|
|
1608
|
+
[0, () => S3ArtifactLocation$]
|
|
1609
|
+
];
|
|
1610
|
+
var ArtifactRevision$ = [3, n0, _ARr,
|
|
1611
|
+
0,
|
|
1612
|
+
[_na, _rI, _rCIe, _rS, _cr, _rU],
|
|
1613
|
+
[0, 0, 0, 0, 4, 0]
|
|
1614
|
+
];
|
|
1615
|
+
var ArtifactStore$ = [3, n0, _ASr,
|
|
1616
|
+
0,
|
|
1617
|
+
[_t, _l, _eK],
|
|
1618
|
+
[0, 0, () => EncryptionKey$], 2
|
|
1619
|
+
];
|
|
1620
|
+
var AWSSessionCredentials$ = [3, n0, _AWSSC,
|
|
1621
|
+
8,
|
|
1622
|
+
[_aKI, _sAK, _sTe],
|
|
1623
|
+
[[() => AccessKeyId, 0], [() => SecretAccessKey, 0], [() => SessionToken, 0]], 3
|
|
1624
|
+
];
|
|
1625
|
+
var BeforeEntryConditions$ = [3, n0, _BEC,
|
|
1626
|
+
0,
|
|
1627
|
+
[_con],
|
|
1628
|
+
[() => ConditionList], 1
|
|
1629
|
+
];
|
|
1630
|
+
var BlockerDeclaration$ = [3, n0, _BD,
|
|
1631
|
+
0,
|
|
1632
|
+
[_na, _t],
|
|
1633
|
+
[0, 0], 2
|
|
1634
|
+
];
|
|
1635
|
+
var Condition$ = [3, n0, _C,
|
|
1636
|
+
0,
|
|
1637
|
+
[_res, _ru],
|
|
1638
|
+
[0, () => RuleDeclarationList]
|
|
1639
|
+
];
|
|
1640
|
+
var ConditionExecution$ = [3, n0, _CEo,
|
|
1641
|
+
0,
|
|
1642
|
+
[_st, _su, _lSC],
|
|
1643
|
+
[0, 0, 4]
|
|
1644
|
+
];
|
|
1645
|
+
var ConditionState$ = [3, n0, _CS,
|
|
1646
|
+
0,
|
|
1647
|
+
[_lE, _rSu],
|
|
1648
|
+
[() => ConditionExecution$, () => RuleStateList]
|
|
1649
|
+
];
|
|
1650
|
+
var CreateCustomActionTypeInput$ = [3, n0, _CCATI,
|
|
1651
|
+
0,
|
|
1652
|
+
[_ca, _pro, _v, _iAD, _oAD, _set, _cP, _ta],
|
|
1653
|
+
[0, 0, 0, () => ArtifactDetails$, () => ArtifactDetails$, () => ActionTypeSettings$, () => ActionConfigurationPropertyList, () => TagList], 5
|
|
1654
|
+
];
|
|
1655
|
+
var CreateCustomActionTypeOutput$ = [3, n0, _CCATO,
|
|
1656
|
+
0,
|
|
1657
|
+
[_aT, _ta],
|
|
1658
|
+
[() => ActionType$, () => TagList], 1
|
|
1659
|
+
];
|
|
1660
|
+
var CreatePipelineInput$ = [3, n0, _CPI,
|
|
1661
|
+
0,
|
|
1662
|
+
[_pi, _ta],
|
|
1663
|
+
[() => PipelineDeclaration$, () => TagList], 1
|
|
1664
|
+
];
|
|
1665
|
+
var CreatePipelineOutput$ = [3, n0, _CPO,
|
|
1666
|
+
0,
|
|
1667
|
+
[_pi, _ta],
|
|
1668
|
+
[() => PipelineDeclaration$, () => TagList]
|
|
1669
|
+
];
|
|
1670
|
+
var CurrentRevision$ = [3, n0, _CR,
|
|
1671
|
+
0,
|
|
1672
|
+
[_rev, _cI, _cr, _rS],
|
|
1673
|
+
[0, 0, 4, 0], 2
|
|
1674
|
+
];
|
|
1675
|
+
var DeleteCustomActionTypeInput$ = [3, n0, _DCATI,
|
|
1676
|
+
0,
|
|
1677
|
+
[_ca, _pro, _v],
|
|
1678
|
+
[0, 0, 0], 3
|
|
1679
|
+
];
|
|
1680
|
+
var DeletePipelineInput$ = [3, n0, _DPI,
|
|
1681
|
+
0,
|
|
1682
|
+
[_na],
|
|
1683
|
+
[0], 1
|
|
1684
|
+
];
|
|
1685
|
+
var DeleteWebhookInput$ = [3, n0, _DWI,
|
|
1686
|
+
0,
|
|
1687
|
+
[_na],
|
|
1688
|
+
[0], 1
|
|
1689
|
+
];
|
|
1690
|
+
var DeleteWebhookOutput$ = [3, n0, _DWO,
|
|
1691
|
+
0,
|
|
1692
|
+
[],
|
|
1693
|
+
[]
|
|
1694
|
+
];
|
|
1695
|
+
var DeployActionExecutionTarget$ = [3, n0, _DAET,
|
|
1696
|
+
0,
|
|
1697
|
+
[_tI, _tT, _st, _sT, _eT, _ev],
|
|
1698
|
+
[0, 0, 0, 4, 4, () => DeployTargetEventList]
|
|
1699
|
+
];
|
|
1700
|
+
var DeployTargetEvent$ = [3, n0, _DTE,
|
|
1701
|
+
0,
|
|
1702
|
+
[_na, _st, _sT, _eT, _cont],
|
|
1703
|
+
[0, 0, 4, 4, () => DeployTargetEventContext$]
|
|
1704
|
+
];
|
|
1705
|
+
var DeployTargetEventContext$ = [3, n0, _DTEC,
|
|
1706
|
+
0,
|
|
1707
|
+
[_sCI, _m],
|
|
1708
|
+
[0, 0]
|
|
1709
|
+
];
|
|
1710
|
+
var DeregisterWebhookWithThirdPartyInput$ = [3, n0, _DWWTPI,
|
|
1711
|
+
0,
|
|
1712
|
+
[_wN],
|
|
1713
|
+
[0]
|
|
1714
|
+
];
|
|
1715
|
+
var DeregisterWebhookWithThirdPartyOutput$ = [3, n0, _DWWTPO,
|
|
1716
|
+
0,
|
|
1717
|
+
[],
|
|
1718
|
+
[]
|
|
1719
|
+
];
|
|
1720
|
+
var DisableStageTransitionInput$ = [3, n0, _DSTI,
|
|
1721
|
+
0,
|
|
1722
|
+
[_pN, _sN, _tTr, _rea],
|
|
1723
|
+
[0, 0, 0, 0], 4
|
|
1724
|
+
];
|
|
1725
|
+
var EnableStageTransitionInput$ = [3, n0, _ESTI,
|
|
1726
|
+
0,
|
|
1727
|
+
[_pN, _sN, _tTr],
|
|
1728
|
+
[0, 0, 0], 3
|
|
1729
|
+
];
|
|
1730
|
+
var EncryptionKey$ = [3, n0, _EK,
|
|
1731
|
+
0,
|
|
1732
|
+
[_id, _t],
|
|
1733
|
+
[0, 0], 2
|
|
1734
|
+
];
|
|
1735
|
+
var EnvironmentVariable$ = [3, n0, _EV,
|
|
1736
|
+
0,
|
|
1737
|
+
[_na, _va, _t],
|
|
1738
|
+
[0, 0, 0], 2
|
|
1739
|
+
];
|
|
1740
|
+
var ErrorDetails$ = [3, n0, _ED,
|
|
1741
|
+
0,
|
|
1742
|
+
[_cod, _m],
|
|
1743
|
+
[0, 0]
|
|
1744
|
+
];
|
|
1745
|
+
var ExecutionDetails$ = [3, n0, _EDx,
|
|
1746
|
+
0,
|
|
1747
|
+
[_su, _eEI, _pC],
|
|
1748
|
+
[0, 0, 1]
|
|
1749
|
+
];
|
|
1750
|
+
var ExecutionTrigger$ = [3, n0, _ET,
|
|
1751
|
+
0,
|
|
1752
|
+
[_tTri, _tD],
|
|
1753
|
+
[0, 0]
|
|
1754
|
+
];
|
|
1755
|
+
var ExecutorConfiguration$ = [3, n0, _EC,
|
|
1756
|
+
0,
|
|
1757
|
+
[_lEC, _jWEC],
|
|
1758
|
+
[() => LambdaExecutorConfiguration$, () => JobWorkerExecutorConfiguration$]
|
|
1759
|
+
];
|
|
1760
|
+
var FailureConditions$ = [3, n0, _FC,
|
|
1761
|
+
0,
|
|
1762
|
+
[_res, _rCe, _con],
|
|
1763
|
+
[0, () => RetryConfiguration$, () => ConditionList]
|
|
1764
|
+
];
|
|
1765
|
+
var FailureDetails$ = [3, n0, _FD,
|
|
1766
|
+
0,
|
|
1767
|
+
[_t, _m, _eEI],
|
|
1768
|
+
[0, 0, 0], 2
|
|
1769
|
+
];
|
|
1770
|
+
var GetActionTypeInput$ = [3, n0, _GATI,
|
|
1771
|
+
0,
|
|
1772
|
+
[_ca, _ow, _pro, _v],
|
|
1773
|
+
[0, 0, 0, 0], 4
|
|
1774
|
+
];
|
|
1775
|
+
var GetActionTypeOutput$ = [3, n0, _GATO,
|
|
1776
|
+
0,
|
|
1777
|
+
[_aT],
|
|
1778
|
+
[() => ActionTypeDeclaration$]
|
|
1779
|
+
];
|
|
1780
|
+
var GetJobDetailsInput$ = [3, n0, _GJDI,
|
|
1781
|
+
0,
|
|
1782
|
+
[_jI],
|
|
1783
|
+
[0], 1
|
|
1784
|
+
];
|
|
1785
|
+
var GetJobDetailsOutput$ = [3, n0, _GJDO,
|
|
1786
|
+
0,
|
|
1787
|
+
[_jD],
|
|
1788
|
+
[[() => JobDetails$, 0]]
|
|
1789
|
+
];
|
|
1790
|
+
var GetPipelineExecutionInput$ = [3, n0, _GPEI,
|
|
1791
|
+
0,
|
|
1792
|
+
[_pN, _pEI],
|
|
1793
|
+
[0, 0], 2
|
|
1794
|
+
];
|
|
1795
|
+
var GetPipelineExecutionOutput$ = [3, n0, _GPEO,
|
|
1796
|
+
0,
|
|
1797
|
+
[_pE],
|
|
1798
|
+
[() => PipelineExecution$]
|
|
1799
|
+
];
|
|
1800
|
+
var GetPipelineInput$ = [3, n0, _GPI,
|
|
1801
|
+
0,
|
|
1802
|
+
[_na, _v],
|
|
1803
|
+
[0, 1], 1
|
|
1804
|
+
];
|
|
1805
|
+
var GetPipelineOutput$ = [3, n0, _GPO,
|
|
1806
|
+
0,
|
|
1807
|
+
[_pi, _me],
|
|
1808
|
+
[() => PipelineDeclaration$, () => PipelineMetadata$]
|
|
1809
|
+
];
|
|
1810
|
+
var GetPipelineStateInput$ = [3, n0, _GPSI,
|
|
1811
|
+
0,
|
|
1812
|
+
[_na],
|
|
1813
|
+
[0], 1
|
|
1814
|
+
];
|
|
1815
|
+
var GetPipelineStateOutput$ = [3, n0, _GPSO,
|
|
1816
|
+
0,
|
|
1817
|
+
[_pN, _pV, _sS, _cr, _up],
|
|
1818
|
+
[0, 1, () => StageStateList, 4, 4]
|
|
1819
|
+
];
|
|
1820
|
+
var GetThirdPartyJobDetailsInput$ = [3, n0, _GTPJDI,
|
|
1821
|
+
0,
|
|
1822
|
+
[_jI, _cT],
|
|
1823
|
+
[0, 0], 2
|
|
1824
|
+
];
|
|
1825
|
+
var GetThirdPartyJobDetailsOutput$ = [3, n0, _GTPJDO,
|
|
1826
|
+
0,
|
|
1827
|
+
[_jD],
|
|
1828
|
+
[[() => ThirdPartyJobDetails$, 0]]
|
|
1829
|
+
];
|
|
1830
|
+
var GitBranchFilterCriteria$ = [3, n0, _GBFC,
|
|
1831
|
+
0,
|
|
1832
|
+
[_in, _exc],
|
|
1833
|
+
[64 | 0, 64 | 0]
|
|
1834
|
+
];
|
|
1835
|
+
var GitConfiguration$ = [3, n0, _GC,
|
|
1836
|
+
0,
|
|
1837
|
+
[_sAN, _pu, _pR],
|
|
1838
|
+
[0, () => GitPushFilterList, () => GitPullRequestFilterList], 1
|
|
1839
|
+
];
|
|
1840
|
+
var GitFilePathFilterCriteria$ = [3, n0, _GFPFC,
|
|
1841
|
+
0,
|
|
1842
|
+
[_in, _exc],
|
|
1843
|
+
[64 | 0, 64 | 0]
|
|
1844
|
+
];
|
|
1845
|
+
var GitPullRequestFilter$ = [3, n0, _GPRF,
|
|
1846
|
+
0,
|
|
1847
|
+
[_ev, _b, _fP],
|
|
1848
|
+
[64 | 0, () => GitBranchFilterCriteria$, () => GitFilePathFilterCriteria$]
|
|
1849
|
+
];
|
|
1850
|
+
var GitPushFilter$ = [3, n0, _GPF,
|
|
1851
|
+
0,
|
|
1852
|
+
[_ta, _b, _fP],
|
|
1853
|
+
[() => GitTagFilterCriteria$, () => GitBranchFilterCriteria$, () => GitFilePathFilterCriteria$]
|
|
1854
|
+
];
|
|
1855
|
+
var GitTagFilterCriteria$ = [3, n0, _GTFC,
|
|
1856
|
+
0,
|
|
1857
|
+
[_in, _exc],
|
|
1858
|
+
[64 | 0, 64 | 0]
|
|
1859
|
+
];
|
|
1860
|
+
var InputArtifact$ = [3, n0, _IA,
|
|
1861
|
+
0,
|
|
1862
|
+
[_na],
|
|
1863
|
+
[0], 1
|
|
1864
|
+
];
|
|
1865
|
+
var Job$ = [3, n0, _J,
|
|
1866
|
+
0,
|
|
1867
|
+
[_id, _da, _n, _aI],
|
|
1868
|
+
[0, [() => JobData$, 0], 0, 0]
|
|
1869
|
+
];
|
|
1870
|
+
var JobData$ = [3, n0, _JD,
|
|
1871
|
+
0,
|
|
1872
|
+
[_aTI, _aC, _pCi, _iA, _oA, _aCr, _cTo, _eK],
|
|
1873
|
+
[() => ActionTypeId$, () => ActionConfiguration$, () => PipelineContext$, () => ArtifactList, () => ArtifactList, [() => AWSSessionCredentials$, 0], 0, () => EncryptionKey$]
|
|
1874
|
+
];
|
|
1875
|
+
var JobDetails$ = [3, n0, _JDo,
|
|
1876
|
+
0,
|
|
1877
|
+
[_id, _da, _aI],
|
|
1878
|
+
[0, [() => JobData$, 0], 0]
|
|
1879
|
+
];
|
|
1880
|
+
var JobWorkerExecutorConfiguration$ = [3, n0, _JWEC,
|
|
1881
|
+
0,
|
|
1882
|
+
[_pA, _pSP],
|
|
1883
|
+
[64 | 0, 64 | 0]
|
|
1884
|
+
];
|
|
1885
|
+
var LambdaExecutorConfiguration$ = [3, n0, _LEC,
|
|
1886
|
+
0,
|
|
1887
|
+
[_lFA],
|
|
1888
|
+
[0], 1
|
|
1889
|
+
];
|
|
1890
|
+
var LatestInPipelineExecutionFilter$ = [3, n0, _LIPEF,
|
|
1891
|
+
0,
|
|
1892
|
+
[_pEI, _sTR],
|
|
1893
|
+
[0, 0], 2
|
|
1894
|
+
];
|
|
1895
|
+
var ListActionExecutionsInput$ = [3, n0, _LAEI,
|
|
1896
|
+
0,
|
|
1897
|
+
[_pN, _f, _mR, _nT],
|
|
1898
|
+
[0, () => ActionExecutionFilter$, 1, 0], 1
|
|
1899
|
+
];
|
|
1900
|
+
var ListActionExecutionsOutput$ = [3, n0, _LAEO,
|
|
1901
|
+
0,
|
|
1902
|
+
[_aED, _nT],
|
|
1903
|
+
[() => ActionExecutionDetailList, 0]
|
|
1904
|
+
];
|
|
1905
|
+
var ListActionTypesInput$ = [3, n0, _LATI,
|
|
1906
|
+
0,
|
|
1907
|
+
[_aOF, _nT, _rF],
|
|
1908
|
+
[0, 0, 0]
|
|
1909
|
+
];
|
|
1910
|
+
var ListActionTypesOutput$ = [3, n0, _LATO,
|
|
1911
|
+
0,
|
|
1912
|
+
[_aTc, _nT],
|
|
1913
|
+
[() => ActionTypeList, 0], 1
|
|
1914
|
+
];
|
|
1915
|
+
var ListDeployActionExecutionTargetsInput$ = [3, n0, _LDAETI,
|
|
1916
|
+
0,
|
|
1917
|
+
[_aEI, _pN, _fi, _mR, _nT],
|
|
1918
|
+
[0, 0, () => TargetFilterList, 1, 0], 1
|
|
1919
|
+
];
|
|
1920
|
+
var ListDeployActionExecutionTargetsOutput$ = [3, n0, _LDAETO,
|
|
1921
|
+
0,
|
|
1922
|
+
[_tar, _nT],
|
|
1923
|
+
[() => DeployActionExecutionTargetList, 0]
|
|
1924
|
+
];
|
|
1925
|
+
var ListPipelineExecutionsInput$ = [3, n0, _LPEI,
|
|
1926
|
+
0,
|
|
1927
|
+
[_pN, _mR, _f, _nT],
|
|
1928
|
+
[0, 1, () => PipelineExecutionFilter$, 0], 1
|
|
1929
|
+
];
|
|
1930
|
+
var ListPipelineExecutionsOutput$ = [3, n0, _LPEO,
|
|
1931
|
+
0,
|
|
1932
|
+
[_pES, _nT],
|
|
1933
|
+
[() => PipelineExecutionSummaryList, 0]
|
|
1934
|
+
];
|
|
1935
|
+
var ListPipelinesInput$ = [3, n0, _LPI,
|
|
1936
|
+
0,
|
|
1937
|
+
[_nT, _mR],
|
|
1938
|
+
[0, 1]
|
|
1939
|
+
];
|
|
1940
|
+
var ListPipelinesOutput$ = [3, n0, _LPO,
|
|
1941
|
+
0,
|
|
1942
|
+
[_pip, _nT],
|
|
1943
|
+
[() => PipelineList, 0]
|
|
1944
|
+
];
|
|
1945
|
+
var ListRuleExecutionsInput$ = [3, n0, _LREI,
|
|
1946
|
+
0,
|
|
1947
|
+
[_pN, _f, _mR, _nT],
|
|
1948
|
+
[0, () => RuleExecutionFilter$, 1, 0], 1
|
|
1949
|
+
];
|
|
1950
|
+
var ListRuleExecutionsOutput$ = [3, n0, _LREO,
|
|
1951
|
+
0,
|
|
1952
|
+
[_rED, _nT],
|
|
1953
|
+
[() => RuleExecutionDetailList, 0]
|
|
1954
|
+
];
|
|
1955
|
+
var ListRuleTypesInput$ = [3, n0, _LRTI,
|
|
1956
|
+
0,
|
|
1957
|
+
[_rOF, _rF],
|
|
1958
|
+
[0, 0]
|
|
1959
|
+
];
|
|
1960
|
+
var ListRuleTypesOutput$ = [3, n0, _LRTO,
|
|
1961
|
+
0,
|
|
1962
|
+
[_rT],
|
|
1963
|
+
[() => RuleTypeList], 1
|
|
1964
|
+
];
|
|
1965
|
+
var ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
1966
|
+
0,
|
|
1967
|
+
[_rAe, _nT, _mR],
|
|
1968
|
+
[0, 0, 1], 1
|
|
1969
|
+
];
|
|
1970
|
+
var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
1971
|
+
0,
|
|
1972
|
+
[_ta, _nT],
|
|
1973
|
+
[() => TagList, 0]
|
|
1974
|
+
];
|
|
1975
|
+
var ListWebhookItem$ = [3, n0, _LWI,
|
|
1976
|
+
0,
|
|
1977
|
+
[_de, _ur, _eM, _eC, _lT, _a, _ta],
|
|
1978
|
+
[() => WebhookDefinition$, 0, 0, 0, 4, 0, () => TagList], 2
|
|
1979
|
+
];
|
|
1980
|
+
var ListWebhooksInput$ = [3, n0, _LWIi,
|
|
1981
|
+
0,
|
|
1982
|
+
[_NT, _MR],
|
|
1983
|
+
[0, 1]
|
|
1984
|
+
];
|
|
1985
|
+
var ListWebhooksOutput$ = [3, n0, _LWO,
|
|
1986
|
+
0,
|
|
1987
|
+
[_w, _NT],
|
|
1988
|
+
[() => WebhookList, 0]
|
|
1989
|
+
];
|
|
1990
|
+
var OutputArtifact$ = [3, n0, _OA,
|
|
1991
|
+
0,
|
|
1992
|
+
[_na, _fil],
|
|
1993
|
+
[0, 64 | 0], 1
|
|
1994
|
+
];
|
|
1995
|
+
var OverrideStageConditionInput$ = [3, n0, _OSCI,
|
|
1996
|
+
0,
|
|
1997
|
+
[_pN, _sN, _pEI, _cTon],
|
|
1998
|
+
[0, 0, 0, 0], 4
|
|
1999
|
+
];
|
|
2000
|
+
var PipelineContext$ = [3, n0, _PC,
|
|
2001
|
+
0,
|
|
2002
|
+
[_pN, _sta, _ac, _pAi, _pEI],
|
|
2003
|
+
[0, () => StageContext$, () => ActionContext$, 0, 0]
|
|
2004
|
+
];
|
|
2005
|
+
var PipelineDeclaration$ = [3, n0, _PD,
|
|
2006
|
+
0,
|
|
2007
|
+
[_na, _rA, _stag, _aS, _aSr, _v, _eMx, _pT, _var, _tr],
|
|
2008
|
+
[0, 0, () => PipelineStageDeclarationList, () => ArtifactStore$, () => ArtifactStoreMap, 1, 0, 0, () => PipelineVariableDeclarationList, () => PipelineTriggerDeclarationList], 3
|
|
2009
|
+
];
|
|
2010
|
+
var PipelineExecution$ = [3, n0, _PE,
|
|
2011
|
+
0,
|
|
2012
|
+
[_pN, _pV, _pEI, _st, _sSt, _aR, _var, _tri, _eMx, _eTx, _rM],
|
|
2013
|
+
[0, 1, 0, 0, 0, () => ArtifactRevisionList, () => ResolvedPipelineVariableList, () => ExecutionTrigger$, 0, 0, () => PipelineRollbackMetadata$]
|
|
2014
|
+
];
|
|
2015
|
+
var PipelineExecutionFilter$ = [3, n0, _PEF,
|
|
2016
|
+
0,
|
|
2017
|
+
[_sIS],
|
|
2018
|
+
[() => SucceededInStageFilter$]
|
|
2019
|
+
];
|
|
2020
|
+
var PipelineExecutionSummary$ = [3, n0, _PES,
|
|
2021
|
+
0,
|
|
2022
|
+
[_pEI, _st, _sSt, _sT, _lUT, _sR, _tri, _sTt, _eMx, _eTx, _rM],
|
|
2023
|
+
[0, 0, 0, 4, 4, () => SourceRevisionList, () => ExecutionTrigger$, () => StopExecutionTrigger$, 0, 0, () => PipelineRollbackMetadata$]
|
|
2024
|
+
];
|
|
2025
|
+
var PipelineMetadata$ = [3, n0, _PM,
|
|
2026
|
+
0,
|
|
2027
|
+
[_pAi, _cr, _up, _pDA],
|
|
2028
|
+
[0, 4, 4, 4]
|
|
2029
|
+
];
|
|
2030
|
+
var PipelineRollbackMetadata$ = [3, n0, _PRM,
|
|
2031
|
+
0,
|
|
2032
|
+
[_rTPEI],
|
|
2033
|
+
[0]
|
|
2034
|
+
];
|
|
2035
|
+
var PipelineSummary$ = [3, n0, _PS,
|
|
2036
|
+
0,
|
|
2037
|
+
[_na, _v, _pT, _eMx, _cr, _up],
|
|
2038
|
+
[0, 1, 0, 0, 4, 4]
|
|
2039
|
+
];
|
|
2040
|
+
var PipelineTriggerDeclaration$ = [3, n0, _PTD,
|
|
2041
|
+
0,
|
|
2042
|
+
[_pTr, _gC],
|
|
2043
|
+
[0, () => GitConfiguration$], 2
|
|
2044
|
+
];
|
|
2045
|
+
var PipelineVariable$ = [3, n0, _PV,
|
|
2046
|
+
0,
|
|
2047
|
+
[_na, _va],
|
|
2048
|
+
[0, 0], 2
|
|
2049
|
+
];
|
|
2050
|
+
var PipelineVariableDeclaration$ = [3, n0, _PVD,
|
|
2051
|
+
0,
|
|
2052
|
+
[_na, _dV, _d],
|
|
2053
|
+
[0, 0, 0], 1
|
|
2054
|
+
];
|
|
2055
|
+
var PollForJobsInput$ = [3, n0, _PFJI,
|
|
2056
|
+
0,
|
|
2057
|
+
[_aTI, _mBS, _qP],
|
|
2058
|
+
[() => ActionTypeId$, 1, 128 | 0], 1
|
|
2059
|
+
];
|
|
2060
|
+
var PollForJobsOutput$ = [3, n0, _PFJO,
|
|
2061
|
+
0,
|
|
2062
|
+
[_j],
|
|
2063
|
+
[[() => JobList, 0]]
|
|
2064
|
+
];
|
|
2065
|
+
var PollForThirdPartyJobsInput$ = [3, n0, _PFTPJI,
|
|
2066
|
+
0,
|
|
2067
|
+
[_aTI, _mBS],
|
|
2068
|
+
[() => ActionTypeId$, 1], 1
|
|
2069
|
+
];
|
|
2070
|
+
var PollForThirdPartyJobsOutput$ = [3, n0, _PFTPJO,
|
|
2071
|
+
0,
|
|
2072
|
+
[_j],
|
|
2073
|
+
[() => ThirdPartyJobList]
|
|
2074
|
+
];
|
|
2075
|
+
var PutActionRevisionInput$ = [3, n0, _PARI,
|
|
2076
|
+
0,
|
|
2077
|
+
[_pN, _sN, _aN, _aRc],
|
|
2078
|
+
[0, 0, 0, () => ActionRevision$], 4
|
|
2079
|
+
];
|
|
2080
|
+
var PutActionRevisionOutput$ = [3, n0, _PARO,
|
|
2081
|
+
0,
|
|
2082
|
+
[_nR, _pEI],
|
|
2083
|
+
[2, 0]
|
|
2084
|
+
];
|
|
2085
|
+
var PutApprovalResultInput$ = [3, n0, _PARIu,
|
|
2086
|
+
0,
|
|
2087
|
+
[_pN, _sN, _aN, _res, _to],
|
|
2088
|
+
[0, 0, 0, () => ApprovalResult$, 0], 5
|
|
2089
|
+
];
|
|
2090
|
+
var PutApprovalResultOutput$ = [3, n0, _PAROu,
|
|
2091
|
+
0,
|
|
2092
|
+
[_aAp],
|
|
2093
|
+
[4]
|
|
2094
|
+
];
|
|
2095
|
+
var PutJobFailureResultInput$ = [3, n0, _PJFRI,
|
|
2096
|
+
0,
|
|
2097
|
+
[_jI, _fD],
|
|
2098
|
+
[0, () => FailureDetails$], 2
|
|
2099
|
+
];
|
|
2100
|
+
var PutJobSuccessResultInput$ = [3, n0, _PJSRI,
|
|
2101
|
+
0,
|
|
2102
|
+
[_jI, _cR, _cTo, _eDx, _oV],
|
|
2103
|
+
[0, () => CurrentRevision$, 0, () => ExecutionDetails$, 128 | 0], 1
|
|
2104
|
+
];
|
|
2105
|
+
var PutThirdPartyJobFailureResultInput$ = [3, n0, _PTPJFRI,
|
|
2106
|
+
0,
|
|
2107
|
+
[_jI, _cT, _fD],
|
|
2108
|
+
[0, 0, () => FailureDetails$], 3
|
|
2109
|
+
];
|
|
2110
|
+
var PutThirdPartyJobSuccessResultInput$ = [3, n0, _PTPJSRI,
|
|
2111
|
+
0,
|
|
2112
|
+
[_jI, _cT, _cR, _cTo, _eDx],
|
|
2113
|
+
[0, 0, () => CurrentRevision$, 0, () => ExecutionDetails$], 2
|
|
2114
|
+
];
|
|
2115
|
+
var PutWebhookInput$ = [3, n0, _PWI,
|
|
2116
|
+
0,
|
|
2117
|
+
[_we, _ta],
|
|
2118
|
+
[() => WebhookDefinition$, () => TagList], 1
|
|
2119
|
+
];
|
|
2120
|
+
var PutWebhookOutput$ = [3, n0, _PWO,
|
|
2121
|
+
0,
|
|
2122
|
+
[_we],
|
|
2123
|
+
[() => ListWebhookItem$]
|
|
2124
|
+
];
|
|
2125
|
+
var RegisterWebhookWithThirdPartyInput$ = [3, n0, _RWWTPI,
|
|
2126
|
+
0,
|
|
2127
|
+
[_wN],
|
|
2128
|
+
[0]
|
|
2129
|
+
];
|
|
2130
|
+
var RegisterWebhookWithThirdPartyOutput$ = [3, n0, _RWWTPO,
|
|
2131
|
+
0,
|
|
2132
|
+
[],
|
|
2133
|
+
[]
|
|
2134
|
+
];
|
|
2135
|
+
var ResolvedPipelineVariable$ = [3, n0, _RPV,
|
|
2136
|
+
0,
|
|
2137
|
+
[_na, _rV],
|
|
2138
|
+
[0, 0]
|
|
2139
|
+
];
|
|
2140
|
+
var RetryConfiguration$ = [3, n0, _RC,
|
|
2141
|
+
0,
|
|
2142
|
+
[_rMe],
|
|
2143
|
+
[0]
|
|
2144
|
+
];
|
|
2145
|
+
var RetryStageExecutionInput$ = [3, n0, _RSEI,
|
|
2146
|
+
0,
|
|
2147
|
+
[_pN, _sN, _pEI, _rMe],
|
|
2148
|
+
[0, 0, 0, 0], 4
|
|
2149
|
+
];
|
|
2150
|
+
var RetryStageExecutionOutput$ = [3, n0, _RSEO,
|
|
2151
|
+
0,
|
|
2152
|
+
[_pEI],
|
|
2153
|
+
[0]
|
|
2154
|
+
];
|
|
2155
|
+
var RetryStageMetadata$ = [3, n0, _RSM,
|
|
2156
|
+
0,
|
|
2157
|
+
[_aSRA, _mSRA, _lRT],
|
|
2158
|
+
[1, 1, 0]
|
|
2159
|
+
];
|
|
2160
|
+
var RollbackStageInput$ = [3, n0, _RSI,
|
|
2161
|
+
0,
|
|
2162
|
+
[_pN, _sN, _tPEI],
|
|
2163
|
+
[0, 0, 0], 3
|
|
2164
|
+
];
|
|
2165
|
+
var RollbackStageOutput$ = [3, n0, _RSO,
|
|
2166
|
+
0,
|
|
2167
|
+
[_pEI],
|
|
2168
|
+
[0], 1
|
|
2169
|
+
];
|
|
2170
|
+
var RuleConfigurationProperty$ = [3, n0, _RCP,
|
|
2171
|
+
0,
|
|
2172
|
+
[_na, _r, _k, _se, _q, _d, _t],
|
|
2173
|
+
[0, 2, 2, 2, 2, 0, 0], 4
|
|
2174
|
+
];
|
|
2175
|
+
var RuleDeclaration$ = [3, n0, _RD,
|
|
2176
|
+
0,
|
|
2177
|
+
[_na, _rTI, _co, _com, _iA, _rA, _re, _tIM],
|
|
2178
|
+
[0, () => RuleTypeId$, 128 | 0, 64 | 0, () => InputArtifactList, 0, 0, 1], 2
|
|
2179
|
+
];
|
|
2180
|
+
var RuleExecution$ = [3, n0, _RE,
|
|
2181
|
+
0,
|
|
2182
|
+
[_rEI, _st, _su, _lSC, _to, _lUB, _eEI, _eEU, _eD],
|
|
2183
|
+
[0, 0, 0, 4, 0, 0, 0, 0, () => ErrorDetails$]
|
|
2184
|
+
];
|
|
2185
|
+
var RuleExecutionDetail$ = [3, n0, _RED,
|
|
2186
|
+
0,
|
|
2187
|
+
[_pEI, _rEI, _pV, _sN, _rN, _sT, _lUT, _uB, _st, _i, _o],
|
|
2188
|
+
[0, 0, 1, 0, 0, 4, 4, 0, 0, () => RuleExecutionInput$, () => RuleExecutionOutput$]
|
|
2189
|
+
];
|
|
2190
|
+
var RuleExecutionFilter$ = [3, n0, _REF,
|
|
2191
|
+
0,
|
|
2192
|
+
[_pEI, _lIPE],
|
|
2193
|
+
[0, () => LatestInPipelineExecutionFilter$]
|
|
2194
|
+
];
|
|
2195
|
+
var RuleExecutionInput$ = [3, n0, _REI,
|
|
2196
|
+
0,
|
|
2197
|
+
[_rTI, _co, _rC, _rA, _re, _iA],
|
|
2198
|
+
[() => RuleTypeId$, 128 | 0, 128 | 0, 0, 0, () => ArtifactDetailList]
|
|
2199
|
+
];
|
|
2200
|
+
var RuleExecutionOutput$ = [3, n0, _REO,
|
|
2201
|
+
0,
|
|
2202
|
+
[_eR],
|
|
2203
|
+
[() => RuleExecutionResult$]
|
|
2204
|
+
];
|
|
2205
|
+
var RuleExecutionResult$ = [3, n0, _RER,
|
|
2206
|
+
0,
|
|
2207
|
+
[_eEI, _eES, _eEU, _eD],
|
|
2208
|
+
[0, 0, 0, () => ErrorDetails$]
|
|
2209
|
+
];
|
|
2210
|
+
var RuleRevision$ = [3, n0, _RR,
|
|
2211
|
+
0,
|
|
2212
|
+
[_rI, _rCI, _cr],
|
|
2213
|
+
[0, 0, 4], 3
|
|
2214
|
+
];
|
|
2215
|
+
var RuleState$ = [3, n0, _RS,
|
|
2216
|
+
0,
|
|
2217
|
+
[_rN, _cR, _lE, _eU, _rU],
|
|
2218
|
+
[0, () => RuleRevision$, () => RuleExecution$, 0, 0]
|
|
2219
|
+
];
|
|
2220
|
+
var RuleType$ = [3, n0, _RT,
|
|
2221
|
+
0,
|
|
2222
|
+
[_id, _iAD, _set, _rCP],
|
|
2223
|
+
[() => RuleTypeId$, () => ArtifactDetails$, () => RuleTypeSettings$, () => RuleConfigurationPropertyList], 2
|
|
2224
|
+
];
|
|
2225
|
+
var RuleTypeId$ = [3, n0, _RTI,
|
|
2226
|
+
0,
|
|
2227
|
+
[_ca, _pro, _ow, _v],
|
|
2228
|
+
[0, 0, 0, 0], 2
|
|
2229
|
+
];
|
|
2230
|
+
var RuleTypeSettings$ = [3, n0, _RTS,
|
|
2231
|
+
0,
|
|
2232
|
+
[_tPCU, _eUT, _eUTx, _rUT],
|
|
2233
|
+
[0, 0, 0, 0]
|
|
2234
|
+
];
|
|
2235
|
+
var S3ArtifactLocation$ = [3, n0, _SAL,
|
|
2236
|
+
0,
|
|
2237
|
+
[_bN, _oK],
|
|
2238
|
+
[0, 0], 2
|
|
2239
|
+
];
|
|
2240
|
+
var S3Location$ = [3, n0, _SL,
|
|
2241
|
+
0,
|
|
2242
|
+
[_bu, _k],
|
|
2243
|
+
[0, 0]
|
|
2244
|
+
];
|
|
2245
|
+
var SourceRevision$ = [3, n0, _SR,
|
|
2246
|
+
0,
|
|
2247
|
+
[_aN, _rI, _rS, _rU],
|
|
2248
|
+
[0, 0, 0, 0], 1
|
|
2249
|
+
];
|
|
2250
|
+
var SourceRevisionOverride$ = [3, n0, _SRO,
|
|
2251
|
+
0,
|
|
2252
|
+
[_aN, _rTe, _rVe],
|
|
2253
|
+
[0, 0, 0], 3
|
|
2254
|
+
];
|
|
2255
|
+
var StageConditionsExecution$ = [3, n0, _SCE,
|
|
2256
|
+
0,
|
|
2257
|
+
[_st, _su],
|
|
2258
|
+
[0, 0]
|
|
2259
|
+
];
|
|
2260
|
+
var StageConditionState$ = [3, n0, _SCS,
|
|
2261
|
+
0,
|
|
2262
|
+
[_lE, _cS],
|
|
2263
|
+
[() => StageConditionsExecution$, () => ConditionStateList]
|
|
2264
|
+
];
|
|
2265
|
+
var StageContext$ = [3, n0, _SC,
|
|
2266
|
+
0,
|
|
2267
|
+
[_na],
|
|
2268
|
+
[0]
|
|
2269
|
+
];
|
|
2270
|
+
var StageDeclaration$ = [3, n0, _SD,
|
|
2271
|
+
0,
|
|
2272
|
+
[_na, _act, _bl, _oF, _oS, _bE],
|
|
2273
|
+
[0, () => StageActionDeclarationList, () => StageBlockerDeclarationList, () => FailureConditions$, () => SuccessConditions$, () => BeforeEntryConditions$], 2
|
|
2274
|
+
];
|
|
2275
|
+
var StageExecution$ = [3, n0, _SE,
|
|
2276
|
+
0,
|
|
2277
|
+
[_pEI, _st, _t],
|
|
2278
|
+
[0, 0, 0], 2
|
|
2279
|
+
];
|
|
2280
|
+
var StageState$ = [3, n0, _SS,
|
|
2281
|
+
0,
|
|
2282
|
+
[_sN, _iE, _iEn, _iTS, _aSc, _lE, _bECS, _oSCS, _oFCS, _rSM],
|
|
2283
|
+
[0, () => StageExecution$, () => StageExecutionList, () => TransitionState$, () => ActionStateList, () => StageExecution$, () => StageConditionState$, () => StageConditionState$, () => StageConditionState$, () => RetryStageMetadata$]
|
|
2284
|
+
];
|
|
2285
|
+
var StartPipelineExecutionInput$ = [3, n0, _SPEI,
|
|
2286
|
+
0,
|
|
2287
|
+
[_na, _var, _cRT, _sR],
|
|
2288
|
+
[0, () => PipelineVariableList, [0, 4], () => SourceRevisionOverrideList], 1
|
|
2289
|
+
];
|
|
2290
|
+
var StartPipelineExecutionOutput$ = [3, n0, _SPEO,
|
|
2291
|
+
0,
|
|
2292
|
+
[_pEI],
|
|
2293
|
+
[0]
|
|
2294
|
+
];
|
|
2295
|
+
var StopExecutionTrigger$ = [3, n0, _SET,
|
|
2296
|
+
0,
|
|
2297
|
+
[_rea],
|
|
2298
|
+
[0]
|
|
2299
|
+
];
|
|
2300
|
+
var StopPipelineExecutionInput$ = [3, n0, _SPEIt,
|
|
2301
|
+
0,
|
|
2302
|
+
[_pN, _pEI, _ab, _rea],
|
|
2303
|
+
[0, 0, 2, 0], 2
|
|
2304
|
+
];
|
|
2305
|
+
var StopPipelineExecutionOutput$ = [3, n0, _SPEOt,
|
|
2306
|
+
0,
|
|
2307
|
+
[_pEI],
|
|
2308
|
+
[0]
|
|
2309
|
+
];
|
|
2310
|
+
var SucceededInStageFilter$ = [3, n0, _SISF,
|
|
2311
|
+
0,
|
|
2312
|
+
[_sN],
|
|
2313
|
+
[0]
|
|
2314
|
+
];
|
|
2315
|
+
var SuccessConditions$ = [3, n0, _SCu,
|
|
2316
|
+
0,
|
|
2317
|
+
[_con],
|
|
2318
|
+
[() => ConditionList], 1
|
|
2319
|
+
];
|
|
2320
|
+
var Tag$ = [3, n0, _T,
|
|
2321
|
+
0,
|
|
2322
|
+
[_k, _va],
|
|
2323
|
+
[0, 0], 2
|
|
2324
|
+
];
|
|
2325
|
+
var TagResourceInput$ = [3, n0, _TRI,
|
|
2326
|
+
0,
|
|
2327
|
+
[_rAe, _ta],
|
|
2328
|
+
[0, () => TagList], 2
|
|
2329
|
+
];
|
|
2330
|
+
var TagResourceOutput$ = [3, n0, _TRO,
|
|
2331
|
+
0,
|
|
2332
|
+
[],
|
|
2333
|
+
[]
|
|
2334
|
+
];
|
|
2335
|
+
var TargetFilter$ = [3, n0, _TF,
|
|
2336
|
+
0,
|
|
2337
|
+
[_na, _val],
|
|
2338
|
+
[0, 64 | 0]
|
|
2339
|
+
];
|
|
2340
|
+
var ThirdPartyJob$ = [3, n0, _TPJ,
|
|
2341
|
+
0,
|
|
2342
|
+
[_cIl, _jI],
|
|
2343
|
+
[0, 0]
|
|
2344
|
+
];
|
|
2345
|
+
var ThirdPartyJobData$ = [3, n0, _TPJD,
|
|
2346
|
+
0,
|
|
2347
|
+
[_aTI, _aC, _pCi, _iA, _oA, _aCr, _cTo, _eK],
|
|
2348
|
+
[() => ActionTypeId$, () => ActionConfiguration$, () => PipelineContext$, () => ArtifactList, () => ArtifactList, [() => AWSSessionCredentials$, 0], 0, () => EncryptionKey$]
|
|
2349
|
+
];
|
|
2350
|
+
var ThirdPartyJobDetails$ = [3, n0, _TPJDh,
|
|
2351
|
+
0,
|
|
2352
|
+
[_id, _da, _n],
|
|
2353
|
+
[0, [() => ThirdPartyJobData$, 0], 0]
|
|
2354
|
+
];
|
|
2355
|
+
var TransitionState$ = [3, n0, _TS,
|
|
2356
|
+
0,
|
|
2357
|
+
[_en, _lCB, _lCA, _dR],
|
|
2358
|
+
[2, 0, 4, 0]
|
|
2359
|
+
];
|
|
2360
|
+
var UntagResourceInput$ = [3, n0, _URI,
|
|
2361
|
+
0,
|
|
2362
|
+
[_rAe, _tK],
|
|
2363
|
+
[0, 64 | 0], 2
|
|
2364
|
+
];
|
|
2365
|
+
var UntagResourceOutput$ = [3, n0, _URO,
|
|
2366
|
+
0,
|
|
2367
|
+
[],
|
|
2368
|
+
[]
|
|
2369
|
+
];
|
|
2370
|
+
var UpdateActionTypeInput$ = [3, n0, _UATI,
|
|
2371
|
+
0,
|
|
2372
|
+
[_aT],
|
|
2373
|
+
[() => ActionTypeDeclaration$], 1
|
|
2374
|
+
];
|
|
2375
|
+
var UpdatePipelineInput$ = [3, n0, _UPI,
|
|
2376
|
+
0,
|
|
2377
|
+
[_pi],
|
|
2378
|
+
[() => PipelineDeclaration$], 1
|
|
2379
|
+
];
|
|
2380
|
+
var UpdatePipelineOutput$ = [3, n0, _UPO,
|
|
2381
|
+
0,
|
|
2382
|
+
[_pi],
|
|
2383
|
+
[() => PipelineDeclaration$]
|
|
2384
|
+
];
|
|
2385
|
+
var WebhookAuthConfiguration$ = [3, n0, _WAC,
|
|
2386
|
+
0,
|
|
2387
|
+
[_AIPR, _STe],
|
|
2388
|
+
[0, 0]
|
|
2389
|
+
];
|
|
2390
|
+
var WebhookDefinition$ = [3, n0, _WD,
|
|
2391
|
+
0,
|
|
2392
|
+
[_na, _tP, _tA, _fi, _au, _aCu],
|
|
2393
|
+
[0, 0, 0, () => WebhookFilters, 0, () => WebhookAuthConfiguration$], 6
|
|
2394
|
+
];
|
|
2395
|
+
var WebhookFilterRule$ = [3, n0, _WFR,
|
|
2396
|
+
0,
|
|
2397
|
+
[_jP, _mE],
|
|
2398
|
+
[0, 0], 1
|
|
2399
|
+
];
|
|
2400
|
+
var __Unit = "unit";
|
|
2401
|
+
var ActionConfigurationPropertyList = [1, n0, _ACPL,
|
|
2402
|
+
0, () => ActionConfigurationProperty$
|
|
2403
|
+
];
|
|
2404
|
+
var ActionExecutionDetailList = [1, n0, _AEDL,
|
|
2405
|
+
0, () => ActionExecutionDetail$
|
|
2406
|
+
];
|
|
2407
|
+
var ActionStateList = [1, n0, _ASL,
|
|
2408
|
+
0, () => ActionState$
|
|
2409
|
+
];
|
|
2410
|
+
var ActionTypeList = [1, n0, _ATL,
|
|
2411
|
+
0, () => ActionType$
|
|
2412
|
+
];
|
|
2413
|
+
var ActionTypeProperties = [1, n0, _ATPct,
|
|
2414
|
+
0, () => ActionTypeProperty$
|
|
2415
|
+
];
|
|
2416
|
+
var ArtifactDetailList = [1, n0, _ADL,
|
|
2417
|
+
0, () => ArtifactDetail$
|
|
2418
|
+
];
|
|
2419
|
+
var ArtifactList = [1, n0, _ALr,
|
|
2420
|
+
0, () => Artifact$
|
|
2421
|
+
];
|
|
2422
|
+
var ArtifactRevisionList = [1, n0, _ARL,
|
|
2423
|
+
0, () => ArtifactRevision$
|
|
2424
|
+
];
|
|
2425
|
+
var ConditionList = [1, n0, _CL,
|
|
2426
|
+
0, () => Condition$
|
|
2427
|
+
];
|
|
2428
|
+
var ConditionStateList = [1, n0, _CSL,
|
|
2429
|
+
0, () => ConditionState$
|
|
2430
|
+
];
|
|
2431
|
+
var DeployActionExecutionTargetList = [1, n0, _DAETL,
|
|
2432
|
+
0, () => DeployActionExecutionTarget$
|
|
2433
|
+
];
|
|
2434
|
+
var DeployTargetEventList = [1, n0, _DTEL,
|
|
2435
|
+
0, () => DeployTargetEvent$
|
|
2436
|
+
];
|
|
2437
|
+
var EnvironmentVariableList = [1, n0, _EVL,
|
|
2438
|
+
0, () => EnvironmentVariable$
|
|
2439
|
+
];
|
|
2440
|
+
var GitPullRequestFilterList = [1, n0, _GPRFL,
|
|
2441
|
+
0, () => GitPullRequestFilter$
|
|
2442
|
+
];
|
|
2443
|
+
var GitPushFilterList = [1, n0, _GPFL,
|
|
2444
|
+
0, () => GitPushFilter$
|
|
2445
|
+
];
|
|
2446
|
+
var InputArtifactList = [1, n0, _IAL,
|
|
2447
|
+
0, () => InputArtifact$
|
|
2448
|
+
];
|
|
2449
|
+
var JobList = [1, n0, _JL,
|
|
2450
|
+
0, [() => Job$,
|
|
2451
|
+
0]
|
|
2452
|
+
];
|
|
2453
|
+
var OutputArtifactList = [1, n0, _OAL,
|
|
2454
|
+
0, () => OutputArtifact$
|
|
2455
|
+
];
|
|
2456
|
+
var PipelineExecutionSummaryList = [1, n0, _PESL,
|
|
2457
|
+
0, () => PipelineExecutionSummary$
|
|
2458
|
+
];
|
|
2459
|
+
var PipelineList = [1, n0, _PL,
|
|
2460
|
+
0, () => PipelineSummary$
|
|
2461
|
+
];
|
|
2462
|
+
var PipelineStageDeclarationList = [1, n0, _PSDL,
|
|
2463
|
+
0, () => StageDeclaration$
|
|
2464
|
+
];
|
|
2465
|
+
var PipelineTriggerDeclarationList = [1, n0, _PTDL,
|
|
2466
|
+
0, () => PipelineTriggerDeclaration$
|
|
2467
|
+
];
|
|
2468
|
+
var PipelineVariableDeclarationList = [1, n0, _PVDL,
|
|
2469
|
+
0, () => PipelineVariableDeclaration$
|
|
2470
|
+
];
|
|
2471
|
+
var PipelineVariableList = [1, n0, _PVL,
|
|
2472
|
+
0, () => PipelineVariable$
|
|
2473
|
+
];
|
|
2474
|
+
var ResolvedPipelineVariableList = [1, n0, _RPVL,
|
|
2475
|
+
0, () => ResolvedPipelineVariable$
|
|
2476
|
+
];
|
|
2477
|
+
var RuleConfigurationPropertyList = [1, n0, _RCPL,
|
|
2478
|
+
0, () => RuleConfigurationProperty$
|
|
2479
|
+
];
|
|
2480
|
+
var RuleDeclarationList = [1, n0, _RDL,
|
|
2481
|
+
0, () => RuleDeclaration$
|
|
2482
|
+
];
|
|
2483
|
+
var RuleExecutionDetailList = [1, n0, _REDL,
|
|
2484
|
+
0, () => RuleExecutionDetail$
|
|
2485
|
+
];
|
|
2486
|
+
var RuleStateList = [1, n0, _RSL,
|
|
2487
|
+
0, () => RuleState$
|
|
2488
|
+
];
|
|
2489
|
+
var RuleTypeList = [1, n0, _RTL,
|
|
2490
|
+
0, () => RuleType$
|
|
2491
|
+
];
|
|
2492
|
+
var SourceRevisionList = [1, n0, _SRL,
|
|
2493
|
+
0, () => SourceRevision$
|
|
2494
|
+
];
|
|
2495
|
+
var SourceRevisionOverrideList = [1, n0, _SROL,
|
|
2496
|
+
0, () => SourceRevisionOverride$
|
|
2497
|
+
];
|
|
2498
|
+
var StageActionDeclarationList = [1, n0, _SADL,
|
|
2499
|
+
0, () => ActionDeclaration$
|
|
2500
|
+
];
|
|
2501
|
+
var StageBlockerDeclarationList = [1, n0, _SBDL,
|
|
2502
|
+
0, () => BlockerDeclaration$
|
|
2503
|
+
];
|
|
2504
|
+
var StageExecutionList = [1, n0, _SEL,
|
|
2505
|
+
0, () => StageExecution$
|
|
2506
|
+
];
|
|
2507
|
+
var StageStateList = [1, n0, _SSL,
|
|
2508
|
+
0, () => StageState$
|
|
2509
|
+
];
|
|
2510
|
+
var TagList = [1, n0, _TL,
|
|
2511
|
+
0, () => Tag$
|
|
2512
|
+
];
|
|
2513
|
+
var TargetFilterList = [1, n0, _TFL,
|
|
2514
|
+
0, () => TargetFilter$
|
|
2515
|
+
];
|
|
2516
|
+
var ThirdPartyJobList = [1, n0, _TPJL,
|
|
2517
|
+
0, () => ThirdPartyJob$
|
|
2518
|
+
];
|
|
2519
|
+
var WebhookFilters = [1, n0, _WF,
|
|
2520
|
+
0, () => WebhookFilterRule$
|
|
2521
|
+
];
|
|
2522
|
+
var WebhookList = [1, n0, _WL,
|
|
2523
|
+
0, () => ListWebhookItem$
|
|
2524
|
+
];
|
|
2525
|
+
var ArtifactStoreMap = [2, n0, _ASM,
|
|
2526
|
+
0, 0, () => ArtifactStore$
|
|
2527
|
+
];
|
|
2528
|
+
var AcknowledgeJob$ = [9, n0, _AJ,
|
|
2529
|
+
0, () => AcknowledgeJobInput$, () => AcknowledgeJobOutput$
|
|
2530
|
+
];
|
|
2531
|
+
var AcknowledgeThirdPartyJob$ = [9, n0, _ATPJ,
|
|
2532
|
+
0, () => AcknowledgeThirdPartyJobInput$, () => AcknowledgeThirdPartyJobOutput$
|
|
2533
|
+
];
|
|
2534
|
+
var CreateCustomActionType$ = [9, n0, _CCAT,
|
|
2535
|
+
0, () => CreateCustomActionTypeInput$, () => CreateCustomActionTypeOutput$
|
|
2536
|
+
];
|
|
2537
|
+
var CreatePipeline$ = [9, n0, _CP,
|
|
2538
|
+
0, () => CreatePipelineInput$, () => CreatePipelineOutput$
|
|
2539
|
+
];
|
|
2540
|
+
var DeleteCustomActionType$ = [9, n0, _DCAT,
|
|
2541
|
+
0, () => DeleteCustomActionTypeInput$, () => __Unit
|
|
2542
|
+
];
|
|
2543
|
+
var DeletePipeline$ = [9, n0, _DP,
|
|
2544
|
+
0, () => DeletePipelineInput$, () => __Unit
|
|
2545
|
+
];
|
|
2546
|
+
var DeleteWebhook$ = [9, n0, _DW,
|
|
2547
|
+
0, () => DeleteWebhookInput$, () => DeleteWebhookOutput$
|
|
2548
|
+
];
|
|
2549
|
+
var DeregisterWebhookWithThirdParty$ = [9, n0, _DWWTP,
|
|
2550
|
+
0, () => DeregisterWebhookWithThirdPartyInput$, () => DeregisterWebhookWithThirdPartyOutput$
|
|
2551
|
+
];
|
|
2552
|
+
var DisableStageTransition$ = [9, n0, _DST,
|
|
2553
|
+
0, () => DisableStageTransitionInput$, () => __Unit
|
|
2554
|
+
];
|
|
2555
|
+
var EnableStageTransition$ = [9, n0, _EST,
|
|
2556
|
+
0, () => EnableStageTransitionInput$, () => __Unit
|
|
2557
|
+
];
|
|
2558
|
+
var GetActionType$ = [9, n0, _GAT,
|
|
2559
|
+
0, () => GetActionTypeInput$, () => GetActionTypeOutput$
|
|
2560
|
+
];
|
|
2561
|
+
var GetJobDetails$ = [9, n0, _GJD,
|
|
2562
|
+
0, () => GetJobDetailsInput$, () => GetJobDetailsOutput$
|
|
2563
|
+
];
|
|
2564
|
+
var GetPipeline$ = [9, n0, _GP,
|
|
2565
|
+
0, () => GetPipelineInput$, () => GetPipelineOutput$
|
|
2566
|
+
];
|
|
2567
|
+
var GetPipelineExecution$ = [9, n0, _GPE,
|
|
2568
|
+
0, () => GetPipelineExecutionInput$, () => GetPipelineExecutionOutput$
|
|
2569
|
+
];
|
|
2570
|
+
var GetPipelineState$ = [9, n0, _GPS,
|
|
2571
|
+
0, () => GetPipelineStateInput$, () => GetPipelineStateOutput$
|
|
2572
|
+
];
|
|
2573
|
+
var GetThirdPartyJobDetails$ = [9, n0, _GTPJD,
|
|
2574
|
+
0, () => GetThirdPartyJobDetailsInput$, () => GetThirdPartyJobDetailsOutput$
|
|
2575
|
+
];
|
|
2576
|
+
var ListActionExecutions$ = [9, n0, _LAE,
|
|
2577
|
+
0, () => ListActionExecutionsInput$, () => ListActionExecutionsOutput$
|
|
2578
|
+
];
|
|
2579
|
+
var ListActionTypes$ = [9, n0, _LAT,
|
|
2580
|
+
0, () => ListActionTypesInput$, () => ListActionTypesOutput$
|
|
2581
|
+
];
|
|
2582
|
+
var ListDeployActionExecutionTargets$ = [9, n0, _LDAET,
|
|
2583
|
+
0, () => ListDeployActionExecutionTargetsInput$, () => ListDeployActionExecutionTargetsOutput$
|
|
2584
|
+
];
|
|
2585
|
+
var ListPipelineExecutions$ = [9, n0, _LPE,
|
|
2586
|
+
0, () => ListPipelineExecutionsInput$, () => ListPipelineExecutionsOutput$
|
|
2587
|
+
];
|
|
2588
|
+
var ListPipelines$ = [9, n0, _LP,
|
|
2589
|
+
0, () => ListPipelinesInput$, () => ListPipelinesOutput$
|
|
2590
|
+
];
|
|
2591
|
+
var ListRuleExecutions$ = [9, n0, _LRE,
|
|
2592
|
+
0, () => ListRuleExecutionsInput$, () => ListRuleExecutionsOutput$
|
|
2593
|
+
];
|
|
2594
|
+
var ListRuleTypes$ = [9, n0, _LRT,
|
|
2595
|
+
0, () => ListRuleTypesInput$, () => ListRuleTypesOutput$
|
|
2596
|
+
];
|
|
2597
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2598
|
+
0, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
|
|
2599
|
+
];
|
|
2600
|
+
var ListWebhooks$ = [9, n0, _LW,
|
|
2601
|
+
0, () => ListWebhooksInput$, () => ListWebhooksOutput$
|
|
2602
|
+
];
|
|
2603
|
+
var OverrideStageCondition$ = [9, n0, _OSC,
|
|
2604
|
+
0, () => OverrideStageConditionInput$, () => __Unit
|
|
2605
|
+
];
|
|
2606
|
+
var PollForJobs$ = [9, n0, _PFJ,
|
|
2607
|
+
0, () => PollForJobsInput$, () => PollForJobsOutput$
|
|
2608
|
+
];
|
|
2609
|
+
var PollForThirdPartyJobs$ = [9, n0, _PFTPJ,
|
|
2610
|
+
0, () => PollForThirdPartyJobsInput$, () => PollForThirdPartyJobsOutput$
|
|
2611
|
+
];
|
|
2612
|
+
var PutActionRevision$ = [9, n0, _PAR,
|
|
2613
|
+
0, () => PutActionRevisionInput$, () => PutActionRevisionOutput$
|
|
2614
|
+
];
|
|
2615
|
+
var PutApprovalResult$ = [9, n0, _PARu,
|
|
2616
|
+
0, () => PutApprovalResultInput$, () => PutApprovalResultOutput$
|
|
2617
|
+
];
|
|
2618
|
+
var PutJobFailureResult$ = [9, n0, _PJFR,
|
|
2619
|
+
0, () => PutJobFailureResultInput$, () => __Unit
|
|
2620
|
+
];
|
|
2621
|
+
var PutJobSuccessResult$ = [9, n0, _PJSR,
|
|
2622
|
+
0, () => PutJobSuccessResultInput$, () => __Unit
|
|
2623
|
+
];
|
|
2624
|
+
var PutThirdPartyJobFailureResult$ = [9, n0, _PTPJFR,
|
|
2625
|
+
0, () => PutThirdPartyJobFailureResultInput$, () => __Unit
|
|
2626
|
+
];
|
|
2627
|
+
var PutThirdPartyJobSuccessResult$ = [9, n0, _PTPJSR,
|
|
2628
|
+
0, () => PutThirdPartyJobSuccessResultInput$, () => __Unit
|
|
2629
|
+
];
|
|
2630
|
+
var PutWebhook$ = [9, n0, _PW,
|
|
2631
|
+
0, () => PutWebhookInput$, () => PutWebhookOutput$
|
|
2632
|
+
];
|
|
2633
|
+
var RegisterWebhookWithThirdParty$ = [9, n0, _RWWTP,
|
|
2634
|
+
0, () => RegisterWebhookWithThirdPartyInput$, () => RegisterWebhookWithThirdPartyOutput$
|
|
2635
|
+
];
|
|
2636
|
+
var RetryStageExecution$ = [9, n0, _RSE,
|
|
2637
|
+
0, () => RetryStageExecutionInput$, () => RetryStageExecutionOutput$
|
|
2638
|
+
];
|
|
2639
|
+
var RollbackStage$ = [9, n0, _RSo,
|
|
2640
|
+
0, () => RollbackStageInput$, () => RollbackStageOutput$
|
|
2641
|
+
];
|
|
2642
|
+
var StartPipelineExecution$ = [9, n0, _SPE,
|
|
2643
|
+
0, () => StartPipelineExecutionInput$, () => StartPipelineExecutionOutput$
|
|
2644
|
+
];
|
|
2645
|
+
var StopPipelineExecution$ = [9, n0, _SPEt,
|
|
2646
|
+
0, () => StopPipelineExecutionInput$, () => StopPipelineExecutionOutput$
|
|
2647
|
+
];
|
|
2648
|
+
var TagResource$ = [9, n0, _TR,
|
|
2649
|
+
0, () => TagResourceInput$, () => TagResourceOutput$
|
|
2650
|
+
];
|
|
2651
|
+
var UntagResource$ = [9, n0, _UR,
|
|
2652
|
+
0, () => UntagResourceInput$, () => UntagResourceOutput$
|
|
2653
|
+
];
|
|
2654
|
+
var UpdateActionType$ = [9, n0, _UAT,
|
|
2655
|
+
0, () => UpdateActionTypeInput$, () => __Unit
|
|
2656
|
+
];
|
|
2657
|
+
var UpdatePipeline$ = [9, n0, _UP,
|
|
2658
|
+
0, () => UpdatePipelineInput$, () => UpdatePipelineOutput$
|
|
2659
|
+
];
|
|
2660
|
+
|
|
2661
|
+
const getRuntimeConfig$1 = (config) => {
|
|
2662
|
+
return {
|
|
2663
|
+
apiVersion: "2015-07-09",
|
|
2664
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
2665
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
2666
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
2667
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
2668
|
+
extensions: config?.extensions ?? [],
|
|
2669
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultCodePipelineHttpAuthSchemeProvider,
|
|
2670
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
2671
|
+
{
|
|
2672
|
+
schemeId: "aws.auth#sigv4",
|
|
2673
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
2674
|
+
signer: new AwsSdkSigV4Signer(),
|
|
2675
|
+
},
|
|
2676
|
+
],
|
|
2677
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
2678
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
2679
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
2680
|
+
defaultNamespace: "com.amazonaws.codepipeline",
|
|
2681
|
+
errorTypeRegistries,
|
|
2682
|
+
xmlNamespace: "http://codepipeline.amazonaws.com/doc/2015-07-09/",
|
|
2683
|
+
version: "2015-07-09",
|
|
2684
|
+
serviceTarget: "CodePipeline_20150709",
|
|
2685
|
+
},
|
|
2686
|
+
serviceId: config?.serviceId ?? "CodePipeline",
|
|
2687
|
+
sha256: config?.sha256 ?? Sha256,
|
|
2688
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
2689
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
2690
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
2691
|
+
};
|
|
2692
|
+
};
|
|
2693
|
+
|
|
2694
|
+
const getRuntimeConfig = (config) => {
|
|
2695
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
2696
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
2697
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
2698
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
2699
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
2700
|
+
const loaderConfig = {
|
|
2701
|
+
profile: config?.profile,
|
|
2702
|
+
logger: clientSharedValues.logger,
|
|
2703
|
+
};
|
|
2704
|
+
return {
|
|
2705
|
+
...clientSharedValues,
|
|
2706
|
+
...config,
|
|
2707
|
+
runtime: "node",
|
|
2708
|
+
defaultsMode,
|
|
2709
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
2710
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
2711
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
2712
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
2713
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
2714
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
2715
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
2716
|
+
retryMode: config?.retryMode ??
|
|
2717
|
+
loadConfig({
|
|
2718
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
2719
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
2720
|
+
}, config),
|
|
2721
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
2722
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2723
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2724
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
2725
|
+
};
|
|
2726
|
+
};
|
|
2727
|
+
|
|
34
2728
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
2729
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
2730
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -898,87 +3592,405 @@ const SourceRevisionType = {
|
|
|
898
3592
|
S3_OBJECT_VERSION_ID: "S3_OBJECT_VERSION_ID",
|
|
899
3593
|
};
|
|
900
3594
|
|
|
3595
|
+
exports.AWSSessionCredentials$ = AWSSessionCredentials$;
|
|
3596
|
+
exports.AcknowledgeJob$ = AcknowledgeJob$;
|
|
901
3597
|
exports.AcknowledgeJobCommand = AcknowledgeJobCommand;
|
|
3598
|
+
exports.AcknowledgeJobInput$ = AcknowledgeJobInput$;
|
|
3599
|
+
exports.AcknowledgeJobOutput$ = AcknowledgeJobOutput$;
|
|
3600
|
+
exports.AcknowledgeThirdPartyJob$ = AcknowledgeThirdPartyJob$;
|
|
902
3601
|
exports.AcknowledgeThirdPartyJobCommand = AcknowledgeThirdPartyJobCommand;
|
|
3602
|
+
exports.AcknowledgeThirdPartyJobInput$ = AcknowledgeThirdPartyJobInput$;
|
|
3603
|
+
exports.AcknowledgeThirdPartyJobOutput$ = AcknowledgeThirdPartyJobOutput$;
|
|
903
3604
|
exports.ActionCategory = ActionCategory;
|
|
3605
|
+
exports.ActionConfiguration$ = ActionConfiguration$;
|
|
3606
|
+
exports.ActionConfigurationProperty$ = ActionConfigurationProperty$;
|
|
904
3607
|
exports.ActionConfigurationPropertyType = ActionConfigurationPropertyType;
|
|
3608
|
+
exports.ActionContext$ = ActionContext$;
|
|
3609
|
+
exports.ActionDeclaration$ = ActionDeclaration$;
|
|
3610
|
+
exports.ActionExecution$ = ActionExecution$;
|
|
3611
|
+
exports.ActionExecutionDetail$ = ActionExecutionDetail$;
|
|
3612
|
+
exports.ActionExecutionFilter$ = ActionExecutionFilter$;
|
|
3613
|
+
exports.ActionExecutionInput$ = ActionExecutionInput$;
|
|
3614
|
+
exports.ActionExecutionNotFoundException = ActionExecutionNotFoundException;
|
|
3615
|
+
exports.ActionExecutionNotFoundException$ = ActionExecutionNotFoundException$;
|
|
3616
|
+
exports.ActionExecutionOutput$ = ActionExecutionOutput$;
|
|
3617
|
+
exports.ActionExecutionResult$ = ActionExecutionResult$;
|
|
905
3618
|
exports.ActionExecutionStatus = ActionExecutionStatus;
|
|
3619
|
+
exports.ActionNotFoundException = ActionNotFoundException;
|
|
3620
|
+
exports.ActionNotFoundException$ = ActionNotFoundException$;
|
|
906
3621
|
exports.ActionOwner = ActionOwner;
|
|
3622
|
+
exports.ActionRevision$ = ActionRevision$;
|
|
3623
|
+
exports.ActionState$ = ActionState$;
|
|
3624
|
+
exports.ActionType$ = ActionType$;
|
|
3625
|
+
exports.ActionTypeArtifactDetails$ = ActionTypeArtifactDetails$;
|
|
3626
|
+
exports.ActionTypeDeclaration$ = ActionTypeDeclaration$;
|
|
3627
|
+
exports.ActionTypeExecutor$ = ActionTypeExecutor$;
|
|
3628
|
+
exports.ActionTypeId$ = ActionTypeId$;
|
|
3629
|
+
exports.ActionTypeIdentifier$ = ActionTypeIdentifier$;
|
|
3630
|
+
exports.ActionTypeNotFoundException = ActionTypeNotFoundException;
|
|
3631
|
+
exports.ActionTypeNotFoundException$ = ActionTypeNotFoundException$;
|
|
3632
|
+
exports.ActionTypePermissions$ = ActionTypePermissions$;
|
|
3633
|
+
exports.ActionTypeProperty$ = ActionTypeProperty$;
|
|
3634
|
+
exports.ActionTypeSettings$ = ActionTypeSettings$;
|
|
3635
|
+
exports.ActionTypeUrls$ = ActionTypeUrls$;
|
|
3636
|
+
exports.ApprovalAlreadyCompletedException = ApprovalAlreadyCompletedException;
|
|
3637
|
+
exports.ApprovalAlreadyCompletedException$ = ApprovalAlreadyCompletedException$;
|
|
3638
|
+
exports.ApprovalResult$ = ApprovalResult$;
|
|
907
3639
|
exports.ApprovalStatus = ApprovalStatus;
|
|
3640
|
+
exports.Artifact$ = Artifact$;
|
|
3641
|
+
exports.ArtifactDetail$ = ArtifactDetail$;
|
|
3642
|
+
exports.ArtifactDetails$ = ArtifactDetails$;
|
|
3643
|
+
exports.ArtifactLocation$ = ArtifactLocation$;
|
|
908
3644
|
exports.ArtifactLocationType = ArtifactLocationType;
|
|
3645
|
+
exports.ArtifactRevision$ = ArtifactRevision$;
|
|
3646
|
+
exports.ArtifactStore$ = ArtifactStore$;
|
|
909
3647
|
exports.ArtifactStoreType = ArtifactStoreType;
|
|
3648
|
+
exports.BeforeEntryConditions$ = BeforeEntryConditions$;
|
|
3649
|
+
exports.BlockerDeclaration$ = BlockerDeclaration$;
|
|
910
3650
|
exports.BlockerType = BlockerType;
|
|
911
3651
|
exports.CodePipeline = CodePipeline;
|
|
912
3652
|
exports.CodePipelineClient = CodePipelineClient;
|
|
3653
|
+
exports.CodePipelineServiceException = CodePipelineServiceException;
|
|
3654
|
+
exports.CodePipelineServiceException$ = CodePipelineServiceException$;
|
|
3655
|
+
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
3656
|
+
exports.ConcurrentModificationException$ = ConcurrentModificationException$;
|
|
3657
|
+
exports.ConcurrentPipelineExecutionsLimitExceededException = ConcurrentPipelineExecutionsLimitExceededException;
|
|
3658
|
+
exports.ConcurrentPipelineExecutionsLimitExceededException$ = ConcurrentPipelineExecutionsLimitExceededException$;
|
|
3659
|
+
exports.Condition$ = Condition$;
|
|
3660
|
+
exports.ConditionExecution$ = ConditionExecution$;
|
|
913
3661
|
exports.ConditionExecutionStatus = ConditionExecutionStatus;
|
|
3662
|
+
exports.ConditionNotOverridableException = ConditionNotOverridableException;
|
|
3663
|
+
exports.ConditionNotOverridableException$ = ConditionNotOverridableException$;
|
|
3664
|
+
exports.ConditionState$ = ConditionState$;
|
|
914
3665
|
exports.ConditionType = ConditionType;
|
|
3666
|
+
exports.ConflictException = ConflictException;
|
|
3667
|
+
exports.ConflictException$ = ConflictException$;
|
|
3668
|
+
exports.CreateCustomActionType$ = CreateCustomActionType$;
|
|
915
3669
|
exports.CreateCustomActionTypeCommand = CreateCustomActionTypeCommand;
|
|
3670
|
+
exports.CreateCustomActionTypeInput$ = CreateCustomActionTypeInput$;
|
|
3671
|
+
exports.CreateCustomActionTypeOutput$ = CreateCustomActionTypeOutput$;
|
|
3672
|
+
exports.CreatePipeline$ = CreatePipeline$;
|
|
916
3673
|
exports.CreatePipelineCommand = CreatePipelineCommand;
|
|
3674
|
+
exports.CreatePipelineInput$ = CreatePipelineInput$;
|
|
3675
|
+
exports.CreatePipelineOutput$ = CreatePipelineOutput$;
|
|
3676
|
+
exports.CurrentRevision$ = CurrentRevision$;
|
|
3677
|
+
exports.DeleteCustomActionType$ = DeleteCustomActionType$;
|
|
917
3678
|
exports.DeleteCustomActionTypeCommand = DeleteCustomActionTypeCommand;
|
|
3679
|
+
exports.DeleteCustomActionTypeInput$ = DeleteCustomActionTypeInput$;
|
|
3680
|
+
exports.DeletePipeline$ = DeletePipeline$;
|
|
918
3681
|
exports.DeletePipelineCommand = DeletePipelineCommand;
|
|
3682
|
+
exports.DeletePipelineInput$ = DeletePipelineInput$;
|
|
3683
|
+
exports.DeleteWebhook$ = DeleteWebhook$;
|
|
919
3684
|
exports.DeleteWebhookCommand = DeleteWebhookCommand;
|
|
3685
|
+
exports.DeleteWebhookInput$ = DeleteWebhookInput$;
|
|
3686
|
+
exports.DeleteWebhookOutput$ = DeleteWebhookOutput$;
|
|
3687
|
+
exports.DeployActionExecutionTarget$ = DeployActionExecutionTarget$;
|
|
3688
|
+
exports.DeployTargetEvent$ = DeployTargetEvent$;
|
|
3689
|
+
exports.DeployTargetEventContext$ = DeployTargetEventContext$;
|
|
3690
|
+
exports.DeregisterWebhookWithThirdParty$ = DeregisterWebhookWithThirdParty$;
|
|
920
3691
|
exports.DeregisterWebhookWithThirdPartyCommand = DeregisterWebhookWithThirdPartyCommand;
|
|
3692
|
+
exports.DeregisterWebhookWithThirdPartyInput$ = DeregisterWebhookWithThirdPartyInput$;
|
|
3693
|
+
exports.DeregisterWebhookWithThirdPartyOutput$ = DeregisterWebhookWithThirdPartyOutput$;
|
|
3694
|
+
exports.DisableStageTransition$ = DisableStageTransition$;
|
|
921
3695
|
exports.DisableStageTransitionCommand = DisableStageTransitionCommand;
|
|
3696
|
+
exports.DisableStageTransitionInput$ = DisableStageTransitionInput$;
|
|
3697
|
+
exports.DuplicatedStopRequestException = DuplicatedStopRequestException;
|
|
3698
|
+
exports.DuplicatedStopRequestException$ = DuplicatedStopRequestException$;
|
|
3699
|
+
exports.EnableStageTransition$ = EnableStageTransition$;
|
|
922
3700
|
exports.EnableStageTransitionCommand = EnableStageTransitionCommand;
|
|
3701
|
+
exports.EnableStageTransitionInput$ = EnableStageTransitionInput$;
|
|
3702
|
+
exports.EncryptionKey$ = EncryptionKey$;
|
|
923
3703
|
exports.EncryptionKeyType = EncryptionKeyType;
|
|
3704
|
+
exports.EnvironmentVariable$ = EnvironmentVariable$;
|
|
924
3705
|
exports.EnvironmentVariableType = EnvironmentVariableType;
|
|
3706
|
+
exports.ErrorDetails$ = ErrorDetails$;
|
|
3707
|
+
exports.ExecutionDetails$ = ExecutionDetails$;
|
|
925
3708
|
exports.ExecutionMode = ExecutionMode;
|
|
3709
|
+
exports.ExecutionTrigger$ = ExecutionTrigger$;
|
|
926
3710
|
exports.ExecutionType = ExecutionType;
|
|
3711
|
+
exports.ExecutorConfiguration$ = ExecutorConfiguration$;
|
|
927
3712
|
exports.ExecutorType = ExecutorType;
|
|
3713
|
+
exports.FailureConditions$ = FailureConditions$;
|
|
3714
|
+
exports.FailureDetails$ = FailureDetails$;
|
|
928
3715
|
exports.FailureType = FailureType;
|
|
3716
|
+
exports.GetActionType$ = GetActionType$;
|
|
929
3717
|
exports.GetActionTypeCommand = GetActionTypeCommand;
|
|
3718
|
+
exports.GetActionTypeInput$ = GetActionTypeInput$;
|
|
3719
|
+
exports.GetActionTypeOutput$ = GetActionTypeOutput$;
|
|
3720
|
+
exports.GetJobDetails$ = GetJobDetails$;
|
|
930
3721
|
exports.GetJobDetailsCommand = GetJobDetailsCommand;
|
|
3722
|
+
exports.GetJobDetailsInput$ = GetJobDetailsInput$;
|
|
3723
|
+
exports.GetJobDetailsOutput$ = GetJobDetailsOutput$;
|
|
3724
|
+
exports.GetPipeline$ = GetPipeline$;
|
|
931
3725
|
exports.GetPipelineCommand = GetPipelineCommand;
|
|
3726
|
+
exports.GetPipelineExecution$ = GetPipelineExecution$;
|
|
932
3727
|
exports.GetPipelineExecutionCommand = GetPipelineExecutionCommand;
|
|
3728
|
+
exports.GetPipelineExecutionInput$ = GetPipelineExecutionInput$;
|
|
3729
|
+
exports.GetPipelineExecutionOutput$ = GetPipelineExecutionOutput$;
|
|
3730
|
+
exports.GetPipelineInput$ = GetPipelineInput$;
|
|
3731
|
+
exports.GetPipelineOutput$ = GetPipelineOutput$;
|
|
3732
|
+
exports.GetPipelineState$ = GetPipelineState$;
|
|
933
3733
|
exports.GetPipelineStateCommand = GetPipelineStateCommand;
|
|
3734
|
+
exports.GetPipelineStateInput$ = GetPipelineStateInput$;
|
|
3735
|
+
exports.GetPipelineStateOutput$ = GetPipelineStateOutput$;
|
|
3736
|
+
exports.GetThirdPartyJobDetails$ = GetThirdPartyJobDetails$;
|
|
934
3737
|
exports.GetThirdPartyJobDetailsCommand = GetThirdPartyJobDetailsCommand;
|
|
3738
|
+
exports.GetThirdPartyJobDetailsInput$ = GetThirdPartyJobDetailsInput$;
|
|
3739
|
+
exports.GetThirdPartyJobDetailsOutput$ = GetThirdPartyJobDetailsOutput$;
|
|
3740
|
+
exports.GitBranchFilterCriteria$ = GitBranchFilterCriteria$;
|
|
3741
|
+
exports.GitConfiguration$ = GitConfiguration$;
|
|
3742
|
+
exports.GitFilePathFilterCriteria$ = GitFilePathFilterCriteria$;
|
|
935
3743
|
exports.GitPullRequestEventType = GitPullRequestEventType;
|
|
3744
|
+
exports.GitPullRequestFilter$ = GitPullRequestFilter$;
|
|
3745
|
+
exports.GitPushFilter$ = GitPushFilter$;
|
|
3746
|
+
exports.GitTagFilterCriteria$ = GitTagFilterCriteria$;
|
|
3747
|
+
exports.InputArtifact$ = InputArtifact$;
|
|
3748
|
+
exports.InvalidActionDeclarationException = InvalidActionDeclarationException;
|
|
3749
|
+
exports.InvalidActionDeclarationException$ = InvalidActionDeclarationException$;
|
|
3750
|
+
exports.InvalidApprovalTokenException = InvalidApprovalTokenException;
|
|
3751
|
+
exports.InvalidApprovalTokenException$ = InvalidApprovalTokenException$;
|
|
3752
|
+
exports.InvalidArnException = InvalidArnException;
|
|
3753
|
+
exports.InvalidArnException$ = InvalidArnException$;
|
|
3754
|
+
exports.InvalidBlockerDeclarationException = InvalidBlockerDeclarationException;
|
|
3755
|
+
exports.InvalidBlockerDeclarationException$ = InvalidBlockerDeclarationException$;
|
|
3756
|
+
exports.InvalidClientTokenException = InvalidClientTokenException;
|
|
3757
|
+
exports.InvalidClientTokenException$ = InvalidClientTokenException$;
|
|
3758
|
+
exports.InvalidJobException = InvalidJobException;
|
|
3759
|
+
exports.InvalidJobException$ = InvalidJobException$;
|
|
3760
|
+
exports.InvalidJobStateException = InvalidJobStateException;
|
|
3761
|
+
exports.InvalidJobStateException$ = InvalidJobStateException$;
|
|
3762
|
+
exports.InvalidNextTokenException = InvalidNextTokenException;
|
|
3763
|
+
exports.InvalidNextTokenException$ = InvalidNextTokenException$;
|
|
3764
|
+
exports.InvalidNonceException = InvalidNonceException;
|
|
3765
|
+
exports.InvalidNonceException$ = InvalidNonceException$;
|
|
3766
|
+
exports.InvalidStageDeclarationException = InvalidStageDeclarationException;
|
|
3767
|
+
exports.InvalidStageDeclarationException$ = InvalidStageDeclarationException$;
|
|
3768
|
+
exports.InvalidStructureException = InvalidStructureException;
|
|
3769
|
+
exports.InvalidStructureException$ = InvalidStructureException$;
|
|
3770
|
+
exports.InvalidTagsException = InvalidTagsException;
|
|
3771
|
+
exports.InvalidTagsException$ = InvalidTagsException$;
|
|
3772
|
+
exports.InvalidWebhookAuthenticationParametersException = InvalidWebhookAuthenticationParametersException;
|
|
3773
|
+
exports.InvalidWebhookAuthenticationParametersException$ = InvalidWebhookAuthenticationParametersException$;
|
|
3774
|
+
exports.InvalidWebhookFilterPatternException = InvalidWebhookFilterPatternException;
|
|
3775
|
+
exports.InvalidWebhookFilterPatternException$ = InvalidWebhookFilterPatternException$;
|
|
3776
|
+
exports.Job$ = Job$;
|
|
3777
|
+
exports.JobData$ = JobData$;
|
|
3778
|
+
exports.JobDetails$ = JobDetails$;
|
|
3779
|
+
exports.JobNotFoundException = JobNotFoundException;
|
|
3780
|
+
exports.JobNotFoundException$ = JobNotFoundException$;
|
|
936
3781
|
exports.JobStatus = JobStatus;
|
|
3782
|
+
exports.JobWorkerExecutorConfiguration$ = JobWorkerExecutorConfiguration$;
|
|
3783
|
+
exports.LambdaExecutorConfiguration$ = LambdaExecutorConfiguration$;
|
|
3784
|
+
exports.LatestInPipelineExecutionFilter$ = LatestInPipelineExecutionFilter$;
|
|
3785
|
+
exports.LimitExceededException = LimitExceededException;
|
|
3786
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
3787
|
+
exports.ListActionExecutions$ = ListActionExecutions$;
|
|
937
3788
|
exports.ListActionExecutionsCommand = ListActionExecutionsCommand;
|
|
3789
|
+
exports.ListActionExecutionsInput$ = ListActionExecutionsInput$;
|
|
3790
|
+
exports.ListActionExecutionsOutput$ = ListActionExecutionsOutput$;
|
|
3791
|
+
exports.ListActionTypes$ = ListActionTypes$;
|
|
938
3792
|
exports.ListActionTypesCommand = ListActionTypesCommand;
|
|
3793
|
+
exports.ListActionTypesInput$ = ListActionTypesInput$;
|
|
3794
|
+
exports.ListActionTypesOutput$ = ListActionTypesOutput$;
|
|
3795
|
+
exports.ListDeployActionExecutionTargets$ = ListDeployActionExecutionTargets$;
|
|
939
3796
|
exports.ListDeployActionExecutionTargetsCommand = ListDeployActionExecutionTargetsCommand;
|
|
3797
|
+
exports.ListDeployActionExecutionTargetsInput$ = ListDeployActionExecutionTargetsInput$;
|
|
3798
|
+
exports.ListDeployActionExecutionTargetsOutput$ = ListDeployActionExecutionTargetsOutput$;
|
|
3799
|
+
exports.ListPipelineExecutions$ = ListPipelineExecutions$;
|
|
940
3800
|
exports.ListPipelineExecutionsCommand = ListPipelineExecutionsCommand;
|
|
3801
|
+
exports.ListPipelineExecutionsInput$ = ListPipelineExecutionsInput$;
|
|
3802
|
+
exports.ListPipelineExecutionsOutput$ = ListPipelineExecutionsOutput$;
|
|
3803
|
+
exports.ListPipelines$ = ListPipelines$;
|
|
941
3804
|
exports.ListPipelinesCommand = ListPipelinesCommand;
|
|
3805
|
+
exports.ListPipelinesInput$ = ListPipelinesInput$;
|
|
3806
|
+
exports.ListPipelinesOutput$ = ListPipelinesOutput$;
|
|
3807
|
+
exports.ListRuleExecutions$ = ListRuleExecutions$;
|
|
942
3808
|
exports.ListRuleExecutionsCommand = ListRuleExecutionsCommand;
|
|
3809
|
+
exports.ListRuleExecutionsInput$ = ListRuleExecutionsInput$;
|
|
3810
|
+
exports.ListRuleExecutionsOutput$ = ListRuleExecutionsOutput$;
|
|
3811
|
+
exports.ListRuleTypes$ = ListRuleTypes$;
|
|
943
3812
|
exports.ListRuleTypesCommand = ListRuleTypesCommand;
|
|
3813
|
+
exports.ListRuleTypesInput$ = ListRuleTypesInput$;
|
|
3814
|
+
exports.ListRuleTypesOutput$ = ListRuleTypesOutput$;
|
|
3815
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
944
3816
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3817
|
+
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
3818
|
+
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
3819
|
+
exports.ListWebhookItem$ = ListWebhookItem$;
|
|
3820
|
+
exports.ListWebhooks$ = ListWebhooks$;
|
|
945
3821
|
exports.ListWebhooksCommand = ListWebhooksCommand;
|
|
3822
|
+
exports.ListWebhooksInput$ = ListWebhooksInput$;
|
|
3823
|
+
exports.ListWebhooksOutput$ = ListWebhooksOutput$;
|
|
3824
|
+
exports.NotLatestPipelineExecutionException = NotLatestPipelineExecutionException;
|
|
3825
|
+
exports.NotLatestPipelineExecutionException$ = NotLatestPipelineExecutionException$;
|
|
3826
|
+
exports.OutputArtifact$ = OutputArtifact$;
|
|
3827
|
+
exports.OutputVariablesSizeExceededException = OutputVariablesSizeExceededException;
|
|
3828
|
+
exports.OutputVariablesSizeExceededException$ = OutputVariablesSizeExceededException$;
|
|
3829
|
+
exports.OverrideStageCondition$ = OverrideStageCondition$;
|
|
946
3830
|
exports.OverrideStageConditionCommand = OverrideStageConditionCommand;
|
|
3831
|
+
exports.OverrideStageConditionInput$ = OverrideStageConditionInput$;
|
|
3832
|
+
exports.PipelineContext$ = PipelineContext$;
|
|
3833
|
+
exports.PipelineDeclaration$ = PipelineDeclaration$;
|
|
3834
|
+
exports.PipelineExecution$ = PipelineExecution$;
|
|
3835
|
+
exports.PipelineExecutionFilter$ = PipelineExecutionFilter$;
|
|
3836
|
+
exports.PipelineExecutionNotFoundException = PipelineExecutionNotFoundException;
|
|
3837
|
+
exports.PipelineExecutionNotFoundException$ = PipelineExecutionNotFoundException$;
|
|
3838
|
+
exports.PipelineExecutionNotStoppableException = PipelineExecutionNotStoppableException;
|
|
3839
|
+
exports.PipelineExecutionNotStoppableException$ = PipelineExecutionNotStoppableException$;
|
|
3840
|
+
exports.PipelineExecutionOutdatedException = PipelineExecutionOutdatedException;
|
|
3841
|
+
exports.PipelineExecutionOutdatedException$ = PipelineExecutionOutdatedException$;
|
|
947
3842
|
exports.PipelineExecutionStatus = PipelineExecutionStatus;
|
|
3843
|
+
exports.PipelineExecutionSummary$ = PipelineExecutionSummary$;
|
|
3844
|
+
exports.PipelineMetadata$ = PipelineMetadata$;
|
|
3845
|
+
exports.PipelineNameInUseException = PipelineNameInUseException;
|
|
3846
|
+
exports.PipelineNameInUseException$ = PipelineNameInUseException$;
|
|
3847
|
+
exports.PipelineNotFoundException = PipelineNotFoundException;
|
|
3848
|
+
exports.PipelineNotFoundException$ = PipelineNotFoundException$;
|
|
3849
|
+
exports.PipelineRollbackMetadata$ = PipelineRollbackMetadata$;
|
|
3850
|
+
exports.PipelineSummary$ = PipelineSummary$;
|
|
3851
|
+
exports.PipelineTriggerDeclaration$ = PipelineTriggerDeclaration$;
|
|
948
3852
|
exports.PipelineTriggerProviderType = PipelineTriggerProviderType;
|
|
949
3853
|
exports.PipelineType = PipelineType;
|
|
3854
|
+
exports.PipelineVariable$ = PipelineVariable$;
|
|
3855
|
+
exports.PipelineVariableDeclaration$ = PipelineVariableDeclaration$;
|
|
3856
|
+
exports.PipelineVersionNotFoundException = PipelineVersionNotFoundException;
|
|
3857
|
+
exports.PipelineVersionNotFoundException$ = PipelineVersionNotFoundException$;
|
|
3858
|
+
exports.PollForJobs$ = PollForJobs$;
|
|
950
3859
|
exports.PollForJobsCommand = PollForJobsCommand;
|
|
3860
|
+
exports.PollForJobsInput$ = PollForJobsInput$;
|
|
3861
|
+
exports.PollForJobsOutput$ = PollForJobsOutput$;
|
|
3862
|
+
exports.PollForThirdPartyJobs$ = PollForThirdPartyJobs$;
|
|
951
3863
|
exports.PollForThirdPartyJobsCommand = PollForThirdPartyJobsCommand;
|
|
3864
|
+
exports.PollForThirdPartyJobsInput$ = PollForThirdPartyJobsInput$;
|
|
3865
|
+
exports.PollForThirdPartyJobsOutput$ = PollForThirdPartyJobsOutput$;
|
|
3866
|
+
exports.PutActionRevision$ = PutActionRevision$;
|
|
952
3867
|
exports.PutActionRevisionCommand = PutActionRevisionCommand;
|
|
3868
|
+
exports.PutActionRevisionInput$ = PutActionRevisionInput$;
|
|
3869
|
+
exports.PutActionRevisionOutput$ = PutActionRevisionOutput$;
|
|
3870
|
+
exports.PutApprovalResult$ = PutApprovalResult$;
|
|
953
3871
|
exports.PutApprovalResultCommand = PutApprovalResultCommand;
|
|
3872
|
+
exports.PutApprovalResultInput$ = PutApprovalResultInput$;
|
|
3873
|
+
exports.PutApprovalResultOutput$ = PutApprovalResultOutput$;
|
|
3874
|
+
exports.PutJobFailureResult$ = PutJobFailureResult$;
|
|
954
3875
|
exports.PutJobFailureResultCommand = PutJobFailureResultCommand;
|
|
3876
|
+
exports.PutJobFailureResultInput$ = PutJobFailureResultInput$;
|
|
3877
|
+
exports.PutJobSuccessResult$ = PutJobSuccessResult$;
|
|
955
3878
|
exports.PutJobSuccessResultCommand = PutJobSuccessResultCommand;
|
|
3879
|
+
exports.PutJobSuccessResultInput$ = PutJobSuccessResultInput$;
|
|
3880
|
+
exports.PutThirdPartyJobFailureResult$ = PutThirdPartyJobFailureResult$;
|
|
956
3881
|
exports.PutThirdPartyJobFailureResultCommand = PutThirdPartyJobFailureResultCommand;
|
|
3882
|
+
exports.PutThirdPartyJobFailureResultInput$ = PutThirdPartyJobFailureResultInput$;
|
|
3883
|
+
exports.PutThirdPartyJobSuccessResult$ = PutThirdPartyJobSuccessResult$;
|
|
957
3884
|
exports.PutThirdPartyJobSuccessResultCommand = PutThirdPartyJobSuccessResultCommand;
|
|
3885
|
+
exports.PutThirdPartyJobSuccessResultInput$ = PutThirdPartyJobSuccessResultInput$;
|
|
3886
|
+
exports.PutWebhook$ = PutWebhook$;
|
|
958
3887
|
exports.PutWebhookCommand = PutWebhookCommand;
|
|
3888
|
+
exports.PutWebhookInput$ = PutWebhookInput$;
|
|
3889
|
+
exports.PutWebhookOutput$ = PutWebhookOutput$;
|
|
3890
|
+
exports.RegisterWebhookWithThirdParty$ = RegisterWebhookWithThirdParty$;
|
|
959
3891
|
exports.RegisterWebhookWithThirdPartyCommand = RegisterWebhookWithThirdPartyCommand;
|
|
3892
|
+
exports.RegisterWebhookWithThirdPartyInput$ = RegisterWebhookWithThirdPartyInput$;
|
|
3893
|
+
exports.RegisterWebhookWithThirdPartyOutput$ = RegisterWebhookWithThirdPartyOutput$;
|
|
3894
|
+
exports.RequestFailedException = RequestFailedException;
|
|
3895
|
+
exports.RequestFailedException$ = RequestFailedException$;
|
|
3896
|
+
exports.ResolvedPipelineVariable$ = ResolvedPipelineVariable$;
|
|
3897
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
3898
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
960
3899
|
exports.Result = Result;
|
|
3900
|
+
exports.RetryConfiguration$ = RetryConfiguration$;
|
|
3901
|
+
exports.RetryStageExecution$ = RetryStageExecution$;
|
|
961
3902
|
exports.RetryStageExecutionCommand = RetryStageExecutionCommand;
|
|
3903
|
+
exports.RetryStageExecutionInput$ = RetryStageExecutionInput$;
|
|
3904
|
+
exports.RetryStageExecutionOutput$ = RetryStageExecutionOutput$;
|
|
3905
|
+
exports.RetryStageMetadata$ = RetryStageMetadata$;
|
|
962
3906
|
exports.RetryTrigger = RetryTrigger;
|
|
3907
|
+
exports.RollbackStage$ = RollbackStage$;
|
|
963
3908
|
exports.RollbackStageCommand = RollbackStageCommand;
|
|
3909
|
+
exports.RollbackStageInput$ = RollbackStageInput$;
|
|
3910
|
+
exports.RollbackStageOutput$ = RollbackStageOutput$;
|
|
964
3911
|
exports.RuleCategory = RuleCategory;
|
|
3912
|
+
exports.RuleConfigurationProperty$ = RuleConfigurationProperty$;
|
|
965
3913
|
exports.RuleConfigurationPropertyType = RuleConfigurationPropertyType;
|
|
3914
|
+
exports.RuleDeclaration$ = RuleDeclaration$;
|
|
3915
|
+
exports.RuleExecution$ = RuleExecution$;
|
|
3916
|
+
exports.RuleExecutionDetail$ = RuleExecutionDetail$;
|
|
3917
|
+
exports.RuleExecutionFilter$ = RuleExecutionFilter$;
|
|
3918
|
+
exports.RuleExecutionInput$ = RuleExecutionInput$;
|
|
3919
|
+
exports.RuleExecutionOutput$ = RuleExecutionOutput$;
|
|
3920
|
+
exports.RuleExecutionResult$ = RuleExecutionResult$;
|
|
966
3921
|
exports.RuleExecutionStatus = RuleExecutionStatus;
|
|
967
3922
|
exports.RuleOwner = RuleOwner;
|
|
3923
|
+
exports.RuleRevision$ = RuleRevision$;
|
|
3924
|
+
exports.RuleState$ = RuleState$;
|
|
3925
|
+
exports.RuleType$ = RuleType$;
|
|
3926
|
+
exports.RuleTypeId$ = RuleTypeId$;
|
|
3927
|
+
exports.RuleTypeSettings$ = RuleTypeSettings$;
|
|
3928
|
+
exports.S3ArtifactLocation$ = S3ArtifactLocation$;
|
|
3929
|
+
exports.S3Location$ = S3Location$;
|
|
3930
|
+
exports.SourceRevision$ = SourceRevision$;
|
|
3931
|
+
exports.SourceRevisionOverride$ = SourceRevisionOverride$;
|
|
968
3932
|
exports.SourceRevisionType = SourceRevisionType;
|
|
3933
|
+
exports.StageConditionState$ = StageConditionState$;
|
|
3934
|
+
exports.StageConditionsExecution$ = StageConditionsExecution$;
|
|
3935
|
+
exports.StageContext$ = StageContext$;
|
|
3936
|
+
exports.StageDeclaration$ = StageDeclaration$;
|
|
3937
|
+
exports.StageExecution$ = StageExecution$;
|
|
969
3938
|
exports.StageExecutionStatus = StageExecutionStatus;
|
|
3939
|
+
exports.StageNotFoundException = StageNotFoundException;
|
|
3940
|
+
exports.StageNotFoundException$ = StageNotFoundException$;
|
|
3941
|
+
exports.StageNotRetryableException = StageNotRetryableException;
|
|
3942
|
+
exports.StageNotRetryableException$ = StageNotRetryableException$;
|
|
970
3943
|
exports.StageRetryMode = StageRetryMode;
|
|
3944
|
+
exports.StageState$ = StageState$;
|
|
971
3945
|
exports.StageTransitionType = StageTransitionType;
|
|
3946
|
+
exports.StartPipelineExecution$ = StartPipelineExecution$;
|
|
972
3947
|
exports.StartPipelineExecutionCommand = StartPipelineExecutionCommand;
|
|
3948
|
+
exports.StartPipelineExecutionInput$ = StartPipelineExecutionInput$;
|
|
3949
|
+
exports.StartPipelineExecutionOutput$ = StartPipelineExecutionOutput$;
|
|
973
3950
|
exports.StartTimeRange = StartTimeRange;
|
|
3951
|
+
exports.StopExecutionTrigger$ = StopExecutionTrigger$;
|
|
3952
|
+
exports.StopPipelineExecution$ = StopPipelineExecution$;
|
|
974
3953
|
exports.StopPipelineExecutionCommand = StopPipelineExecutionCommand;
|
|
3954
|
+
exports.StopPipelineExecutionInput$ = StopPipelineExecutionInput$;
|
|
3955
|
+
exports.StopPipelineExecutionOutput$ = StopPipelineExecutionOutput$;
|
|
3956
|
+
exports.SucceededInStageFilter$ = SucceededInStageFilter$;
|
|
3957
|
+
exports.SuccessConditions$ = SuccessConditions$;
|
|
3958
|
+
exports.Tag$ = Tag$;
|
|
3959
|
+
exports.TagResource$ = TagResource$;
|
|
975
3960
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3961
|
+
exports.TagResourceInput$ = TagResourceInput$;
|
|
3962
|
+
exports.TagResourceOutput$ = TagResourceOutput$;
|
|
3963
|
+
exports.TargetFilter$ = TargetFilter$;
|
|
976
3964
|
exports.TargetFilterName = TargetFilterName;
|
|
3965
|
+
exports.ThirdPartyJob$ = ThirdPartyJob$;
|
|
3966
|
+
exports.ThirdPartyJobData$ = ThirdPartyJobData$;
|
|
3967
|
+
exports.ThirdPartyJobDetails$ = ThirdPartyJobDetails$;
|
|
3968
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
3969
|
+
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
3970
|
+
exports.TransitionState$ = TransitionState$;
|
|
977
3971
|
exports.TriggerType = TriggerType;
|
|
3972
|
+
exports.UnableToRollbackStageException = UnableToRollbackStageException;
|
|
3973
|
+
exports.UnableToRollbackStageException$ = UnableToRollbackStageException$;
|
|
3974
|
+
exports.UntagResource$ = UntagResource$;
|
|
978
3975
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3976
|
+
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
3977
|
+
exports.UntagResourceOutput$ = UntagResourceOutput$;
|
|
3978
|
+
exports.UpdateActionType$ = UpdateActionType$;
|
|
979
3979
|
exports.UpdateActionTypeCommand = UpdateActionTypeCommand;
|
|
3980
|
+
exports.UpdateActionTypeInput$ = UpdateActionTypeInput$;
|
|
3981
|
+
exports.UpdatePipeline$ = UpdatePipeline$;
|
|
980
3982
|
exports.UpdatePipelineCommand = UpdatePipelineCommand;
|
|
3983
|
+
exports.UpdatePipelineInput$ = UpdatePipelineInput$;
|
|
3984
|
+
exports.UpdatePipelineOutput$ = UpdatePipelineOutput$;
|
|
3985
|
+
exports.ValidationException = ValidationException;
|
|
3986
|
+
exports.ValidationException$ = ValidationException$;
|
|
3987
|
+
exports.WebhookAuthConfiguration$ = WebhookAuthConfiguration$;
|
|
981
3988
|
exports.WebhookAuthenticationType = WebhookAuthenticationType;
|
|
3989
|
+
exports.WebhookDefinition$ = WebhookDefinition$;
|
|
3990
|
+
exports.WebhookFilterRule$ = WebhookFilterRule$;
|
|
3991
|
+
exports.WebhookNotFoundException = WebhookNotFoundException;
|
|
3992
|
+
exports.WebhookNotFoundException$ = WebhookNotFoundException$;
|
|
3993
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
982
3994
|
exports.paginateListActionExecutions = paginateListActionExecutions;
|
|
983
3995
|
exports.paginateListActionTypes = paginateListActionTypes;
|
|
984
3996
|
exports.paginateListDeployActionExecutionTargets = paginateListDeployActionExecutionTargets;
|