@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.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/protocols/Aws_json1_1.js +2 -2
- package/dist-es/CodePipeline.js +165 -158
- package/dist-es/CodePipelineClient.js +28 -22
- package/dist-es/commands/AcknowledgeJobCommand.js +28 -21
- package/dist-es/commands/AcknowledgeThirdPartyJobCommand.js +28 -21
- package/dist-es/commands/CreateCustomActionTypeCommand.js +28 -21
- package/dist-es/commands/CreatePipelineCommand.js +28 -21
- package/dist-es/commands/DeleteCustomActionTypeCommand.js +29 -22
- package/dist-es/commands/DeletePipelineCommand.js +29 -22
- package/dist-es/commands/DeleteWebhookCommand.js +28 -21
- package/dist-es/commands/DeregisterWebhookWithThirdPartyCommand.js +28 -21
- package/dist-es/commands/DisableStageTransitionCommand.js +29 -22
- package/dist-es/commands/EnableStageTransitionCommand.js +29 -22
- package/dist-es/commands/GetActionTypeCommand.js +28 -21
- package/dist-es/commands/GetJobDetailsCommand.js +28 -21
- package/dist-es/commands/GetPipelineCommand.js +28 -21
- package/dist-es/commands/GetPipelineExecutionCommand.js +28 -21
- package/dist-es/commands/GetPipelineStateCommand.js +28 -21
- package/dist-es/commands/GetThirdPartyJobDetailsCommand.js +28 -21
- package/dist-es/commands/ListActionExecutionsCommand.js +28 -21
- package/dist-es/commands/ListActionTypesCommand.js +28 -21
- package/dist-es/commands/ListPipelineExecutionsCommand.js +28 -21
- package/dist-es/commands/ListPipelinesCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/ListWebhooksCommand.js +28 -21
- package/dist-es/commands/PollForJobsCommand.js +28 -21
- package/dist-es/commands/PollForThirdPartyJobsCommand.js +28 -21
- package/dist-es/commands/PutActionRevisionCommand.js +28 -21
- package/dist-es/commands/PutApprovalResultCommand.js +28 -21
- package/dist-es/commands/PutJobFailureResultCommand.js +29 -22
- package/dist-es/commands/PutJobSuccessResultCommand.js +29 -22
- package/dist-es/commands/PutThirdPartyJobFailureResultCommand.js +29 -22
- package/dist-es/commands/PutThirdPartyJobSuccessResultCommand.js +29 -22
- package/dist-es/commands/PutWebhookCommand.js +28 -21
- package/dist-es/commands/RegisterWebhookWithThirdPartyCommand.js +28 -21
- package/dist-es/commands/RetryStageExecutionCommand.js +28 -21
- package/dist-es/commands/StartPipelineExecutionCommand.js +28 -21
- package/dist-es/commands/StopPipelineExecutionCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateActionTypeCommand.js +29 -22
- package/dist-es/commands/UpdatePipelineCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/CodePipelineServiceException.js +10 -5
- package/dist-es/models/models_0.js +570 -854
- package/dist-es/pagination/ListActionExecutionsPaginator.js +68 -25
- package/dist-es/pagination/ListActionTypesPaginator.js +67 -24
- package/dist-es/pagination/ListPipelineExecutionsPaginator.js +68 -25
- package/dist-es/pagination/ListPipelinesPaginator.js +68 -25
- package/dist-es/pagination/ListTagsForResourcePaginator.js +68 -25
- package/dist-es/pagination/ListWebhooksPaginator.js +68 -25
- package/dist-es/protocols/Aws_json1_1.js +3746 -3101
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- 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
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
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
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
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
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
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
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
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
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
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
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
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
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
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
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
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
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
}
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
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
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
}
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
}
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
}
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
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
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
}
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
}
|
|
551
|
-
export
|
|
552
|
-
|
|
553
|
-
});
|
|
554
|
-
export
|
|
555
|
-
|
|
556
|
-
});
|
|
557
|
-
export
|
|
558
|
-
|
|
559
|
-
});
|
|
560
|
-
export
|
|
561
|
-
|
|
562
|
-
});
|
|
563
|
-
export
|
|
564
|
-
|
|
565
|
-
});
|
|
566
|
-
export
|
|
567
|
-
|
|
568
|
-
});
|
|
569
|
-
export
|
|
570
|
-
|
|
571
|
-
});
|
|
572
|
-
export
|
|
573
|
-
|
|
574
|
-
});
|
|
575
|
-
export
|
|
576
|
-
|
|
577
|
-
});
|
|
578
|
-
export
|
|
579
|
-
|
|
580
|
-
});
|
|
581
|
-
export
|
|
582
|
-
|
|
583
|
-
});
|
|
584
|
-
export
|
|
585
|
-
|
|
586
|
-
});
|
|
587
|
-
export
|
|
588
|
-
|
|
589
|
-
});
|
|
590
|
-
export
|
|
591
|
-
|
|
592
|
-
});
|
|
593
|
-
export
|
|
594
|
-
|
|
595
|
-
});
|
|
596
|
-
export
|
|
597
|
-
|
|
598
|
-
});
|
|
599
|
-
export
|
|
600
|
-
|
|
601
|
-
});
|
|
602
|
-
export
|
|
603
|
-
|
|
604
|
-
});
|
|
605
|
-
export
|
|
606
|
-
|
|
607
|
-
});
|
|
608
|
-
export
|
|
609
|
-
|
|
610
|
-
});
|
|
611
|
-
export
|
|
612
|
-
|
|
613
|
-
});
|
|
614
|
-
export
|
|
615
|
-
|
|
616
|
-
});
|
|
617
|
-
export
|
|
618
|
-
|
|
619
|
-
});
|
|
620
|
-
export
|
|
621
|
-
|
|
622
|
-
});
|
|
623
|
-
export
|
|
624
|
-
|
|
625
|
-
});
|
|
626
|
-
export
|
|
627
|
-
|
|
628
|
-
});
|
|
629
|
-
export
|
|
630
|
-
|
|
631
|
-
});
|
|
632
|
-
export
|
|
633
|
-
|
|
634
|
-
});
|
|
635
|
-
export
|
|
636
|
-
|
|
637
|
-
});
|
|
638
|
-
export
|
|
639
|
-
|
|
640
|
-
});
|
|
641
|
-
export
|
|
642
|
-
|
|
643
|
-
});
|
|
644
|
-
export
|
|
645
|
-
|
|
646
|
-
});
|
|
647
|
-
export
|
|
648
|
-
|
|
649
|
-
});
|
|
650
|
-
export
|
|
651
|
-
|
|
652
|
-
});
|
|
653
|
-
export
|
|
654
|
-
|
|
655
|
-
});
|
|
656
|
-
export
|
|
657
|
-
|
|
658
|
-
});
|
|
659
|
-
export
|
|
660
|
-
|
|
661
|
-
});
|
|
662
|
-
export
|
|
663
|
-
|
|
664
|
-
});
|
|
665
|
-
export
|
|
666
|
-
|
|
667
|
-
});
|
|
668
|
-
export
|
|
669
|
-
|
|
670
|
-
});
|
|
671
|
-
export
|
|
672
|
-
|
|
673
|
-
});
|
|
674
|
-
export
|
|
675
|
-
|
|
676
|
-
});
|
|
677
|
-
export
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
});
|
|
683
|
-
export
|
|
684
|
-
|
|
685
|
-
});
|
|
686
|
-
export
|
|
687
|
-
|
|
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)); };
|