@aws-sdk/client-codecommit 3.52.0 → 3.54.1
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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/CodeCommitServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +1879 -4
- package/dist-cjs/models/models_1.js +536 -2
- package/dist-cjs/protocols/Aws_json1_1.js +2014 -8154
- package/dist-es/index.js +1 -0
- package/dist-es/models/CodeCommitServiceException.js +12 -0
- package/dist-es/models/models_0.js +1730 -1
- package/dist-es/models/models_1.js +494 -1
- package/dist-es/protocols/Aws_json1_1.js +3704 -8096
- package/dist-types/CodeCommitClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/CodeCommitServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +722 -721
- package/dist-types/models/models_1.d.ts +207 -206
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/CodeCommitClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/CodeCommitServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +578 -577
- package/dist-types/ts3.4/models/models_1.d.ts +166 -165
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { CodeCommitServiceException as __BaseException } from "./CodeCommitServiceException";
|
|
2
3
|
export var OrderEnum;
|
|
3
4
|
(function (OrderEnum) {
|
|
4
5
|
OrderEnum["ASCENDING"] = "ascending";
|
|
@@ -29,6 +30,18 @@ export var ListRepositoriesForApprovalRuleTemplateOutput;
|
|
|
29
30
|
(function (ListRepositoriesForApprovalRuleTemplateOutput) {
|
|
30
31
|
ListRepositoriesForApprovalRuleTemplateOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
31
32
|
})(ListRepositoriesForApprovalRuleTemplateOutput || (ListRepositoriesForApprovalRuleTemplateOutput = {}));
|
|
33
|
+
var InvalidResourceArnException = (function (_super) {
|
|
34
|
+
__extends(InvalidResourceArnException, _super);
|
|
35
|
+
function InvalidResourceArnException(opts) {
|
|
36
|
+
var _this = _super.call(this, __assign({ name: "InvalidResourceArnException", $fault: "client" }, opts)) || this;
|
|
37
|
+
_this.name = "InvalidResourceArnException";
|
|
38
|
+
_this.$fault = "client";
|
|
39
|
+
Object.setPrototypeOf(_this, InvalidResourceArnException.prototype);
|
|
40
|
+
return _this;
|
|
41
|
+
}
|
|
42
|
+
return InvalidResourceArnException;
|
|
43
|
+
}(__BaseException));
|
|
44
|
+
export { InvalidResourceArnException };
|
|
32
45
|
export var ListTagsForResourceInput;
|
|
33
46
|
(function (ListTagsForResourceInput) {
|
|
34
47
|
ListTagsForResourceInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -37,6 +50,30 @@ export var ListTagsForResourceOutput;
|
|
|
37
50
|
(function (ListTagsForResourceOutput) {
|
|
38
51
|
ListTagsForResourceOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
39
52
|
})(ListTagsForResourceOutput || (ListTagsForResourceOutput = {}));
|
|
53
|
+
var ResourceArnRequiredException = (function (_super) {
|
|
54
|
+
__extends(ResourceArnRequiredException, _super);
|
|
55
|
+
function ResourceArnRequiredException(opts) {
|
|
56
|
+
var _this = _super.call(this, __assign({ name: "ResourceArnRequiredException", $fault: "client" }, opts)) || this;
|
|
57
|
+
_this.name = "ResourceArnRequiredException";
|
|
58
|
+
_this.$fault = "client";
|
|
59
|
+
Object.setPrototypeOf(_this, ResourceArnRequiredException.prototype);
|
|
60
|
+
return _this;
|
|
61
|
+
}
|
|
62
|
+
return ResourceArnRequiredException;
|
|
63
|
+
}(__BaseException));
|
|
64
|
+
export { ResourceArnRequiredException };
|
|
65
|
+
var InvalidTargetBranchException = (function (_super) {
|
|
66
|
+
__extends(InvalidTargetBranchException, _super);
|
|
67
|
+
function InvalidTargetBranchException(opts) {
|
|
68
|
+
var _this = _super.call(this, __assign({ name: "InvalidTargetBranchException", $fault: "client" }, opts)) || this;
|
|
69
|
+
_this.name = "InvalidTargetBranchException";
|
|
70
|
+
_this.$fault = "client";
|
|
71
|
+
Object.setPrototypeOf(_this, InvalidTargetBranchException.prototype);
|
|
72
|
+
return _this;
|
|
73
|
+
}
|
|
74
|
+
return InvalidTargetBranchException;
|
|
75
|
+
}(__BaseException));
|
|
76
|
+
export { InvalidTargetBranchException };
|
|
40
77
|
export var MergeBranchesByFastForwardInput;
|
|
41
78
|
(function (MergeBranchesByFastForwardInput) {
|
|
42
79
|
MergeBranchesByFastForwardInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -69,6 +106,30 @@ export var MergePullRequestByFastForwardOutput;
|
|
|
69
106
|
(function (MergePullRequestByFastForwardOutput) {
|
|
70
107
|
MergePullRequestByFastForwardOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
71
108
|
})(MergePullRequestByFastForwardOutput || (MergePullRequestByFastForwardOutput = {}));
|
|
109
|
+
var PullRequestApprovalRulesNotSatisfiedException = (function (_super) {
|
|
110
|
+
__extends(PullRequestApprovalRulesNotSatisfiedException, _super);
|
|
111
|
+
function PullRequestApprovalRulesNotSatisfiedException(opts) {
|
|
112
|
+
var _this = _super.call(this, __assign({ name: "PullRequestApprovalRulesNotSatisfiedException", $fault: "client" }, opts)) || this;
|
|
113
|
+
_this.name = "PullRequestApprovalRulesNotSatisfiedException";
|
|
114
|
+
_this.$fault = "client";
|
|
115
|
+
Object.setPrototypeOf(_this, PullRequestApprovalRulesNotSatisfiedException.prototype);
|
|
116
|
+
return _this;
|
|
117
|
+
}
|
|
118
|
+
return PullRequestApprovalRulesNotSatisfiedException;
|
|
119
|
+
}(__BaseException));
|
|
120
|
+
export { PullRequestApprovalRulesNotSatisfiedException };
|
|
121
|
+
var TipOfSourceReferenceIsDifferentException = (function (_super) {
|
|
122
|
+
__extends(TipOfSourceReferenceIsDifferentException, _super);
|
|
123
|
+
function TipOfSourceReferenceIsDifferentException(opts) {
|
|
124
|
+
var _this = _super.call(this, __assign({ name: "TipOfSourceReferenceIsDifferentException", $fault: "client" }, opts)) || this;
|
|
125
|
+
_this.name = "TipOfSourceReferenceIsDifferentException";
|
|
126
|
+
_this.$fault = "client";
|
|
127
|
+
Object.setPrototypeOf(_this, TipOfSourceReferenceIsDifferentException.prototype);
|
|
128
|
+
return _this;
|
|
129
|
+
}
|
|
130
|
+
return TipOfSourceReferenceIsDifferentException;
|
|
131
|
+
}(__BaseException));
|
|
132
|
+
export { TipOfSourceReferenceIsDifferentException };
|
|
72
133
|
export var MergePullRequestBySquashInput;
|
|
73
134
|
(function (MergePullRequestBySquashInput) {
|
|
74
135
|
MergePullRequestBySquashInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -85,10 +146,106 @@ export var MergePullRequestByThreeWayOutput;
|
|
|
85
146
|
(function (MergePullRequestByThreeWayOutput) {
|
|
86
147
|
MergePullRequestByThreeWayOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
87
148
|
})(MergePullRequestByThreeWayOutput || (MergePullRequestByThreeWayOutput = {}));
|
|
149
|
+
var InvalidOverrideStatusException = (function (_super) {
|
|
150
|
+
__extends(InvalidOverrideStatusException, _super);
|
|
151
|
+
function InvalidOverrideStatusException(opts) {
|
|
152
|
+
var _this = _super.call(this, __assign({ name: "InvalidOverrideStatusException", $fault: "client" }, opts)) || this;
|
|
153
|
+
_this.name = "InvalidOverrideStatusException";
|
|
154
|
+
_this.$fault = "client";
|
|
155
|
+
Object.setPrototypeOf(_this, InvalidOverrideStatusException.prototype);
|
|
156
|
+
return _this;
|
|
157
|
+
}
|
|
158
|
+
return InvalidOverrideStatusException;
|
|
159
|
+
}(__BaseException));
|
|
160
|
+
export { InvalidOverrideStatusException };
|
|
161
|
+
var OverrideAlreadySetException = (function (_super) {
|
|
162
|
+
__extends(OverrideAlreadySetException, _super);
|
|
163
|
+
function OverrideAlreadySetException(opts) {
|
|
164
|
+
var _this = _super.call(this, __assign({ name: "OverrideAlreadySetException", $fault: "client" }, opts)) || this;
|
|
165
|
+
_this.name = "OverrideAlreadySetException";
|
|
166
|
+
_this.$fault = "client";
|
|
167
|
+
Object.setPrototypeOf(_this, OverrideAlreadySetException.prototype);
|
|
168
|
+
return _this;
|
|
169
|
+
}
|
|
170
|
+
return OverrideAlreadySetException;
|
|
171
|
+
}(__BaseException));
|
|
172
|
+
export { OverrideAlreadySetException };
|
|
88
173
|
export var OverridePullRequestApprovalRulesInput;
|
|
89
174
|
(function (OverridePullRequestApprovalRulesInput) {
|
|
90
175
|
OverridePullRequestApprovalRulesInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
91
176
|
})(OverridePullRequestApprovalRulesInput || (OverridePullRequestApprovalRulesInput = {}));
|
|
177
|
+
var OverrideStatusRequiredException = (function (_super) {
|
|
178
|
+
__extends(OverrideStatusRequiredException, _super);
|
|
179
|
+
function OverrideStatusRequiredException(opts) {
|
|
180
|
+
var _this = _super.call(this, __assign({ name: "OverrideStatusRequiredException", $fault: "client" }, opts)) || this;
|
|
181
|
+
_this.name = "OverrideStatusRequiredException";
|
|
182
|
+
_this.$fault = "client";
|
|
183
|
+
Object.setPrototypeOf(_this, OverrideStatusRequiredException.prototype);
|
|
184
|
+
return _this;
|
|
185
|
+
}
|
|
186
|
+
return OverrideStatusRequiredException;
|
|
187
|
+
}(__BaseException));
|
|
188
|
+
export { OverrideStatusRequiredException };
|
|
189
|
+
var CommentContentRequiredException = (function (_super) {
|
|
190
|
+
__extends(CommentContentRequiredException, _super);
|
|
191
|
+
function CommentContentRequiredException(opts) {
|
|
192
|
+
var _this = _super.call(this, __assign({ name: "CommentContentRequiredException", $fault: "client" }, opts)) || this;
|
|
193
|
+
_this.name = "CommentContentRequiredException";
|
|
194
|
+
_this.$fault = "client";
|
|
195
|
+
Object.setPrototypeOf(_this, CommentContentRequiredException.prototype);
|
|
196
|
+
return _this;
|
|
197
|
+
}
|
|
198
|
+
return CommentContentRequiredException;
|
|
199
|
+
}(__BaseException));
|
|
200
|
+
export { CommentContentRequiredException };
|
|
201
|
+
var CommentContentSizeLimitExceededException = (function (_super) {
|
|
202
|
+
__extends(CommentContentSizeLimitExceededException, _super);
|
|
203
|
+
function CommentContentSizeLimitExceededException(opts) {
|
|
204
|
+
var _this = _super.call(this, __assign({ name: "CommentContentSizeLimitExceededException", $fault: "client" }, opts)) || this;
|
|
205
|
+
_this.name = "CommentContentSizeLimitExceededException";
|
|
206
|
+
_this.$fault = "client";
|
|
207
|
+
Object.setPrototypeOf(_this, CommentContentSizeLimitExceededException.prototype);
|
|
208
|
+
return _this;
|
|
209
|
+
}
|
|
210
|
+
return CommentContentSizeLimitExceededException;
|
|
211
|
+
}(__BaseException));
|
|
212
|
+
export { CommentContentSizeLimitExceededException };
|
|
213
|
+
var InvalidFileLocationException = (function (_super) {
|
|
214
|
+
__extends(InvalidFileLocationException, _super);
|
|
215
|
+
function InvalidFileLocationException(opts) {
|
|
216
|
+
var _this = _super.call(this, __assign({ name: "InvalidFileLocationException", $fault: "client" }, opts)) || this;
|
|
217
|
+
_this.name = "InvalidFileLocationException";
|
|
218
|
+
_this.$fault = "client";
|
|
219
|
+
Object.setPrototypeOf(_this, InvalidFileLocationException.prototype);
|
|
220
|
+
return _this;
|
|
221
|
+
}
|
|
222
|
+
return InvalidFileLocationException;
|
|
223
|
+
}(__BaseException));
|
|
224
|
+
export { InvalidFileLocationException };
|
|
225
|
+
var InvalidFilePositionException = (function (_super) {
|
|
226
|
+
__extends(InvalidFilePositionException, _super);
|
|
227
|
+
function InvalidFilePositionException(opts) {
|
|
228
|
+
var _this = _super.call(this, __assign({ name: "InvalidFilePositionException", $fault: "client" }, opts)) || this;
|
|
229
|
+
_this.name = "InvalidFilePositionException";
|
|
230
|
+
_this.$fault = "client";
|
|
231
|
+
Object.setPrototypeOf(_this, InvalidFilePositionException.prototype);
|
|
232
|
+
return _this;
|
|
233
|
+
}
|
|
234
|
+
return InvalidFilePositionException;
|
|
235
|
+
}(__BaseException));
|
|
236
|
+
export { InvalidFilePositionException };
|
|
237
|
+
var InvalidRelativeFileVersionEnumException = (function (_super) {
|
|
238
|
+
__extends(InvalidRelativeFileVersionEnumException, _super);
|
|
239
|
+
function InvalidRelativeFileVersionEnumException(opts) {
|
|
240
|
+
var _this = _super.call(this, __assign({ name: "InvalidRelativeFileVersionEnumException", $fault: "client" }, opts)) || this;
|
|
241
|
+
_this.name = "InvalidRelativeFileVersionEnumException";
|
|
242
|
+
_this.$fault = "client";
|
|
243
|
+
Object.setPrototypeOf(_this, InvalidRelativeFileVersionEnumException.prototype);
|
|
244
|
+
return _this;
|
|
245
|
+
}
|
|
246
|
+
return InvalidRelativeFileVersionEnumException;
|
|
247
|
+
}(__BaseException));
|
|
248
|
+
export { InvalidRelativeFileVersionEnumException };
|
|
92
249
|
export var PostCommentForComparedCommitInput;
|
|
93
250
|
(function (PostCommentForComparedCommitInput) {
|
|
94
251
|
PostCommentForComparedCommitInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -113,10 +270,58 @@ export var PostCommentReplyOutput;
|
|
|
113
270
|
(function (PostCommentReplyOutput) {
|
|
114
271
|
PostCommentReplyOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
115
272
|
})(PostCommentReplyOutput || (PostCommentReplyOutput = {}));
|
|
273
|
+
var InvalidReactionValueException = (function (_super) {
|
|
274
|
+
__extends(InvalidReactionValueException, _super);
|
|
275
|
+
function InvalidReactionValueException(opts) {
|
|
276
|
+
var _this = _super.call(this, __assign({ name: "InvalidReactionValueException", $fault: "client" }, opts)) || this;
|
|
277
|
+
_this.name = "InvalidReactionValueException";
|
|
278
|
+
_this.$fault = "client";
|
|
279
|
+
Object.setPrototypeOf(_this, InvalidReactionValueException.prototype);
|
|
280
|
+
return _this;
|
|
281
|
+
}
|
|
282
|
+
return InvalidReactionValueException;
|
|
283
|
+
}(__BaseException));
|
|
284
|
+
export { InvalidReactionValueException };
|
|
116
285
|
export var PutCommentReactionInput;
|
|
117
286
|
(function (PutCommentReactionInput) {
|
|
118
287
|
PutCommentReactionInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
119
288
|
})(PutCommentReactionInput || (PutCommentReactionInput = {}));
|
|
289
|
+
var ReactionLimitExceededException = (function (_super) {
|
|
290
|
+
__extends(ReactionLimitExceededException, _super);
|
|
291
|
+
function ReactionLimitExceededException(opts) {
|
|
292
|
+
var _this = _super.call(this, __assign({ name: "ReactionLimitExceededException", $fault: "client" }, opts)) || this;
|
|
293
|
+
_this.name = "ReactionLimitExceededException";
|
|
294
|
+
_this.$fault = "client";
|
|
295
|
+
Object.setPrototypeOf(_this, ReactionLimitExceededException.prototype);
|
|
296
|
+
return _this;
|
|
297
|
+
}
|
|
298
|
+
return ReactionLimitExceededException;
|
|
299
|
+
}(__BaseException));
|
|
300
|
+
export { ReactionLimitExceededException };
|
|
301
|
+
var ReactionValueRequiredException = (function (_super) {
|
|
302
|
+
__extends(ReactionValueRequiredException, _super);
|
|
303
|
+
function ReactionValueRequiredException(opts) {
|
|
304
|
+
var _this = _super.call(this, __assign({ name: "ReactionValueRequiredException", $fault: "client" }, opts)) || this;
|
|
305
|
+
_this.name = "ReactionValueRequiredException";
|
|
306
|
+
_this.$fault = "client";
|
|
307
|
+
Object.setPrototypeOf(_this, ReactionValueRequiredException.prototype);
|
|
308
|
+
return _this;
|
|
309
|
+
}
|
|
310
|
+
return ReactionValueRequiredException;
|
|
311
|
+
}(__BaseException));
|
|
312
|
+
export { ReactionValueRequiredException };
|
|
313
|
+
var FileContentRequiredException = (function (_super) {
|
|
314
|
+
__extends(FileContentRequiredException, _super);
|
|
315
|
+
function FileContentRequiredException(opts) {
|
|
316
|
+
var _this = _super.call(this, __assign({ name: "FileContentRequiredException", $fault: "client" }, opts)) || this;
|
|
317
|
+
_this.name = "FileContentRequiredException";
|
|
318
|
+
_this.$fault = "client";
|
|
319
|
+
Object.setPrototypeOf(_this, FileContentRequiredException.prototype);
|
|
320
|
+
return _this;
|
|
321
|
+
}
|
|
322
|
+
return FileContentRequiredException;
|
|
323
|
+
}(__BaseException));
|
|
324
|
+
export { FileContentRequiredException };
|
|
120
325
|
export var PutFileInput;
|
|
121
326
|
(function (PutFileInput) {
|
|
122
327
|
PutFileInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -125,6 +330,114 @@ export var PutFileOutput;
|
|
|
125
330
|
(function (PutFileOutput) {
|
|
126
331
|
PutFileOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
127
332
|
})(PutFileOutput || (PutFileOutput = {}));
|
|
333
|
+
var SameFileContentException = (function (_super) {
|
|
334
|
+
__extends(SameFileContentException, _super);
|
|
335
|
+
function SameFileContentException(opts) {
|
|
336
|
+
var _this = _super.call(this, __assign({ name: "SameFileContentException", $fault: "client" }, opts)) || this;
|
|
337
|
+
_this.name = "SameFileContentException";
|
|
338
|
+
_this.$fault = "client";
|
|
339
|
+
Object.setPrototypeOf(_this, SameFileContentException.prototype);
|
|
340
|
+
return _this;
|
|
341
|
+
}
|
|
342
|
+
return SameFileContentException;
|
|
343
|
+
}(__BaseException));
|
|
344
|
+
export { SameFileContentException };
|
|
345
|
+
var InvalidRepositoryTriggerBranchNameException = (function (_super) {
|
|
346
|
+
__extends(InvalidRepositoryTriggerBranchNameException, _super);
|
|
347
|
+
function InvalidRepositoryTriggerBranchNameException(opts) {
|
|
348
|
+
var _this = _super.call(this, __assign({ name: "InvalidRepositoryTriggerBranchNameException", $fault: "client" }, opts)) || this;
|
|
349
|
+
_this.name = "InvalidRepositoryTriggerBranchNameException";
|
|
350
|
+
_this.$fault = "client";
|
|
351
|
+
Object.setPrototypeOf(_this, InvalidRepositoryTriggerBranchNameException.prototype);
|
|
352
|
+
return _this;
|
|
353
|
+
}
|
|
354
|
+
return InvalidRepositoryTriggerBranchNameException;
|
|
355
|
+
}(__BaseException));
|
|
356
|
+
export { InvalidRepositoryTriggerBranchNameException };
|
|
357
|
+
var InvalidRepositoryTriggerCustomDataException = (function (_super) {
|
|
358
|
+
__extends(InvalidRepositoryTriggerCustomDataException, _super);
|
|
359
|
+
function InvalidRepositoryTriggerCustomDataException(opts) {
|
|
360
|
+
var _this = _super.call(this, __assign({ name: "InvalidRepositoryTriggerCustomDataException", $fault: "client" }, opts)) || this;
|
|
361
|
+
_this.name = "InvalidRepositoryTriggerCustomDataException";
|
|
362
|
+
_this.$fault = "client";
|
|
363
|
+
Object.setPrototypeOf(_this, InvalidRepositoryTriggerCustomDataException.prototype);
|
|
364
|
+
return _this;
|
|
365
|
+
}
|
|
366
|
+
return InvalidRepositoryTriggerCustomDataException;
|
|
367
|
+
}(__BaseException));
|
|
368
|
+
export { InvalidRepositoryTriggerCustomDataException };
|
|
369
|
+
var InvalidRepositoryTriggerDestinationArnException = (function (_super) {
|
|
370
|
+
__extends(InvalidRepositoryTriggerDestinationArnException, _super);
|
|
371
|
+
function InvalidRepositoryTriggerDestinationArnException(opts) {
|
|
372
|
+
var _this = _super.call(this, __assign({ name: "InvalidRepositoryTriggerDestinationArnException", $fault: "client" }, opts)) || this;
|
|
373
|
+
_this.name = "InvalidRepositoryTriggerDestinationArnException";
|
|
374
|
+
_this.$fault = "client";
|
|
375
|
+
Object.setPrototypeOf(_this, InvalidRepositoryTriggerDestinationArnException.prototype);
|
|
376
|
+
return _this;
|
|
377
|
+
}
|
|
378
|
+
return InvalidRepositoryTriggerDestinationArnException;
|
|
379
|
+
}(__BaseException));
|
|
380
|
+
export { InvalidRepositoryTriggerDestinationArnException };
|
|
381
|
+
var InvalidRepositoryTriggerEventsException = (function (_super) {
|
|
382
|
+
__extends(InvalidRepositoryTriggerEventsException, _super);
|
|
383
|
+
function InvalidRepositoryTriggerEventsException(opts) {
|
|
384
|
+
var _this = _super.call(this, __assign({ name: "InvalidRepositoryTriggerEventsException", $fault: "client" }, opts)) || this;
|
|
385
|
+
_this.name = "InvalidRepositoryTriggerEventsException";
|
|
386
|
+
_this.$fault = "client";
|
|
387
|
+
Object.setPrototypeOf(_this, InvalidRepositoryTriggerEventsException.prototype);
|
|
388
|
+
return _this;
|
|
389
|
+
}
|
|
390
|
+
return InvalidRepositoryTriggerEventsException;
|
|
391
|
+
}(__BaseException));
|
|
392
|
+
export { InvalidRepositoryTriggerEventsException };
|
|
393
|
+
var InvalidRepositoryTriggerNameException = (function (_super) {
|
|
394
|
+
__extends(InvalidRepositoryTriggerNameException, _super);
|
|
395
|
+
function InvalidRepositoryTriggerNameException(opts) {
|
|
396
|
+
var _this = _super.call(this, __assign({ name: "InvalidRepositoryTriggerNameException", $fault: "client" }, opts)) || this;
|
|
397
|
+
_this.name = "InvalidRepositoryTriggerNameException";
|
|
398
|
+
_this.$fault = "client";
|
|
399
|
+
Object.setPrototypeOf(_this, InvalidRepositoryTriggerNameException.prototype);
|
|
400
|
+
return _this;
|
|
401
|
+
}
|
|
402
|
+
return InvalidRepositoryTriggerNameException;
|
|
403
|
+
}(__BaseException));
|
|
404
|
+
export { InvalidRepositoryTriggerNameException };
|
|
405
|
+
var InvalidRepositoryTriggerRegionException = (function (_super) {
|
|
406
|
+
__extends(InvalidRepositoryTriggerRegionException, _super);
|
|
407
|
+
function InvalidRepositoryTriggerRegionException(opts) {
|
|
408
|
+
var _this = _super.call(this, __assign({ name: "InvalidRepositoryTriggerRegionException", $fault: "client" }, opts)) || this;
|
|
409
|
+
_this.name = "InvalidRepositoryTriggerRegionException";
|
|
410
|
+
_this.$fault = "client";
|
|
411
|
+
Object.setPrototypeOf(_this, InvalidRepositoryTriggerRegionException.prototype);
|
|
412
|
+
return _this;
|
|
413
|
+
}
|
|
414
|
+
return InvalidRepositoryTriggerRegionException;
|
|
415
|
+
}(__BaseException));
|
|
416
|
+
export { InvalidRepositoryTriggerRegionException };
|
|
417
|
+
var MaximumBranchesExceededException = (function (_super) {
|
|
418
|
+
__extends(MaximumBranchesExceededException, _super);
|
|
419
|
+
function MaximumBranchesExceededException(opts) {
|
|
420
|
+
var _this = _super.call(this, __assign({ name: "MaximumBranchesExceededException", $fault: "client" }, opts)) || this;
|
|
421
|
+
_this.name = "MaximumBranchesExceededException";
|
|
422
|
+
_this.$fault = "client";
|
|
423
|
+
Object.setPrototypeOf(_this, MaximumBranchesExceededException.prototype);
|
|
424
|
+
return _this;
|
|
425
|
+
}
|
|
426
|
+
return MaximumBranchesExceededException;
|
|
427
|
+
}(__BaseException));
|
|
428
|
+
export { MaximumBranchesExceededException };
|
|
429
|
+
var MaximumRepositoryTriggersExceededException = (function (_super) {
|
|
430
|
+
__extends(MaximumRepositoryTriggersExceededException, _super);
|
|
431
|
+
function MaximumRepositoryTriggersExceededException(opts) {
|
|
432
|
+
var _this = _super.call(this, __assign({ name: "MaximumRepositoryTriggersExceededException", $fault: "client" }, opts)) || this;
|
|
433
|
+
_this.name = "MaximumRepositoryTriggersExceededException";
|
|
434
|
+
_this.$fault = "client";
|
|
435
|
+
Object.setPrototypeOf(_this, MaximumRepositoryTriggersExceededException.prototype);
|
|
436
|
+
return _this;
|
|
437
|
+
}
|
|
438
|
+
return MaximumRepositoryTriggersExceededException;
|
|
439
|
+
}(__BaseException));
|
|
440
|
+
export { MaximumRepositoryTriggersExceededException };
|
|
128
441
|
export var PutRepositoryTriggersInput;
|
|
129
442
|
(function (PutRepositoryTriggersInput) {
|
|
130
443
|
PutRepositoryTriggersInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -133,10 +446,82 @@ export var PutRepositoryTriggersOutput;
|
|
|
133
446
|
(function (PutRepositoryTriggersOutput) {
|
|
134
447
|
PutRepositoryTriggersOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
135
448
|
})(PutRepositoryTriggersOutput || (PutRepositoryTriggersOutput = {}));
|
|
449
|
+
var RepositoryTriggerBranchNameListRequiredException = (function (_super) {
|
|
450
|
+
__extends(RepositoryTriggerBranchNameListRequiredException, _super);
|
|
451
|
+
function RepositoryTriggerBranchNameListRequiredException(opts) {
|
|
452
|
+
var _this = _super.call(this, __assign({ name: "RepositoryTriggerBranchNameListRequiredException", $fault: "client" }, opts)) || this;
|
|
453
|
+
_this.name = "RepositoryTriggerBranchNameListRequiredException";
|
|
454
|
+
_this.$fault = "client";
|
|
455
|
+
Object.setPrototypeOf(_this, RepositoryTriggerBranchNameListRequiredException.prototype);
|
|
456
|
+
return _this;
|
|
457
|
+
}
|
|
458
|
+
return RepositoryTriggerBranchNameListRequiredException;
|
|
459
|
+
}(__BaseException));
|
|
460
|
+
export { RepositoryTriggerBranchNameListRequiredException };
|
|
461
|
+
var RepositoryTriggerDestinationArnRequiredException = (function (_super) {
|
|
462
|
+
__extends(RepositoryTriggerDestinationArnRequiredException, _super);
|
|
463
|
+
function RepositoryTriggerDestinationArnRequiredException(opts) {
|
|
464
|
+
var _this = _super.call(this, __assign({ name: "RepositoryTriggerDestinationArnRequiredException", $fault: "client" }, opts)) || this;
|
|
465
|
+
_this.name = "RepositoryTriggerDestinationArnRequiredException";
|
|
466
|
+
_this.$fault = "client";
|
|
467
|
+
Object.setPrototypeOf(_this, RepositoryTriggerDestinationArnRequiredException.prototype);
|
|
468
|
+
return _this;
|
|
469
|
+
}
|
|
470
|
+
return RepositoryTriggerDestinationArnRequiredException;
|
|
471
|
+
}(__BaseException));
|
|
472
|
+
export { RepositoryTriggerDestinationArnRequiredException };
|
|
473
|
+
var RepositoryTriggerEventsListRequiredException = (function (_super) {
|
|
474
|
+
__extends(RepositoryTriggerEventsListRequiredException, _super);
|
|
475
|
+
function RepositoryTriggerEventsListRequiredException(opts) {
|
|
476
|
+
var _this = _super.call(this, __assign({ name: "RepositoryTriggerEventsListRequiredException", $fault: "client" }, opts)) || this;
|
|
477
|
+
_this.name = "RepositoryTriggerEventsListRequiredException";
|
|
478
|
+
_this.$fault = "client";
|
|
479
|
+
Object.setPrototypeOf(_this, RepositoryTriggerEventsListRequiredException.prototype);
|
|
480
|
+
return _this;
|
|
481
|
+
}
|
|
482
|
+
return RepositoryTriggerEventsListRequiredException;
|
|
483
|
+
}(__BaseException));
|
|
484
|
+
export { RepositoryTriggerEventsListRequiredException };
|
|
485
|
+
var RepositoryTriggerNameRequiredException = (function (_super) {
|
|
486
|
+
__extends(RepositoryTriggerNameRequiredException, _super);
|
|
487
|
+
function RepositoryTriggerNameRequiredException(opts) {
|
|
488
|
+
var _this = _super.call(this, __assign({ name: "RepositoryTriggerNameRequiredException", $fault: "client" }, opts)) || this;
|
|
489
|
+
_this.name = "RepositoryTriggerNameRequiredException";
|
|
490
|
+
_this.$fault = "client";
|
|
491
|
+
Object.setPrototypeOf(_this, RepositoryTriggerNameRequiredException.prototype);
|
|
492
|
+
return _this;
|
|
493
|
+
}
|
|
494
|
+
return RepositoryTriggerNameRequiredException;
|
|
495
|
+
}(__BaseException));
|
|
496
|
+
export { RepositoryTriggerNameRequiredException };
|
|
497
|
+
var RepositoryTriggersListRequiredException = (function (_super) {
|
|
498
|
+
__extends(RepositoryTriggersListRequiredException, _super);
|
|
499
|
+
function RepositoryTriggersListRequiredException(opts) {
|
|
500
|
+
var _this = _super.call(this, __assign({ name: "RepositoryTriggersListRequiredException", $fault: "client" }, opts)) || this;
|
|
501
|
+
_this.name = "RepositoryTriggersListRequiredException";
|
|
502
|
+
_this.$fault = "client";
|
|
503
|
+
Object.setPrototypeOf(_this, RepositoryTriggersListRequiredException.prototype);
|
|
504
|
+
return _this;
|
|
505
|
+
}
|
|
506
|
+
return RepositoryTriggersListRequiredException;
|
|
507
|
+
}(__BaseException));
|
|
508
|
+
export { RepositoryTriggersListRequiredException };
|
|
136
509
|
export var TagResourceInput;
|
|
137
510
|
(function (TagResourceInput) {
|
|
138
511
|
TagResourceInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
139
512
|
})(TagResourceInput || (TagResourceInput = {}));
|
|
513
|
+
var TagsMapRequiredException = (function (_super) {
|
|
514
|
+
__extends(TagsMapRequiredException, _super);
|
|
515
|
+
function TagsMapRequiredException(opts) {
|
|
516
|
+
var _this = _super.call(this, __assign({ name: "TagsMapRequiredException", $fault: "client" }, opts)) || this;
|
|
517
|
+
_this.name = "TagsMapRequiredException";
|
|
518
|
+
_this.$fault = "client";
|
|
519
|
+
Object.setPrototypeOf(_this, TagsMapRequiredException.prototype);
|
|
520
|
+
return _this;
|
|
521
|
+
}
|
|
522
|
+
return TagsMapRequiredException;
|
|
523
|
+
}(__BaseException));
|
|
524
|
+
export { TagsMapRequiredException };
|
|
140
525
|
export var TestRepositoryTriggersInput;
|
|
141
526
|
(function (TestRepositoryTriggersInput) {
|
|
142
527
|
TestRepositoryTriggersInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -149,10 +534,46 @@ export var TestRepositoryTriggersOutput;
|
|
|
149
534
|
(function (TestRepositoryTriggersOutput) {
|
|
150
535
|
TestRepositoryTriggersOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
151
536
|
})(TestRepositoryTriggersOutput || (TestRepositoryTriggersOutput = {}));
|
|
537
|
+
var InvalidTagKeysListException = (function (_super) {
|
|
538
|
+
__extends(InvalidTagKeysListException, _super);
|
|
539
|
+
function InvalidTagKeysListException(opts) {
|
|
540
|
+
var _this = _super.call(this, __assign({ name: "InvalidTagKeysListException", $fault: "client" }, opts)) || this;
|
|
541
|
+
_this.name = "InvalidTagKeysListException";
|
|
542
|
+
_this.$fault = "client";
|
|
543
|
+
Object.setPrototypeOf(_this, InvalidTagKeysListException.prototype);
|
|
544
|
+
return _this;
|
|
545
|
+
}
|
|
546
|
+
return InvalidTagKeysListException;
|
|
547
|
+
}(__BaseException));
|
|
548
|
+
export { InvalidTagKeysListException };
|
|
549
|
+
var TagKeysListRequiredException = (function (_super) {
|
|
550
|
+
__extends(TagKeysListRequiredException, _super);
|
|
551
|
+
function TagKeysListRequiredException(opts) {
|
|
552
|
+
var _this = _super.call(this, __assign({ name: "TagKeysListRequiredException", $fault: "client" }, opts)) || this;
|
|
553
|
+
_this.name = "TagKeysListRequiredException";
|
|
554
|
+
_this.$fault = "client";
|
|
555
|
+
Object.setPrototypeOf(_this, TagKeysListRequiredException.prototype);
|
|
556
|
+
return _this;
|
|
557
|
+
}
|
|
558
|
+
return TagKeysListRequiredException;
|
|
559
|
+
}(__BaseException));
|
|
560
|
+
export { TagKeysListRequiredException };
|
|
152
561
|
export var UntagResourceInput;
|
|
153
562
|
(function (UntagResourceInput) {
|
|
154
563
|
UntagResourceInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
155
564
|
})(UntagResourceInput || (UntagResourceInput = {}));
|
|
565
|
+
var InvalidRuleContentSha256Exception = (function (_super) {
|
|
566
|
+
__extends(InvalidRuleContentSha256Exception, _super);
|
|
567
|
+
function InvalidRuleContentSha256Exception(opts) {
|
|
568
|
+
var _this = _super.call(this, __assign({ name: "InvalidRuleContentSha256Exception", $fault: "client" }, opts)) || this;
|
|
569
|
+
_this.name = "InvalidRuleContentSha256Exception";
|
|
570
|
+
_this.$fault = "client";
|
|
571
|
+
Object.setPrototypeOf(_this, InvalidRuleContentSha256Exception.prototype);
|
|
572
|
+
return _this;
|
|
573
|
+
}
|
|
574
|
+
return InvalidRuleContentSha256Exception;
|
|
575
|
+
}(__BaseException));
|
|
576
|
+
export { InvalidRuleContentSha256Exception };
|
|
156
577
|
export var UpdateApprovalRuleTemplateContentInput;
|
|
157
578
|
(function (UpdateApprovalRuleTemplateContentInput) {
|
|
158
579
|
UpdateApprovalRuleTemplateContentInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -177,6 +598,18 @@ export var UpdateApprovalRuleTemplateNameOutput;
|
|
|
177
598
|
(function (UpdateApprovalRuleTemplateNameOutput) {
|
|
178
599
|
UpdateApprovalRuleTemplateNameOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
179
600
|
})(UpdateApprovalRuleTemplateNameOutput || (UpdateApprovalRuleTemplateNameOutput = {}));
|
|
601
|
+
var CommentNotCreatedByCallerException = (function (_super) {
|
|
602
|
+
__extends(CommentNotCreatedByCallerException, _super);
|
|
603
|
+
function CommentNotCreatedByCallerException(opts) {
|
|
604
|
+
var _this = _super.call(this, __assign({ name: "CommentNotCreatedByCallerException", $fault: "client" }, opts)) || this;
|
|
605
|
+
_this.name = "CommentNotCreatedByCallerException";
|
|
606
|
+
_this.$fault = "client";
|
|
607
|
+
Object.setPrototypeOf(_this, CommentNotCreatedByCallerException.prototype);
|
|
608
|
+
return _this;
|
|
609
|
+
}
|
|
610
|
+
return CommentNotCreatedByCallerException;
|
|
611
|
+
}(__BaseException));
|
|
612
|
+
export { CommentNotCreatedByCallerException };
|
|
180
613
|
export var UpdateCommentInput;
|
|
181
614
|
(function (UpdateCommentInput) {
|
|
182
615
|
UpdateCommentInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -197,6 +630,42 @@ export var UpdatePullRequestApprovalRuleContentOutput;
|
|
|
197
630
|
(function (UpdatePullRequestApprovalRuleContentOutput) {
|
|
198
631
|
UpdatePullRequestApprovalRuleContentOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
199
632
|
})(UpdatePullRequestApprovalRuleContentOutput || (UpdatePullRequestApprovalRuleContentOutput = {}));
|
|
633
|
+
var InvalidApprovalStateException = (function (_super) {
|
|
634
|
+
__extends(InvalidApprovalStateException, _super);
|
|
635
|
+
function InvalidApprovalStateException(opts) {
|
|
636
|
+
var _this = _super.call(this, __assign({ name: "InvalidApprovalStateException", $fault: "client" }, opts)) || this;
|
|
637
|
+
_this.name = "InvalidApprovalStateException";
|
|
638
|
+
_this.$fault = "client";
|
|
639
|
+
Object.setPrototypeOf(_this, InvalidApprovalStateException.prototype);
|
|
640
|
+
return _this;
|
|
641
|
+
}
|
|
642
|
+
return InvalidApprovalStateException;
|
|
643
|
+
}(__BaseException));
|
|
644
|
+
export { InvalidApprovalStateException };
|
|
645
|
+
var MaximumNumberOfApprovalsExceededException = (function (_super) {
|
|
646
|
+
__extends(MaximumNumberOfApprovalsExceededException, _super);
|
|
647
|
+
function MaximumNumberOfApprovalsExceededException(opts) {
|
|
648
|
+
var _this = _super.call(this, __assign({ name: "MaximumNumberOfApprovalsExceededException", $fault: "client" }, opts)) || this;
|
|
649
|
+
_this.name = "MaximumNumberOfApprovalsExceededException";
|
|
650
|
+
_this.$fault = "client";
|
|
651
|
+
Object.setPrototypeOf(_this, MaximumNumberOfApprovalsExceededException.prototype);
|
|
652
|
+
return _this;
|
|
653
|
+
}
|
|
654
|
+
return MaximumNumberOfApprovalsExceededException;
|
|
655
|
+
}(__BaseException));
|
|
656
|
+
export { MaximumNumberOfApprovalsExceededException };
|
|
657
|
+
var PullRequestCannotBeApprovedByAuthorException = (function (_super) {
|
|
658
|
+
__extends(PullRequestCannotBeApprovedByAuthorException, _super);
|
|
659
|
+
function PullRequestCannotBeApprovedByAuthorException(opts) {
|
|
660
|
+
var _this = _super.call(this, __assign({ name: "PullRequestCannotBeApprovedByAuthorException", $fault: "client" }, opts)) || this;
|
|
661
|
+
_this.name = "PullRequestCannotBeApprovedByAuthorException";
|
|
662
|
+
_this.$fault = "client";
|
|
663
|
+
Object.setPrototypeOf(_this, PullRequestCannotBeApprovedByAuthorException.prototype);
|
|
664
|
+
return _this;
|
|
665
|
+
}
|
|
666
|
+
return PullRequestCannotBeApprovedByAuthorException;
|
|
667
|
+
}(__BaseException));
|
|
668
|
+
export { PullRequestCannotBeApprovedByAuthorException };
|
|
200
669
|
export var UpdatePullRequestApprovalStateInput;
|
|
201
670
|
(function (UpdatePullRequestApprovalStateInput) {
|
|
202
671
|
UpdatePullRequestApprovalStateInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -209,6 +678,30 @@ export var UpdatePullRequestDescriptionOutput;
|
|
|
209
678
|
(function (UpdatePullRequestDescriptionOutput) {
|
|
210
679
|
UpdatePullRequestDescriptionOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
211
680
|
})(UpdatePullRequestDescriptionOutput || (UpdatePullRequestDescriptionOutput = {}));
|
|
681
|
+
var InvalidPullRequestStatusUpdateException = (function (_super) {
|
|
682
|
+
__extends(InvalidPullRequestStatusUpdateException, _super);
|
|
683
|
+
function InvalidPullRequestStatusUpdateException(opts) {
|
|
684
|
+
var _this = _super.call(this, __assign({ name: "InvalidPullRequestStatusUpdateException", $fault: "client" }, opts)) || this;
|
|
685
|
+
_this.name = "InvalidPullRequestStatusUpdateException";
|
|
686
|
+
_this.$fault = "client";
|
|
687
|
+
Object.setPrototypeOf(_this, InvalidPullRequestStatusUpdateException.prototype);
|
|
688
|
+
return _this;
|
|
689
|
+
}
|
|
690
|
+
return InvalidPullRequestStatusUpdateException;
|
|
691
|
+
}(__BaseException));
|
|
692
|
+
export { InvalidPullRequestStatusUpdateException };
|
|
693
|
+
var PullRequestStatusRequiredException = (function (_super) {
|
|
694
|
+
__extends(PullRequestStatusRequiredException, _super);
|
|
695
|
+
function PullRequestStatusRequiredException(opts) {
|
|
696
|
+
var _this = _super.call(this, __assign({ name: "PullRequestStatusRequiredException", $fault: "client" }, opts)) || this;
|
|
697
|
+
_this.name = "PullRequestStatusRequiredException";
|
|
698
|
+
_this.$fault = "client";
|
|
699
|
+
Object.setPrototypeOf(_this, PullRequestStatusRequiredException.prototype);
|
|
700
|
+
return _this;
|
|
701
|
+
}
|
|
702
|
+
return PullRequestStatusRequiredException;
|
|
703
|
+
}(__BaseException));
|
|
704
|
+
export { PullRequestStatusRequiredException };
|
|
212
705
|
export var UpdatePullRequestStatusInput;
|
|
213
706
|
(function (UpdatePullRequestStatusInput) {
|
|
214
707
|
UpdatePullRequestStatusInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|