@aws-sdk/client-codepipeline 3.620.1 → 3.622.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.
Files changed (46) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/index.js +386 -89
  3. package/dist-es/CodePipeline.js +6 -0
  4. package/dist-es/CodePipelineClient.js +12 -18
  5. package/dist-es/commands/ListRuleExecutionsCommand.js +24 -0
  6. package/dist-es/commands/ListRuleTypesCommand.js +24 -0
  7. package/dist-es/commands/OverrideStageConditionCommand.js +24 -0
  8. package/dist-es/commands/index.js +3 -0
  9. package/dist-es/models/models_0.js +82 -39
  10. package/dist-es/pagination/ListRuleExecutionsPaginator.js +4 -0
  11. package/dist-es/pagination/index.js +1 -0
  12. package/dist-es/protocols/Aws_json1_1.js +198 -14
  13. package/dist-types/CodePipeline.d.ts +22 -0
  14. package/dist-types/CodePipelineClient.d.ts +7 -6
  15. package/dist-types/auth/httpAuthSchemeProvider.d.ts +4 -4
  16. package/dist-types/commands/CreatePipelineCommand.d.ts +172 -2
  17. package/dist-types/commands/GetPipelineCommand.d.ts +86 -1
  18. package/dist-types/commands/GetPipelineStateCommand.d.ts +123 -0
  19. package/dist-types/commands/ListRuleExecutionsCommand.d.ts +132 -0
  20. package/dist-types/commands/ListRuleTypesCommand.d.ts +98 -0
  21. package/dist-types/commands/OverrideStageConditionCommand.d.ts +85 -0
  22. package/dist-types/commands/PutActionRevisionCommand.d.ts +3 -0
  23. package/dist-types/commands/RetryStageExecutionCommand.d.ts +3 -0
  24. package/dist-types/commands/UpdatePipelineCommand.d.ts +172 -2
  25. package/dist-types/commands/index.d.ts +3 -0
  26. package/dist-types/models/models_0.d.ts +1019 -222
  27. package/dist-types/pagination/ListRuleExecutionsPaginator.d.ts +7 -0
  28. package/dist-types/pagination/index.d.ts +1 -0
  29. package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
  30. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  31. package/dist-types/runtimeConfig.d.ts +2 -2
  32. package/dist-types/runtimeConfig.native.d.ts +2 -2
  33. package/dist-types/ts3.4/CodePipeline.d.ts +52 -0
  34. package/dist-types/ts3.4/CodePipelineClient.d.ts +24 -8
  35. package/dist-types/ts3.4/commands/ListRuleExecutionsCommand.d.ts +40 -0
  36. package/dist-types/ts3.4/commands/ListRuleTypesCommand.d.ts +36 -0
  37. package/dist-types/ts3.4/commands/OverrideStageConditionCommand.d.ts +35 -0
  38. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  39. package/dist-types/ts3.4/models/models_0.d.ts +228 -29
  40. package/dist-types/ts3.4/pagination/ListRuleExecutionsPaginator.d.ts +11 -0
  41. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  42. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +36 -0
  43. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -5
  44. package/dist-types/ts3.4/runtimeConfig.d.ts +5 -5
  45. package/dist-types/ts3.4/runtimeConfig.native.d.ts +5 -5
  46. package/package.json +11 -11
