@aws-sdk/client-codepipeline 3.183.0 → 3.185.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 (58) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/protocols/Aws_json1_1.js +2 -2
  3. package/dist-es/CodePipeline.js +165 -158
  4. package/dist-es/CodePipelineClient.js +28 -22
  5. package/dist-es/commands/AcknowledgeJobCommand.js +28 -21
  6. package/dist-es/commands/AcknowledgeThirdPartyJobCommand.js +28 -21
  7. package/dist-es/commands/CreateCustomActionTypeCommand.js +28 -21
  8. package/dist-es/commands/CreatePipelineCommand.js +28 -21
  9. package/dist-es/commands/DeleteCustomActionTypeCommand.js +29 -22
  10. package/dist-es/commands/DeletePipelineCommand.js +29 -22
  11. package/dist-es/commands/DeleteWebhookCommand.js +28 -21
  12. package/dist-es/commands/DeregisterWebhookWithThirdPartyCommand.js +28 -21
  13. package/dist-es/commands/DisableStageTransitionCommand.js +29 -22
  14. package/dist-es/commands/EnableStageTransitionCommand.js +29 -22
  15. package/dist-es/commands/GetActionTypeCommand.js +28 -21
  16. package/dist-es/commands/GetJobDetailsCommand.js +28 -21
  17. package/dist-es/commands/GetPipelineCommand.js +28 -21
  18. package/dist-es/commands/GetPipelineExecutionCommand.js +28 -21
  19. package/dist-es/commands/GetPipelineStateCommand.js +28 -21
  20. package/dist-es/commands/GetThirdPartyJobDetailsCommand.js +28 -21
  21. package/dist-es/commands/ListActionExecutionsCommand.js +28 -21
  22. package/dist-es/commands/ListActionTypesCommand.js +28 -21
  23. package/dist-es/commands/ListPipelineExecutionsCommand.js +28 -21
  24. package/dist-es/commands/ListPipelinesCommand.js +28 -21
  25. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  26. package/dist-es/commands/ListWebhooksCommand.js +28 -21
  27. package/dist-es/commands/PollForJobsCommand.js +28 -21
  28. package/dist-es/commands/PollForThirdPartyJobsCommand.js +28 -21
  29. package/dist-es/commands/PutActionRevisionCommand.js +28 -21
  30. package/dist-es/commands/PutApprovalResultCommand.js +28 -21
  31. package/dist-es/commands/PutJobFailureResultCommand.js +29 -22
  32. package/dist-es/commands/PutJobSuccessResultCommand.js +29 -22
  33. package/dist-es/commands/PutThirdPartyJobFailureResultCommand.js +29 -22
  34. package/dist-es/commands/PutThirdPartyJobSuccessResultCommand.js +29 -22
  35. package/dist-es/commands/PutWebhookCommand.js +28 -21
  36. package/dist-es/commands/RegisterWebhookWithThirdPartyCommand.js +28 -21
  37. package/dist-es/commands/RetryStageExecutionCommand.js +28 -21
  38. package/dist-es/commands/StartPipelineExecutionCommand.js +28 -21
  39. package/dist-es/commands/StopPipelineExecutionCommand.js +28 -21
  40. package/dist-es/commands/TagResourceCommand.js +28 -21
  41. package/dist-es/commands/UntagResourceCommand.js +28 -21
  42. package/dist-es/commands/UpdateActionTypeCommand.js +29 -22
  43. package/dist-es/commands/UpdatePipelineCommand.js +28 -21
  44. package/dist-es/endpoints.js +8 -8
  45. package/dist-es/models/CodePipelineServiceException.js +10 -5
  46. package/dist-es/models/models_0.js +570 -854
  47. package/dist-es/pagination/ListActionExecutionsPaginator.js +68 -25
  48. package/dist-es/pagination/ListActionTypesPaginator.js +67 -24
  49. package/dist-es/pagination/ListPipelineExecutionsPaginator.js +68 -25
  50. package/dist-es/pagination/ListPipelinesPaginator.js +68 -25
  51. package/dist-es/pagination/ListTagsForResourcePaginator.js +68 -25
  52. package/dist-es/pagination/ListWebhooksPaginator.js +68 -25
  53. package/dist-es/protocols/Aws_json1_1.js +3746 -3101
  54. package/dist-es/runtimeConfig.browser.js +12 -26
  55. package/dist-es/runtimeConfig.js +12 -30
  56. package/dist-es/runtimeConfig.native.js +5 -8
  57. package/dist-es/runtimeConfig.shared.js +11 -8
  58. package/package.json +5 -5
@@ -1,3 +1,4 @@
1
+ import { __assign, __extends } from "tslib";
1
2
  import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
2
3
  import { CodePipelineServiceException as __BaseException } from "./CodePipelineServiceException";
3
4
  export var JobStatus;
@@ -10,54 +11,54 @@ export var JobStatus;
10
11
  JobStatus["Succeeded"] = "Succeeded";
11
12
  JobStatus["TimedOut"] = "TimedOut";
12
13
  })(JobStatus || (JobStatus = {}));
13
- export class InvalidNonceException extends __BaseException {
14
- constructor(opts) {
15
- super({
16
- name: "InvalidNonceException",
17
- $fault: "client",
18
- ...opts,
19
- });
20
- this.name = "InvalidNonceException";
21
- this.$fault = "client";
22
- Object.setPrototypeOf(this, InvalidNonceException.prototype);
23
- }
24
- }
25
- export class JobNotFoundException extends __BaseException {
26
- constructor(opts) {
27
- super({
28
- name: "JobNotFoundException",
29
- $fault: "client",
30
- ...opts,
31
- });
32
- this.name = "JobNotFoundException";
33
- this.$fault = "client";
34
- Object.setPrototypeOf(this, JobNotFoundException.prototype);
35
- }
36
- }
37
- export class ValidationException extends __BaseException {
38
- constructor(opts) {
39
- super({
40
- name: "ValidationException",
41
- $fault: "client",
42
- ...opts,
43
- });
44
- this.name = "ValidationException";
45
- this.$fault = "client";
46
- Object.setPrototypeOf(this, ValidationException.prototype);
47
- }
48
- }
49
- export class InvalidClientTokenException extends __BaseException {
50
- constructor(opts) {
51
- super({
52
- name: "InvalidClientTokenException",
53
- $fault: "client",
54
- ...opts,
55
- });
56
- this.name = "InvalidClientTokenException";
57
- this.$fault = "client";
58
- Object.setPrototypeOf(this, InvalidClientTokenException.prototype);
59
- }
60
- }
14
+ var InvalidNonceException = (function (_super) {
15
+ __extends(InvalidNonceException, _super);
16
+ function InvalidNonceException(opts) {
17
+ var _this = _super.call(this, __assign({ name: "InvalidNonceException", $fault: "client" }, opts)) || this;
18
+ _this.name = "InvalidNonceException";
19
+ _this.$fault = "client";
20
+ Object.setPrototypeOf(_this, InvalidNonceException.prototype);
21
+ return _this;
22
+ }
23
+ return InvalidNonceException;
24
+ }(__BaseException));
25
+ export { InvalidNonceException };
26
+ var JobNotFoundException = (function (_super) {
27
+ __extends(JobNotFoundException, _super);
28
+ function JobNotFoundException(opts) {
29
+ var _this = _super.call(this, __assign({ name: "JobNotFoundException", $fault: "client" }, opts)) || this;
30
+ _this.name = "JobNotFoundException";
31
+ _this.$fault = "client";
32
+ Object.setPrototypeOf(_this, JobNotFoundException.prototype);
33
+ return _this;
34
+ }
35
+ return JobNotFoundException;
36
+ }(__BaseException));
37
+ export { JobNotFoundException };
38
+ var ValidationException = (function (_super) {
39
+ __extends(ValidationException, _super);
40
+ function ValidationException(opts) {
41
+ var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
42
+ _this.name = "ValidationException";
43
+ _this.$fault = "client";
44
+ Object.setPrototypeOf(_this, ValidationException.prototype);
45
+ return _this;
46
+ }
47
+ return ValidationException;
48
+ }(__BaseException));
49
+ export { ValidationException };
50
+ var InvalidClientTokenException = (function (_super) {
51
+ __extends(InvalidClientTokenException, _super);
52
+ function InvalidClientTokenException(opts) {
53
+ var _this = _super.call(this, __assign({ name: "InvalidClientTokenException", $fault: "client" }, opts)) || this;
54
+ _this.name = "InvalidClientTokenException";
55
+ _this.$fault = "client";
56
+ Object.setPrototypeOf(_this, InvalidClientTokenException.prototype);
57
+ return _this;
58
+ }
59
+ return InvalidClientTokenException;
60
+ }(__BaseException));
61
+ export { InvalidClientTokenException };
61
62
  export var ActionCategory;
