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