package/dist-cjs/index.js CHANGED
@@ -40,6 +40,9 @@ __export(src_exports, {
40
40
  CodePipelineServiceException: () => CodePipelineServiceException,
41
41
  ConcurrentModificationException: () => ConcurrentModificationException,
42
42
  ConcurrentPipelineExecutionsLimitExceededException: () => ConcurrentPipelineExecutionsLimitExceededException,
43
+ ConditionExecutionStatus: () => ConditionExecutionStatus,
44
+ ConditionNotOverridableException: () => ConditionNotOverridableException,
45
+ ConditionType: () => ConditionType,
43
46
  ConflictException: () => ConflictException,
44
47
  CreateCustomActionTypeCommand: () => CreateCustomActionTypeCommand,
45
48
  CreatePipelineCommand: () => CreatePipelineCommand,
@@ -88,10 +91,13 @@ __export(src_exports, {
88
91
  ListActionTypesCommand: () => ListActionTypesCommand,
89
92
  ListPipelineExecutionsCommand: () => ListPipelineExecutionsCommand,
90
93
  ListPipelinesCommand: () => ListPipelinesCommand,
94
+ ListRuleExecutionsCommand: () => ListRuleExecutionsCommand,
95
+ ListRuleTypesCommand: () => ListRuleTypesCommand,
91
96
  ListTagsForResourceCommand: () => ListTagsForResourceCommand,
92
97
  ListWebhooksCommand: () => ListWebhooksCommand,
93
98
  NotLatestPipelineExecutionException: () => NotLatestPipelineExecutionException,
94
99
  OutputVariablesSizeExceededException: () => OutputVariablesSizeExceededException,
100
+ OverrideStageConditionCommand: () => OverrideStageConditionCommand,
95
101
  PipelineExecutionNotFoundException: () => PipelineExecutionNotFoundException,
96
102
  PipelineExecutionNotStoppableException: () => PipelineExecutionNotStoppableException,
97
103
  PipelineExecutionOutdatedException: () => PipelineExecutionOutdatedException,
@@ -117,6 +123,10 @@ __export(src_exports, {
117
123
  Result: () => Result,
118
124
  RetryStageExecutionCommand: () => RetryStageExecutionCommand,
119
125
  RollbackStageCommand: () => RollbackStageCommand,
126
+ RuleCategory: () => RuleCategory,
127
+ RuleConfigurationPropertyType: () => RuleConfigurationPropertyType,
128
+ RuleExecutionStatus: () => RuleExecutionStatus,
129
+ RuleOwner: () => RuleOwner,
120
130
  SourceRevisionType: () => SourceRevisionType,
121
131
  StageExecutionStatus: () => StageExecutionStatus,
122
132
  StageNotFoundException: () => StageNotFoundException,
@@ -143,6 +153,7 @@ __export(src_exports, {
143
153
  paginateListActionTypes: () => paginateListActionTypes,
144
154
  paginateListPipelineExecutions: () => paginateListPipelineExecutions,
145
155
  paginateListPipelines: () => paginateListPipelines,
156
+ paginateListRuleExecutions: () => paginateListRuleExecutions,
146
157
  paginateListTagsForResource: () => paginateListTagsForResource,
147
158
  paginateListWebhooks: () => paginateListWebhooks
148
159
  });
@@ -248,25 +259,27 @@ var _CodePipelineClient = class _CodePipelineClient extends import_smithy_client
248
259
  constructor(...[configuration]) {
249
260
  const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
250
261
  const _config_1 = resolveClientEndpointParameters(_config_0);
251
- const _config_2 = (0, import_config_resolver.resolveRegionConfig)(_config_1);
252
- const _config_3 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_2);
253
- const _config_4 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_3);
254
- const _config_5 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_4);
255
- const _config_6 = (0, import_middleware_retry.resolveRetryConfig)(_config_5);
262
+ const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
263
+ const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
264
+ const _config_4 = (0, import_config_resolver.resolveRegionConfig)(_config_3);
265
+ const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
266
+ const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
256
267
  const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
257
268
  const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
258
269
  super(_config_8);
259
270
  this.config = _config_8;
260
- this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
261
- this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
262
- this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
263
271
  this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
264
272
  this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
265
273
  this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
274
+ this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
275
+ this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
276
+ this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
266
277
  this.middlewareStack.use(
267
278
  (0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
268
- httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
269
- identityProviderConfigProvider: this.getIdentityProviderConfigProvider()
279
+ httpAuthSchemeParametersProvider: import_httpAuthSchemeProvider.defaultCodePipelineHttpAuthSchemeParametersProvider,
280
+ identityProviderConfigProvider: async (config) => new import_core.DefaultIdentityProviderConfig({
281
+ "aws.auth#sigv4": config.credentials
282
+ })
270
283
  })
271
284
  );
272
285
  this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
@@ -279,14 +292,6 @@ var _CodePipelineClient = class _CodePipelineClient extends import_smithy_client
279
292
  destroy() {
280
293
  super.destroy();
281
294
  }
282
- getDefaultHttpAuthSchemeParametersProvider() {
283
- return import_httpAuthSchemeProvider.defaultCodePipelineHttpAuthSchemeParametersProvider;
284
- }
285
- getIdentityProviderConfigProvider() {
286
- return async (config) => new import_core.DefaultIdentityProviderConfig({
287
- "aws.auth#sigv4": config.credentials
288
- });
289
- }
290
295
  };
291
296
  __name(_CodePipelineClient, "CodePipelineClient");
292
297
  var CodePipelineClient = _CodePipelineClient;
@@ -494,6 +499,16 @@ var EncryptionKeyType = {
494
499
  var ArtifactStoreType = {
495
500
  S3: "S3"
496
501
  };
502
+ var Result = {
503
+ FAIL: "FAIL",
504
+ ROLLBACK: "ROLLBACK"
505
+ };
506
+ var RuleCategory = {
507
+ Rule: "Rule"
508
+ };
509
+ var RuleOwner = {
510
+ AWS: "AWS"
511
+ };
497
512
  var BlockerType = {
498
513
  Schedule: "Schedule"
499
514
  };
@@ -574,9 +589,6 @@ var PipelineType = {
574
589
  V1: "V1",
575
590
  V2: "V2"
576
591
  };
577
- var Result = {
578
- ROLLBACK: "ROLLBACK"
579
- };
580
592
  var GitPullRequestEventType = {
581
593
  CLOSED: "CLOSED",
582
594
  OPEN: "OPEN",
@@ -783,6 +795,21 @@ var _PipelineExecutionNotFoundException = class _PipelineExecutionNotFoundExcept
783
795
  };
784
796
  __name(_PipelineExecutionNotFoundException, "PipelineExecutionNotFoundException");
785
797
  var PipelineExecutionNotFoundException = _PipelineExecutionNotFoundException;
798
+ var ConditionExecutionStatus = {
799
+ Abandoned: "Abandoned",
800
+ Cancelled: "Cancelled",
801
+ Errored: "Errored",
802
+ Failed: "Failed",
803
+ InProgress: "InProgress",
804
+ Overridden: "Overridden",
805
+ Succeeded: "Succeeded"
806
+ };
807
+ var RuleExecutionStatus = {
808
+ Abandoned: "Abandoned",
809
+ Failed: "Failed",
810
+ InProgress: "InProgress",
811
+ Succeeded: "Succeeded"
812
+ };
786
813
  var StageExecutionStatus = {
787
814
  Cancelled: "Cancelled",
788
815
  Failed: "Failed",
@@ -825,6 +852,11 @@ var _InvalidNextTokenException = class _InvalidNextTokenException extends CodePi
825
852
  };
826
853
  __name(_InvalidNextTokenException, "InvalidNextTokenException");
827
854
  var InvalidNextTokenException = _InvalidNextTokenException;
855
+ var RuleConfigurationPropertyType = {
856
+ Boolean: "Boolean",
857
+ Number: "Number",
858
+ String: "String"
859
+ };
828
860
  var _InvalidArnException = class _InvalidArnException extends CodePipelineServiceException {
829
861
  /**
830
862
  * @internal
@@ -864,6 +896,78 @@ var WebhookAuthenticationType = {
864
896
  IP: "IP",
865
897
  UNAUTHENTICATED: "UNAUTHENTICATED"
866
898
  };
899
+ var _ConcurrentPipelineExecutionsLimitExceededException = class _ConcurrentPipelineExecutionsLimitExceededException extends CodePipelineServiceException {
900
+ /**
901
+ * @internal
902
+ */
903
+ constructor(opts) {
904
+ super({
905
+ name: "ConcurrentPipelineExecutionsLimitExceededException",
906
+ $fault: "client",
907
+ ...opts
908
+ });
909
+ this.name = "ConcurrentPipelineExecutionsLimitExceededException";
910
+ this.$fault = "client";
911
+ Object.setPrototypeOf(this, _ConcurrentPipelineExecutionsLimitExceededException.prototype);
912
+ }
913
+ };
914
+ __name(_ConcurrentPipelineExecutionsLimitExceededException, "ConcurrentPipelineExecutionsLimitExceededException");
915
+ var ConcurrentPipelineExecutionsLimitExceededException = _ConcurrentPipelineExecutionsLimitExceededException;
916
+ var _ConditionNotOverridableException = class _ConditionNotOverridableException extends CodePipelineServiceException {
917
+ /**
918
+ * @internal
919
+ */
920
+ constructor(opts) {
921
+ super({
922
+ name: "ConditionNotOverridableException",
923
+ $fault: "client",
924
+ ...opts
925
+ });
926
+ this.name = "ConditionNotOverridableException";
927
+ this.$fault = "client";
928
+ Object.setPrototypeOf(this, _ConditionNotOverridableException.prototype);
929
+ }
930
+ };
931
+ __name(_ConditionNotOverridableException, "ConditionNotOverridableException");
932
+ var ConditionNotOverridableException = _ConditionNotOverridableException;
933
+ var _ConflictException = class _ConflictException extends CodePipelineServiceException {
934
+ /**
935
+ * @internal
936
+ */
937
+ constructor(opts) {
938
+ super({
939
+ name: "ConflictException",
940
+ $fault: "client",
941
+ ...opts
942
+ });
943
+ this.name = "ConflictException";
944
+ this.$fault = "client";
945
+ Object.setPrototypeOf(this, _ConflictException.prototype);
946
+ }
947
+ };
948
+ __name(_ConflictException, "ConflictException");
949
+ var ConflictException = _ConflictException;
950
+ var _NotLatestPipelineExecutionException = class _NotLatestPipelineExecutionException extends CodePipelineServiceException {
951
+ /**
952
+ * @internal
953
+ */
954
+ constructor(opts) {
955
+ super({
956
+ name: "NotLatestPipelineExecutionException",
957
+ $fault: "client",
958
+ ...opts
959
+ });
960
+ this.name = "NotLatestPipelineExecutionException";
961
+ this.$fault = "client";
962
+ Object.setPrototypeOf(this, _NotLatestPipelineExecutionException.prototype);
963
+ }
964
+ };
965
+ __name(_NotLatestPipelineExecutionException, "NotLatestPipelineExecutionException");
966
+ var NotLatestPipelineExecutionException = _NotLatestPipelineExecutionException;
967
+ var ConditionType = {
968
+ BEFORE_ENTRY: "BEFORE_ENTRY",
969
+ ON_SUCCESS: "ON_SUCCESS"
970
+ };
867
971
  var _InvalidApprovalTokenException = class _InvalidApprovalTokenException extends CodePipelineServiceException {
868
972
  /**
869
973
  * @internal
@@ -957,40 +1061,6 @@ var _InvalidWebhookFilterPatternException = class _InvalidWebhookFilterPatternEx
957
1061
  };
958
1062
  __name(_InvalidWebhookFilterPatternException, "InvalidWebhookFilterPatternException");
959
1063
  var InvalidWebhookFilterPatternException = _InvalidWebhookFilterPatternException;
960
- var _ConflictException = class _ConflictException extends CodePipelineServiceException {
961
- /**
962
- * @internal
963
- */
964
- constructor(opts) {
965
- super({
966
- name: "ConflictException",
967
- $fault: "client",
968
- ...opts
969
- });
970
- this.name = "ConflictException";
971
- this.$fault = "client";
972
- Object.setPrototypeOf(this, _ConflictException.prototype);
973
- }
974
- };
975
- __name(_ConflictException, "ConflictException");
976
- var ConflictException = _ConflictException;
977
- var _NotLatestPipelineExecutionException = class _NotLatestPipelineExecutionException extends CodePipelineServiceException {
978
- /**
979
- * @internal
980
- */
981
- constructor(opts) {
982
- super({
983
- name: "NotLatestPipelineExecutionException",
984
- $fault: "client",
985
- ...opts
986
- });
987
- this.name = "NotLatestPipelineExecutionException";
988
- this.$fault = "client";
989
- Object.setPrototypeOf(this, _NotLatestPipelineExecutionException.prototype);
990
- }
991
- };
992
- __name(_NotLatestPipelineExecutionException, "NotLatestPipelineExecutionException");
993
- var NotLatestPipelineExecutionException = _NotLatestPipelineExecutionException;
994
1064
  var StageRetryMode = {
995
1065
  ALL_ACTIONS: "ALL_ACTIONS",
996
1066
  FAILED_ACTIONS: "FAILED_ACTIONS"
@@ -1046,23 +1116,6 @@ var _UnableToRollbackStageException = class _UnableToRollbackStageException exte
1046
1116
  };
1047
1117
  __name(_UnableToRollbackStageException, "UnableToRollbackStageException");
1048
1118
  var UnableToRollbackStageException = _UnableToRollbackStageException;
1049
- var _ConcurrentPipelineExecutionsLimitExceededException = class _ConcurrentPipelineExecutionsLimitExceededException extends CodePipelineServiceException {
1050
- /**
1051
- * @internal
1052
- */
1053
- constructor(opts) {
1054
- super({
1055
- name: "ConcurrentPipelineExecutionsLimitExceededException",
1056
- $fault: "client",
1057
- ...opts
1058
- });
1059
- this.name = "ConcurrentPipelineExecutionsLimitExceededException";
1060
- this.$fault = "client";
1061
- Object.setPrototypeOf(this, _ConcurrentPipelineExecutionsLimitExceededException.prototype);
1062
- }
1063
- };
1064
- __name(_ConcurrentPipelineExecutionsLimitExceededException, "ConcurrentPipelineExecutionsLimitExceededException");
1065
- var ConcurrentPipelineExecutionsLimitExceededException = _ConcurrentPipelineExecutionsLimitExceededException;
1066
1119
  var SourceRevisionType = {
1067
1120
  COMMIT_ID: "COMMIT_ID",
1068
1121
  IMAGE_DIGEST: "IMAGE_DIGEST",
@@ -1181,7 +1234,7 @@ var se_CreateCustomActionTypeCommand = /* @__PURE__ */ __name(async (input, cont
1181
1234
  var se_CreatePipelineCommand = /* @__PURE__ */ __name(async (input, context) => {
1182
1235
  const headers = sharedHeaders("CreatePipeline");
1183
1236
  let body;
1184
- body = JSON.stringify((0, import_smithy_client._json)(input));
1237
+ body = JSON.stringify(se_CreatePipelineInput(input, context));
1185
1238
  return buildHttpRpcRequest(context, headers, "/", void 0, body);
1186
1239
  }, "se_CreatePipelineCommand");
1187
1240
  var se_DeleteCustomActionTypeCommand = /* @__PURE__ */ __name(async (input, context) => {
@@ -1280,6 +1333,18 @@ var se_ListPipelinesCommand = /* @__PURE__ */ __name(async (input, context) => {
1280
1333
  body = JSON.stringify((0, import_smithy_client._json)(input));
1281
1334
  return buildHttpRpcRequest(context, headers, "/", void 0, body);
1282
1335
  }, "se_ListPipelinesCommand");
1336
+ var se_ListRuleExecutionsCommand = /* @__PURE__ */ __name(async (input, context) => {
1337
+ const headers = sharedHeaders("ListRuleExecutions");
1338
+ let body;
1339
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1340
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1341
+ }, "se_ListRuleExecutionsCommand");
1342
+ var se_ListRuleTypesCommand = /* @__PURE__ */ __name(async (input, context) => {
1343
+ const headers = sharedHeaders("ListRuleTypes");
1344
+ let body;
1345
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1346
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1347
+ }, "se_ListRuleTypesCommand");
1283
1348
  var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
1284
1349
  const headers = sharedHeaders("ListTagsForResource");
1285
1350
  let body;
@@ -1292,6 +1357,12 @@ var se_ListWebhooksCommand = /* @__PURE__ */ __name(async (input, context) => {
1292
1357
  body = JSON.stringify((0, import_smithy_client._json)(input));
1293
1358
  return buildHttpRpcRequest(context, headers, "/", void 0, body);
1294
1359
  }, "se_ListWebhooksCommand");
1360
+ var se_OverrideStageConditionCommand = /* @__PURE__ */ __name(async (input, context) => {
1361
+ const headers = sharedHeaders("OverrideStageCondition");
1362
+ let body;
1363
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1364
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1365
+ }, "se_OverrideStageConditionCommand");
1295
1366
  var se_PollForJobsCommand = /* @__PURE__ */ __name(async (input, context) => {
1296
1367
  const headers = sharedHeaders("PollForJobs");
1297
1368
  let body;
@@ -1397,7 +1468,7 @@ var se_UpdateActionTypeCommand = /* @__PURE__ */ __name(async (input, context) =
1397
1468
  var se_UpdatePipelineCommand = /* @__PURE__ */ __name(async (input, context) => {
1398
1469
  const headers = sharedHeaders("UpdatePipeline");
1399
1470
  let body;
1400
- body = JSON.stringify((0, import_smithy_client._json)(input));
1471
+ body = JSON.stringify(se_UpdatePipelineInput(input, context));
1401
1472
  return buildHttpRpcRequest(context, headers, "/", void 0, body);
1402
1473
  }, "se_UpdatePipelineCommand");
1403
1474
  var de_AcknowledgeJobCommand = /* @__PURE__ */ __name(async (output, context) => {
@@ -1445,7 +1516,7 @@ var de_CreatePipelineCommand = /* @__PURE__ */ __name(async (output, context) =>
1445
1516
  }
1446
1517
  const data = await (0, import_core2.parseJsonBody)(output.body, context);
1447
1518
  let contents = {};
1448
- contents = (0, import_smithy_client._json)(data);
1519
+ contents = de_CreatePipelineOutput(data, context);
1449
1520
  const response = {
1450
1521
  $metadata: deserializeMetadata(output),
1451
1522
  ...contents
@@ -1648,6 +1719,32 @@ var de_ListPipelinesCommand = /* @__PURE__ */ __name(async (output, context) =>
1648
1719
  };
1649
1720
  return response;
1650
1721
  }, "de_ListPipelinesCommand");
1722
+ var de_ListRuleExecutionsCommand = /* @__PURE__ */ __name(async (output, context) => {
1723
+ if (output.statusCode >= 300) {
1724
+ return de_CommandError(output, context);
1725
+ }
1726
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1727
+ let contents = {};
1728
+ contents = de_ListRuleExecutionsOutput(data, context);
1729
+ const response = {
1730
+ $metadata: deserializeMetadata(output),
1731
+ ...contents
1732
+ };
1733
+ return response;
1734
+ }, "de_ListRuleExecutionsCommand");
1735
+ var de_ListRuleTypesCommand = /* @__PURE__ */ __name(async (output, context) => {
1736
+ if (output.statusCode >= 300) {
1737
+ return de_CommandError(output, context);
1738
+ }
1739
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1740
+ let contents = {};
1741
+ contents = (0, import_smithy_client._json)(data);
1742
+ const response = {
1743
+ $metadata: deserializeMetadata(output),
1744
+ ...contents
1745
+ };
1746
+ return response;
1747
+ }, "de_ListRuleTypesCommand");
1651
1748
  var de_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (output, context) => {
1652
1749
  if (output.statusCode >= 300) {
1653
1750
  return de_CommandError(output, context);
@@ -1674,6 +1771,16 @@ var de_ListWebhooksCommand = /* @__PURE__ */ __name(async (output, context) => {
1674
1771
  };
1675
1772
  return response;
1676
1773
  }, "de_ListWebhooksCommand");
1774
+ var de_OverrideStageConditionCommand = /* @__PURE__ */ __name(async (output, context) => {
1775
+ if (output.statusCode >= 300) {
1776
+ return de_CommandError(output, context);
1777
+ }
1778
+ await (0, import_smithy_client.collectBody)(output.body, context);
1779
+ const response = {
1780
+ $metadata: deserializeMetadata(output)
1781
+ };
1782
+ return response;
1783
+ }, "de_OverrideStageConditionCommand");
1677
1784
  var de_PollForJobsCommand = /* @__PURE__ */ __name(async (output, context) => {
1678
1785
  if (output.statusCode >= 300) {
1679
1786
  return de_CommandError(output, context);
@@ -1886,7 +1993,7 @@ var de_UpdatePipelineCommand = /* @__PURE__ */ __name(async (output, context) =>
1886
1993
  }
1887
1994
  const data = await (0, import_core2.parseJsonBody)(output.body, context);
1888
1995
  let contents = {};
1889
- contents = (0, import_smithy_client._json)(data);
1996
+ contents = de_UpdatePipelineOutput(data, context);
1890
1997
  const response = {
1891
1998
  $metadata: deserializeMetadata(output),
1892
1999
  ...contents
@@ -1969,6 +2076,18 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
1969
2076
  case "ResourceNotFoundException":
1970
2077
  case "com.amazonaws.codepipeline#ResourceNotFoundException":
1971
2078
  throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
2079
+ case "ConcurrentPipelineExecutionsLimitExceededException":
2080
+ case "com.amazonaws.codepipeline#ConcurrentPipelineExecutionsLimitExceededException":
2081
+ throw await de_ConcurrentPipelineExecutionsLimitExceededExceptionRes(parsedOutput, context);
2082
+ case "ConditionNotOverridableException":
2083
+ case "com.amazonaws.codepipeline#ConditionNotOverridableException":
2084
+ throw await de_ConditionNotOverridableExceptionRes(parsedOutput, context);
2085
+ case "ConflictException":
2086
+ case "com.amazonaws.codepipeline#ConflictException":
2087
+ throw await de_ConflictExceptionRes(parsedOutput, context);
2088
+ case "NotLatestPipelineExecutionException":
2089
+ case "com.amazonaws.codepipeline#NotLatestPipelineExecutionException":
2090
+ throw await de_NotLatestPipelineExecutionExceptionRes(parsedOutput, context);
1972
2091
  case "ActionNotFoundException":
1973
2092
  case "com.amazonaws.codepipeline#ActionNotFoundException":
1974
2093
  throw await de_ActionNotFoundExceptionRes(parsedOutput, context);
@@ -1990,12 +2109,6 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
1990
2109
  case "InvalidWebhookFilterPatternException":
1991
2110
  case "com.amazonaws.codepipeline#InvalidWebhookFilterPatternException":
1992
2111
  throw await de_InvalidWebhookFilterPatternExceptionRes(parsedOutput, context);
1993
- case "ConflictException":
1994
- case "com.amazonaws.codepipeline#ConflictException":
1995
- throw await de_ConflictExceptionRes(parsedOutput, context);
1996
- case "NotLatestPipelineExecutionException":
1997
- case "com.amazonaws.codepipeline#NotLatestPipelineExecutionException":
1998
- throw await de_NotLatestPipelineExecutionExceptionRes(parsedOutput, context);
1999
2112
  case "StageNotRetryableException":
2000
2113
  case "com.amazonaws.codepipeline#StageNotRetryableException":
2001
2114
  throw await de_StageNotRetryableExceptionRes(parsedOutput, context);
@@ -2005,9 +2118,6 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
2005
2118
  case "UnableToRollbackStageException":
2006
2119
  case "com.amazonaws.codepipeline#UnableToRollbackStageException":
2007
2120
  throw await de_UnableToRollbackStageExceptionRes(parsedOutput, context);
2008
- case "ConcurrentPipelineExecutionsLimitExceededException":
2009
- case "com.amazonaws.codepipeline#ConcurrentPipelineExecutionsLimitExceededException":
2010
- throw await de_ConcurrentPipelineExecutionsLimitExceededExceptionRes(parsedOutput, context);
2011
2121
  case "DuplicatedStopRequestException":
2012
2122
  case "com.amazonaws.codepipeline#DuplicatedStopRequestException":
2013
2123
  throw await de_DuplicatedStopRequestExceptionRes(parsedOutput, context);
@@ -2071,6 +2181,15 @@ var de_ConcurrentPipelineExecutionsLimitExceededExceptionRes = /* @__PURE__ */ _
2071
2181
  });
2072
2182
  return (0, import_smithy_client.decorateServiceException)(exception, body);
2073
2183
  }, "de_ConcurrentPipelineExecutionsLimitExceededExceptionRes");
2184
+ var de_ConditionNotOverridableExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2185
+ const body = parsedOutput.body;
2186
+ const deserialized = (0, import_smithy_client._json)(body);
2187
+ const exception = new ConditionNotOverridableException({
2188
+ $metadata: deserializeMetadata(parsedOutput),
2189
+ ...deserialized
2190
+ });
2191
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2192
+ }, "de_ConditionNotOverridableExceptionRes");
2074
2193
  var de_ConflictExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2075
2194
  const body = parsedOutput.body;
2076
2195
  const deserialized = (0, import_smithy_client._json)(body);
@@ -2384,6 +2503,12 @@ var se_ActionRevision = /* @__PURE__ */ __name((input, context) => {
2384
2503
  revisionId: []
2385
2504
  });
2386
2505
  }, "se_ActionRevision");
2506
+ var se_CreatePipelineInput = /* @__PURE__ */ __name((input, context) => {
2507
+ return (0, import_smithy_client.take)(input, {
2508
+ pipeline: import_smithy_client._json,
2509
+ tags: import_smithy_client._json
2510
+ });
2511
+ }, "se_CreatePipelineInput");
2387
2512
  var se_CurrentRevision = /* @__PURE__ */ __name((input, context) => {
2388
2513
  return (0, import_smithy_client.take)(input, {
2389
2514
  changeIdentifier: [],
@@ -2426,6 +2551,11 @@ var se_StartPipelineExecutionInput = /* @__PURE__ */ __name((input, context) =>
2426
2551
  variables: import_smithy_client._json
2427
2552
  });
2428
2553
  }, "se_StartPipelineExecutionInput");
2554
+ var se_UpdatePipelineInput = /* @__PURE__ */ __name((input, context) => {
2555
+ return (0, import_smithy_client.take)(input, {
2556
+ pipeline: import_smithy_client._json
2557
+ });
2558
+ }, "se_UpdatePipelineInput");
2429
2559
  var de_ActionExecution = /* @__PURE__ */ __name((output, context) => {
2430
2560
  return (0, import_smithy_client.take)(output, {
2431
2561
  actionExecutionId: import_smithy_client.expectString,
@@ -2499,6 +2629,31 @@ var de_ArtifactRevisionList = /* @__PURE__ */ __name((output, context) => {
2499
2629
  });
2500
2630
  return retVal;
2501
2631
  }, "de_ArtifactRevisionList");
2632
+ var de_ConditionExecution = /* @__PURE__ */ __name((output, context) => {
2633
+ return (0, import_smithy_client.take)(output, {
2634
+ lastStatusChange: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2635
+ status: import_smithy_client.expectString,
2636
+ summary: import_smithy_client.expectString
2637
+ });
2638
+ }, "de_ConditionExecution");
2639
+ var de_ConditionState = /* @__PURE__ */ __name((output, context) => {
2640
+ return (0, import_smithy_client.take)(output, {
2641
+ latestExecution: (_) => de_ConditionExecution(_, context),
2642
+ ruleStates: (_) => de_RuleStateList(_, context)
2643
+ });
2644
+ }, "de_ConditionState");
2645
+ var de_ConditionStateList = /* @__PURE__ */ __name((output, context) => {
2646
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
2647
+ return de_ConditionState(entry, context);
2648
+ });
2649
+ return retVal;
2650
+ }, "de_ConditionStateList");
2651
+ var de_CreatePipelineOutput = /* @__PURE__ */ __name((output, context) => {
2652
+ return (0, import_smithy_client.take)(output, {
2653
+ pipeline: import_smithy_client._json,
2654
+ tags: import_smithy_client._json
2655
+ });
2656
+ }, "de_CreatePipelineOutput");
2502
2657
  var de_GetPipelineExecutionOutput = /* @__PURE__ */ __name((output, context) => {
2503
2658
  return (0, import_smithy_client.take)(output, {
2504
2659
  pipelineExecution: (_) => de_PipelineExecution(_, context)
@@ -2537,6 +2692,12 @@ var de_ListPipelinesOutput = /* @__PURE__ */ __name((output, context) => {
2537
2692
  pipelines: (_) => de_PipelineList(_, context)
2538
2693
  });
2539
2694
  }, "de_ListPipelinesOutput");
2695
+ var de_ListRuleExecutionsOutput = /* @__PURE__ */ __name((output, context) => {
2696
+ return (0, import_smithy_client.take)(output, {
2697
+ nextToken: import_smithy_client.expectString,
2698
+ ruleExecutionDetails: (_) => de_RuleExecutionDetailList(_, context)
2699
+ });
2700
+ }, "de_ListRuleExecutionsOutput");
2540
2701
  var de_ListWebhookItem = /* @__PURE__ */ __name((output, context) => {
2541
2702
  return (0, import_smithy_client.take)(output, {
2542
2703
  arn: import_smithy_client.expectString,
@@ -2624,13 +2785,78 @@ var de_PutWebhookOutput = /* @__PURE__ */ __name((output, context) => {
2624
2785
  webhook: (_) => de_ListWebhookItem(_, context)
2625
2786
  });
2626
2787
  }, "de_PutWebhookOutput");
2788
+ var de_RuleExecution = /* @__PURE__ */ __name((output, context) => {
2789
+ return (0, import_smithy_client.take)(output, {
2790
+ errorDetails: import_smithy_client._json,
2791
+ externalExecutionId: import_smithy_client.expectString,
2792
+ externalExecutionUrl: import_smithy_client.expectString,
2793
+ lastStatusChange: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2794
+ lastUpdatedBy: import_smithy_client.expectString,
2795
+ ruleExecutionId: import_smithy_client.expectString,
2796
+ status: import_smithy_client.expectString,
2797
+ summary: import_smithy_client.expectString,
2798
+ token: import_smithy_client.expectString
2799
+ });
2800
+ }, "de_RuleExecution");
2801
+ var de_RuleExecutionDetail = /* @__PURE__ */ __name((output, context) => {
2802
+ return (0, import_smithy_client.take)(output, {
2803
+ input: import_smithy_client._json,
2804
+ lastUpdateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2805
+ output: import_smithy_client._json,
2806
+ pipelineExecutionId: import_smithy_client.expectString,
2807
+ pipelineVersion: import_smithy_client.expectInt32,
2808
+ ruleExecutionId: import_smithy_client.expectString,
2809
+ ruleName: import_smithy_client.expectString,
2810
+ stageName: import_smithy_client.expectString,
2811
+ startTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2812
+ status: import_smithy_client.expectString,
2813
+ updatedBy: import_smithy_client.expectString
2814
+ });
2815
+ }, "de_RuleExecutionDetail");
2816
+ var de_RuleExecutionDetailList = /* @__PURE__ */ __name((output, context) => {
2817
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
2818
+ return de_RuleExecutionDetail(entry, context);
2819
+ });
2820
+ return retVal;
2821
+ }, "de_RuleExecutionDetailList");
2822
+ var de_RuleRevision = /* @__PURE__ */ __name((output, context) => {
2823
+ return (0, import_smithy_client.take)(output, {
2824
+ created: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2825
+ revisionChangeId: import_smithy_client.expectString,
2826
+ revisionId: import_smithy_client.expectString
2827
+ });
2828
+ }, "de_RuleRevision");
2829
+ var de_RuleState = /* @__PURE__ */ __name((output, context) => {
2830
+ return (0, import_smithy_client.take)(output, {
2831
+ currentRevision: (_) => de_RuleRevision(_, context),
2832
+ entityUrl: import_smithy_client.expectString,
2833
+ latestExecution: (_) => de_RuleExecution(_, context),
2834
+ revisionUrl: import_smithy_client.expectString,
2835
+ ruleName: import_smithy_client.expectString
2836
+ });
2837
+ }, "de_RuleState");
2838
+ var de_RuleStateList = /* @__PURE__ */ __name((output, context) => {
2839
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
2840
+ return de_RuleState(entry, context);
2841
+ });
2842
+ return retVal;
2843
+ }, "de_RuleStateList");
2844
+ var de_StageConditionState = /* @__PURE__ */ __name((output, context) => {
2845
+ return (0, import_smithy_client.take)(output, {
2846
+ conditionStates: (_) => de_ConditionStateList(_, context),
2847
+ latestExecution: import_smithy_client._json
2848
+ });
2849
+ }, "de_StageConditionState");
2627
2850
  var de_StageState = /* @__PURE__ */ __name((output, context) => {
2628
2851
  return (0, import_smithy_client.take)(output, {
2629
2852
  actionStates: (_) => de_ActionStateList(_, context),
2853
+ beforeEntryConditionState: (_) => de_StageConditionState(_, context),
2630
2854
  inboundExecution: import_smithy_client._json,
2631
2855
  inboundExecutions: import_smithy_client._json,
2632
2856
  inboundTransitionState: (_) => de_TransitionState(_, context),
2633
2857
  latestExecution: import_smithy_client._json,
2858
+ onFailureConditionState: (_) => de_StageConditionState(_, context),
2859
+ onSuccessConditionState: (_) => de_StageConditionState(_, context),
2634
2860
  stageName: import_smithy_client.expectString
2635
2861
  });
2636
2862
  }, "de_StageState");
@@ -2648,6 +2874,11 @@ var de_TransitionState = /* @__PURE__ */ __name((output, context) => {
2648
2874
  lastChangedBy: import_smithy_client.expectString
2649
2875
  });
2650
2876
  }, "de_TransitionState");
2877
+ var de_UpdatePipelineOutput = /* @__PURE__ */ __name((output, context) => {
2878
+ return (0, import_smithy_client.take)(output, {
2879
+ pipeline: import_smithy_client._json
2880
+ });
2881
+ }, "de_UpdatePipelineOutput");
2651
2882
  var de_WebhookList = /* @__PURE__ */ __name((output, context) => {
2652
2883
  const retVal = (output || []).filter((e) => e != null).map((entry) => {
2653
2884
  return de_ListWebhookItem(entry, context);
@@ -3004,6 +3235,38 @@ var _ListPipelinesCommand = class _ListPipelinesCommand extends import_smithy_cl
3004
3235
  __name(_ListPipelinesCommand, "ListPipelinesCommand");
3005
3236
  var ListPipelinesCommand = _ListPipelinesCommand;
3006
3237
 
3238
+ // src/commands/ListRuleExecutionsCommand.ts
3239
+
3240
+
3241
+
3242
+ var _ListRuleExecutionsCommand = class _ListRuleExecutionsCommand extends import_smithy_client.Command.classBuilder().ep({
3243
+ ...commonParams
3244
+ }).m(function(Command, cs, config, o) {
3245
+ return [
3246
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3247
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3248
+ ];
3249
+ }).s("CodePipeline_20150709", "ListRuleExecutions", {}).n("CodePipelineClient", "ListRuleExecutionsCommand").f(void 0, void 0).ser(se_ListRuleExecutionsCommand).de(de_ListRuleExecutionsCommand).build() {
3250
+ };
3251
+ __name(_ListRuleExecutionsCommand, "ListRuleExecutionsCommand");
3252
+ var ListRuleExecutionsCommand = _ListRuleExecutionsCommand;
3253
+
3254
+ // src/commands/ListRuleTypesCommand.ts
3255
+
3256
+
3257
+
3258
+ var _ListRuleTypesCommand = class _ListRuleTypesCommand extends import_smithy_client.Command.classBuilder().ep({
3259
+ ...commonParams
3260
+ }).m(function(Command, cs, config, o) {
3261
+ return [
3262
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3263
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3264
+ ];
3265
+ }).s("CodePipeline_20150709", "ListRuleTypes", {}).n("CodePipelineClient", "ListRuleTypesCommand").f(void 0, void 0).ser(se_ListRuleTypesCommand).de(de_ListRuleTypesCommand).build() {
3266
+ };
3267
+ __name(_ListRuleTypesCommand, "ListRuleTypesCommand");
3268
+ var ListRuleTypesCommand = _ListRuleTypesCommand;
3269
+
3007
3270
  // src/commands/ListTagsForResourceCommand.ts
3008
3271
 
3009
3272
 
@@ -3036,6 +3299,22 @@ var _ListWebhooksCommand = class _ListWebhooksCommand extends import_smithy_clie
3036
3299
  __name(_ListWebhooksCommand, "ListWebhooksCommand");
3037
3300
  var ListWebhooksCommand = _ListWebhooksCommand;
3038
3301
 
3302
+ // src/commands/OverrideStageConditionCommand.ts
3303
+
3304
+
3305
+
3306
+ var _OverrideStageConditionCommand = class _OverrideStageConditionCommand extends import_smithy_client.Command.classBuilder().ep({
3307
+ ...commonParams
3308
+ }).m(function(Command, cs, config, o) {
3309
+ return [
3310
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3311
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3312
+ ];
3313
+ }).s("CodePipeline_20150709", "OverrideStageCondition", {}).n("CodePipelineClient", "OverrideStageConditionCommand").f(void 0, void 0).ser(se_OverrideStageConditionCommand).de(de_OverrideStageConditionCommand).build() {
3314
+ };
3315
+ __name(_OverrideStageConditionCommand, "OverrideStageConditionCommand");
3316
+ var OverrideStageConditionCommand = _OverrideStageConditionCommand;
3317
+
3039
3318
  // src/commands/PollForJobsCommand.ts
3040
3319
 
3041
3320
 
@@ -3346,8 +3625,11 @@ var commands = {
3346
3625
  ListActionTypesCommand,
3347
3626
  ListPipelineExecutionsCommand,
3348
3627
  ListPipelinesCommand,
3628
+ ListRuleExecutionsCommand,
3629
+ ListRuleTypesCommand,
3349
3630
  ListTagsForResourceCommand,
3350
3631
  ListWebhooksCommand,
3632
+ OverrideStageConditionCommand,
3351
3633
  PollForJobsCommand,
3352
3634
  PollForThirdPartyJobsCommand,
3353
3635
  PutActionRevisionCommand,
@@ -3389,6 +3671,10 @@ var paginateListPipelineExecutions = (0, import_core.createPaginator)(CodePipeli
3389
3671
 
3390
3672
  var paginateListPipelines = (0, import_core.createPaginator)(CodePipelineClient, ListPipelinesCommand, "nextToken", "nextToken", "maxResults");
3391
3673
 
3674
+ // src/pagination/ListRuleExecutionsPaginator.ts
3675
+
3676
+ var paginateListRuleExecutions = (0, import_core.createPaginator)(CodePipelineClient, ListRuleExecutionsCommand, "nextToken", "nextToken", "maxResults");
3677
+
3392
3678
  // src/pagination/ListTagsForResourcePaginator.ts
3393
3679
 
3394
3680
  var paginateListTagsForResource = (0, import_core.createPaginator)(CodePipelineClient, ListTagsForResourceCommand, "nextToken", "nextToken", "maxResults");
@@ -3424,8 +3710,11 @@ var paginateListWebhooks = (0, import_core.createPaginator)(CodePipelineClient,
3424
3710
  ListActionTypesCommand,
3425
3711
  ListPipelineExecutionsCommand,
3426
3712
  ListPipelinesCommand,
3713
+ ListRuleExecutionsCommand,
3714
+ ListRuleTypesCommand,
3427
3715
  ListTagsForResourceCommand,
3428
3716
  ListWebhooksCommand,
3717
+ OverrideStageConditionCommand,
3429
3718
  PollForJobsCommand,
3430
3719
  PollForThirdPartyJobsCommand,
3431
3720
  PutActionRevisionCommand,
@@ -3448,6 +3737,7 @@ var paginateListWebhooks = (0, import_core.createPaginator)(CodePipelineClient,
3448
3737
  paginateListActionTypes,
3449
3738
  paginateListPipelineExecutions,
3450
3739
  paginateListPipelines,
3740
+ paginateListRuleExecutions,
3451
3741
  paginateListTagsForResource,
3452
3742
  paginateListWebhooks,
3453
3743
  JobStatus,
@@ -3468,6 +3758,9 @@ var paginateListWebhooks = (0, import_core.createPaginator)(CodePipelineClient,
3468
3758
  ArtifactLocationType,
3469
3759
  EncryptionKeyType,
3470
3760
  ArtifactStoreType,
3761
+ Result,
3762
+ RuleCategory,
3763
+ RuleOwner,
3471
3764
  BlockerType,
3472
3765
  ConcurrentModificationException,
3473
3766
  InvalidTagsException,
@@ -3475,7 +3768,6 @@ var paginateListWebhooks = (0, import_core.createPaginator)(CodePipelineClient,
3475
3768
  TooManyTagsException,
3476
3769
  ExecutionMode,
3477
3770
  PipelineType,
3478
- Result,
3479
3771
  GitPullRequestEventType,
3480
3772
  PipelineTriggerProviderType,
3481
3773
  InvalidActionDeclarationException,
@@ -3492,25 +3784,30 @@ var paginateListWebhooks = (0, import_core.createPaginator)(CodePipelineClient,
3492
3784
  PipelineExecutionStatus,
3493
3785
  TriggerType,
3494
3786
  PipelineExecutionNotFoundException,
3787
+ ConditionExecutionStatus,
3788
+ RuleExecutionStatus,
3495
3789
  StageExecutionStatus,
3496
3790
  InvalidJobException,
3497
3791
  InvalidNextTokenException,
3792
+ RuleConfigurationPropertyType,
3498
3793
  InvalidArnException,
3499
3794
  ResourceNotFoundException,
3500
3795
  WebhookAuthenticationType,
3796
+ ConcurrentPipelineExecutionsLimitExceededException,
3797
+ ConditionNotOverridableException,
3798
+ ConflictException,
3799
+ NotLatestPipelineExecutionException,
3800
+ ConditionType,
3501
3801
  InvalidApprovalTokenException,
3502
3802
  InvalidJobStateException,
3503
3803
  FailureType,
3504
3804
  OutputVariablesSizeExceededException,
3505
3805
  InvalidWebhookAuthenticationParametersException,
3506
3806
  InvalidWebhookFilterPatternException,
3507
- ConflictException,
3508
- NotLatestPipelineExecutionException,
3509
3807
  StageRetryMode,
3510
3808
  StageNotRetryableException,
3511
3809
  PipelineExecutionOutdatedException,
3512
3810
  UnableToRollbackStageException,
3513
- ConcurrentPipelineExecutionsLimitExceededException,
3514
3811
  SourceRevisionType,
3515
3812
  DuplicatedStopRequestException,
3516
3813
  PipelineExecutionNotStoppableException,