62
63
  (function (ActionCategory) {
63
64
  ActionCategory["Approval"] = "Approval";
@@ -86,47 +87,47 @@ export var ActionExecutionStatus;
86
87
  ActionExecutionStatus["InProgress"] = "InProgress";
87
88
  ActionExecutionStatus["Succeeded"] = "Succeeded";
88
89
  })(ActionExecutionStatus || (ActionExecutionStatus = {}));
89
- export class ActionNotFoundException extends __BaseException {
90
- constructor(opts) {
91
- super({
92
- name: "ActionNotFoundException",
93
- $fault: "client",
94
- ...opts,
95
- });
96
- this.name = "ActionNotFoundException";
97
- this.$fault = "client";
98
- Object.setPrototypeOf(this, ActionNotFoundException.prototype);
99
- }
100
- }
90
+ var ActionNotFoundException = (function (_super) {
91
+ __extends(ActionNotFoundException, _super);
92
+ function ActionNotFoundException(opts) {
93
+ var _this = _super.call(this, __assign({ name: "ActionNotFoundException", $fault: "client" }, opts)) || this;
94
+ _this.name = "ActionNotFoundException";
95
+ _this.$fault = "client";
96
+ Object.setPrototypeOf(_this, ActionNotFoundException.prototype);
97
+ return _this;
98
+ }
99
+ return ActionNotFoundException;
100
+ }(__BaseException));
101
+ export { ActionNotFoundException };
101
102
  export var ExecutorType;
102
103
  (function (ExecutorType) {
103
104
  ExecutorType["JobWorker"] = "JobWorker";
104
105
  ExecutorType["Lambda"] = "Lambda";
105
106
  })(ExecutorType || (ExecutorType = {}));
106
- export class ActionTypeNotFoundException extends __BaseException {
107
- constructor(opts) {
108
- super({
109
- name: "ActionTypeNotFoundException",
110
- $fault: "client",
111
- ...opts,
112
- });
113
- this.name = "ActionTypeNotFoundException";
114
- this.$fault = "client";
115
- Object.setPrototypeOf(this, ActionTypeNotFoundException.prototype);
116
- }
117
- }
118
- export class ApprovalAlreadyCompletedException extends __BaseException {
119
- constructor(opts) {
120
- super({
121
- name: "ApprovalAlreadyCompletedException",
122
- $fault: "client",
123
- ...opts,
124
- });
125
- this.name = "ApprovalAlreadyCompletedException";
126
- this.$fault = "client";
127
- Object.setPrototypeOf(this, ApprovalAlreadyCompletedException.prototype);
128
- }
129
- }
107
+ var ActionTypeNotFoundException = (function (_super) {
108
+ __extends(ActionTypeNotFoundException, _super);
109
+ function ActionTypeNotFoundException(opts) {
110
+ var _this = _super.call(this, __assign({ name: "ActionTypeNotFoundException", $fault: "client" }, opts)) || this;
111
+ _this.name = "ActionTypeNotFoundException";
112
+ _this.$fault = "client";
113
+ Object.setPrototypeOf(_this, ActionTypeNotFoundException.prototype);
114
+ return _this;
115
+ }
116
+ return ActionTypeNotFoundException;
117
+ }(__BaseException));
118
+ export { ActionTypeNotFoundException };
119
+ var ApprovalAlreadyCompletedException = (function (_super) {
120
+ __extends(ApprovalAlreadyCompletedException, _super);
121
+ function ApprovalAlreadyCompletedException(opts) {
122
+ var _this = _super.call(this, __assign({ name: "ApprovalAlreadyCompletedException", $fault: "client" }, opts)) || this;
123
+ _this.name = "ApprovalAlreadyCompletedException";
124
+ _this.$fault = "client";
125
+ Object.setPrototypeOf(_this, ApprovalAlreadyCompletedException.prototype);
126
+ return _this;
127
+ }
128
+ return ApprovalAlreadyCompletedException;
129
+ }(__BaseException));
130
+ export { ApprovalAlreadyCompletedException };
130
131
  export var ApprovalStatus;
131
132
  (function (ApprovalStatus) {
132
133
  ApprovalStatus["Approved"] = "Approved";
@@ -148,167 +149,167 @@ export var BlockerType;
148
149
  (function (BlockerType) {
149
150
  BlockerType["Schedule"] = "Schedule";
150
151
  })(BlockerType || (BlockerType = {}));
151
- export class ConcurrentModificationException extends __BaseException {
152
- constructor(opts) {
153
- super({
154
- name: "ConcurrentModificationException",
155
- $fault: "client",
156
- ...opts,
157
- });
158
- this.name = "ConcurrentModificationException";
159
- this.$fault = "client";
160
- Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
161
- }
162
- }
163
- export class InvalidTagsException extends __BaseException {
164
- constructor(opts) {
165
- super({
166
- name: "InvalidTagsException",
167
- $fault: "client",
168
- ...opts,
169
- });
170
- this.name = "InvalidTagsException";
171
- this.$fault = "client";
172
- Object.setPrototypeOf(this, InvalidTagsException.prototype);
173
- }
174
- }
175
- export class LimitExceededException extends __BaseException {
176
- constructor(opts) {
177
- super({
178
- name: "LimitExceededException",
179
- $fault: "client",
180
- ...opts,
181
- });
182
- this.name = "LimitExceededException";
183
- this.$fault = "client";
184
- Object.setPrototypeOf(this, LimitExceededException.prototype);
185
- }
186
- }
187
- export class TooManyTagsException extends __BaseException {
188
- constructor(opts) {
189
- super({
190
- name: "TooManyTagsException",
191
- $fault: "client",
192
- ...opts,
193
- });
194
- this.name = "TooManyTagsException";
195
- this.$fault = "client";
196
- Object.setPrototypeOf(this, TooManyTagsException.prototype);
197
- }
198
- }
199
- export class InvalidActionDeclarationException extends __BaseException {
200
- constructor(opts) {
201
- super({
202
- name: "InvalidActionDeclarationException",
203
- $fault: "client",
204
- ...opts,
205
- });
206
- this.name = "InvalidActionDeclarationException";
207
- this.$fault = "client";
208
- Object.setPrototypeOf(this, InvalidActionDeclarationException.prototype);
209
- }
210
- }
211
- export class InvalidBlockerDeclarationException extends __BaseException {
212
- constructor(opts) {
213
- super({
214
- name: "InvalidBlockerDeclarationException",
215
- $fault: "client",
216
- ...opts,
217
- });
218
- this.name = "InvalidBlockerDeclarationException";
219
- this.$fault = "client";
220
- Object.setPrototypeOf(this, InvalidBlockerDeclarationException.prototype);
221
- }
222
- }
223
- export class InvalidStageDeclarationException extends __BaseException {
224
- constructor(opts) {
225
- super({
226
- name: "InvalidStageDeclarationException",
227
- $fault: "client",
228
- ...opts,
229
- });
230
- this.name = "InvalidStageDeclarationException";
231
- this.$fault = "client";
232
- Object.setPrototypeOf(this, InvalidStageDeclarationException.prototype);
233
- }
234
- }
235
- export class InvalidStructureException extends __BaseException {
236
- constructor(opts) {
237
- super({
238
- name: "InvalidStructureException",
239
- $fault: "client",
240
- ...opts,
241
- });
242
- this.name = "InvalidStructureException";
243
- this.$fault = "client";
244
- Object.setPrototypeOf(this, InvalidStructureException.prototype);
245
- }
246
- }
247
- export class PipelineNameInUseException extends __BaseException {
248
- constructor(opts) {
249
- super({
250
- name: "PipelineNameInUseException",
251
- $fault: "client",
252
- ...opts,
253
- });
254
- this.name = "PipelineNameInUseException";
255
- this.$fault = "client";
256
- Object.setPrototypeOf(this, PipelineNameInUseException.prototype);
257
- }
258
- }
259
- export class WebhookNotFoundException extends __BaseException {
260
- constructor(opts) {
261
- super({
262
- name: "WebhookNotFoundException",
263
- $fault: "client",
264
- ...opts,
265
- });
266
- this.name = "WebhookNotFoundException";
267
- this.$fault = "client";
268
- Object.setPrototypeOf(this, WebhookNotFoundException.prototype);
269
- }
270
- }
152
+ var ConcurrentModificationException = (function (_super) {
153
+ __extends(ConcurrentModificationException, _super);
154
+ function ConcurrentModificationException(opts) {
155
+ var _this = _super.call(this, __assign({ name: "ConcurrentModificationException", $fault: "client" }, opts)) || this;
156
+ _this.name = "ConcurrentModificationException";
157
+ _this.$fault = "client";
158
+ Object.setPrototypeOf(_this, ConcurrentModificationException.prototype);
159
+ return _this;
160
+ }
161
+ return ConcurrentModificationException;
162
+ }(__BaseException));
163
+ export { ConcurrentModificationException };
164
+ var InvalidTagsException = (function (_super) {
165
+ __extends(InvalidTagsException, _super);
166
+ function InvalidTagsException(opts) {
167
+ var _this = _super.call(this, __assign({ name: "InvalidTagsException", $fault: "client" }, opts)) || this;
168
+ _this.name = "InvalidTagsException";
169
+ _this.$fault = "client";
170
+ Object.setPrototypeOf(_this, InvalidTagsException.prototype);
171
+ return _this;
172
+ }
173
+ return InvalidTagsException;
174
+ }(__BaseException));
175
+ export { InvalidTagsException };
176
+ var LimitExceededException = (function (_super) {
177
+ __extends(LimitExceededException, _super);
178
+ function LimitExceededException(opts) {
179
+ var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
180
+ _this.name = "LimitExceededException";
181
+ _this.$fault = "client";
182
+ Object.setPrototypeOf(_this, LimitExceededException.prototype);
183
+ return _this;
184
+ }
185
+ return LimitExceededException;
186
+ }(__BaseException));
187
+ export { LimitExceededException };
188
+ var TooManyTagsException = (function (_super) {
189
+ __extends(TooManyTagsException, _super);
190
+ function TooManyTagsException(opts) {
191
+ var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
192
+ _this.name = "TooManyTagsException";
193
+ _this.$fault = "client";
194
+ Object.setPrototypeOf(_this, TooManyTagsException.prototype);
195
+ return _this;
196
+ }
197
+ return TooManyTagsException;
198
+ }(__BaseException));
199
+ export { TooManyTagsException };
200
+ var InvalidActionDeclarationException = (function (_super) {
201
+ __extends(InvalidActionDeclarationException, _super);
202
+ function InvalidActionDeclarationException(opts) {
203
+ var _this = _super.call(this, __assign({ name: "InvalidActionDeclarationException", $fault: "client" }, opts)) || this;
204
+ _this.name = "InvalidActionDeclarationException";
205
+ _this.$fault = "client";
206
+ Object.setPrototypeOf(_this, InvalidActionDeclarationException.prototype);
207
+ return _this;
208
+ }
209
+ return InvalidActionDeclarationException;
210
+ }(__BaseException));
211
+ export { InvalidActionDeclarationException };
212
+ var InvalidBlockerDeclarationException = (function (_super) {
213
+ __extends(InvalidBlockerDeclarationException, _super);
214
+ function InvalidBlockerDeclarationException(opts) {
215
+ var _this = _super.call(this, __assign({ name: "InvalidBlockerDeclarationException", $fault: "client" }, opts)) || this;
216
+ _this.name = "InvalidBlockerDeclarationException";
217
+ _this.$fault = "client";
218
+ Object.setPrototypeOf(_this, InvalidBlockerDeclarationException.prototype);
219
+ return _this;
220
+ }
221
+ return InvalidBlockerDeclarationException;
222
+ }(__BaseException));
223
+ export { InvalidBlockerDeclarationException };
224
+ var InvalidStageDeclarationException = (function (_super) {
225
+ __extends(InvalidStageDeclarationException, _super);
226
+ function InvalidStageDeclarationException(opts) {
227
+ var _this = _super.call(this, __assign({ name: "InvalidStageDeclarationException", $fault: "client" }, opts)) || this;
228
+ _this.name = "InvalidStageDeclarationException";
229
+ _this.$fault = "client";
230
+ Object.setPrototypeOf(_this, InvalidStageDeclarationException.prototype);
231
+ return _this;
232
+ }
233
+ return InvalidStageDeclarationException;
234
+ }(__BaseException));
235
+ export { InvalidStageDeclarationException };
236
+ var InvalidStructureException = (function (_super) {
237
+ __extends(InvalidStructureException, _super);
238
+ function InvalidStructureException(opts) {
239
+ var _this = _super.call(this, __assign({ name: "InvalidStructureException", $fault: "client" }, opts)) || this;
240
+ _this.name = "InvalidStructureException";
241
+ _this.$fault = "client";
242
+ Object.setPrototypeOf(_this, InvalidStructureException.prototype);
243
+ return _this;
244
+ }
245
+ return InvalidStructureException;
246
+ }(__BaseException));
247
+ export { InvalidStructureException };
248
+ var PipelineNameInUseException = (function (_super) {
249
+ __extends(PipelineNameInUseException, _super);
250
+ function PipelineNameInUseException(opts) {
251
+ var _this = _super.call(this, __assign({ name: "PipelineNameInUseException", $fault: "client" }, opts)) || this;
252
+ _this.name = "PipelineNameInUseException";
253
+ _this.$fault = "client";
254
+ Object.setPrototypeOf(_this, PipelineNameInUseException.prototype);
255
+ return _this;
256
+ }
257
+ return PipelineNameInUseException;
258
+ }(__BaseException));
259
+ export { PipelineNameInUseException };
260
+ var WebhookNotFoundException = (function (_super) {
261
+ __extends(WebhookNotFoundException, _super);
262
+ function WebhookNotFoundException(opts) {
263
+ var _this = _super.call(this, __assign({ name: "WebhookNotFoundException", $fault: "client" }, opts)) || this;
264
+ _this.name = "WebhookNotFoundException";
265
+ _this.$fault = "client";
266
+ Object.setPrototypeOf(_this, WebhookNotFoundException.prototype);
267
+ return _this;
268
+ }
269
+ return WebhookNotFoundException;
270
+ }(__BaseException));
271
+ export { WebhookNotFoundException };
271
272
  export var StageTransitionType;
272
273
  (function (StageTransitionType) {
273
274
  StageTransitionType["Inbound"] = "Inbound";
274
275
  StageTransitionType["Outbound"] = "Outbound";
275
276
  })(StageTransitionType || (StageTransitionType = {}));
276
- export class PipelineNotFoundException extends __BaseException {
277
- constructor(opts) {
278
- super({
279
- name: "PipelineNotFoundException",
280
- $fault: "client",
281
- ...opts,
282
- });
283
- this.name = "PipelineNotFoundException";
284
- this.$fault = "client";
285
- Object.setPrototypeOf(this, PipelineNotFoundException.prototype);
286
- }
287
- }
288
- export class StageNotFoundException extends __BaseException {
289
- constructor(opts) {
290
- super({
291
- name: "StageNotFoundException",
292
- $fault: "client",
293
- ...opts,
294
- });
295
- this.name = "StageNotFoundException";
296
- this.$fault = "client";
297
- Object.setPrototypeOf(this, StageNotFoundException.prototype);
298
- }
299
- }
300
- export class PipelineVersionNotFoundException extends __BaseException {
301
- constructor(opts) {
302
- super({
303
- name: "PipelineVersionNotFoundException",
304
- $fault: "client",
305
- ...opts,
306
- });
307
- this.name = "PipelineVersionNotFoundException";
308
- this.$fault = "client";
309
- Object.setPrototypeOf(this, PipelineVersionNotFoundException.prototype);
310
- }
311
- }
277
+ var PipelineNotFoundException = (function (_super) {
278
+ __extends(PipelineNotFoundException, _super);
279
+ function PipelineNotFoundException(opts) {
280
+ var _this = _super.call(this, __assign({ name: "PipelineNotFoundException", $fault: "client" }, opts)) || this;
281
+ _this.name = "PipelineNotFoundException";
282
+ _this.$fault = "client";
283
+ Object.setPrototypeOf(_this, PipelineNotFoundException.prototype);
284
+ return _this;
285
+ }
286
+ return PipelineNotFoundException;
287
+ }(__BaseException));
288
+ export { PipelineNotFoundException };
289
+ var StageNotFoundException = (function (_super) {
290
+ __extends(StageNotFoundException, _super);
291
+ function StageNotFoundException(opts) {
292
+ var _this = _super.call(this, __assign({ name: "StageNotFoundException", $fault: "client" }, opts)) || this;
293
+ _this.name = "StageNotFoundException";
294
+ _this.$fault = "client";
295
+ Object.setPrototypeOf(_this, StageNotFoundException.prototype);
296
+ return _this;
297
+ }
298
+ return StageNotFoundException;
299
+ }(__BaseException));
300
+ export { StageNotFoundException };
301
+ var PipelineVersionNotFoundException = (function (_super) {
302
+ __extends(PipelineVersionNotFoundException, _super);
303
+ function PipelineVersionNotFoundException(opts) {
304
+ var _this = _super.call(this, __assign({ name: "PipelineVersionNotFoundException", $fault: "client" }, opts)) || this;
305
+ _this.name = "PipelineVersionNotFoundException";
306
+ _this.$fault = "client";
307
+ Object.setPrototypeOf(_this, PipelineVersionNotFoundException.prototype);
308
+ return _this;
309
+ }
310
+ return PipelineVersionNotFoundException;
311
+ }(__BaseException));
312
+ export { PipelineVersionNotFoundException };
312
313
  export var PipelineExecutionStatus;
313
314
  (function (PipelineExecutionStatus) {
314
315
  PipelineExecutionStatus["Cancelled"] = "Cancelled";
@@ -319,18 +320,18 @@ export var PipelineExecutionStatus;
319
320
  PipelineExecutionStatus["Succeeded"] = "Succeeded";
320
321
  PipelineExecutionStatus["Superseded"] = "Superseded";
321
322
  })(PipelineExecutionStatus || (PipelineExecutionStatus = {}));
322
- export class PipelineExecutionNotFoundException extends __BaseException {
323
- constructor(opts) {
324
- super({
325
- name: "PipelineExecutionNotFoundException",
326
- $fault: "client",
327
- ...opts,
328
- });
329
- this.name = "PipelineExecutionNotFoundException";
330
- this.$fault = "client";
331
- Object.setPrototypeOf(this, PipelineExecutionNotFoundException.prototype);
332
- }
333
- }
323
+ var PipelineExecutionNotFoundException = (function (_super) {
324
+ __extends(PipelineExecutionNotFoundException, _super);
325
+ function PipelineExecutionNotFoundException(opts) {
326
+ var _this = _super.call(this, __assign({ name: "PipelineExecutionNotFoundException", $fault: "client" }, opts)) || this;
327
+ _this.name = "PipelineExecutionNotFoundException";
328
+ _this.$fault = "client";
329
+ Object.setPrototypeOf(_this, PipelineExecutionNotFoundException.prototype);
330
+ return _this;
331
+ }
332
+ return PipelineExecutionNotFoundException;
333
+ }(__BaseException));
334
+ export { PipelineExecutionNotFoundException };
334
335
  export var StageExecutionStatus;
335
336
  (function (StageExecutionStatus) {
336
337
  StageExecutionStatus["Cancelled"] = "Cancelled";
@@ -340,30 +341,30 @@ export var StageExecutionStatus;
340
341
  StageExecutionStatus["Stopping"] = "Stopping";
341
342
  StageExecutionStatus["Succeeded"] = "Succeeded";
342
343
  })(StageExecutionStatus || (StageExecutionStatus = {}));
343
- export class InvalidJobException extends __BaseException {
344
- constructor(opts) {
345
- super({
346
- name: "InvalidJobException",
347
- $fault: "client",
348
- ...opts,
349
- });
350
- this.name = "InvalidJobException";
351
- this.$fault = "client";
352
- Object.setPrototypeOf(this, InvalidJobException.prototype);
353
- }
354
- }
355
- export class InvalidNextTokenException extends __BaseException {
356
- constructor(opts) {
357
- super({
358
- name: "InvalidNextTokenException",
359
- $fault: "client",
360
- ...opts,
361
- });
362
- this.name = "InvalidNextTokenException";
363
- this.$fault = "client";
364
- Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
365
- }
366
- }
344
+ var InvalidJobException = (function (_super) {
345
+ __extends(InvalidJobException, _super);
346
+ function InvalidJobException(opts) {
347
+ var _this = _super.call(this, __assign({ name: "InvalidJobException", $fault: "client" }, opts)) || this;
348
+ _this.name = "InvalidJobException";
349
+ _this.$fault = "client";
350
+ Object.setPrototypeOf(_this, InvalidJobException.prototype);
351
+ return _this;
352
+ }
353
+ return InvalidJobException;
354
+ }(__BaseException));
355
+ export { InvalidJobException };
356
+ var InvalidNextTokenException = (function (_super) {
357
+ __extends(InvalidNextTokenException, _super);
358
+ function InvalidNextTokenException(opts) {
359
+ var _this = _super.call(this, __assign({ name: "InvalidNextTokenException", $fault: "client" }, opts)) || this;
360
+ _this.name = "InvalidNextTokenException";
361
+ _this.$fault = "client";
362
+ Object.setPrototypeOf(_this, InvalidNextTokenException.prototype);
363
+ return _this;
364
+ }
365
+ return InvalidNextTokenException;
366
+ }(__BaseException));
367
+ export { InvalidNextTokenException };
367
368
  export var TriggerType;
368
369
  (function (TriggerType) {
369
370
  TriggerType["CloudWatchEvent"] = "CloudWatchEvent";
@@ -373,60 +374,60 @@ export var TriggerType;
373
374
  TriggerType["StartPipelineExecution"] = "StartPipelineExecution";
374
375
  TriggerType["Webhook"] = "Webhook";
375
376
  })(TriggerType || (TriggerType = {}));
376
- export class InvalidArnException extends __BaseException {
377
- constructor(opts) {
378
- super({
379
- name: "InvalidArnException",
380
- $fault: "client",
381
- ...opts,
382
- });
383
- this.name = "InvalidArnException";
384
- this.$fault = "client";
385
- Object.setPrototypeOf(this, InvalidArnException.prototype);
386
- }
387
- }
388
- export class ResourceNotFoundException extends __BaseException {
389
- constructor(opts) {
390
- super({
391
- name: "ResourceNotFoundException",
392
- $fault: "client",
393
- ...opts,
394
- });
395
- this.name = "ResourceNotFoundException";
396
- this.$fault = "client";
397
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
398
- }
399
- }
377
+ var InvalidArnException = (function (_super) {
378
+ __extends(InvalidArnException, _super);
379
+ function InvalidArnException(opts) {
380
+ var _this = _super.call(this, __assign({ name: "InvalidArnException", $fault: "client" }, opts)) || this;
381
+ _this.name = "InvalidArnException";
382
+ _this.$fault = "client";
383
+ Object.setPrototypeOf(_this, InvalidArnException.prototype);
384
+ return _this;
385
+ }
386
+ return InvalidArnException;
387
+ }(__BaseException));
388
+ export { InvalidArnException };
389
+ var ResourceNotFoundException = (function (_super) {
390
+ __extends(ResourceNotFoundException, _super);
391
+ function ResourceNotFoundException(opts) {
392
+ var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
393
+ _this.name = "ResourceNotFoundException";
394
+ _this.$fault = "client";
395
+ Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
396
+ return _this;
397
+ }
398
+ return ResourceNotFoundException;
399
+ }(__BaseException));
400
+ export { ResourceNotFoundException };
400
401
  export var WebhookAuthenticationType;
401
402
  (function (WebhookAuthenticationType) {
402
403
  WebhookAuthenticationType["GITHUB_HMAC"] = "GITHUB_HMAC";
403
404
  WebhookAuthenticationType["IP"] = "IP";
404
405
  WebhookAuthenticationType["UNAUTHENTICATED"] = "UNAUTHENTICATED";
405
406
  })(WebhookAuthenticationType || (WebhookAuthenticationType = {}));
406
- export class InvalidApprovalTokenException extends __BaseException {
407
- constructor(opts) {
408
- super({
409
- name: "InvalidApprovalTokenException",
410
- $fault: "client",
411
- ...opts,
412
- });
413
- this.name = "InvalidApprovalTokenException";
414
- this.$fault = "client";
415
- Object.setPrototypeOf(this, InvalidApprovalTokenException.prototype);
416
- }
417
- }
418
- export class InvalidJobStateException extends __BaseException {
419
- constructor(opts) {
420
- super({
421
- name: "InvalidJobStateException",
422
- $fault: "client",
423
- ...opts,
424
- });
425
- this.name = "InvalidJobStateException";
426
- this.$fault = "client";
427
- Object.setPrototypeOf(this, InvalidJobStateException.prototype);
428
- }
429
- }
407
+ var InvalidApprovalTokenException = (function (_super) {
408
+ __extends(InvalidApprovalTokenException, _super);
409
+ function InvalidApprovalTokenException(opts) {
410
+ var _this = _super.call(this, __assign({ name: "InvalidApprovalTokenException", $fault: "client" }, opts)) || this;
411
+ _this.name = "InvalidApprovalTokenException";
412
+ _this.$fault = "client";
413
+ Object.setPrototypeOf(_this, InvalidApprovalTokenException.prototype);
414
+ return _this;
415
+ }
416
+ return InvalidApprovalTokenException;
417
+ }(__BaseException));
418
+ export { InvalidApprovalTokenException };
419
+ var InvalidJobStateException = (function (_super) {
420
+ __extends(InvalidJobStateException, _super);
421
+ function InvalidJobStateException(opts) {
422
+ var _this = _super.call(this, __assign({ name: "InvalidJobStateException", $fault: "client" }, opts)) || this;
423
+ _this.name = "InvalidJobStateException";
424
+ _this.$fault = "client";
425
+ Object.setPrototypeOf(_this, InvalidJobStateException.prototype);
426
+ return _this;
427
+ }
428
+ return InvalidJobStateException;
429
+ }(__BaseException));
430
+ export { InvalidJobStateException };
430
431
  export var FailureType;
431
432
  (function (FailureType) {
432
433
  FailureType["ConfigurationError"] = "ConfigurationError";
@@ -436,537 +437,252 @@ export var FailureType;
436
437
  FailureType["RevisionUnavailable"] = "RevisionUnavailable";
437
438
  FailureType["SystemUnavailable"] = "SystemUnavailable";
438
439
  })(FailureType || (FailureType = {}));
439
- export class OutputVariablesSizeExceededException extends __BaseException {
440
- constructor(opts) {
441
- super({
442
- name: "OutputVariablesSizeExceededException",
443
- $fault: "client",
444
- ...opts,
445
- });
446
- this.name = "OutputVariablesSizeExceededException";
447
- this.$fault = "client";
448
- Object.setPrototypeOf(this, OutputVariablesSizeExceededException.prototype);
449
- }
450
- }
451
- export class InvalidWebhookAuthenticationParametersException extends __BaseException {
452
- constructor(opts) {
453
- super({
454
- name: "InvalidWebhookAuthenticationParametersException",
455
- $fault: "client",
456
- ...opts,
457
- });
458
- this.name = "InvalidWebhookAuthenticationParametersException";
459
- this.$fault = "client";
460
- Object.setPrototypeOf(this, InvalidWebhookAuthenticationParametersException.prototype);
461
- }
462
- }
463
- export class InvalidWebhookFilterPatternException extends __BaseException {
464
- constructor(opts) {
465
- super({
466
- name: "InvalidWebhookFilterPatternException",
467
- $fault: "client",
468
- ...opts,
469
- });
470
- this.name = "InvalidWebhookFilterPatternException";
471
- this.$fault = "client";
472
- Object.setPrototypeOf(this, InvalidWebhookFilterPatternException.prototype);
473
- }
474
- }
475
- export class ConflictException extends __BaseException {
476
- constructor(opts) {
477
- super({
478
- name: "ConflictException",
479
- $fault: "client",
480
- ...opts,
481
- });
482
- this.name = "ConflictException";
483
- this.$fault = "client";
484
- Object.setPrototypeOf(this, ConflictException.prototype);
485
- }
486
- }
487
- export class NotLatestPipelineExecutionException extends __BaseException {
488
- constructor(opts) {
489
- super({
490
- name: "NotLatestPipelineExecutionException",
491
- $fault: "client",
492
- ...opts,
493
- });
494
- this.name = "NotLatestPipelineExecutionException";
495
- this.$fault = "client";
496
- Object.setPrototypeOf(this, NotLatestPipelineExecutionException.prototype);
497
- }
498
- }
440
+ var OutputVariablesSizeExceededException = (function (_super) {
441
+ __extends(OutputVariablesSizeExceededException, _super);
442
+ function OutputVariablesSizeExceededException(opts) {
443
+ var _this = _super.call(this, __assign({ name: "OutputVariablesSizeExceededException", $fault: "client" }, opts)) || this;
444
+ _this.name = "OutputVariablesSizeExceededException";
445
+ _this.$fault = "client";
446
+ Object.setPrototypeOf(_this, OutputVariablesSizeExceededException.prototype);
447
+ return _this;
448
+ }
449
+ return OutputVariablesSizeExceededException;
450
+ }(__BaseException));
451
+ export { OutputVariablesSizeExceededException };
452
+ var InvalidWebhookAuthenticationParametersException = (function (_super) {
453
+ __extends(InvalidWebhookAuthenticationParametersException, _super);
454
+ function InvalidWebhookAuthenticationParametersException(opts) {
455
+ var _this = _super.call(this, __assign({ name: "InvalidWebhookAuthenticationParametersException", $fault: "client" }, opts)) || this;
456
+ _this.name = "InvalidWebhookAuthenticationParametersException";
457
+ _this.$fault = "client";
458
+ Object.setPrototypeOf(_this, InvalidWebhookAuthenticationParametersException.prototype);
459
+ return _this;
460
+ }
461
+ return InvalidWebhookAuthenticationParametersException;
462
+ }(__BaseException));
463
+ export { InvalidWebhookAuthenticationParametersException };
464
+ var InvalidWebhookFilterPatternException = (function (_super) {
465
+ __extends(InvalidWebhookFilterPatternException, _super);
466
+ function InvalidWebhookFilterPatternException(opts) {
467
+ var _this = _super.call(this, __assign({ name: "InvalidWebhookFilterPatternException", $fault: "client" }, opts)) || this;
468
+ _this.name = "InvalidWebhookFilterPatternException";
469
+ _this.$fault = "client";
470
+ Object.setPrototypeOf(_this, InvalidWebhookFilterPatternException.prototype);
471
+ return _this;
472
+ }
473
+ return InvalidWebhookFilterPatternException;
474
+ }(__BaseException));
475
+ export { InvalidWebhookFilterPatternException };
476
+ var ConflictException = (function (_super) {
477
+ __extends(ConflictException, _super);
478
+ function ConflictException(opts) {
479
+ var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
480
+ _this.name = "ConflictException";
481
+ _this.$fault = "client";
482
+ Object.setPrototypeOf(_this, ConflictException.prototype);
483
+ return _this;
484
+ }
485
+ return ConflictException;
486
+ }(__BaseException));
487
+ export { ConflictException };
488
+ var NotLatestPipelineExecutionException = (function (_super) {
489
+ __extends(NotLatestPipelineExecutionException, _super);
490
+ function NotLatestPipelineExecutionException(opts) {
491
+ var _this = _super.call(this, __assign({ name: "NotLatestPipelineExecutionException", $fault: "client" }, opts)) || this;
492
+ _this.name = "NotLatestPipelineExecutionException";
493
+ _this.$fault = "client";
494
+ Object.setPrototypeOf(_this, NotLatestPipelineExecutionException.prototype);
495
+ return _this;
496
+ }
497
+ return NotLatestPipelineExecutionException;
498
+ }(__BaseException));
499
+ export { NotLatestPipelineExecutionException };
499
500
  export var StageRetryMode;
500
501
  (function (StageRetryMode) {
501
502
  StageRetryMode["FAILED_ACTIONS"] = "FAILED_ACTIONS";
502
503
  })(StageRetryMode || (StageRetryMode = {}));
503
- export class StageNotRetryableException extends __BaseException {
504
- constructor(opts) {
505
- super({
506
- name: "StageNotRetryableException",
507
- $fault: "client",
508
- ...opts,
509
- });
510
- this.name = "StageNotRetryableException";
511
- this.$fault = "client";
512
- Object.setPrototypeOf(this, StageNotRetryableException.prototype);
513
- }
514
- }
515
- export class DuplicatedStopRequestException extends __BaseException {
516
- constructor(opts) {
517
- super({
518
- name: "DuplicatedStopRequestException",
519
- $fault: "client",
520
- ...opts,
521
- });
522
- this.name = "DuplicatedStopRequestException";
523
- this.$fault = "client";
524
- Object.setPrototypeOf(this, DuplicatedStopRequestException.prototype);
525
- }
526
- }
527
- export class PipelineExecutionNotStoppableException extends __BaseException {
528
- constructor(opts) {
529
- super({
530
- name: "PipelineExecutionNotStoppableException",
531
- $fault: "client",
532
- ...opts,
533
- });
534
- this.name = "PipelineExecutionNotStoppableException";
535
- this.$fault = "client";
536
- Object.setPrototypeOf(this, PipelineExecutionNotStoppableException.prototype);
537
- }
538
- }
539
- export class RequestFailedException extends __BaseException {
540
- constructor(opts) {
541
- super({
542
- name: "RequestFailedException",
543
- $fault: "client",
544
- ...opts,
545
- });
546
- this.name = "RequestFailedException";
547
- this.$fault = "client";
548
- Object.setPrototypeOf(this, RequestFailedException.prototype);
549
- }
550
- }
551
- export const AcknowledgeJobInputFilterSensitiveLog = (obj) => ({
552
- ...obj,
553
- });
554
- export const AcknowledgeJobOutputFilterSensitiveLog = (obj) => ({
555
- ...obj,
556
- });
557
- export const AcknowledgeThirdPartyJobInputFilterSensitiveLog = (obj) => ({
558
- ...obj,
559
- });
560
- export const AcknowledgeThirdPartyJobOutputFilterSensitiveLog = (obj) => ({
561
- ...obj,
562
- });
563
- export const ActionConfigurationFilterSensitiveLog = (obj) => ({
564
- ...obj,
565
- });
566
- export const ActionConfigurationPropertyFilterSensitiveLog = (obj) => ({
567
- ...obj,
568
- });
569
- export const ActionContextFilterSensitiveLog = (obj) => ({
570
- ...obj,
571
- });
572
- export const ActionTypeIdFilterSensitiveLog = (obj) => ({
573
- ...obj,
574
- });
575
- export const InputArtifactFilterSensitiveLog = (obj) => ({
576
- ...obj,
577
- });
578
- export const OutputArtifactFilterSensitiveLog = (obj) => ({
579
- ...obj,
580
- });
581
- export const ActionDeclarationFilterSensitiveLog = (obj) => ({
582
- ...obj,
583
- });
584
- export const ErrorDetailsFilterSensitiveLog = (obj) => ({
585
- ...obj,
586
- });
587
- export const ActionExecutionFilterSensitiveLog = (obj) => ({
588
- ...obj,
589
- });
590
- export const S3LocationFilterSensitiveLog = (obj) => ({
591
- ...obj,
592
- });
593
- export const ArtifactDetailFilterSensitiveLog = (obj) => ({
594
- ...obj,
595
- });
596
- export const ActionExecutionInputFilterSensitiveLog = (obj) => ({
597
- ...obj,
598
- });
599
- export const ActionExecutionResultFilterSensitiveLog = (obj) => ({
600
- ...obj,
601
- });
602
- export const ActionExecutionOutputFilterSensitiveLog = (obj) => ({
603
- ...obj,
604
- });
605
- export const ActionExecutionDetailFilterSensitiveLog = (obj) => ({
606
- ...obj,
607
- });
608
- export const ActionExecutionFilterFilterSensitiveLog = (obj) => ({
609
- ...obj,
610
- });
611
- export const ActionRevisionFilterSensitiveLog = (obj) => ({
612
- ...obj,
613
- });
614
- export const ActionStateFilterSensitiveLog = (obj) => ({
615
- ...obj,
616
- });
617
- export const ArtifactDetailsFilterSensitiveLog = (obj) => ({
618
- ...obj,
619
- });
620
- export const ActionTypeSettingsFilterSensitiveLog = (obj) => ({
621
- ...obj,
622
- });
623
- export const ActionTypeFilterSensitiveLog = (obj) => ({
624
- ...obj,
625
- });
626
- export const ActionTypeArtifactDetailsFilterSensitiveLog = (obj) => ({
627
- ...obj,
628
- });
629
- export const JobWorkerExecutorConfigurationFilterSensitiveLog = (obj) => ({
630
- ...obj,
631
- });
632
- export const LambdaExecutorConfigurationFilterSensitiveLog = (obj) => ({
633
- ...obj,
634
- });
635
- export const ExecutorConfigurationFilterSensitiveLog = (obj) => ({
636
- ...obj,
637
- });
638
- export const ActionTypeExecutorFilterSensitiveLog = (obj) => ({
639
- ...obj,
640
- });
641
- export const ActionTypeIdentifierFilterSensitiveLog = (obj) => ({
642
- ...obj,
643
- });
644
- export const ActionTypePermissionsFilterSensitiveLog = (obj) => ({
645
- ...obj,
646
- });
647
- export const ActionTypePropertyFilterSensitiveLog = (obj) => ({
648
- ...obj,
649
- });
650
- export const ActionTypeUrlsFilterSensitiveLog = (obj) => ({
651
- ...obj,
652
- });
653
- export const ActionTypeDeclarationFilterSensitiveLog = (obj) => ({
654
- ...obj,
655
- });
656
- export const ApprovalResultFilterSensitiveLog = (obj) => ({
657
- ...obj,
658
- });
659
- export const S3ArtifactLocationFilterSensitiveLog = (obj) => ({
660
- ...obj,
661
- });
662
- export const ArtifactLocationFilterSensitiveLog = (obj) => ({
663
- ...obj,
664
- });
665
- export const ArtifactFilterSensitiveLog = (obj) => ({
666
- ...obj,
667
- });
668
- export const ArtifactRevisionFilterSensitiveLog = (obj) => ({
669
- ...obj,
670
- });
671
- export const EncryptionKeyFilterSensitiveLog = (obj) => ({
672
- ...obj,
673
- });
674
- export const ArtifactStoreFilterSensitiveLog = (obj) => ({
675
- ...obj,
676
- });
677
- export const AWSSessionCredentialsFilterSensitiveLog = (obj) => ({
678
- ...obj,
679
- ...(obj.accessKeyId && { accessKeyId: SENSITIVE_STRING }),
680
- ...(obj.secretAccessKey && { secretAccessKey: SENSITIVE_STRING }),
681
- ...(obj.sessionToken && { sessionToken: SENSITIVE_STRING }),
682
- });
683
- export const BlockerDeclarationFilterSensitiveLog = (obj) => ({
684
- ...obj,
685
- });
686
- export const TagFilterSensitiveLog = (obj) => ({
687
- ...obj,
688
- });
689
- export const CreateCustomActionTypeInputFilterSensitiveLog = (obj) => ({
690
- ...obj,
691
- });
692
- export const CreateCustomActionTypeOutputFilterSensitiveLog = (obj) => ({
693
- ...obj,
694
- });
695
- export const StageDeclarationFilterSensitiveLog = (obj) => ({
696
- ...obj,
697
- });
698
- export const PipelineDeclarationFilterSensitiveLog = (obj) => ({
699
- ...obj,
700
- });
701
- export const CreatePipelineInputFilterSensitiveLog = (obj) => ({
702
- ...obj,
703
- });
704
- export const CreatePipelineOutputFilterSensitiveLog = (obj) => ({
705
- ...obj,
706
- });
707
- export const DeleteCustomActionTypeInputFilterSensitiveLog = (obj) => ({
708
- ...obj,
709
- });
710
- export const DeletePipelineInputFilterSensitiveLog = (obj) => ({
711
- ...obj,
712
- });
713
- export const DeleteWebhookInputFilterSensitiveLog = (obj) => ({
714
- ...obj,
715
- });
716
- export const DeleteWebhookOutputFilterSensitiveLog = (obj) => ({
717
- ...obj,
718
- });
719
- export const DeregisterWebhookWithThirdPartyInputFilterSensitiveLog = (obj) => ({
720
- ...obj,
721
- });
722
- export const DeregisterWebhookWithThirdPartyOutputFilterSensitiveLog = (obj) => ({
723
- ...obj,
724
- });
725
- export const DisableStageTransitionInputFilterSensitiveLog = (obj) => ({
726
- ...obj,
727
- });
728
- export const EnableStageTransitionInputFilterSensitiveLog = (obj) => ({
729
- ...obj,
730
- });
731
- export const GetActionTypeInputFilterSensitiveLog = (obj) => ({
732
- ...obj,
733
- });
734
- export const GetActionTypeOutputFilterSensitiveLog = (obj) => ({
735
- ...obj,
736
- });
737
- export const GetJobDetailsInputFilterSensitiveLog = (obj) => ({
738
- ...obj,
739
- });
740
- export const StageContextFilterSensitiveLog = (obj) => ({
741
- ...obj,
742
- });
743
- export const PipelineContextFilterSensitiveLog = (obj) => ({
744
- ...obj,
745
- });
746
- export const JobDataFilterSensitiveLog = (obj) => ({
747
- ...obj,
748
- ...(obj.artifactCredentials && { artifactCredentials: SENSITIVE_STRING }),
749
- });
750
- export const JobDetailsFilterSensitiveLog = (obj) => ({
751
- ...obj,
752
- ...(obj.data && { data: JobDataFilterSensitiveLog(obj.data) }),
753
- });
754
- export const GetJobDetailsOutputFilterSensitiveLog = (obj) => ({
755
- ...obj,
756
- ...(obj.jobDetails && { jobDetails: JobDetailsFilterSensitiveLog(obj.jobDetails) }),
757
- });
758
- export const GetPipelineInputFilterSensitiveLog = (obj) => ({
759
- ...obj,
760
- });
761
- export const PipelineMetadataFilterSensitiveLog = (obj) => ({
762
- ...obj,
763
- });
764
- export const GetPipelineOutputFilterSensitiveLog = (obj) => ({
765
- ...obj,
766
- });
767
- export const GetPipelineExecutionInputFilterSensitiveLog = (obj) => ({
768
- ...obj,
769
- });
770
- export const PipelineExecutionFilterSensitiveLog = (obj) => ({
771
- ...obj,
772
- });
773
- export const GetPipelineExecutionOutputFilterSensitiveLog = (obj) => ({
774
- ...obj,
775
- });
776
- export const GetPipelineStateInputFilterSensitiveLog = (obj) => ({
777
- ...obj,
778
- });
779
- export const StageExecutionFilterSensitiveLog = (obj) => ({
780
- ...obj,
781
- });
782
- export const TransitionStateFilterSensitiveLog = (obj) => ({
783
- ...obj,
784
- });
785
- export const StageStateFilterSensitiveLog = (obj) => ({
786
- ...obj,
787
- });
788
- export const GetPipelineStateOutputFilterSensitiveLog = (obj) => ({
789
- ...obj,
790
- });
791
- export const GetThirdPartyJobDetailsInputFilterSensitiveLog = (obj) => ({
792
- ...obj,
793
- });
794
- export const ThirdPartyJobDataFilterSensitiveLog = (obj) => ({
795
- ...obj,
796
- ...(obj.artifactCredentials && { artifactCredentials: SENSITIVE_STRING }),
797
- });
798
- export const ThirdPartyJobDetailsFilterSensitiveLog = (obj) => ({
799
- ...obj,
800
- ...(obj.data && { data: ThirdPartyJobDataFilterSensitiveLog(obj.data) }),
801
- });
802
- export const GetThirdPartyJobDetailsOutputFilterSensitiveLog = (obj) => ({
803
- ...obj,
804
- ...(obj.jobDetails && { jobDetails: ThirdPartyJobDetailsFilterSensitiveLog(obj.jobDetails) }),
805
- });
806
- export const ListActionExecutionsInputFilterSensitiveLog = (obj) => ({
807
- ...obj,
808
- });
809
- export const ListActionExecutionsOutputFilterSensitiveLog = (obj) => ({
810
- ...obj,
811
- });
812
- export const ListActionTypesInputFilterSensitiveLog = (obj) => ({
813
- ...obj,
814
- });
815
- export const ListActionTypesOutputFilterSensitiveLog = (obj) => ({
816
- ...obj,
817
- });
818
- export const ListPipelineExecutionsInputFilterSensitiveLog = (obj) => ({
819
- ...obj,
820
- });
821
- export const SourceRevisionFilterSensitiveLog = (obj) => ({
822
- ...obj,
823
- });
824
- export const StopExecutionTriggerFilterSensitiveLog = (obj) => ({
825
- ...obj,
826
- });
827
- export const ExecutionTriggerFilterSensitiveLog = (obj) => ({
828
- ...obj,
829
- });
830
- export const PipelineExecutionSummaryFilterSensitiveLog = (obj) => ({
831
- ...obj,
832
- });
833
- export const ListPipelineExecutionsOutputFilterSensitiveLog = (obj) => ({
834
- ...obj,
835
- });
836
- export const ListPipelinesInputFilterSensitiveLog = (obj) => ({
837
- ...obj,
838
- });
839
- export const PipelineSummaryFilterSensitiveLog = (obj) => ({
840
- ...obj,
841
- });
842
- export const ListPipelinesOutputFilterSensitiveLog = (obj) => ({
843
- ...obj,
844
- });
845
- export const ListTagsForResourceInputFilterSensitiveLog = (obj) => ({
846
- ...obj,
847
- });
848
- export const ListTagsForResourceOutputFilterSensitiveLog = (obj) => ({
849
- ...obj,
850
- });
851
- export const ListWebhooksInputFilterSensitiveLog = (obj) => ({
852
- ...obj,
853
- });
854
- export const WebhookAuthConfigurationFilterSensitiveLog = (obj) => ({
855
- ...obj,
856
- });
857
- export const WebhookFilterRuleFilterSensitiveLog = (obj) => ({
858
- ...obj,
859
- });
860
- export const WebhookDefinitionFilterSensitiveLog = (obj) => ({
861
- ...obj,
862
- });
863
- export const ListWebhookItemFilterSensitiveLog = (obj) => ({
864
- ...obj,
865
- });
866
- export const ListWebhooksOutputFilterSensitiveLog = (obj) => ({
867
- ...obj,
868
- });
869
- export const PollForJobsInputFilterSensitiveLog = (obj) => ({
870
- ...obj,
871
- });
872
- export const JobFilterSensitiveLog = (obj) => ({
873
- ...obj,
874
- ...(obj.data && { data: JobDataFilterSensitiveLog(obj.data) }),
875
- });
876
- export const PollForJobsOutputFilterSensitiveLog = (obj) => ({
877
- ...obj,
878
- ...(obj.jobs && { jobs: obj.jobs.map((item) => JobFilterSensitiveLog(item)) }),
879
- });
880
- export const PollForThirdPartyJobsInputFilterSensitiveLog = (obj) => ({
881
- ...obj,
882
- });
883
- export const ThirdPartyJobFilterSensitiveLog = (obj) => ({
884
- ...obj,
885
- });
886
- export const PollForThirdPartyJobsOutputFilterSensitiveLog = (obj) => ({
887
- ...obj,
888
- });
889
- export const PutActionRevisionInputFilterSensitiveLog = (obj) => ({
890
- ...obj,
891
- });
892
- export const PutActionRevisionOutputFilterSensitiveLog = (obj) => ({
893
- ...obj,
894
- });
895
- export const PutApprovalResultInputFilterSensitiveLog = (obj) => ({
896
- ...obj,
897
- });
898
- export const PutApprovalResultOutputFilterSensitiveLog = (obj) => ({
899
- ...obj,
900
- });
901
- export const FailureDetailsFilterSensitiveLog = (obj) => ({
902
- ...obj,
903
- });
904
- export const PutJobFailureResultInputFilterSensitiveLog = (obj) => ({
905
- ...obj,
906
- });
907
- export const CurrentRevisionFilterSensitiveLog = (obj) => ({
908
- ...obj,
909
- });
910
- export const ExecutionDetailsFilterSensitiveLog = (obj) => ({
911
- ...obj,
912
- });
913
- export const PutJobSuccessResultInputFilterSensitiveLog = (obj) => ({
914
- ...obj,
915
- });
916
- export const PutThirdPartyJobFailureResultInputFilterSensitiveLog = (obj) => ({
917
- ...obj,
918
- });
919
- export const PutThirdPartyJobSuccessResultInputFilterSensitiveLog = (obj) => ({
920
- ...obj,
921
- });
922
- export const PutWebhookInputFilterSensitiveLog = (obj) => ({
923
- ...obj,
924
- });
925
- export const PutWebhookOutputFilterSensitiveLog = (obj) => ({
926
- ...obj,
927
- });
928
- export const RegisterWebhookWithThirdPartyInputFilterSensitiveLog = (obj) => ({
929
- ...obj,
930
- });
931
- export const RegisterWebhookWithThirdPartyOutputFilterSensitiveLog = (obj) => ({
932
- ...obj,
933
- });
934
- export const RetryStageExecutionInputFilterSensitiveLog = (obj) => ({
935
- ...obj,
936
- });
937
- export const RetryStageExecutionOutputFilterSensitiveLog = (obj) => ({
938
- ...obj,
939
- });
940
- export const StartPipelineExecutionInputFilterSensitiveLog = (obj) => ({
941
- ...obj,
942
- });
943
- export const StartPipelineExecutionOutputFilterSensitiveLog = (obj) => ({
944
- ...obj,
945
- });
946
- export const StopPipelineExecutionInputFilterSensitiveLog = (obj) => ({
947
- ...obj,
948
- });
949
- export const StopPipelineExecutionOutputFilterSensitiveLog = (obj) => ({
950
- ...obj,
951
- });
952
- export const TagResourceInputFilterSensitiveLog = (obj) => ({
953
- ...obj,
954
- });
955
- export const TagResourceOutputFilterSensitiveLog = (obj) => ({
956
- ...obj,
957
- });
958
- export const UntagResourceInputFilterSensitiveLog = (obj) => ({
959
- ...obj,
960
- });
961
- export const UntagResourceOutputFilterSensitiveLog = (obj) => ({
962
- ...obj,
963
- });
964
- export const UpdateActionTypeInputFilterSensitiveLog = (obj) => ({
965
- ...obj,
966
- });
967
- export const UpdatePipelineInputFilterSensitiveLog = (obj) => ({
968
- ...obj,
969
- });
970
- export const UpdatePipelineOutputFilterSensitiveLog = (obj) => ({
971
- ...obj,
972
- });
504
+ var StageNotRetryableException = (function (_super) {
505
+ __extends(StageNotRetryableException, _super);
506
+ function StageNotRetryableException(opts) {
507
+ var _this = _super.call(this, __assign({ name: "StageNotRetryableException", $fault: "client" }, opts)) || this;
508
+ _this.name = "StageNotRetryableException";
509
+ _this.$fault = "client";
510
+ Object.setPrototypeOf(_this, StageNotRetryableException.prototype);
511
+ return _this;
512
+ }
513
+ return StageNotRetryableException;
514
+ }(__BaseException));
515
+ export { StageNotRetryableException };
516
+ var DuplicatedStopRequestException = (function (_super) {
517
+ __extends(DuplicatedStopRequestException, _super);
518
+ function DuplicatedStopRequestException(opts) {
519
+ var _this = _super.call(this, __assign({ name: "DuplicatedStopRequestException", $fault: "client" }, opts)) || this;
520
+ _this.name = "DuplicatedStopRequestException";
521
+ _this.$fault = "client";
522
+ Object.setPrototypeOf(_this, DuplicatedStopRequestException.prototype);
523
+ return _this;
524
+ }
525
+ return DuplicatedStopRequestException;
526
+ }(__BaseException));
527
+ export { DuplicatedStopRequestException };
528
+ var PipelineExecutionNotStoppableException = (function (_super) {
529
+ __extends(PipelineExecutionNotStoppableException, _super);
530
+ function PipelineExecutionNotStoppableException(opts) {
531
+ var _this = _super.call(this, __assign({ name: "PipelineExecutionNotStoppableException", $fault: "client" }, opts)) || this;
532
+ _this.name = "PipelineExecutionNotStoppableException";
533
+ _this.$fault = "client";
534
+ Object.setPrototypeOf(_this, PipelineExecutionNotStoppableException.prototype);
535
+ return _this;
536
+ }
537
+ return PipelineExecutionNotStoppableException;
538
+ }(__BaseException));
539
+ export { PipelineExecutionNotStoppableException };
540
+ var RequestFailedException = (function (_super) {
541
+ __extends(RequestFailedException, _super);
542
+ function RequestFailedException(opts) {
543
+ var _this = _super.call(this, __assign({ name: "RequestFailedException", $fault: "client" }, opts)) || this;
544
+ _this.name = "RequestFailedException";
545
+ _this.$fault = "client";
546
+ Object.setPrototypeOf(_this, RequestFailedException.prototype);
547
+ return _this;
548
+ }
549
+ return RequestFailedException;
550
+ }(__BaseException));
551
+ export { RequestFailedException };
552
+ export var AcknowledgeJobInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
553
+ export var AcknowledgeJobOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
554
+ export var AcknowledgeThirdPartyJobInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
555
+ export var AcknowledgeThirdPartyJobOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
556
+ export var ActionConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
557
+ export var ActionConfigurationPropertyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
558
+ export var ActionContextFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
559
+ export var ActionTypeIdFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
560
+ export var InputArtifactFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
561
+ export var OutputArtifactFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
562
+ export var ActionDeclarationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
563
+ export var ErrorDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
564
+ export var ActionExecutionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
565
+ export var S3LocationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
566
+ export var ArtifactDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
567
+ export var ActionExecutionInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
568
+ export var ActionExecutionResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
569
+ export var ActionExecutionOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
570
+ export var ActionExecutionDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
571
+ export var ActionExecutionFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
572
+ export var ActionRevisionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
573
+ export var ActionStateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
574
+ export var ArtifactDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
575
+ export var ActionTypeSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
576
+ export var ActionTypeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
577
+ export var ActionTypeArtifactDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
578
+ export var JobWorkerExecutorConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
579
+ export var LambdaExecutorConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
580
+ export var ExecutorConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
581
+ export var ActionTypeExecutorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
582
+ export var ActionTypeIdentifierFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
583
+ export var ActionTypePermissionsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
584
+ export var ActionTypePropertyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
585
+ export var ActionTypeUrlsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
586
+ export var ActionTypeDeclarationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
587
+ export var ApprovalResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
588
+ export var S3ArtifactLocationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
589
+ export var ArtifactLocationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
590
+ export var ArtifactFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
591
+ export var ArtifactRevisionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
592
+ export var EncryptionKeyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
593
+ export var ArtifactStoreFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
594
+ export var AWSSessionCredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.accessKeyId && { accessKeyId: SENSITIVE_STRING })), (obj.secretAccessKey && { secretAccessKey: SENSITIVE_STRING })), (obj.sessionToken && { sessionToken: SENSITIVE_STRING }))); };
595
+ export var BlockerDeclarationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
596
+ export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
597
+ export var CreateCustomActionTypeInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
598
+ export var CreateCustomActionTypeOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
599
+ export var StageDeclarationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
600
+ export var PipelineDeclarationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
601
+ export var CreatePipelineInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
602
+ export var CreatePipelineOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
603
+ export var DeleteCustomActionTypeInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
604
+ export var DeletePipelineInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
605
+ export var DeleteWebhookInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
606
+ export var DeleteWebhookOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
607
+ export var DeregisterWebhookWithThirdPartyInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
608
+ export var DeregisterWebhookWithThirdPartyOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
609
+ export var DisableStageTransitionInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
610
+ export var EnableStageTransitionInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
611
+ export var GetActionTypeInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
612
+ export var GetActionTypeOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
613
+ export var GetJobDetailsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
614
+ export var StageContextFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
615
+ export var PipelineContextFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
616
+ export var JobDataFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.artifactCredentials && { artifactCredentials: SENSITIVE_STRING }))); };
617
+ export var JobDetailsFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.data && { data: JobDataFilterSensitiveLog(obj.data) }))); };
618
+ export var GetJobDetailsOutputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.jobDetails && { jobDetails: JobDetailsFilterSensitiveLog(obj.jobDetails) }))); };
619
+ export var GetPipelineInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
620
+ export var PipelineMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
621
+ export var GetPipelineOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
622
+ export var GetPipelineExecutionInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
623
+ export var PipelineExecutionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
624
+ export var GetPipelineExecutionOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
625
+ export var GetPipelineStateInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
626
+ export var StageExecutionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
627
+ export var TransitionStateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
628
+ export var StageStateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
629
+ export var GetPipelineStateOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
630
+ export var GetThirdPartyJobDetailsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
631
+ export var ThirdPartyJobDataFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.artifactCredentials && { artifactCredentials: SENSITIVE_STRING }))); };
632
+ export var ThirdPartyJobDetailsFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.data && { data: ThirdPartyJobDataFilterSensitiveLog(obj.data) }))); };
633
+ export var GetThirdPartyJobDetailsOutputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.jobDetails && { jobDetails: ThirdPartyJobDetailsFilterSensitiveLog(obj.jobDetails) }))); };
634
+ export var ListActionExecutionsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
635
+ export var ListActionExecutionsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
636
+ export var ListActionTypesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
637
+ export var ListActionTypesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
638
+ export var ListPipelineExecutionsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
639
+ export var SourceRevisionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
640
+ export var StopExecutionTriggerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
641
+ export var ExecutionTriggerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
642
+ export var PipelineExecutionSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
643
+ export var ListPipelineExecutionsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
644
+ export var ListPipelinesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
645
+ export var PipelineSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
646
+ export var ListPipelinesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
647
+ export var ListTagsForResourceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
648
+ export var ListTagsForResourceOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
649
+ export var ListWebhooksInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
650
+ export var WebhookAuthConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
651
+ export var WebhookFilterRuleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
652
+ export var WebhookDefinitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
653
+ export var ListWebhookItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
654
+ export var ListWebhooksOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
655
+ export var PollForJobsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
656
+ export var JobFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.data && { data: JobDataFilterSensitiveLog(obj.data) }))); };
657
+ export var PollForJobsOutputFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.jobs && { jobs: obj.jobs.map(function (item) { return JobFilterSensitiveLog(item); }) }))); };
658
+ export var PollForThirdPartyJobsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
659
+ export var ThirdPartyJobFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
660
+ export var PollForThirdPartyJobsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
661
+ export var PutActionRevisionInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
662
+ export var PutActionRevisionOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
663
+ export var PutApprovalResultInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
664
+ export var PutApprovalResultOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
665
+ export var FailureDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
666
+ export var PutJobFailureResultInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
667
+ export var CurrentRevisionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
668
+ export var ExecutionDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
669
+ export var PutJobSuccessResultInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
670
+ export var PutThirdPartyJobFailureResultInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
671
+ export var PutThirdPartyJobSuccessResultInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
672
+ export var PutWebhookInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
673
+ export var PutWebhookOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
674
+ export var RegisterWebhookWithThirdPartyInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
675
+ export var RegisterWebhookWithThirdPartyOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
676
+ export var RetryStageExecutionInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
677
+ export var RetryStageExecutionOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
678
+ export var StartPipelineExecutionInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
679
+ export var StartPipelineExecutionOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
680
+ export var StopPipelineExecutionInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
681
+ export var StopPipelineExecutionOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
682
+ export var TagResourceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
683
+ export var TagResourceOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
684
+ export var UntagResourceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
685
+ export var UntagResourceOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
686
+ export var UpdateActionTypeInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
687
+ export var UpdatePipelineInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
688
+ export var UpdatePipelineOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };