@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,17 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { CodeCommitServiceException as __BaseException } from "./CodeCommitServiceException";
|
|
3
|
+
var ActorDoesNotExistException = (function (_super) {
|
|
4
|
+
__extends(ActorDoesNotExistException, _super);
|
|
5
|
+
function ActorDoesNotExistException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "ActorDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "ActorDoesNotExistException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, ActorDoesNotExistException.prototype);
|
|
10
|
+
return _this;
|
|
11
|
+
}
|
|
12
|
+
return ActorDoesNotExistException;
|
|
13
|
+
}(__BaseException));
|
|
14
|
+
export { ActorDoesNotExistException };
|
|
2
15
|
export var ApprovalState;
|
|
3
16
|
(function (ApprovalState) {
|
|
4
17
|
ApprovalState["APPROVE"] = "APPROVE";
|
|
@@ -16,10 +29,58 @@ export var ApprovalRule;
|
|
|
16
29
|
(function (ApprovalRule) {
|
|
17
30
|
ApprovalRule.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
18
31
|
})(ApprovalRule || (ApprovalRule = {}));
|
|
32
|
+
var ApprovalRuleContentRequiredException = (function (_super) {
|
|
33
|
+
__extends(ApprovalRuleContentRequiredException, _super);
|
|
34
|
+
function ApprovalRuleContentRequiredException(opts) {
|
|
35
|
+
var _this = _super.call(this, __assign({ name: "ApprovalRuleContentRequiredException", $fault: "client" }, opts)) || this;
|
|
36
|
+
_this.name = "ApprovalRuleContentRequiredException";
|
|
37
|
+
_this.$fault = "client";
|
|
38
|
+
Object.setPrototypeOf(_this, ApprovalRuleContentRequiredException.prototype);
|
|
39
|
+
return _this;
|
|
40
|
+
}
|
|
41
|
+
return ApprovalRuleContentRequiredException;
|
|
42
|
+
}(__BaseException));
|
|
43
|
+
export { ApprovalRuleContentRequiredException };
|
|
44
|
+
var ApprovalRuleDoesNotExistException = (function (_super) {
|
|
45
|
+
__extends(ApprovalRuleDoesNotExistException, _super);
|
|
46
|
+
function ApprovalRuleDoesNotExistException(opts) {
|
|
47
|
+
var _this = _super.call(this, __assign({ name: "ApprovalRuleDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
48
|
+
_this.name = "ApprovalRuleDoesNotExistException";
|
|
49
|
+
_this.$fault = "client";
|
|
50
|
+
Object.setPrototypeOf(_this, ApprovalRuleDoesNotExistException.prototype);
|
|
51
|
+
return _this;
|
|
52
|
+
}
|
|
53
|
+
return ApprovalRuleDoesNotExistException;
|
|
54
|
+
}(__BaseException));
|
|
55
|
+
export { ApprovalRuleDoesNotExistException };
|
|
19
56
|
export var ApprovalRuleEventMetadata;
|
|
20
57
|
(function (ApprovalRuleEventMetadata) {
|
|
21
58
|
ApprovalRuleEventMetadata.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
22
59
|
})(ApprovalRuleEventMetadata || (ApprovalRuleEventMetadata = {}));
|
|
60
|
+
var ApprovalRuleNameAlreadyExistsException = (function (_super) {
|
|
61
|
+
__extends(ApprovalRuleNameAlreadyExistsException, _super);
|
|
62
|
+
function ApprovalRuleNameAlreadyExistsException(opts) {
|
|
63
|
+
var _this = _super.call(this, __assign({ name: "ApprovalRuleNameAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
64
|
+
_this.name = "ApprovalRuleNameAlreadyExistsException";
|
|
65
|
+
_this.$fault = "client";
|
|
66
|
+
Object.setPrototypeOf(_this, ApprovalRuleNameAlreadyExistsException.prototype);
|
|
67
|
+
return _this;
|
|
68
|
+
}
|
|
69
|
+
return ApprovalRuleNameAlreadyExistsException;
|
|
70
|
+
}(__BaseException));
|
|
71
|
+
export { ApprovalRuleNameAlreadyExistsException };
|
|
72
|
+
var ApprovalRuleNameRequiredException = (function (_super) {
|
|
73
|
+
__extends(ApprovalRuleNameRequiredException, _super);
|
|
74
|
+
function ApprovalRuleNameRequiredException(opts) {
|
|
75
|
+
var _this = _super.call(this, __assign({ name: "ApprovalRuleNameRequiredException", $fault: "client" }, opts)) || this;
|
|
76
|
+
_this.name = "ApprovalRuleNameRequiredException";
|
|
77
|
+
_this.$fault = "client";
|
|
78
|
+
Object.setPrototypeOf(_this, ApprovalRuleNameRequiredException.prototype);
|
|
79
|
+
return _this;
|
|
80
|
+
}
|
|
81
|
+
return ApprovalRuleNameRequiredException;
|
|
82
|
+
}(__BaseException));
|
|
83
|
+
export { ApprovalRuleNameRequiredException };
|
|
23
84
|
export var OverrideStatus;
|
|
24
85
|
(function (OverrideStatus) {
|
|
25
86
|
OverrideStatus["OVERRIDE"] = "OVERRIDE";
|
|
@@ -33,14 +94,218 @@ export var ApprovalRuleTemplate;
|
|
|
33
94
|
(function (ApprovalRuleTemplate) {
|
|
34
95
|
ApprovalRuleTemplate.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
35
96
|
})(ApprovalRuleTemplate || (ApprovalRuleTemplate = {}));
|
|
97
|
+
var ApprovalRuleTemplateContentRequiredException = (function (_super) {
|
|
98
|
+
__extends(ApprovalRuleTemplateContentRequiredException, _super);
|
|
99
|
+
function ApprovalRuleTemplateContentRequiredException(opts) {
|
|
100
|
+
var _this = _super.call(this, __assign({ name: "ApprovalRuleTemplateContentRequiredException", $fault: "client" }, opts)) || this;
|
|
101
|
+
_this.name = "ApprovalRuleTemplateContentRequiredException";
|
|
102
|
+
_this.$fault = "client";
|
|
103
|
+
Object.setPrototypeOf(_this, ApprovalRuleTemplateContentRequiredException.prototype);
|
|
104
|
+
return _this;
|
|
105
|
+
}
|
|
106
|
+
return ApprovalRuleTemplateContentRequiredException;
|
|
107
|
+
}(__BaseException));
|
|
108
|
+
export { ApprovalRuleTemplateContentRequiredException };
|
|
109
|
+
var ApprovalRuleTemplateDoesNotExistException = (function (_super) {
|
|
110
|
+
__extends(ApprovalRuleTemplateDoesNotExistException, _super);
|
|
111
|
+
function ApprovalRuleTemplateDoesNotExistException(opts) {
|
|
112
|
+
var _this = _super.call(this, __assign({ name: "ApprovalRuleTemplateDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
113
|
+
_this.name = "ApprovalRuleTemplateDoesNotExistException";
|
|
114
|
+
_this.$fault = "client";
|
|
115
|
+
Object.setPrototypeOf(_this, ApprovalRuleTemplateDoesNotExistException.prototype);
|
|
116
|
+
return _this;
|
|
117
|
+
}
|
|
118
|
+
return ApprovalRuleTemplateDoesNotExistException;
|
|
119
|
+
}(__BaseException));
|
|
120
|
+
export { ApprovalRuleTemplateDoesNotExistException };
|
|
121
|
+
var ApprovalRuleTemplateInUseException = (function (_super) {
|
|
122
|
+
__extends(ApprovalRuleTemplateInUseException, _super);
|
|
123
|
+
function ApprovalRuleTemplateInUseException(opts) {
|
|
124
|
+
var _this = _super.call(this, __assign({ name: "ApprovalRuleTemplateInUseException", $fault: "client" }, opts)) || this;
|
|
125
|
+
_this.name = "ApprovalRuleTemplateInUseException";
|
|
126
|
+
_this.$fault = "client";
|
|
127
|
+
Object.setPrototypeOf(_this, ApprovalRuleTemplateInUseException.prototype);
|
|
128
|
+
return _this;
|
|
129
|
+
}
|
|
130
|
+
return ApprovalRuleTemplateInUseException;
|
|
131
|
+
}(__BaseException));
|
|
132
|
+
export { ApprovalRuleTemplateInUseException };
|
|
133
|
+
var ApprovalRuleTemplateNameAlreadyExistsException = (function (_super) {
|
|
134
|
+
__extends(ApprovalRuleTemplateNameAlreadyExistsException, _super);
|
|
135
|
+
function ApprovalRuleTemplateNameAlreadyExistsException(opts) {
|
|
136
|
+
var _this = _super.call(this, __assign({ name: "ApprovalRuleTemplateNameAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
137
|
+
_this.name = "ApprovalRuleTemplateNameAlreadyExistsException";
|
|
138
|
+
_this.$fault = "client";
|
|
139
|
+
Object.setPrototypeOf(_this, ApprovalRuleTemplateNameAlreadyExistsException.prototype);
|
|
140
|
+
return _this;
|
|
141
|
+
}
|
|
142
|
+
return ApprovalRuleTemplateNameAlreadyExistsException;
|
|
143
|
+
}(__BaseException));
|
|
144
|
+
export { ApprovalRuleTemplateNameAlreadyExistsException };
|
|
145
|
+
var ApprovalRuleTemplateNameRequiredException = (function (_super) {
|
|
146
|
+
__extends(ApprovalRuleTemplateNameRequiredException, _super);
|
|
147
|
+
function ApprovalRuleTemplateNameRequiredException(opts) {
|
|
148
|
+
var _this = _super.call(this, __assign({ name: "ApprovalRuleTemplateNameRequiredException", $fault: "client" }, opts)) || this;
|
|
149
|
+
_this.name = "ApprovalRuleTemplateNameRequiredException";
|
|
150
|
+
_this.$fault = "client";
|
|
151
|
+
Object.setPrototypeOf(_this, ApprovalRuleTemplateNameRequiredException.prototype);
|
|
152
|
+
return _this;
|
|
153
|
+
}
|
|
154
|
+
return ApprovalRuleTemplateNameRequiredException;
|
|
155
|
+
}(__BaseException));
|
|
156
|
+
export { ApprovalRuleTemplateNameRequiredException };
|
|
36
157
|
export var ApprovalStateChangedEventMetadata;
|
|
37
158
|
(function (ApprovalStateChangedEventMetadata) {
|
|
38
159
|
ApprovalStateChangedEventMetadata.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
39
160
|
})(ApprovalStateChangedEventMetadata || (ApprovalStateChangedEventMetadata = {}));
|
|
161
|
+
var ApprovalStateRequiredException = (function (_super) {
|
|
162
|
+
__extends(ApprovalStateRequiredException, _super);
|
|
163
|
+
function ApprovalStateRequiredException(opts) {
|
|
164
|
+
var _this = _super.call(this, __assign({ name: "ApprovalStateRequiredException", $fault: "client" }, opts)) || this;
|
|
165
|
+
_this.name = "ApprovalStateRequiredException";
|
|
166
|
+
_this.$fault = "client";
|
|
167
|
+
Object.setPrototypeOf(_this, ApprovalStateRequiredException.prototype);
|
|
168
|
+
return _this;
|
|
169
|
+
}
|
|
170
|
+
return ApprovalStateRequiredException;
|
|
171
|
+
}(__BaseException));
|
|
172
|
+
export { ApprovalStateRequiredException };
|
|
40
173
|
export var AssociateApprovalRuleTemplateWithRepositoryInput;
|
|
41
174
|
(function (AssociateApprovalRuleTemplateWithRepositoryInput) {
|
|
42
175
|
AssociateApprovalRuleTemplateWithRepositoryInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
43
176
|
})(AssociateApprovalRuleTemplateWithRepositoryInput || (AssociateApprovalRuleTemplateWithRepositoryInput = {}));
|
|
177
|
+
var EncryptionIntegrityChecksFailedException = (function (_super) {
|
|
178
|
+
__extends(EncryptionIntegrityChecksFailedException, _super);
|
|
179
|
+
function EncryptionIntegrityChecksFailedException(opts) {
|
|
180
|
+
var _this = _super.call(this, __assign({ name: "EncryptionIntegrityChecksFailedException", $fault: "server" }, opts)) || this;
|
|
181
|
+
_this.name = "EncryptionIntegrityChecksFailedException";
|
|
182
|
+
_this.$fault = "server";
|
|
183
|
+
Object.setPrototypeOf(_this, EncryptionIntegrityChecksFailedException.prototype);
|
|
184
|
+
return _this;
|
|
185
|
+
}
|
|
186
|
+
return EncryptionIntegrityChecksFailedException;
|
|
187
|
+
}(__BaseException));
|
|
188
|
+
export { EncryptionIntegrityChecksFailedException };
|
|
189
|
+
var EncryptionKeyAccessDeniedException = (function (_super) {
|
|
190
|
+
__extends(EncryptionKeyAccessDeniedException, _super);
|
|
191
|
+
function EncryptionKeyAccessDeniedException(opts) {
|
|
192
|
+
var _this = _super.call(this, __assign({ name: "EncryptionKeyAccessDeniedException", $fault: "client" }, opts)) || this;
|
|
193
|
+
_this.name = "EncryptionKeyAccessDeniedException";
|
|
194
|
+
_this.$fault = "client";
|
|
195
|
+
Object.setPrototypeOf(_this, EncryptionKeyAccessDeniedException.prototype);
|
|
196
|
+
return _this;
|
|
197
|
+
}
|
|
198
|
+
return EncryptionKeyAccessDeniedException;
|
|
199
|
+
}(__BaseException));
|
|
200
|
+
export { EncryptionKeyAccessDeniedException };
|
|
201
|
+
var EncryptionKeyDisabledException = (function (_super) {
|
|
202
|
+
__extends(EncryptionKeyDisabledException, _super);
|
|
203
|
+
function EncryptionKeyDisabledException(opts) {
|
|
204
|
+
var _this = _super.call(this, __assign({ name: "EncryptionKeyDisabledException", $fault: "client" }, opts)) || this;
|
|
205
|
+
_this.name = "EncryptionKeyDisabledException";
|
|
206
|
+
_this.$fault = "client";
|
|
207
|
+
Object.setPrototypeOf(_this, EncryptionKeyDisabledException.prototype);
|
|
208
|
+
return _this;
|
|
209
|
+
}
|
|
210
|
+
return EncryptionKeyDisabledException;
|
|
211
|
+
}(__BaseException));
|
|
212
|
+
export { EncryptionKeyDisabledException };
|
|
213
|
+
var EncryptionKeyNotFoundException = (function (_super) {
|
|
214
|
+
__extends(EncryptionKeyNotFoundException, _super);
|
|
215
|
+
function EncryptionKeyNotFoundException(opts) {
|
|
216
|
+
var _this = _super.call(this, __assign({ name: "EncryptionKeyNotFoundException", $fault: "client" }, opts)) || this;
|
|
217
|
+
_this.name = "EncryptionKeyNotFoundException";
|
|
218
|
+
_this.$fault = "client";
|
|
219
|
+
Object.setPrototypeOf(_this, EncryptionKeyNotFoundException.prototype);
|
|
220
|
+
return _this;
|
|
221
|
+
}
|
|
222
|
+
return EncryptionKeyNotFoundException;
|
|
223
|
+
}(__BaseException));
|
|
224
|
+
export { EncryptionKeyNotFoundException };
|
|
225
|
+
var EncryptionKeyUnavailableException = (function (_super) {
|
|
226
|
+
__extends(EncryptionKeyUnavailableException, _super);
|
|
227
|
+
function EncryptionKeyUnavailableException(opts) {
|
|
228
|
+
var _this = _super.call(this, __assign({ name: "EncryptionKeyUnavailableException", $fault: "client" }, opts)) || this;
|
|
229
|
+
_this.name = "EncryptionKeyUnavailableException";
|
|
230
|
+
_this.$fault = "client";
|
|
231
|
+
Object.setPrototypeOf(_this, EncryptionKeyUnavailableException.prototype);
|
|
232
|
+
return _this;
|
|
233
|
+
}
|
|
234
|
+
return EncryptionKeyUnavailableException;
|
|
235
|
+
}(__BaseException));
|
|
236
|
+
export { EncryptionKeyUnavailableException };
|
|
237
|
+
var InvalidApprovalRuleTemplateNameException = (function (_super) {
|
|
238
|
+
__extends(InvalidApprovalRuleTemplateNameException, _super);
|
|
239
|
+
function InvalidApprovalRuleTemplateNameException(opts) {
|
|
240
|
+
var _this = _super.call(this, __assign({ name: "InvalidApprovalRuleTemplateNameException", $fault: "client" }, opts)) || this;
|
|
241
|
+
_this.name = "InvalidApprovalRuleTemplateNameException";
|
|
242
|
+
_this.$fault = "client";
|
|
243
|
+
Object.setPrototypeOf(_this, InvalidApprovalRuleTemplateNameException.prototype);
|
|
244
|
+
return _this;
|
|
245
|
+
}
|
|
246
|
+
return InvalidApprovalRuleTemplateNameException;
|
|
247
|
+
}(__BaseException));
|
|
248
|
+
export { InvalidApprovalRuleTemplateNameException };
|
|
249
|
+
var InvalidRepositoryNameException = (function (_super) {
|
|
250
|
+
__extends(InvalidRepositoryNameException, _super);
|
|
251
|
+
function InvalidRepositoryNameException(opts) {
|
|
252
|
+
var _this = _super.call(this, __assign({ name: "InvalidRepositoryNameException", $fault: "client" }, opts)) || this;
|
|
253
|
+
_this.name = "InvalidRepositoryNameException";
|
|
254
|
+
_this.$fault = "client";
|
|
255
|
+
Object.setPrototypeOf(_this, InvalidRepositoryNameException.prototype);
|
|
256
|
+
return _this;
|
|
257
|
+
}
|
|
258
|
+
return InvalidRepositoryNameException;
|
|
259
|
+
}(__BaseException));
|
|
260
|
+
export { InvalidRepositoryNameException };
|
|
261
|
+
var MaximumRuleTemplatesAssociatedWithRepositoryException = (function (_super) {
|
|
262
|
+
__extends(MaximumRuleTemplatesAssociatedWithRepositoryException, _super);
|
|
263
|
+
function MaximumRuleTemplatesAssociatedWithRepositoryException(opts) {
|
|
264
|
+
var _this = _super.call(this, __assign({ name: "MaximumRuleTemplatesAssociatedWithRepositoryException", $fault: "client" }, opts)) || this;
|
|
265
|
+
_this.name = "MaximumRuleTemplatesAssociatedWithRepositoryException";
|
|
266
|
+
_this.$fault = "client";
|
|
267
|
+
Object.setPrototypeOf(_this, MaximumRuleTemplatesAssociatedWithRepositoryException.prototype);
|
|
268
|
+
return _this;
|
|
269
|
+
}
|
|
270
|
+
return MaximumRuleTemplatesAssociatedWithRepositoryException;
|
|
271
|
+
}(__BaseException));
|
|
272
|
+
export { MaximumRuleTemplatesAssociatedWithRepositoryException };
|
|
273
|
+
var RepositoryDoesNotExistException = (function (_super) {
|
|
274
|
+
__extends(RepositoryDoesNotExistException, _super);
|
|
275
|
+
function RepositoryDoesNotExistException(opts) {
|
|
276
|
+
var _this = _super.call(this, __assign({ name: "RepositoryDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
277
|
+
_this.name = "RepositoryDoesNotExistException";
|
|
278
|
+
_this.$fault = "client";
|
|
279
|
+
Object.setPrototypeOf(_this, RepositoryDoesNotExistException.prototype);
|
|
280
|
+
return _this;
|
|
281
|
+
}
|
|
282
|
+
return RepositoryDoesNotExistException;
|
|
283
|
+
}(__BaseException));
|
|
284
|
+
export { RepositoryDoesNotExistException };
|
|
285
|
+
var RepositoryNameRequiredException = (function (_super) {
|
|
286
|
+
__extends(RepositoryNameRequiredException, _super);
|
|
287
|
+
function RepositoryNameRequiredException(opts) {
|
|
288
|
+
var _this = _super.call(this, __assign({ name: "RepositoryNameRequiredException", $fault: "client" }, opts)) || this;
|
|
289
|
+
_this.name = "RepositoryNameRequiredException";
|
|
290
|
+
_this.$fault = "client";
|
|
291
|
+
Object.setPrototypeOf(_this, RepositoryNameRequiredException.prototype);
|
|
292
|
+
return _this;
|
|
293
|
+
}
|
|
294
|
+
return RepositoryNameRequiredException;
|
|
295
|
+
}(__BaseException));
|
|
296
|
+
export { RepositoryNameRequiredException };
|
|
297
|
+
var AuthorDoesNotExistException = (function (_super) {
|
|
298
|
+
__extends(AuthorDoesNotExistException, _super);
|
|
299
|
+
function AuthorDoesNotExistException(opts) {
|
|
300
|
+
var _this = _super.call(this, __assign({ name: "AuthorDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
301
|
+
_this.name = "AuthorDoesNotExistException";
|
|
302
|
+
_this.$fault = "client";
|
|
303
|
+
Object.setPrototypeOf(_this, AuthorDoesNotExistException.prototype);
|
|
304
|
+
return _this;
|
|
305
|
+
}
|
|
306
|
+
return AuthorDoesNotExistException;
|
|
307
|
+
}(__BaseException));
|
|
308
|
+
export { AuthorDoesNotExistException };
|
|
44
309
|
export var BatchAssociateApprovalRuleTemplateWithRepositoriesInput;
|
|
45
310
|
(function (BatchAssociateApprovalRuleTemplateWithRepositoriesInput) {
|
|
46
311
|
BatchAssociateApprovalRuleTemplateWithRepositoriesInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -53,6 +318,30 @@ export var BatchAssociateApprovalRuleTemplateWithRepositoriesOutput;
|
|
|
53
318
|
(function (BatchAssociateApprovalRuleTemplateWithRepositoriesOutput) {
|
|
54
319
|
BatchAssociateApprovalRuleTemplateWithRepositoriesOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
55
320
|
})(BatchAssociateApprovalRuleTemplateWithRepositoriesOutput || (BatchAssociateApprovalRuleTemplateWithRepositoriesOutput = {}));
|
|
321
|
+
var MaximumRepositoryNamesExceededException = (function (_super) {
|
|
322
|
+
__extends(MaximumRepositoryNamesExceededException, _super);
|
|
323
|
+
function MaximumRepositoryNamesExceededException(opts) {
|
|
324
|
+
var _this = _super.call(this, __assign({ name: "MaximumRepositoryNamesExceededException", $fault: "client" }, opts)) || this;
|
|
325
|
+
_this.name = "MaximumRepositoryNamesExceededException";
|
|
326
|
+
_this.$fault = "client";
|
|
327
|
+
Object.setPrototypeOf(_this, MaximumRepositoryNamesExceededException.prototype);
|
|
328
|
+
return _this;
|
|
329
|
+
}
|
|
330
|
+
return MaximumRepositoryNamesExceededException;
|
|
331
|
+
}(__BaseException));
|
|
332
|
+
export { MaximumRepositoryNamesExceededException };
|
|
333
|
+
var RepositoryNamesRequiredException = (function (_super) {
|
|
334
|
+
__extends(RepositoryNamesRequiredException, _super);
|
|
335
|
+
function RepositoryNamesRequiredException(opts) {
|
|
336
|
+
var _this = _super.call(this, __assign({ name: "RepositoryNamesRequiredException", $fault: "client" }, opts)) || this;
|
|
337
|
+
_this.name = "RepositoryNamesRequiredException";
|
|
338
|
+
_this.$fault = "client";
|
|
339
|
+
Object.setPrototypeOf(_this, RepositoryNamesRequiredException.prototype);
|
|
340
|
+
return _this;
|
|
341
|
+
}
|
|
342
|
+
return RepositoryNamesRequiredException;
|
|
343
|
+
}(__BaseException));
|
|
344
|
+
export { RepositoryNamesRequiredException };
|
|
56
345
|
export var ConflictDetailLevelTypeEnum;
|
|
57
346
|
(function (ConflictDetailLevelTypeEnum) {
|
|
58
347
|
ConflictDetailLevelTypeEnum["FILE_LEVEL"] = "FILE_LEVEL";
|
|
@@ -138,6 +427,162 @@ export var BatchDescribeMergeConflictsOutput;
|
|
|
138
427
|
(function (BatchDescribeMergeConflictsOutput) {
|
|
139
428
|
BatchDescribeMergeConflictsOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
140
429
|
})(BatchDescribeMergeConflictsOutput || (BatchDescribeMergeConflictsOutput = {}));
|
|
430
|
+
var CommitDoesNotExistException = (function (_super) {
|
|
431
|
+
__extends(CommitDoesNotExistException, _super);
|
|
432
|
+
function CommitDoesNotExistException(opts) {
|
|
433
|
+
var _this = _super.call(this, __assign({ name: "CommitDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
434
|
+
_this.name = "CommitDoesNotExistException";
|
|
435
|
+
_this.$fault = "client";
|
|
436
|
+
Object.setPrototypeOf(_this, CommitDoesNotExistException.prototype);
|
|
437
|
+
return _this;
|
|
438
|
+
}
|
|
439
|
+
return CommitDoesNotExistException;
|
|
440
|
+
}(__BaseException));
|
|
441
|
+
export { CommitDoesNotExistException };
|
|
442
|
+
var CommitRequiredException = (function (_super) {
|
|
443
|
+
__extends(CommitRequiredException, _super);
|
|
444
|
+
function CommitRequiredException(opts) {
|
|
445
|
+
var _this = _super.call(this, __assign({ name: "CommitRequiredException", $fault: "client" }, opts)) || this;
|
|
446
|
+
_this.name = "CommitRequiredException";
|
|
447
|
+
_this.$fault = "client";
|
|
448
|
+
Object.setPrototypeOf(_this, CommitRequiredException.prototype);
|
|
449
|
+
return _this;
|
|
450
|
+
}
|
|
451
|
+
return CommitRequiredException;
|
|
452
|
+
}(__BaseException));
|
|
453
|
+
export { CommitRequiredException };
|
|
454
|
+
var InvalidCommitException = (function (_super) {
|
|
455
|
+
__extends(InvalidCommitException, _super);
|
|
456
|
+
function InvalidCommitException(opts) {
|
|
457
|
+
var _this = _super.call(this, __assign({ name: "InvalidCommitException", $fault: "client" }, opts)) || this;
|
|
458
|
+
_this.name = "InvalidCommitException";
|
|
459
|
+
_this.$fault = "client";
|
|
460
|
+
Object.setPrototypeOf(_this, InvalidCommitException.prototype);
|
|
461
|
+
return _this;
|
|
462
|
+
}
|
|
463
|
+
return InvalidCommitException;
|
|
464
|
+
}(__BaseException));
|
|
465
|
+
export { InvalidCommitException };
|
|
466
|
+
var InvalidConflictDetailLevelException = (function (_super) {
|
|
467
|
+
__extends(InvalidConflictDetailLevelException, _super);
|
|
468
|
+
function InvalidConflictDetailLevelException(opts) {
|
|
469
|
+
var _this = _super.call(this, __assign({ name: "InvalidConflictDetailLevelException", $fault: "client" }, opts)) || this;
|
|
470
|
+
_this.name = "InvalidConflictDetailLevelException";
|
|
471
|
+
_this.$fault = "client";
|
|
472
|
+
Object.setPrototypeOf(_this, InvalidConflictDetailLevelException.prototype);
|
|
473
|
+
return _this;
|
|
474
|
+
}
|
|
475
|
+
return InvalidConflictDetailLevelException;
|
|
476
|
+
}(__BaseException));
|
|
477
|
+
export { InvalidConflictDetailLevelException };
|
|
478
|
+
var InvalidConflictResolutionStrategyException = (function (_super) {
|
|
479
|
+
__extends(InvalidConflictResolutionStrategyException, _super);
|
|
480
|
+
function InvalidConflictResolutionStrategyException(opts) {
|
|
481
|
+
var _this = _super.call(this, __assign({ name: "InvalidConflictResolutionStrategyException", $fault: "client" }, opts)) || this;
|
|
482
|
+
_this.name = "InvalidConflictResolutionStrategyException";
|
|
483
|
+
_this.$fault = "client";
|
|
484
|
+
Object.setPrototypeOf(_this, InvalidConflictResolutionStrategyException.prototype);
|
|
485
|
+
return _this;
|
|
486
|
+
}
|
|
487
|
+
return InvalidConflictResolutionStrategyException;
|
|
488
|
+
}(__BaseException));
|
|
489
|
+
export { InvalidConflictResolutionStrategyException };
|
|
490
|
+
var InvalidContinuationTokenException = (function (_super) {
|
|
491
|
+
__extends(InvalidContinuationTokenException, _super);
|
|
492
|
+
function InvalidContinuationTokenException(opts) {
|
|
493
|
+
var _this = _super.call(this, __assign({ name: "InvalidContinuationTokenException", $fault: "client" }, opts)) || this;
|
|
494
|
+
_this.name = "InvalidContinuationTokenException";
|
|
495
|
+
_this.$fault = "client";
|
|
496
|
+
Object.setPrototypeOf(_this, InvalidContinuationTokenException.prototype);
|
|
497
|
+
return _this;
|
|
498
|
+
}
|
|
499
|
+
return InvalidContinuationTokenException;
|
|
500
|
+
}(__BaseException));
|
|
501
|
+
export { InvalidContinuationTokenException };
|
|
502
|
+
var InvalidMaxConflictFilesException = (function (_super) {
|
|
503
|
+
__extends(InvalidMaxConflictFilesException, _super);
|
|
504
|
+
function InvalidMaxConflictFilesException(opts) {
|
|
505
|
+
var _this = _super.call(this, __assign({ name: "InvalidMaxConflictFilesException", $fault: "client" }, opts)) || this;
|
|
506
|
+
_this.name = "InvalidMaxConflictFilesException";
|
|
507
|
+
_this.$fault = "client";
|
|
508
|
+
Object.setPrototypeOf(_this, InvalidMaxConflictFilesException.prototype);
|
|
509
|
+
return _this;
|
|
510
|
+
}
|
|
511
|
+
return InvalidMaxConflictFilesException;
|
|
512
|
+
}(__BaseException));
|
|
513
|
+
export { InvalidMaxConflictFilesException };
|
|
514
|
+
var InvalidMaxMergeHunksException = (function (_super) {
|
|
515
|
+
__extends(InvalidMaxMergeHunksException, _super);
|
|
516
|
+
function InvalidMaxMergeHunksException(opts) {
|
|
517
|
+
var _this = _super.call(this, __assign({ name: "InvalidMaxMergeHunksException", $fault: "client" }, opts)) || this;
|
|
518
|
+
_this.name = "InvalidMaxMergeHunksException";
|
|
519
|
+
_this.$fault = "client";
|
|
520
|
+
Object.setPrototypeOf(_this, InvalidMaxMergeHunksException.prototype);
|
|
521
|
+
return _this;
|
|
522
|
+
}
|
|
523
|
+
return InvalidMaxMergeHunksException;
|
|
524
|
+
}(__BaseException));
|
|
525
|
+
export { InvalidMaxMergeHunksException };
|
|
526
|
+
var InvalidMergeOptionException = (function (_super) {
|
|
527
|
+
__extends(InvalidMergeOptionException, _super);
|
|
528
|
+
function InvalidMergeOptionException(opts) {
|
|
529
|
+
var _this = _super.call(this, __assign({ name: "InvalidMergeOptionException", $fault: "client" }, opts)) || this;
|
|
530
|
+
_this.name = "InvalidMergeOptionException";
|
|
531
|
+
_this.$fault = "client";
|
|
532
|
+
Object.setPrototypeOf(_this, InvalidMergeOptionException.prototype);
|
|
533
|
+
return _this;
|
|
534
|
+
}
|
|
535
|
+
return InvalidMergeOptionException;
|
|
536
|
+
}(__BaseException));
|
|
537
|
+
export { InvalidMergeOptionException };
|
|
538
|
+
var MaximumFileContentToLoadExceededException = (function (_super) {
|
|
539
|
+
__extends(MaximumFileContentToLoadExceededException, _super);
|
|
540
|
+
function MaximumFileContentToLoadExceededException(opts) {
|
|
541
|
+
var _this = _super.call(this, __assign({ name: "MaximumFileContentToLoadExceededException", $fault: "client" }, opts)) || this;
|
|
542
|
+
_this.name = "MaximumFileContentToLoadExceededException";
|
|
543
|
+
_this.$fault = "client";
|
|
544
|
+
Object.setPrototypeOf(_this, MaximumFileContentToLoadExceededException.prototype);
|
|
545
|
+
return _this;
|
|
546
|
+
}
|
|
547
|
+
return MaximumFileContentToLoadExceededException;
|
|
548
|
+
}(__BaseException));
|
|
549
|
+
export { MaximumFileContentToLoadExceededException };
|
|
550
|
+
var MaximumItemsToCompareExceededException = (function (_super) {
|
|
551
|
+
__extends(MaximumItemsToCompareExceededException, _super);
|
|
552
|
+
function MaximumItemsToCompareExceededException(opts) {
|
|
553
|
+
var _this = _super.call(this, __assign({ name: "MaximumItemsToCompareExceededException", $fault: "client" }, opts)) || this;
|
|
554
|
+
_this.name = "MaximumItemsToCompareExceededException";
|
|
555
|
+
_this.$fault = "client";
|
|
556
|
+
Object.setPrototypeOf(_this, MaximumItemsToCompareExceededException.prototype);
|
|
557
|
+
return _this;
|
|
558
|
+
}
|
|
559
|
+
return MaximumItemsToCompareExceededException;
|
|
560
|
+
}(__BaseException));
|
|
561
|
+
export { MaximumItemsToCompareExceededException };
|
|
562
|
+
var MergeOptionRequiredException = (function (_super) {
|
|
563
|
+
__extends(MergeOptionRequiredException, _super);
|
|
564
|
+
function MergeOptionRequiredException(opts) {
|
|
565
|
+
var _this = _super.call(this, __assign({ name: "MergeOptionRequiredException", $fault: "client" }, opts)) || this;
|
|
566
|
+
_this.name = "MergeOptionRequiredException";
|
|
567
|
+
_this.$fault = "client";
|
|
568
|
+
Object.setPrototypeOf(_this, MergeOptionRequiredException.prototype);
|
|
569
|
+
return _this;
|
|
570
|
+
}
|
|
571
|
+
return MergeOptionRequiredException;
|
|
572
|
+
}(__BaseException));
|
|
573
|
+
export { MergeOptionRequiredException };
|
|
574
|
+
var TipsDivergenceExceededException = (function (_super) {
|
|
575
|
+
__extends(TipsDivergenceExceededException, _super);
|
|
576
|
+
function TipsDivergenceExceededException(opts) {
|
|
577
|
+
var _this = _super.call(this, __assign({ name: "TipsDivergenceExceededException", $fault: "client" }, opts)) || this;
|
|
578
|
+
_this.name = "TipsDivergenceExceededException";
|
|
579
|
+
_this.$fault = "client";
|
|
580
|
+
Object.setPrototypeOf(_this, TipsDivergenceExceededException.prototype);
|
|
581
|
+
return _this;
|
|
582
|
+
}
|
|
583
|
+
return TipsDivergenceExceededException;
|
|
584
|
+
}(__BaseException));
|
|
585
|
+
export { TipsDivergenceExceededException };
|
|
141
586
|
export var BatchDisassociateApprovalRuleTemplateFromRepositoriesInput;
|
|
142
587
|
(function (BatchDisassociateApprovalRuleTemplateFromRepositoriesInput) {
|
|
143
588
|
BatchDisassociateApprovalRuleTemplateFromRepositoriesInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -170,6 +615,30 @@ export var BatchGetCommitsOutput;
|
|
|
170
615
|
(function (BatchGetCommitsOutput) {
|
|
171
616
|
BatchGetCommitsOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
172
617
|
})(BatchGetCommitsOutput || (BatchGetCommitsOutput = {}));
|
|
618
|
+
var CommitIdsLimitExceededException = (function (_super) {
|
|
619
|
+
__extends(CommitIdsLimitExceededException, _super);
|
|
620
|
+
function CommitIdsLimitExceededException(opts) {
|
|
621
|
+
var _this = _super.call(this, __assign({ name: "CommitIdsLimitExceededException", $fault: "client" }, opts)) || this;
|
|
622
|
+
_this.name = "CommitIdsLimitExceededException";
|
|
623
|
+
_this.$fault = "client";
|
|
624
|
+
Object.setPrototypeOf(_this, CommitIdsLimitExceededException.prototype);
|
|
625
|
+
return _this;
|
|
626
|
+
}
|
|
627
|
+
return CommitIdsLimitExceededException;
|
|
628
|
+
}(__BaseException));
|
|
629
|
+
export { CommitIdsLimitExceededException };
|
|
630
|
+
var CommitIdsListRequiredException = (function (_super) {
|
|
631
|
+
__extends(CommitIdsListRequiredException, _super);
|
|
632
|
+
function CommitIdsListRequiredException(opts) {
|
|
633
|
+
var _this = _super.call(this, __assign({ name: "CommitIdsListRequiredException", $fault: "client" }, opts)) || this;
|
|
634
|
+
_this.name = "CommitIdsListRequiredException";
|
|
635
|
+
_this.$fault = "client";
|
|
636
|
+
Object.setPrototypeOf(_this, CommitIdsListRequiredException.prototype);
|
|
637
|
+
return _this;
|
|
638
|
+
}
|
|
639
|
+
return CommitIdsListRequiredException;
|
|
640
|
+
}(__BaseException));
|
|
641
|
+
export { CommitIdsListRequiredException };
|
|
173
642
|
export var BatchGetRepositoriesInput;
|
|
174
643
|
(function (BatchGetRepositoriesInput) {
|
|
175
644
|
BatchGetRepositoriesInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -182,14 +651,134 @@ export var BatchGetRepositoriesOutput;
|
|
|
182
651
|
(function (BatchGetRepositoriesOutput) {
|
|
183
652
|
BatchGetRepositoriesOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
184
653
|
})(BatchGetRepositoriesOutput || (BatchGetRepositoriesOutput = {}));
|
|
654
|
+
var BeforeCommitIdAndAfterCommitIdAreSameException = (function (_super) {
|
|
655
|
+
__extends(BeforeCommitIdAndAfterCommitIdAreSameException, _super);
|
|
656
|
+
function BeforeCommitIdAndAfterCommitIdAreSameException(opts) {
|
|
657
|
+
var _this = _super.call(this, __assign({ name: "BeforeCommitIdAndAfterCommitIdAreSameException", $fault: "client" }, opts)) || this;
|
|
658
|
+
_this.name = "BeforeCommitIdAndAfterCommitIdAreSameException";
|
|
659
|
+
_this.$fault = "client";
|
|
660
|
+
Object.setPrototypeOf(_this, BeforeCommitIdAndAfterCommitIdAreSameException.prototype);
|
|
661
|
+
return _this;
|
|
662
|
+
}
|
|
663
|
+
return BeforeCommitIdAndAfterCommitIdAreSameException;
|
|
664
|
+
}(__BaseException));
|
|
665
|
+
export { BeforeCommitIdAndAfterCommitIdAreSameException };
|
|
666
|
+
var BlobIdDoesNotExistException = (function (_super) {
|
|
667
|
+
__extends(BlobIdDoesNotExistException, _super);
|
|
668
|
+
function BlobIdDoesNotExistException(opts) {
|
|
669
|
+
var _this = _super.call(this, __assign({ name: "BlobIdDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
670
|
+
_this.name = "BlobIdDoesNotExistException";
|
|
671
|
+
_this.$fault = "client";
|
|
672
|
+
Object.setPrototypeOf(_this, BlobIdDoesNotExistException.prototype);
|
|
673
|
+
return _this;
|
|
674
|
+
}
|
|
675
|
+
return BlobIdDoesNotExistException;
|
|
676
|
+
}(__BaseException));
|
|
677
|
+
export { BlobIdDoesNotExistException };
|
|
678
|
+
var BlobIdRequiredException = (function (_super) {
|
|
679
|
+
__extends(BlobIdRequiredException, _super);
|
|
680
|
+
function BlobIdRequiredException(opts) {
|
|
681
|
+
var _this = _super.call(this, __assign({ name: "BlobIdRequiredException", $fault: "client" }, opts)) || this;
|
|
682
|
+
_this.name = "BlobIdRequiredException";
|
|
683
|
+
_this.$fault = "client";
|
|
684
|
+
Object.setPrototypeOf(_this, BlobIdRequiredException.prototype);
|
|
685
|
+
return _this;
|
|
686
|
+
}
|
|
687
|
+
return BlobIdRequiredException;
|
|
688
|
+
}(__BaseException));
|
|
689
|
+
export { BlobIdRequiredException };
|
|
185
690
|
export var BlobMetadata;
|
|
186
691
|
(function (BlobMetadata) {
|
|
187
692
|
BlobMetadata.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
188
693
|
})(BlobMetadata || (BlobMetadata = {}));
|
|
694
|
+
var BranchDoesNotExistException = (function (_super) {
|
|
695
|
+
__extends(BranchDoesNotExistException, _super);
|
|
696
|
+
function BranchDoesNotExistException(opts) {
|
|
697
|
+
var _this = _super.call(this, __assign({ name: "BranchDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
698
|
+
_this.name = "BranchDoesNotExistException";
|
|
699
|
+
_this.$fault = "client";
|
|
700
|
+
Object.setPrototypeOf(_this, BranchDoesNotExistException.prototype);
|
|
701
|
+
return _this;
|
|
702
|
+
}
|
|
703
|
+
return BranchDoesNotExistException;
|
|
704
|
+
}(__BaseException));
|
|
705
|
+
export { BranchDoesNotExistException };
|
|
189
706
|
export var BranchInfo;
|
|
190
707
|
(function (BranchInfo) {
|
|
191
708
|
BranchInfo.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
192
709
|
})(BranchInfo || (BranchInfo = {}));
|
|
710
|
+
var BranchNameExistsException = (function (_super) {
|
|
711
|
+
__extends(BranchNameExistsException, _super);
|
|
712
|
+
function BranchNameExistsException(opts) {
|
|
713
|
+
var _this = _super.call(this, __assign({ name: "BranchNameExistsException", $fault: "client" }, opts)) || this;
|
|
714
|
+
_this.name = "BranchNameExistsException";
|
|
715
|
+
_this.$fault = "client";
|
|
716
|
+
Object.setPrototypeOf(_this, BranchNameExistsException.prototype);
|
|
717
|
+
return _this;
|
|
718
|
+
}
|
|
719
|
+
return BranchNameExistsException;
|
|
720
|
+
}(__BaseException));
|
|
721
|
+
export { BranchNameExistsException };
|
|
722
|
+
var BranchNameIsTagNameException = (function (_super) {
|
|
723
|
+
__extends(BranchNameIsTagNameException, _super);
|
|
724
|
+
function BranchNameIsTagNameException(opts) {
|
|
725
|
+
var _this = _super.call(this, __assign({ name: "BranchNameIsTagNameException", $fault: "client" }, opts)) || this;
|
|
726
|
+
_this.name = "BranchNameIsTagNameException";
|
|
727
|
+
_this.$fault = "client";
|
|
728
|
+
Object.setPrototypeOf(_this, BranchNameIsTagNameException.prototype);
|
|
729
|
+
return _this;
|
|
730
|
+
}
|
|
731
|
+
return BranchNameIsTagNameException;
|
|
732
|
+
}(__BaseException));
|
|
733
|
+
export { BranchNameIsTagNameException };
|
|
734
|
+
var BranchNameRequiredException = (function (_super) {
|
|
735
|
+
__extends(BranchNameRequiredException, _super);
|
|
736
|
+
function BranchNameRequiredException(opts) {
|
|
737
|
+
var _this = _super.call(this, __assign({ name: "BranchNameRequiredException", $fault: "client" }, opts)) || this;
|
|
738
|
+
_this.name = "BranchNameRequiredException";
|
|
739
|
+
_this.$fault = "client";
|
|
740
|
+
Object.setPrototypeOf(_this, BranchNameRequiredException.prototype);
|
|
741
|
+
return _this;
|
|
742
|
+
}
|
|
743
|
+
return BranchNameRequiredException;
|
|
744
|
+
}(__BaseException));
|
|
745
|
+
export { BranchNameRequiredException };
|
|
746
|
+
var CannotDeleteApprovalRuleFromTemplateException = (function (_super) {
|
|
747
|
+
__extends(CannotDeleteApprovalRuleFromTemplateException, _super);
|
|
748
|
+
function CannotDeleteApprovalRuleFromTemplateException(opts) {
|
|
749
|
+
var _this = _super.call(this, __assign({ name: "CannotDeleteApprovalRuleFromTemplateException", $fault: "client" }, opts)) || this;
|
|
750
|
+
_this.name = "CannotDeleteApprovalRuleFromTemplateException";
|
|
751
|
+
_this.$fault = "client";
|
|
752
|
+
Object.setPrototypeOf(_this, CannotDeleteApprovalRuleFromTemplateException.prototype);
|
|
753
|
+
return _this;
|
|
754
|
+
}
|
|
755
|
+
return CannotDeleteApprovalRuleFromTemplateException;
|
|
756
|
+
}(__BaseException));
|
|
757
|
+
export { CannotDeleteApprovalRuleFromTemplateException };
|
|
758
|
+
var CannotModifyApprovalRuleFromTemplateException = (function (_super) {
|
|
759
|
+
__extends(CannotModifyApprovalRuleFromTemplateException, _super);
|
|
760
|
+
function CannotModifyApprovalRuleFromTemplateException(opts) {
|
|
761
|
+
var _this = _super.call(this, __assign({ name: "CannotModifyApprovalRuleFromTemplateException", $fault: "client" }, opts)) || this;
|
|
762
|
+
_this.name = "CannotModifyApprovalRuleFromTemplateException";
|
|
763
|
+
_this.$fault = "client";
|
|
764
|
+
Object.setPrototypeOf(_this, CannotModifyApprovalRuleFromTemplateException.prototype);
|
|
765
|
+
return _this;
|
|
766
|
+
}
|
|
767
|
+
return CannotModifyApprovalRuleFromTemplateException;
|
|
768
|
+
}(__BaseException));
|
|
769
|
+
export { CannotModifyApprovalRuleFromTemplateException };
|
|
770
|
+
var ClientRequestTokenRequiredException = (function (_super) {
|
|
771
|
+
__extends(ClientRequestTokenRequiredException, _super);
|
|
772
|
+
function ClientRequestTokenRequiredException(opts) {
|
|
773
|
+
var _this = _super.call(this, __assign({ name: "ClientRequestTokenRequiredException", $fault: "client" }, opts)) || this;
|
|
774
|
+
_this.name = "ClientRequestTokenRequiredException";
|
|
775
|
+
_this.$fault = "client";
|
|
776
|
+
Object.setPrototypeOf(_this, ClientRequestTokenRequiredException.prototype);
|
|
777
|
+
return _this;
|
|
778
|
+
}
|
|
779
|
+
return ClientRequestTokenRequiredException;
|
|
780
|
+
}(__BaseException));
|
|
781
|
+
export { ClientRequestTokenRequiredException };
|
|
193
782
|
export var CreateApprovalRuleTemplateInput;
|
|
194
783
|
(function (CreateApprovalRuleTemplateInput) {
|
|
195
784
|
CreateApprovalRuleTemplateInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -198,10 +787,94 @@ export var CreateApprovalRuleTemplateOutput;
|
|
|
198
787
|
(function (CreateApprovalRuleTemplateOutput) {
|
|
199
788
|
CreateApprovalRuleTemplateOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
200
789
|
})(CreateApprovalRuleTemplateOutput || (CreateApprovalRuleTemplateOutput = {}));
|
|
790
|
+
var InvalidApprovalRuleTemplateContentException = (function (_super) {
|
|
791
|
+
__extends(InvalidApprovalRuleTemplateContentException, _super);
|
|
792
|
+
function InvalidApprovalRuleTemplateContentException(opts) {
|
|
793
|
+
var _this = _super.call(this, __assign({ name: "InvalidApprovalRuleTemplateContentException", $fault: "client" }, opts)) || this;
|
|
794
|
+
_this.name = "InvalidApprovalRuleTemplateContentException";
|
|
795
|
+
_this.$fault = "client";
|
|
796
|
+
Object.setPrototypeOf(_this, InvalidApprovalRuleTemplateContentException.prototype);
|
|
797
|
+
return _this;
|
|
798
|
+
}
|
|
799
|
+
return InvalidApprovalRuleTemplateContentException;
|
|
800
|
+
}(__BaseException));
|
|
801
|
+
export { InvalidApprovalRuleTemplateContentException };
|
|
802
|
+
var InvalidApprovalRuleTemplateDescriptionException = (function (_super) {
|
|
803
|
+
__extends(InvalidApprovalRuleTemplateDescriptionException, _super);
|
|
804
|
+
function InvalidApprovalRuleTemplateDescriptionException(opts) {
|
|
805
|
+
var _this = _super.call(this, __assign({ name: "InvalidApprovalRuleTemplateDescriptionException", $fault: "client" }, opts)) || this;
|
|
806
|
+
_this.name = "InvalidApprovalRuleTemplateDescriptionException";
|
|
807
|
+
_this.$fault = "client";
|
|
808
|
+
Object.setPrototypeOf(_this, InvalidApprovalRuleTemplateDescriptionException.prototype);
|
|
809
|
+
return _this;
|
|
810
|
+
}
|
|
811
|
+
return InvalidApprovalRuleTemplateDescriptionException;
|
|
812
|
+
}(__BaseException));
|
|
813
|
+
export { InvalidApprovalRuleTemplateDescriptionException };
|
|
814
|
+
var NumberOfRuleTemplatesExceededException = (function (_super) {
|
|
815
|
+
__extends(NumberOfRuleTemplatesExceededException, _super);
|
|
816
|
+
function NumberOfRuleTemplatesExceededException(opts) {
|
|
817
|
+
var _this = _super.call(this, __assign({ name: "NumberOfRuleTemplatesExceededException", $fault: "client" }, opts)) || this;
|
|
818
|
+
_this.name = "NumberOfRuleTemplatesExceededException";
|
|
819
|
+
_this.$fault = "client";
|
|
820
|
+
Object.setPrototypeOf(_this, NumberOfRuleTemplatesExceededException.prototype);
|
|
821
|
+
return _this;
|
|
822
|
+
}
|
|
823
|
+
return NumberOfRuleTemplatesExceededException;
|
|
824
|
+
}(__BaseException));
|
|
825
|
+
export { NumberOfRuleTemplatesExceededException };
|
|
826
|
+
var CommitIdRequiredException = (function (_super) {
|
|
827
|
+
__extends(CommitIdRequiredException, _super);
|
|
828
|
+
function CommitIdRequiredException(opts) {
|
|
829
|
+
var _this = _super.call(this, __assign({ name: "CommitIdRequiredException", $fault: "client" }, opts)) || this;
|
|
830
|
+
_this.name = "CommitIdRequiredException";
|
|
831
|
+
_this.$fault = "client";
|
|
832
|
+
Object.setPrototypeOf(_this, CommitIdRequiredException.prototype);
|
|
833
|
+
return _this;
|
|
834
|
+
}
|
|
835
|
+
return CommitIdRequiredException;
|
|
836
|
+
}(__BaseException));
|
|
837
|
+
export { CommitIdRequiredException };
|
|
201
838
|
export var CreateBranchInput;
|
|
202
839
|
(function (CreateBranchInput) {
|
|
203
840
|
CreateBranchInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
204
841
|
})(CreateBranchInput || (CreateBranchInput = {}));
|
|
842
|
+
var InvalidBranchNameException = (function (_super) {
|
|
843
|
+
__extends(InvalidBranchNameException, _super);
|
|
844
|
+
function InvalidBranchNameException(opts) {
|
|
845
|
+
var _this = _super.call(this, __assign({ name: "InvalidBranchNameException", $fault: "client" }, opts)) || this;
|
|
846
|
+
_this.name = "InvalidBranchNameException";
|
|
847
|
+
_this.$fault = "client";
|
|
848
|
+
Object.setPrototypeOf(_this, InvalidBranchNameException.prototype);
|
|
849
|
+
return _this;
|
|
850
|
+
}
|
|
851
|
+
return InvalidBranchNameException;
|
|
852
|
+
}(__BaseException));
|
|
853
|
+
export { InvalidBranchNameException };
|
|
854
|
+
var InvalidCommitIdException = (function (_super) {
|
|
855
|
+
__extends(InvalidCommitIdException, _super);
|
|
856
|
+
function InvalidCommitIdException(opts) {
|
|
857
|
+
var _this = _super.call(this, __assign({ name: "InvalidCommitIdException", $fault: "client" }, opts)) || this;
|
|
858
|
+
_this.name = "InvalidCommitIdException";
|
|
859
|
+
_this.$fault = "client";
|
|
860
|
+
Object.setPrototypeOf(_this, InvalidCommitIdException.prototype);
|
|
861
|
+
return _this;
|
|
862
|
+
}
|
|
863
|
+
return InvalidCommitIdException;
|
|
864
|
+
}(__BaseException));
|
|
865
|
+
export { InvalidCommitIdException };
|
|
866
|
+
var CommitMessageLengthExceededException = (function (_super) {
|
|
867
|
+
__extends(CommitMessageLengthExceededException, _super);
|
|
868
|
+
function CommitMessageLengthExceededException(opts) {
|
|
869
|
+
var _this = _super.call(this, __assign({ name: "CommitMessageLengthExceededException", $fault: "client" }, opts)) || this;
|
|
870
|
+
_this.name = "CommitMessageLengthExceededException";
|
|
871
|
+
_this.$fault = "client";
|
|
872
|
+
Object.setPrototypeOf(_this, CommitMessageLengthExceededException.prototype);
|
|
873
|
+
return _this;
|
|
874
|
+
}
|
|
875
|
+
return CommitMessageLengthExceededException;
|
|
876
|
+
}(__BaseException));
|
|
877
|
+
export { CommitMessageLengthExceededException };
|
|
205
878
|
export var DeleteFileEntry;
|
|
206
879
|
(function (DeleteFileEntry) {
|
|
207
880
|
DeleteFileEntry.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -230,6 +903,306 @@ export var CreateCommitOutput;
|
|
|
230
903
|
(function (CreateCommitOutput) {
|
|
231
904
|
CreateCommitOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
232
905
|
})(CreateCommitOutput || (CreateCommitOutput = {}));
|
|
906
|
+
var DirectoryNameConflictsWithFileNameException = (function (_super) {
|
|
907
|
+
__extends(DirectoryNameConflictsWithFileNameException, _super);
|
|
908
|
+
function DirectoryNameConflictsWithFileNameException(opts) {
|
|
909
|
+
var _this = _super.call(this, __assign({ name: "DirectoryNameConflictsWithFileNameException", $fault: "client" }, opts)) || this;
|
|
910
|
+
_this.name = "DirectoryNameConflictsWithFileNameException";
|
|
911
|
+
_this.$fault = "client";
|
|
912
|
+
Object.setPrototypeOf(_this, DirectoryNameConflictsWithFileNameException.prototype);
|
|
913
|
+
return _this;
|
|
914
|
+
}
|
|
915
|
+
return DirectoryNameConflictsWithFileNameException;
|
|
916
|
+
}(__BaseException));
|
|
917
|
+
export { DirectoryNameConflictsWithFileNameException };
|
|
918
|
+
var FileContentAndSourceFileSpecifiedException = (function (_super) {
|
|
919
|
+
__extends(FileContentAndSourceFileSpecifiedException, _super);
|
|
920
|
+
function FileContentAndSourceFileSpecifiedException(opts) {
|
|
921
|
+
var _this = _super.call(this, __assign({ name: "FileContentAndSourceFileSpecifiedException", $fault: "client" }, opts)) || this;
|
|
922
|
+
_this.name = "FileContentAndSourceFileSpecifiedException";
|
|
923
|
+
_this.$fault = "client";
|
|
924
|
+
Object.setPrototypeOf(_this, FileContentAndSourceFileSpecifiedException.prototype);
|
|
925
|
+
return _this;
|
|
926
|
+
}
|
|
927
|
+
return FileContentAndSourceFileSpecifiedException;
|
|
928
|
+
}(__BaseException));
|
|
929
|
+
export { FileContentAndSourceFileSpecifiedException };
|
|
930
|
+
var FileContentSizeLimitExceededException = (function (_super) {
|
|
931
|
+
__extends(FileContentSizeLimitExceededException, _super);
|
|
932
|
+
function FileContentSizeLimitExceededException(opts) {
|
|
933
|
+
var _this = _super.call(this, __assign({ name: "FileContentSizeLimitExceededException", $fault: "client" }, opts)) || this;
|
|
934
|
+
_this.name = "FileContentSizeLimitExceededException";
|
|
935
|
+
_this.$fault = "client";
|
|
936
|
+
Object.setPrototypeOf(_this, FileContentSizeLimitExceededException.prototype);
|
|
937
|
+
return _this;
|
|
938
|
+
}
|
|
939
|
+
return FileContentSizeLimitExceededException;
|
|
940
|
+
}(__BaseException));
|
|
941
|
+
export { FileContentSizeLimitExceededException };
|
|
942
|
+
var FileDoesNotExistException = (function (_super) {
|
|
943
|
+
__extends(FileDoesNotExistException, _super);
|
|
944
|
+
function FileDoesNotExistException(opts) {
|
|
945
|
+
var _this = _super.call(this, __assign({ name: "FileDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
946
|
+
_this.name = "FileDoesNotExistException";
|
|
947
|
+
_this.$fault = "client";
|
|
948
|
+
Object.setPrototypeOf(_this, FileDoesNotExistException.prototype);
|
|
949
|
+
return _this;
|
|
950
|
+
}
|
|
951
|
+
return FileDoesNotExistException;
|
|
952
|
+
}(__BaseException));
|
|
953
|
+
export { FileDoesNotExistException };
|
|
954
|
+
var FileEntryRequiredException = (function (_super) {
|
|
955
|
+
__extends(FileEntryRequiredException, _super);
|
|
956
|
+
function FileEntryRequiredException(opts) {
|
|
957
|
+
var _this = _super.call(this, __assign({ name: "FileEntryRequiredException", $fault: "client" }, opts)) || this;
|
|
958
|
+
_this.name = "FileEntryRequiredException";
|
|
959
|
+
_this.$fault = "client";
|
|
960
|
+
Object.setPrototypeOf(_this, FileEntryRequiredException.prototype);
|
|
961
|
+
return _this;
|
|
962
|
+
}
|
|
963
|
+
return FileEntryRequiredException;
|
|
964
|
+
}(__BaseException));
|
|
965
|
+
export { FileEntryRequiredException };
|
|
966
|
+
var FileModeRequiredException = (function (_super) {
|
|
967
|
+
__extends(FileModeRequiredException, _super);
|
|
968
|
+
function FileModeRequiredException(opts) {
|
|
969
|
+
var _this = _super.call(this, __assign({ name: "FileModeRequiredException", $fault: "client" }, opts)) || this;
|
|
970
|
+
_this.name = "FileModeRequiredException";
|
|
971
|
+
_this.$fault = "client";
|
|
972
|
+
Object.setPrototypeOf(_this, FileModeRequiredException.prototype);
|
|
973
|
+
return _this;
|
|
974
|
+
}
|
|
975
|
+
return FileModeRequiredException;
|
|
976
|
+
}(__BaseException));
|
|
977
|
+
export { FileModeRequiredException };
|
|
978
|
+
var FileNameConflictsWithDirectoryNameException = (function (_super) {
|
|
979
|
+
__extends(FileNameConflictsWithDirectoryNameException, _super);
|
|
980
|
+
function FileNameConflictsWithDirectoryNameException(opts) {
|
|
981
|
+
var _this = _super.call(this, __assign({ name: "FileNameConflictsWithDirectoryNameException", $fault: "client" }, opts)) || this;
|
|
982
|
+
_this.name = "FileNameConflictsWithDirectoryNameException";
|
|
983
|
+
_this.$fault = "client";
|
|
984
|
+
Object.setPrototypeOf(_this, FileNameConflictsWithDirectoryNameException.prototype);
|
|
985
|
+
return _this;
|
|
986
|
+
}
|
|
987
|
+
return FileNameConflictsWithDirectoryNameException;
|
|
988
|
+
}(__BaseException));
|
|
989
|
+
export { FileNameConflictsWithDirectoryNameException };
|
|
990
|
+
var FilePathConflictsWithSubmodulePathException = (function (_super) {
|
|
991
|
+
__extends(FilePathConflictsWithSubmodulePathException, _super);
|
|
992
|
+
function FilePathConflictsWithSubmodulePathException(opts) {
|
|
993
|
+
var _this = _super.call(this, __assign({ name: "FilePathConflictsWithSubmodulePathException", $fault: "client" }, opts)) || this;
|
|
994
|
+
_this.name = "FilePathConflictsWithSubmodulePathException";
|
|
995
|
+
_this.$fault = "client";
|
|
996
|
+
Object.setPrototypeOf(_this, FilePathConflictsWithSubmodulePathException.prototype);
|
|
997
|
+
return _this;
|
|
998
|
+
}
|
|
999
|
+
return FilePathConflictsWithSubmodulePathException;
|
|
1000
|
+
}(__BaseException));
|
|
1001
|
+
export { FilePathConflictsWithSubmodulePathException };
|
|
1002
|
+
var FolderContentSizeLimitExceededException = (function (_super) {
|
|
1003
|
+
__extends(FolderContentSizeLimitExceededException, _super);
|
|
1004
|
+
function FolderContentSizeLimitExceededException(opts) {
|
|
1005
|
+
var _this = _super.call(this, __assign({ name: "FolderContentSizeLimitExceededException", $fault: "client" }, opts)) || this;
|
|
1006
|
+
_this.name = "FolderContentSizeLimitExceededException";
|
|
1007
|
+
_this.$fault = "client";
|
|
1008
|
+
Object.setPrototypeOf(_this, FolderContentSizeLimitExceededException.prototype);
|
|
1009
|
+
return _this;
|
|
1010
|
+
}
|
|
1011
|
+
return FolderContentSizeLimitExceededException;
|
|
1012
|
+
}(__BaseException));
|
|
1013
|
+
export { FolderContentSizeLimitExceededException };
|
|
1014
|
+
var InvalidDeletionParameterException = (function (_super) {
|
|
1015
|
+
__extends(InvalidDeletionParameterException, _super);
|
|
1016
|
+
function InvalidDeletionParameterException(opts) {
|
|
1017
|
+
var _this = _super.call(this, __assign({ name: "InvalidDeletionParameterException", $fault: "client" }, opts)) || this;
|
|
1018
|
+
_this.name = "InvalidDeletionParameterException";
|
|
1019
|
+
_this.$fault = "client";
|
|
1020
|
+
Object.setPrototypeOf(_this, InvalidDeletionParameterException.prototype);
|
|
1021
|
+
return _this;
|
|
1022
|
+
}
|
|
1023
|
+
return InvalidDeletionParameterException;
|
|
1024
|
+
}(__BaseException));
|
|
1025
|
+
export { InvalidDeletionParameterException };
|
|
1026
|
+
var InvalidEmailException = (function (_super) {
|
|
1027
|
+
__extends(InvalidEmailException, _super);
|
|
1028
|
+
function InvalidEmailException(opts) {
|
|
1029
|
+
var _this = _super.call(this, __assign({ name: "InvalidEmailException", $fault: "client" }, opts)) || this;
|
|
1030
|
+
_this.name = "InvalidEmailException";
|
|
1031
|
+
_this.$fault = "client";
|
|
1032
|
+
Object.setPrototypeOf(_this, InvalidEmailException.prototype);
|
|
1033
|
+
return _this;
|
|
1034
|
+
}
|
|
1035
|
+
return InvalidEmailException;
|
|
1036
|
+
}(__BaseException));
|
|
1037
|
+
export { InvalidEmailException };
|
|
1038
|
+
var InvalidFileModeException = (function (_super) {
|
|
1039
|
+
__extends(InvalidFileModeException, _super);
|
|
1040
|
+
function InvalidFileModeException(opts) {
|
|
1041
|
+
var _this = _super.call(this, __assign({ name: "InvalidFileModeException", $fault: "client" }, opts)) || this;
|
|
1042
|
+
_this.name = "InvalidFileModeException";
|
|
1043
|
+
_this.$fault = "client";
|
|
1044
|
+
Object.setPrototypeOf(_this, InvalidFileModeException.prototype);
|
|
1045
|
+
return _this;
|
|
1046
|
+
}
|
|
1047
|
+
return InvalidFileModeException;
|
|
1048
|
+
}(__BaseException));
|
|
1049
|
+
export { InvalidFileModeException };
|
|
1050
|
+
var InvalidParentCommitIdException = (function (_super) {
|
|
1051
|
+
__extends(InvalidParentCommitIdException, _super);
|
|
1052
|
+
function InvalidParentCommitIdException(opts) {
|
|
1053
|
+
var _this = _super.call(this, __assign({ name: "InvalidParentCommitIdException", $fault: "client" }, opts)) || this;
|
|
1054
|
+
_this.name = "InvalidParentCommitIdException";
|
|
1055
|
+
_this.$fault = "client";
|
|
1056
|
+
Object.setPrototypeOf(_this, InvalidParentCommitIdException.prototype);
|
|
1057
|
+
return _this;
|
|
1058
|
+
}
|
|
1059
|
+
return InvalidParentCommitIdException;
|
|
1060
|
+
}(__BaseException));
|
|
1061
|
+
export { InvalidParentCommitIdException };
|
|
1062
|
+
var InvalidPathException = (function (_super) {
|
|
1063
|
+
__extends(InvalidPathException, _super);
|
|
1064
|
+
function InvalidPathException(opts) {
|
|
1065
|
+
var _this = _super.call(this, __assign({ name: "InvalidPathException", $fault: "client" }, opts)) || this;
|
|
1066
|
+
_this.name = "InvalidPathException";
|
|
1067
|
+
_this.$fault = "client";
|
|
1068
|
+
Object.setPrototypeOf(_this, InvalidPathException.prototype);
|
|
1069
|
+
return _this;
|
|
1070
|
+
}
|
|
1071
|
+
return InvalidPathException;
|
|
1072
|
+
}(__BaseException));
|
|
1073
|
+
export { InvalidPathException };
|
|
1074
|
+
var MaximumFileEntriesExceededException = (function (_super) {
|
|
1075
|
+
__extends(MaximumFileEntriesExceededException, _super);
|
|
1076
|
+
function MaximumFileEntriesExceededException(opts) {
|
|
1077
|
+
var _this = _super.call(this, __assign({ name: "MaximumFileEntriesExceededException", $fault: "client" }, opts)) || this;
|
|
1078
|
+
_this.name = "MaximumFileEntriesExceededException";
|
|
1079
|
+
_this.$fault = "client";
|
|
1080
|
+
Object.setPrototypeOf(_this, MaximumFileEntriesExceededException.prototype);
|
|
1081
|
+
return _this;
|
|
1082
|
+
}
|
|
1083
|
+
return MaximumFileEntriesExceededException;
|
|
1084
|
+
}(__BaseException));
|
|
1085
|
+
export { MaximumFileEntriesExceededException };
|
|
1086
|
+
var NameLengthExceededException = (function (_super) {
|
|
1087
|
+
__extends(NameLengthExceededException, _super);
|
|
1088
|
+
function NameLengthExceededException(opts) {
|
|
1089
|
+
var _this = _super.call(this, __assign({ name: "NameLengthExceededException", $fault: "client" }, opts)) || this;
|
|
1090
|
+
_this.name = "NameLengthExceededException";
|
|
1091
|
+
_this.$fault = "client";
|
|
1092
|
+
Object.setPrototypeOf(_this, NameLengthExceededException.prototype);
|
|
1093
|
+
return _this;
|
|
1094
|
+
}
|
|
1095
|
+
return NameLengthExceededException;
|
|
1096
|
+
}(__BaseException));
|
|
1097
|
+
export { NameLengthExceededException };
|
|
1098
|
+
var NoChangeException = (function (_super) {
|
|
1099
|
+
__extends(NoChangeException, _super);
|
|
1100
|
+
function NoChangeException(opts) {
|
|
1101
|
+
var _this = _super.call(this, __assign({ name: "NoChangeException", $fault: "client" }, opts)) || this;
|
|
1102
|
+
_this.name = "NoChangeException";
|
|
1103
|
+
_this.$fault = "client";
|
|
1104
|
+
Object.setPrototypeOf(_this, NoChangeException.prototype);
|
|
1105
|
+
return _this;
|
|
1106
|
+
}
|
|
1107
|
+
return NoChangeException;
|
|
1108
|
+
}(__BaseException));
|
|
1109
|
+
export { NoChangeException };
|
|
1110
|
+
var ParentCommitDoesNotExistException = (function (_super) {
|
|
1111
|
+
__extends(ParentCommitDoesNotExistException, _super);
|
|
1112
|
+
function ParentCommitDoesNotExistException(opts) {
|
|
1113
|
+
var _this = _super.call(this, __assign({ name: "ParentCommitDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
1114
|
+
_this.name = "ParentCommitDoesNotExistException";
|
|
1115
|
+
_this.$fault = "client";
|
|
1116
|
+
Object.setPrototypeOf(_this, ParentCommitDoesNotExistException.prototype);
|
|
1117
|
+
return _this;
|
|
1118
|
+
}
|
|
1119
|
+
return ParentCommitDoesNotExistException;
|
|
1120
|
+
}(__BaseException));
|
|
1121
|
+
export { ParentCommitDoesNotExistException };
|
|
1122
|
+
var ParentCommitIdOutdatedException = (function (_super) {
|
|
1123
|
+
__extends(ParentCommitIdOutdatedException, _super);
|
|
1124
|
+
function ParentCommitIdOutdatedException(opts) {
|
|
1125
|
+
var _this = _super.call(this, __assign({ name: "ParentCommitIdOutdatedException", $fault: "client" }, opts)) || this;
|
|
1126
|
+
_this.name = "ParentCommitIdOutdatedException";
|
|
1127
|
+
_this.$fault = "client";
|
|
1128
|
+
Object.setPrototypeOf(_this, ParentCommitIdOutdatedException.prototype);
|
|
1129
|
+
return _this;
|
|
1130
|
+
}
|
|
1131
|
+
return ParentCommitIdOutdatedException;
|
|
1132
|
+
}(__BaseException));
|
|
1133
|
+
export { ParentCommitIdOutdatedException };
|
|
1134
|
+
var ParentCommitIdRequiredException = (function (_super) {
|
|
1135
|
+
__extends(ParentCommitIdRequiredException, _super);
|
|
1136
|
+
function ParentCommitIdRequiredException(opts) {
|
|
1137
|
+
var _this = _super.call(this, __assign({ name: "ParentCommitIdRequiredException", $fault: "client" }, opts)) || this;
|
|
1138
|
+
_this.name = "ParentCommitIdRequiredException";
|
|
1139
|
+
_this.$fault = "client";
|
|
1140
|
+
Object.setPrototypeOf(_this, ParentCommitIdRequiredException.prototype);
|
|
1141
|
+
return _this;
|
|
1142
|
+
}
|
|
1143
|
+
return ParentCommitIdRequiredException;
|
|
1144
|
+
}(__BaseException));
|
|
1145
|
+
export { ParentCommitIdRequiredException };
|
|
1146
|
+
var PathRequiredException = (function (_super) {
|
|
1147
|
+
__extends(PathRequiredException, _super);
|
|
1148
|
+
function PathRequiredException(opts) {
|
|
1149
|
+
var _this = _super.call(this, __assign({ name: "PathRequiredException", $fault: "client" }, opts)) || this;
|
|
1150
|
+
_this.name = "PathRequiredException";
|
|
1151
|
+
_this.$fault = "client";
|
|
1152
|
+
Object.setPrototypeOf(_this, PathRequiredException.prototype);
|
|
1153
|
+
return _this;
|
|
1154
|
+
}
|
|
1155
|
+
return PathRequiredException;
|
|
1156
|
+
}(__BaseException));
|
|
1157
|
+
export { PathRequiredException };
|
|
1158
|
+
var PutFileEntryConflictException = (function (_super) {
|
|
1159
|
+
__extends(PutFileEntryConflictException, _super);
|
|
1160
|
+
function PutFileEntryConflictException(opts) {
|
|
1161
|
+
var _this = _super.call(this, __assign({ name: "PutFileEntryConflictException", $fault: "client" }, opts)) || this;
|
|
1162
|
+
_this.name = "PutFileEntryConflictException";
|
|
1163
|
+
_this.$fault = "client";
|
|
1164
|
+
Object.setPrototypeOf(_this, PutFileEntryConflictException.prototype);
|
|
1165
|
+
return _this;
|
|
1166
|
+
}
|
|
1167
|
+
return PutFileEntryConflictException;
|
|
1168
|
+
}(__BaseException));
|
|
1169
|
+
export { PutFileEntryConflictException };
|
|
1170
|
+
var RestrictedSourceFileException = (function (_super) {
|
|
1171
|
+
__extends(RestrictedSourceFileException, _super);
|
|
1172
|
+
function RestrictedSourceFileException(opts) {
|
|
1173
|
+
var _this = _super.call(this, __assign({ name: "RestrictedSourceFileException", $fault: "client" }, opts)) || this;
|
|
1174
|
+
_this.name = "RestrictedSourceFileException";
|
|
1175
|
+
_this.$fault = "client";
|
|
1176
|
+
Object.setPrototypeOf(_this, RestrictedSourceFileException.prototype);
|
|
1177
|
+
return _this;
|
|
1178
|
+
}
|
|
1179
|
+
return RestrictedSourceFileException;
|
|
1180
|
+
}(__BaseException));
|
|
1181
|
+
export { RestrictedSourceFileException };
|
|
1182
|
+
var SamePathRequestException = (function (_super) {
|
|
1183
|
+
__extends(SamePathRequestException, _super);
|
|
1184
|
+
function SamePathRequestException(opts) {
|
|
1185
|
+
var _this = _super.call(this, __assign({ name: "SamePathRequestException", $fault: "client" }, opts)) || this;
|
|
1186
|
+
_this.name = "SamePathRequestException";
|
|
1187
|
+
_this.$fault = "client";
|
|
1188
|
+
Object.setPrototypeOf(_this, SamePathRequestException.prototype);
|
|
1189
|
+
return _this;
|
|
1190
|
+
}
|
|
1191
|
+
return SamePathRequestException;
|
|
1192
|
+
}(__BaseException));
|
|
1193
|
+
export { SamePathRequestException };
|
|
1194
|
+
var SourceFileOrContentRequiredException = (function (_super) {
|
|
1195
|
+
__extends(SourceFileOrContentRequiredException, _super);
|
|
1196
|
+
function SourceFileOrContentRequiredException(opts) {
|
|
1197
|
+
var _this = _super.call(this, __assign({ name: "SourceFileOrContentRequiredException", $fault: "client" }, opts)) || this;
|
|
1198
|
+
_this.name = "SourceFileOrContentRequiredException";
|
|
1199
|
+
_this.$fault = "client";
|
|
1200
|
+
Object.setPrototypeOf(_this, SourceFileOrContentRequiredException.prototype);
|
|
1201
|
+
return _this;
|
|
1202
|
+
}
|
|
1203
|
+
return SourceFileOrContentRequiredException;
|
|
1204
|
+
}(__BaseException));
|
|
1205
|
+
export { SourceFileOrContentRequiredException };
|
|
233
1206
|
export var Target;
|
|
234
1207
|
(function (Target) {
|
|
235
1208
|
Target.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -259,6 +1232,198 @@ export var CreatePullRequestOutput;
|
|
|
259
1232
|
(function (CreatePullRequestOutput) {
|
|
260
1233
|
CreatePullRequestOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
261
1234
|
})(CreatePullRequestOutput || (CreatePullRequestOutput = {}));
|
|
1235
|
+
var IdempotencyParameterMismatchException = (function (_super) {
|
|
1236
|
+
__extends(IdempotencyParameterMismatchException, _super);
|
|
1237
|
+
function IdempotencyParameterMismatchException(opts) {
|
|
1238
|
+
var _this = _super.call(this, __assign({ name: "IdempotencyParameterMismatchException", $fault: "client" }, opts)) || this;
|
|
1239
|
+
_this.name = "IdempotencyParameterMismatchException";
|
|
1240
|
+
_this.$fault = "client";
|
|
1241
|
+
Object.setPrototypeOf(_this, IdempotencyParameterMismatchException.prototype);
|
|
1242
|
+
return _this;
|
|
1243
|
+
}
|
|
1244
|
+
return IdempotencyParameterMismatchException;
|
|
1245
|
+
}(__BaseException));
|
|
1246
|
+
export { IdempotencyParameterMismatchException };
|
|
1247
|
+
var InvalidClientRequestTokenException = (function (_super) {
|
|
1248
|
+
__extends(InvalidClientRequestTokenException, _super);
|
|
1249
|
+
function InvalidClientRequestTokenException(opts) {
|
|
1250
|
+
var _this = _super.call(this, __assign({ name: "InvalidClientRequestTokenException", $fault: "client" }, opts)) || this;
|
|
1251
|
+
_this.name = "InvalidClientRequestTokenException";
|
|
1252
|
+
_this.$fault = "client";
|
|
1253
|
+
Object.setPrototypeOf(_this, InvalidClientRequestTokenException.prototype);
|
|
1254
|
+
return _this;
|
|
1255
|
+
}
|
|
1256
|
+
return InvalidClientRequestTokenException;
|
|
1257
|
+
}(__BaseException));
|
|
1258
|
+
export { InvalidClientRequestTokenException };
|
|
1259
|
+
var InvalidDescriptionException = (function (_super) {
|
|
1260
|
+
__extends(InvalidDescriptionException, _super);
|
|
1261
|
+
function InvalidDescriptionException(opts) {
|
|
1262
|
+
var _this = _super.call(this, __assign({ name: "InvalidDescriptionException", $fault: "client" }, opts)) || this;
|
|
1263
|
+
_this.name = "InvalidDescriptionException";
|
|
1264
|
+
_this.$fault = "client";
|
|
1265
|
+
Object.setPrototypeOf(_this, InvalidDescriptionException.prototype);
|
|
1266
|
+
return _this;
|
|
1267
|
+
}
|
|
1268
|
+
return InvalidDescriptionException;
|
|
1269
|
+
}(__BaseException));
|
|
1270
|
+
export { InvalidDescriptionException };
|
|
1271
|
+
var InvalidReferenceNameException = (function (_super) {
|
|
1272
|
+
__extends(InvalidReferenceNameException, _super);
|
|
1273
|
+
function InvalidReferenceNameException(opts) {
|
|
1274
|
+
var _this = _super.call(this, __assign({ name: "InvalidReferenceNameException", $fault: "client" }, opts)) || this;
|
|
1275
|
+
_this.name = "InvalidReferenceNameException";
|
|
1276
|
+
_this.$fault = "client";
|
|
1277
|
+
Object.setPrototypeOf(_this, InvalidReferenceNameException.prototype);
|
|
1278
|
+
return _this;
|
|
1279
|
+
}
|
|
1280
|
+
return InvalidReferenceNameException;
|
|
1281
|
+
}(__BaseException));
|
|
1282
|
+
export { InvalidReferenceNameException };
|
|
1283
|
+
var InvalidTargetException = (function (_super) {
|
|
1284
|
+
__extends(InvalidTargetException, _super);
|
|
1285
|
+
function InvalidTargetException(opts) {
|
|
1286
|
+
var _this = _super.call(this, __assign({ name: "InvalidTargetException", $fault: "client" }, opts)) || this;
|
|
1287
|
+
_this.name = "InvalidTargetException";
|
|
1288
|
+
_this.$fault = "client";
|
|
1289
|
+
Object.setPrototypeOf(_this, InvalidTargetException.prototype);
|
|
1290
|
+
return _this;
|
|
1291
|
+
}
|
|
1292
|
+
return InvalidTargetException;
|
|
1293
|
+
}(__BaseException));
|
|
1294
|
+
export { InvalidTargetException };
|
|
1295
|
+
var InvalidTargetsException = (function (_super) {
|
|
1296
|
+
__extends(InvalidTargetsException, _super);
|
|
1297
|
+
function InvalidTargetsException(opts) {
|
|
1298
|
+
var _this = _super.call(this, __assign({ name: "InvalidTargetsException", $fault: "client" }, opts)) || this;
|
|
1299
|
+
_this.name = "InvalidTargetsException";
|
|
1300
|
+
_this.$fault = "client";
|
|
1301
|
+
Object.setPrototypeOf(_this, InvalidTargetsException.prototype);
|
|
1302
|
+
return _this;
|
|
1303
|
+
}
|
|
1304
|
+
return InvalidTargetsException;
|
|
1305
|
+
}(__BaseException));
|
|
1306
|
+
export { InvalidTargetsException };
|
|
1307
|
+
var InvalidTitleException = (function (_super) {
|
|
1308
|
+
__extends(InvalidTitleException, _super);
|
|
1309
|
+
function InvalidTitleException(opts) {
|
|
1310
|
+
var _this = _super.call(this, __assign({ name: "InvalidTitleException", $fault: "client" }, opts)) || this;
|
|
1311
|
+
_this.name = "InvalidTitleException";
|
|
1312
|
+
_this.$fault = "client";
|
|
1313
|
+
Object.setPrototypeOf(_this, InvalidTitleException.prototype);
|
|
1314
|
+
return _this;
|
|
1315
|
+
}
|
|
1316
|
+
return InvalidTitleException;
|
|
1317
|
+
}(__BaseException));
|
|
1318
|
+
export { InvalidTitleException };
|
|
1319
|
+
var MaximumOpenPullRequestsExceededException = (function (_super) {
|
|
1320
|
+
__extends(MaximumOpenPullRequestsExceededException, _super);
|
|
1321
|
+
function MaximumOpenPullRequestsExceededException(opts) {
|
|
1322
|
+
var _this = _super.call(this, __assign({ name: "MaximumOpenPullRequestsExceededException", $fault: "client" }, opts)) || this;
|
|
1323
|
+
_this.name = "MaximumOpenPullRequestsExceededException";
|
|
1324
|
+
_this.$fault = "client";
|
|
1325
|
+
Object.setPrototypeOf(_this, MaximumOpenPullRequestsExceededException.prototype);
|
|
1326
|
+
return _this;
|
|
1327
|
+
}
|
|
1328
|
+
return MaximumOpenPullRequestsExceededException;
|
|
1329
|
+
}(__BaseException));
|
|
1330
|
+
export { MaximumOpenPullRequestsExceededException };
|
|
1331
|
+
var MultipleRepositoriesInPullRequestException = (function (_super) {
|
|
1332
|
+
__extends(MultipleRepositoriesInPullRequestException, _super);
|
|
1333
|
+
function MultipleRepositoriesInPullRequestException(opts) {
|
|
1334
|
+
var _this = _super.call(this, __assign({ name: "MultipleRepositoriesInPullRequestException", $fault: "client" }, opts)) || this;
|
|
1335
|
+
_this.name = "MultipleRepositoriesInPullRequestException";
|
|
1336
|
+
_this.$fault = "client";
|
|
1337
|
+
Object.setPrototypeOf(_this, MultipleRepositoriesInPullRequestException.prototype);
|
|
1338
|
+
return _this;
|
|
1339
|
+
}
|
|
1340
|
+
return MultipleRepositoriesInPullRequestException;
|
|
1341
|
+
}(__BaseException));
|
|
1342
|
+
export { MultipleRepositoriesInPullRequestException };
|
|
1343
|
+
var ReferenceDoesNotExistException = (function (_super) {
|
|
1344
|
+
__extends(ReferenceDoesNotExistException, _super);
|
|
1345
|
+
function ReferenceDoesNotExistException(opts) {
|
|
1346
|
+
var _this = _super.call(this, __assign({ name: "ReferenceDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
1347
|
+
_this.name = "ReferenceDoesNotExistException";
|
|
1348
|
+
_this.$fault = "client";
|
|
1349
|
+
Object.setPrototypeOf(_this, ReferenceDoesNotExistException.prototype);
|
|
1350
|
+
return _this;
|
|
1351
|
+
}
|
|
1352
|
+
return ReferenceDoesNotExistException;
|
|
1353
|
+
}(__BaseException));
|
|
1354
|
+
export { ReferenceDoesNotExistException };
|
|
1355
|
+
var ReferenceNameRequiredException = (function (_super) {
|
|
1356
|
+
__extends(ReferenceNameRequiredException, _super);
|
|
1357
|
+
function ReferenceNameRequiredException(opts) {
|
|
1358
|
+
var _this = _super.call(this, __assign({ name: "ReferenceNameRequiredException", $fault: "client" }, opts)) || this;
|
|
1359
|
+
_this.name = "ReferenceNameRequiredException";
|
|
1360
|
+
_this.$fault = "client";
|
|
1361
|
+
Object.setPrototypeOf(_this, ReferenceNameRequiredException.prototype);
|
|
1362
|
+
return _this;
|
|
1363
|
+
}
|
|
1364
|
+
return ReferenceNameRequiredException;
|
|
1365
|
+
}(__BaseException));
|
|
1366
|
+
export { ReferenceNameRequiredException };
|
|
1367
|
+
var ReferenceTypeNotSupportedException = (function (_super) {
|
|
1368
|
+
__extends(ReferenceTypeNotSupportedException, _super);
|
|
1369
|
+
function ReferenceTypeNotSupportedException(opts) {
|
|
1370
|
+
var _this = _super.call(this, __assign({ name: "ReferenceTypeNotSupportedException", $fault: "client" }, opts)) || this;
|
|
1371
|
+
_this.name = "ReferenceTypeNotSupportedException";
|
|
1372
|
+
_this.$fault = "client";
|
|
1373
|
+
Object.setPrototypeOf(_this, ReferenceTypeNotSupportedException.prototype);
|
|
1374
|
+
return _this;
|
|
1375
|
+
}
|
|
1376
|
+
return ReferenceTypeNotSupportedException;
|
|
1377
|
+
}(__BaseException));
|
|
1378
|
+
export { ReferenceTypeNotSupportedException };
|
|
1379
|
+
var SourceAndDestinationAreSameException = (function (_super) {
|
|
1380
|
+
__extends(SourceAndDestinationAreSameException, _super);
|
|
1381
|
+
function SourceAndDestinationAreSameException(opts) {
|
|
1382
|
+
var _this = _super.call(this, __assign({ name: "SourceAndDestinationAreSameException", $fault: "client" }, opts)) || this;
|
|
1383
|
+
_this.name = "SourceAndDestinationAreSameException";
|
|
1384
|
+
_this.$fault = "client";
|
|
1385
|
+
Object.setPrototypeOf(_this, SourceAndDestinationAreSameException.prototype);
|
|
1386
|
+
return _this;
|
|
1387
|
+
}
|
|
1388
|
+
return SourceAndDestinationAreSameException;
|
|
1389
|
+
}(__BaseException));
|
|
1390
|
+
export { SourceAndDestinationAreSameException };
|
|
1391
|
+
var TargetRequiredException = (function (_super) {
|
|
1392
|
+
__extends(TargetRequiredException, _super);
|
|
1393
|
+
function TargetRequiredException(opts) {
|
|
1394
|
+
var _this = _super.call(this, __assign({ name: "TargetRequiredException", $fault: "client" }, opts)) || this;
|
|
1395
|
+
_this.name = "TargetRequiredException";
|
|
1396
|
+
_this.$fault = "client";
|
|
1397
|
+
Object.setPrototypeOf(_this, TargetRequiredException.prototype);
|
|
1398
|
+
return _this;
|
|
1399
|
+
}
|
|
1400
|
+
return TargetRequiredException;
|
|
1401
|
+
}(__BaseException));
|
|
1402
|
+
export { TargetRequiredException };
|
|
1403
|
+
var TargetsRequiredException = (function (_super) {
|
|
1404
|
+
__extends(TargetsRequiredException, _super);
|
|
1405
|
+
function TargetsRequiredException(opts) {
|
|
1406
|
+
var _this = _super.call(this, __assign({ name: "TargetsRequiredException", $fault: "client" }, opts)) || this;
|
|
1407
|
+
_this.name = "TargetsRequiredException";
|
|
1408
|
+
_this.$fault = "client";
|
|
1409
|
+
Object.setPrototypeOf(_this, TargetsRequiredException.prototype);
|
|
1410
|
+
return _this;
|
|
1411
|
+
}
|
|
1412
|
+
return TargetsRequiredException;
|
|
1413
|
+
}(__BaseException));
|
|
1414
|
+
export { TargetsRequiredException };
|
|
1415
|
+
var TitleRequiredException = (function (_super) {
|
|
1416
|
+
__extends(TitleRequiredException, _super);
|
|
1417
|
+
function TitleRequiredException(opts) {
|
|
1418
|
+
var _this = _super.call(this, __assign({ name: "TitleRequiredException", $fault: "client" }, opts)) || this;
|
|
1419
|
+
_this.name = "TitleRequiredException";
|
|
1420
|
+
_this.$fault = "client";
|
|
1421
|
+
Object.setPrototypeOf(_this, TitleRequiredException.prototype);
|
|
1422
|
+
return _this;
|
|
1423
|
+
}
|
|
1424
|
+
return TitleRequiredException;
|
|
1425
|
+
}(__BaseException));
|
|
1426
|
+
export { TitleRequiredException };
|
|
262
1427
|
export var CreatePullRequestApprovalRuleInput;
|
|
263
1428
|
(function (CreatePullRequestApprovalRuleInput) {
|
|
264
1429
|
CreatePullRequestApprovalRuleInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -267,6 +1432,90 @@ export var CreatePullRequestApprovalRuleOutput;
|
|
|
267
1432
|
(function (CreatePullRequestApprovalRuleOutput) {
|
|
268
1433
|
CreatePullRequestApprovalRuleOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
269
1434
|
})(CreatePullRequestApprovalRuleOutput || (CreatePullRequestApprovalRuleOutput = {}));
|
|
1435
|
+
var InvalidApprovalRuleContentException = (function (_super) {
|
|
1436
|
+
__extends(InvalidApprovalRuleContentException, _super);
|
|
1437
|
+
function InvalidApprovalRuleContentException(opts) {
|
|
1438
|
+
var _this = _super.call(this, __assign({ name: "InvalidApprovalRuleContentException", $fault: "client" }, opts)) || this;
|
|
1439
|
+
_this.name = "InvalidApprovalRuleContentException";
|
|
1440
|
+
_this.$fault = "client";
|
|
1441
|
+
Object.setPrototypeOf(_this, InvalidApprovalRuleContentException.prototype);
|
|
1442
|
+
return _this;
|
|
1443
|
+
}
|
|
1444
|
+
return InvalidApprovalRuleContentException;
|
|
1445
|
+
}(__BaseException));
|
|
1446
|
+
export { InvalidApprovalRuleContentException };
|
|
1447
|
+
var InvalidApprovalRuleNameException = (function (_super) {
|
|
1448
|
+
__extends(InvalidApprovalRuleNameException, _super);
|
|
1449
|
+
function InvalidApprovalRuleNameException(opts) {
|
|
1450
|
+
var _this = _super.call(this, __assign({ name: "InvalidApprovalRuleNameException", $fault: "client" }, opts)) || this;
|
|
1451
|
+
_this.name = "InvalidApprovalRuleNameException";
|
|
1452
|
+
_this.$fault = "client";
|
|
1453
|
+
Object.setPrototypeOf(_this, InvalidApprovalRuleNameException.prototype);
|
|
1454
|
+
return _this;
|
|
1455
|
+
}
|
|
1456
|
+
return InvalidApprovalRuleNameException;
|
|
1457
|
+
}(__BaseException));
|
|
1458
|
+
export { InvalidApprovalRuleNameException };
|
|
1459
|
+
var InvalidPullRequestIdException = (function (_super) {
|
|
1460
|
+
__extends(InvalidPullRequestIdException, _super);
|
|
1461
|
+
function InvalidPullRequestIdException(opts) {
|
|
1462
|
+
var _this = _super.call(this, __assign({ name: "InvalidPullRequestIdException", $fault: "client" }, opts)) || this;
|
|
1463
|
+
_this.name = "InvalidPullRequestIdException";
|
|
1464
|
+
_this.$fault = "client";
|
|
1465
|
+
Object.setPrototypeOf(_this, InvalidPullRequestIdException.prototype);
|
|
1466
|
+
return _this;
|
|
1467
|
+
}
|
|
1468
|
+
return InvalidPullRequestIdException;
|
|
1469
|
+
}(__BaseException));
|
|
1470
|
+
export { InvalidPullRequestIdException };
|
|
1471
|
+
var NumberOfRulesExceededException = (function (_super) {
|
|
1472
|
+
__extends(NumberOfRulesExceededException, _super);
|
|
1473
|
+
function NumberOfRulesExceededException(opts) {
|
|
1474
|
+
var _this = _super.call(this, __assign({ name: "NumberOfRulesExceededException", $fault: "client" }, opts)) || this;
|
|
1475
|
+
_this.name = "NumberOfRulesExceededException";
|
|
1476
|
+
_this.$fault = "client";
|
|
1477
|
+
Object.setPrototypeOf(_this, NumberOfRulesExceededException.prototype);
|
|
1478
|
+
return _this;
|
|
1479
|
+
}
|
|
1480
|
+
return NumberOfRulesExceededException;
|
|
1481
|
+
}(__BaseException));
|
|
1482
|
+
export { NumberOfRulesExceededException };
|
|
1483
|
+
var PullRequestAlreadyClosedException = (function (_super) {
|
|
1484
|
+
__extends(PullRequestAlreadyClosedException, _super);
|
|
1485
|
+
function PullRequestAlreadyClosedException(opts) {
|
|
1486
|
+
var _this = _super.call(this, __assign({ name: "PullRequestAlreadyClosedException", $fault: "client" }, opts)) || this;
|
|
1487
|
+
_this.name = "PullRequestAlreadyClosedException";
|
|
1488
|
+
_this.$fault = "client";
|
|
1489
|
+
Object.setPrototypeOf(_this, PullRequestAlreadyClosedException.prototype);
|
|
1490
|
+
return _this;
|
|
1491
|
+
}
|
|
1492
|
+
return PullRequestAlreadyClosedException;
|
|
1493
|
+
}(__BaseException));
|
|
1494
|
+
export { PullRequestAlreadyClosedException };
|
|
1495
|
+
var PullRequestDoesNotExistException = (function (_super) {
|
|
1496
|
+
__extends(PullRequestDoesNotExistException, _super);
|
|
1497
|
+
function PullRequestDoesNotExistException(opts) {
|
|
1498
|
+
var _this = _super.call(this, __assign({ name: "PullRequestDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
1499
|
+
_this.name = "PullRequestDoesNotExistException";
|
|
1500
|
+
_this.$fault = "client";
|
|
1501
|
+
Object.setPrototypeOf(_this, PullRequestDoesNotExistException.prototype);
|
|
1502
|
+
return _this;
|
|
1503
|
+
}
|
|
1504
|
+
return PullRequestDoesNotExistException;
|
|
1505
|
+
}(__BaseException));
|
|
1506
|
+
export { PullRequestDoesNotExistException };
|
|
1507
|
+
var PullRequestIdRequiredException = (function (_super) {
|
|
1508
|
+
__extends(PullRequestIdRequiredException, _super);
|
|
1509
|
+
function PullRequestIdRequiredException(opts) {
|
|
1510
|
+
var _this = _super.call(this, __assign({ name: "PullRequestIdRequiredException", $fault: "client" }, opts)) || this;
|
|
1511
|
+
_this.name = "PullRequestIdRequiredException";
|
|
1512
|
+
_this.$fault = "client";
|
|
1513
|
+
Object.setPrototypeOf(_this, PullRequestIdRequiredException.prototype);
|
|
1514
|
+
return _this;
|
|
1515
|
+
}
|
|
1516
|
+
return PullRequestIdRequiredException;
|
|
1517
|
+
}(__BaseException));
|
|
1518
|
+
export { PullRequestIdRequiredException };
|
|
270
1519
|
export var CreateRepositoryInput;
|
|
271
1520
|
(function (CreateRepositoryInput) {
|
|
272
1521
|
CreateRepositoryInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -275,6 +1524,102 @@ export var CreateRepositoryOutput;
|
|
|
275
1524
|
(function (CreateRepositoryOutput) {
|
|
276
1525
|
CreateRepositoryOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
277
1526
|
})(CreateRepositoryOutput || (CreateRepositoryOutput = {}));
|
|
1527
|
+
var InvalidRepositoryDescriptionException = (function (_super) {
|
|
1528
|
+
__extends(InvalidRepositoryDescriptionException, _super);
|
|
1529
|
+
function InvalidRepositoryDescriptionException(opts) {
|
|
1530
|
+
var _this = _super.call(this, __assign({ name: "InvalidRepositoryDescriptionException", $fault: "client" }, opts)) || this;
|
|
1531
|
+
_this.name = "InvalidRepositoryDescriptionException";
|
|
1532
|
+
_this.$fault = "client";
|
|
1533
|
+
Object.setPrototypeOf(_this, InvalidRepositoryDescriptionException.prototype);
|
|
1534
|
+
return _this;
|
|
1535
|
+
}
|
|
1536
|
+
return InvalidRepositoryDescriptionException;
|
|
1537
|
+
}(__BaseException));
|
|
1538
|
+
export { InvalidRepositoryDescriptionException };
|
|
1539
|
+
var InvalidSystemTagUsageException = (function (_super) {
|
|
1540
|
+
__extends(InvalidSystemTagUsageException, _super);
|
|
1541
|
+
function InvalidSystemTagUsageException(opts) {
|
|
1542
|
+
var _this = _super.call(this, __assign({ name: "InvalidSystemTagUsageException", $fault: "client" }, opts)) || this;
|
|
1543
|
+
_this.name = "InvalidSystemTagUsageException";
|
|
1544
|
+
_this.$fault = "client";
|
|
1545
|
+
Object.setPrototypeOf(_this, InvalidSystemTagUsageException.prototype);
|
|
1546
|
+
return _this;
|
|
1547
|
+
}
|
|
1548
|
+
return InvalidSystemTagUsageException;
|
|
1549
|
+
}(__BaseException));
|
|
1550
|
+
export { InvalidSystemTagUsageException };
|
|
1551
|
+
var InvalidTagsMapException = (function (_super) {
|
|
1552
|
+
__extends(InvalidTagsMapException, _super);
|
|
1553
|
+
function InvalidTagsMapException(opts) {
|
|
1554
|
+
var _this = _super.call(this, __assign({ name: "InvalidTagsMapException", $fault: "client" }, opts)) || this;
|
|
1555
|
+
_this.name = "InvalidTagsMapException";
|
|
1556
|
+
_this.$fault = "client";
|
|
1557
|
+
Object.setPrototypeOf(_this, InvalidTagsMapException.prototype);
|
|
1558
|
+
return _this;
|
|
1559
|
+
}
|
|
1560
|
+
return InvalidTagsMapException;
|
|
1561
|
+
}(__BaseException));
|
|
1562
|
+
export { InvalidTagsMapException };
|
|
1563
|
+
var RepositoryLimitExceededException = (function (_super) {
|
|
1564
|
+
__extends(RepositoryLimitExceededException, _super);
|
|
1565
|
+
function RepositoryLimitExceededException(opts) {
|
|
1566
|
+
var _this = _super.call(this, __assign({ name: "RepositoryLimitExceededException", $fault: "client" }, opts)) || this;
|
|
1567
|
+
_this.name = "RepositoryLimitExceededException";
|
|
1568
|
+
_this.$fault = "client";
|
|
1569
|
+
Object.setPrototypeOf(_this, RepositoryLimitExceededException.prototype);
|
|
1570
|
+
return _this;
|
|
1571
|
+
}
|
|
1572
|
+
return RepositoryLimitExceededException;
|
|
1573
|
+
}(__BaseException));
|
|
1574
|
+
export { RepositoryLimitExceededException };
|
|
1575
|
+
var RepositoryNameExistsException = (function (_super) {
|
|
1576
|
+
__extends(RepositoryNameExistsException, _super);
|
|
1577
|
+
function RepositoryNameExistsException(opts) {
|
|
1578
|
+
var _this = _super.call(this, __assign({ name: "RepositoryNameExistsException", $fault: "client" }, opts)) || this;
|
|
1579
|
+
_this.name = "RepositoryNameExistsException";
|
|
1580
|
+
_this.$fault = "client";
|
|
1581
|
+
Object.setPrototypeOf(_this, RepositoryNameExistsException.prototype);
|
|
1582
|
+
return _this;
|
|
1583
|
+
}
|
|
1584
|
+
return RepositoryNameExistsException;
|
|
1585
|
+
}(__BaseException));
|
|
1586
|
+
export { RepositoryNameExistsException };
|
|
1587
|
+
var TagPolicyException = (function (_super) {
|
|
1588
|
+
__extends(TagPolicyException, _super);
|
|
1589
|
+
function TagPolicyException(opts) {
|
|
1590
|
+
var _this = _super.call(this, __assign({ name: "TagPolicyException", $fault: "client" }, opts)) || this;
|
|
1591
|
+
_this.name = "TagPolicyException";
|
|
1592
|
+
_this.$fault = "client";
|
|
1593
|
+
Object.setPrototypeOf(_this, TagPolicyException.prototype);
|
|
1594
|
+
return _this;
|
|
1595
|
+
}
|
|
1596
|
+
return TagPolicyException;
|
|
1597
|
+
}(__BaseException));
|
|
1598
|
+
export { TagPolicyException };
|
|
1599
|
+
var TooManyTagsException = (function (_super) {
|
|
1600
|
+
__extends(TooManyTagsException, _super);
|
|
1601
|
+
function TooManyTagsException(opts) {
|
|
1602
|
+
var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
|
|
1603
|
+
_this.name = "TooManyTagsException";
|
|
1604
|
+
_this.$fault = "client";
|
|
1605
|
+
Object.setPrototypeOf(_this, TooManyTagsException.prototype);
|
|
1606
|
+
return _this;
|
|
1607
|
+
}
|
|
1608
|
+
return TooManyTagsException;
|
|
1609
|
+
}(__BaseException));
|
|
1610
|
+
export { TooManyTagsException };
|
|
1611
|
+
var ConcurrentReferenceUpdateException = (function (_super) {
|
|
1612
|
+
__extends(ConcurrentReferenceUpdateException, _super);
|
|
1613
|
+
function ConcurrentReferenceUpdateException(opts) {
|
|
1614
|
+
var _this = _super.call(this, __assign({ name: "ConcurrentReferenceUpdateException", $fault: "client" }, opts)) || this;
|
|
1615
|
+
_this.name = "ConcurrentReferenceUpdateException";
|
|
1616
|
+
_this.$fault = "client";
|
|
1617
|
+
Object.setPrototypeOf(_this, ConcurrentReferenceUpdateException.prototype);
|
|
1618
|
+
return _this;
|
|
1619
|
+
}
|
|
1620
|
+
return ConcurrentReferenceUpdateException;
|
|
1621
|
+
}(__BaseException));
|
|
1622
|
+
export { ConcurrentReferenceUpdateException };
|
|
278
1623
|
export var ReplacementTypeEnum;
|
|
279
1624
|
(function (ReplacementTypeEnum) {
|
|
280
1625
|
ReplacementTypeEnum["KEEP_BASE"] = "KEEP_BASE";
|
|
@@ -298,6 +1643,102 @@ export var CreateUnreferencedMergeCommitOutput;
|
|
|
298
1643
|
(function (CreateUnreferencedMergeCommitOutput) {
|
|
299
1644
|
CreateUnreferencedMergeCommitOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
300
1645
|
})(CreateUnreferencedMergeCommitOutput || (CreateUnreferencedMergeCommitOutput = {}));
|
|
1646
|
+
var InvalidConflictResolutionException = (function (_super) {
|
|
1647
|
+
__extends(InvalidConflictResolutionException, _super);
|
|
1648
|
+
function InvalidConflictResolutionException(opts) {
|
|
1649
|
+
var _this = _super.call(this, __assign({ name: "InvalidConflictResolutionException", $fault: "client" }, opts)) || this;
|
|
1650
|
+
_this.name = "InvalidConflictResolutionException";
|
|
1651
|
+
_this.$fault = "client";
|
|
1652
|
+
Object.setPrototypeOf(_this, InvalidConflictResolutionException.prototype);
|
|
1653
|
+
return _this;
|
|
1654
|
+
}
|
|
1655
|
+
return InvalidConflictResolutionException;
|
|
1656
|
+
}(__BaseException));
|
|
1657
|
+
export { InvalidConflictResolutionException };
|
|
1658
|
+
var InvalidReplacementContentException = (function (_super) {
|
|
1659
|
+
__extends(InvalidReplacementContentException, _super);
|
|
1660
|
+
function InvalidReplacementContentException(opts) {
|
|
1661
|
+
var _this = _super.call(this, __assign({ name: "InvalidReplacementContentException", $fault: "client" }, opts)) || this;
|
|
1662
|
+
_this.name = "InvalidReplacementContentException";
|
|
1663
|
+
_this.$fault = "client";
|
|
1664
|
+
Object.setPrototypeOf(_this, InvalidReplacementContentException.prototype);
|
|
1665
|
+
return _this;
|
|
1666
|
+
}
|
|
1667
|
+
return InvalidReplacementContentException;
|
|
1668
|
+
}(__BaseException));
|
|
1669
|
+
export { InvalidReplacementContentException };
|
|
1670
|
+
var InvalidReplacementTypeException = (function (_super) {
|
|
1671
|
+
__extends(InvalidReplacementTypeException, _super);
|
|
1672
|
+
function InvalidReplacementTypeException(opts) {
|
|
1673
|
+
var _this = _super.call(this, __assign({ name: "InvalidReplacementTypeException", $fault: "client" }, opts)) || this;
|
|
1674
|
+
_this.name = "InvalidReplacementTypeException";
|
|
1675
|
+
_this.$fault = "client";
|
|
1676
|
+
Object.setPrototypeOf(_this, InvalidReplacementTypeException.prototype);
|
|
1677
|
+
return _this;
|
|
1678
|
+
}
|
|
1679
|
+
return InvalidReplacementTypeException;
|
|
1680
|
+
}(__BaseException));
|
|
1681
|
+
export { InvalidReplacementTypeException };
|
|
1682
|
+
var ManualMergeRequiredException = (function (_super) {
|
|
1683
|
+
__extends(ManualMergeRequiredException, _super);
|
|
1684
|
+
function ManualMergeRequiredException(opts) {
|
|
1685
|
+
var _this = _super.call(this, __assign({ name: "ManualMergeRequiredException", $fault: "client" }, opts)) || this;
|
|
1686
|
+
_this.name = "ManualMergeRequiredException";
|
|
1687
|
+
_this.$fault = "client";
|
|
1688
|
+
Object.setPrototypeOf(_this, ManualMergeRequiredException.prototype);
|
|
1689
|
+
return _this;
|
|
1690
|
+
}
|
|
1691
|
+
return ManualMergeRequiredException;
|
|
1692
|
+
}(__BaseException));
|
|
1693
|
+
export { ManualMergeRequiredException };
|
|
1694
|
+
var MaximumConflictResolutionEntriesExceededException = (function (_super) {
|
|
1695
|
+
__extends(MaximumConflictResolutionEntriesExceededException, _super);
|
|
1696
|
+
function MaximumConflictResolutionEntriesExceededException(opts) {
|
|
1697
|
+
var _this = _super.call(this, __assign({ name: "MaximumConflictResolutionEntriesExceededException", $fault: "client" }, opts)) || this;
|
|
1698
|
+
_this.name = "MaximumConflictResolutionEntriesExceededException";
|
|
1699
|
+
_this.$fault = "client";
|
|
1700
|
+
Object.setPrototypeOf(_this, MaximumConflictResolutionEntriesExceededException.prototype);
|
|
1701
|
+
return _this;
|
|
1702
|
+
}
|
|
1703
|
+
return MaximumConflictResolutionEntriesExceededException;
|
|
1704
|
+
}(__BaseException));
|
|
1705
|
+
export { MaximumConflictResolutionEntriesExceededException };
|
|
1706
|
+
var MultipleConflictResolutionEntriesException = (function (_super) {
|
|
1707
|
+
__extends(MultipleConflictResolutionEntriesException, _super);
|
|
1708
|
+
function MultipleConflictResolutionEntriesException(opts) {
|
|
1709
|
+
var _this = _super.call(this, __assign({ name: "MultipleConflictResolutionEntriesException", $fault: "client" }, opts)) || this;
|
|
1710
|
+
_this.name = "MultipleConflictResolutionEntriesException";
|
|
1711
|
+
_this.$fault = "client";
|
|
1712
|
+
Object.setPrototypeOf(_this, MultipleConflictResolutionEntriesException.prototype);
|
|
1713
|
+
return _this;
|
|
1714
|
+
}
|
|
1715
|
+
return MultipleConflictResolutionEntriesException;
|
|
1716
|
+
}(__BaseException));
|
|
1717
|
+
export { MultipleConflictResolutionEntriesException };
|
|
1718
|
+
var ReplacementContentRequiredException = (function (_super) {
|
|
1719
|
+
__extends(ReplacementContentRequiredException, _super);
|
|
1720
|
+
function ReplacementContentRequiredException(opts) {
|
|
1721
|
+
var _this = _super.call(this, __assign({ name: "ReplacementContentRequiredException", $fault: "client" }, opts)) || this;
|
|
1722
|
+
_this.name = "ReplacementContentRequiredException";
|
|
1723
|
+
_this.$fault = "client";
|
|
1724
|
+
Object.setPrototypeOf(_this, ReplacementContentRequiredException.prototype);
|
|
1725
|
+
return _this;
|
|
1726
|
+
}
|
|
1727
|
+
return ReplacementContentRequiredException;
|
|
1728
|
+
}(__BaseException));
|
|
1729
|
+
export { ReplacementContentRequiredException };
|
|
1730
|
+
var ReplacementTypeRequiredException = (function (_super) {
|
|
1731
|
+
__extends(ReplacementTypeRequiredException, _super);
|
|
1732
|
+
function ReplacementTypeRequiredException(opts) {
|
|
1733
|
+
var _this = _super.call(this, __assign({ name: "ReplacementTypeRequiredException", $fault: "client" }, opts)) || this;
|
|
1734
|
+
_this.name = "ReplacementTypeRequiredException";
|
|
1735
|
+
_this.$fault = "client";
|
|
1736
|
+
Object.setPrototypeOf(_this, ReplacementTypeRequiredException.prototype);
|
|
1737
|
+
return _this;
|
|
1738
|
+
}
|
|
1739
|
+
return ReplacementTypeRequiredException;
|
|
1740
|
+
}(__BaseException));
|
|
1741
|
+
export { ReplacementTypeRequiredException };
|
|
301
1742
|
export var DeleteApprovalRuleTemplateInput;
|
|
302
1743
|
(function (DeleteApprovalRuleTemplateInput) {
|
|
303
1744
|
DeleteApprovalRuleTemplateInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -306,6 +1747,18 @@ export var DeleteApprovalRuleTemplateOutput;
|
|
|
306
1747
|
(function (DeleteApprovalRuleTemplateOutput) {
|
|
307
1748
|
DeleteApprovalRuleTemplateOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
308
1749
|
})(DeleteApprovalRuleTemplateOutput || (DeleteApprovalRuleTemplateOutput = {}));
|
|
1750
|
+
var DefaultBranchCannotBeDeletedException = (function (_super) {
|
|
1751
|
+
__extends(DefaultBranchCannotBeDeletedException, _super);
|
|
1752
|
+
function DefaultBranchCannotBeDeletedException(opts) {
|
|
1753
|
+
var _this = _super.call(this, __assign({ name: "DefaultBranchCannotBeDeletedException", $fault: "client" }, opts)) || this;
|
|
1754
|
+
_this.name = "DefaultBranchCannotBeDeletedException";
|
|
1755
|
+
_this.$fault = "client";
|
|
1756
|
+
Object.setPrototypeOf(_this, DefaultBranchCannotBeDeletedException.prototype);
|
|
1757
|
+
return _this;
|
|
1758
|
+
}
|
|
1759
|
+
return DefaultBranchCannotBeDeletedException;
|
|
1760
|
+
}(__BaseException));
|
|
1761
|
+
export { DefaultBranchCannotBeDeletedException };
|
|
309
1762
|
export var DeleteBranchInput;
|
|
310
1763
|
(function (DeleteBranchInput) {
|
|
311
1764
|
DeleteBranchInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -314,6 +1767,42 @@ export var DeleteBranchOutput;
|
|
|
314
1767
|
(function (DeleteBranchOutput) {
|
|
315
1768
|
DeleteBranchOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
316
1769
|
})(DeleteBranchOutput || (DeleteBranchOutput = {}));
|
|
1770
|
+
var CommentDeletedException = (function (_super) {
|
|
1771
|
+
__extends(CommentDeletedException, _super);
|
|
1772
|
+
function CommentDeletedException(opts) {
|
|
1773
|
+
var _this = _super.call(this, __assign({ name: "CommentDeletedException", $fault: "client" }, opts)) || this;
|
|
1774
|
+
_this.name = "CommentDeletedException";
|
|
1775
|
+
_this.$fault = "client";
|
|
1776
|
+
Object.setPrototypeOf(_this, CommentDeletedException.prototype);
|
|
1777
|
+
return _this;
|
|
1778
|
+
}
|
|
1779
|
+
return CommentDeletedException;
|
|
1780
|
+
}(__BaseException));
|
|
1781
|
+
export { CommentDeletedException };
|
|
1782
|
+
var CommentDoesNotExistException = (function (_super) {
|
|
1783
|
+
__extends(CommentDoesNotExistException, _super);
|
|
1784
|
+
function CommentDoesNotExistException(opts) {
|
|
1785
|
+
var _this = _super.call(this, __assign({ name: "CommentDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
1786
|
+
_this.name = "CommentDoesNotExistException";
|
|
1787
|
+
_this.$fault = "client";
|
|
1788
|
+
Object.setPrototypeOf(_this, CommentDoesNotExistException.prototype);
|
|
1789
|
+
return _this;
|
|
1790
|
+
}
|
|
1791
|
+
return CommentDoesNotExistException;
|
|
1792
|
+
}(__BaseException));
|
|
1793
|
+
export { CommentDoesNotExistException };
|
|
1794
|
+
var CommentIdRequiredException = (function (_super) {
|
|
1795
|
+
__extends(CommentIdRequiredException, _super);
|
|
1796
|
+
function CommentIdRequiredException(opts) {
|
|
1797
|
+
var _this = _super.call(this, __assign({ name: "CommentIdRequiredException", $fault: "client" }, opts)) || this;
|
|
1798
|
+
_this.name = "CommentIdRequiredException";
|
|
1799
|
+
_this.$fault = "client";
|
|
1800
|
+
Object.setPrototypeOf(_this, CommentIdRequiredException.prototype);
|
|
1801
|
+
return _this;
|
|
1802
|
+
}
|
|
1803
|
+
return CommentIdRequiredException;
|
|
1804
|
+
}(__BaseException));
|
|
1805
|
+
export { CommentIdRequiredException };
|
|
317
1806
|
export var DeleteCommentContentInput;
|
|
318
1807
|
(function (DeleteCommentContentInput) {
|
|
319
1808
|
DeleteCommentContentInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -326,6 +1815,18 @@ export var DeleteCommentContentOutput;
|
|
|
326
1815
|
(function (DeleteCommentContentOutput) {
|
|
327
1816
|
DeleteCommentContentOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
328
1817
|
})(DeleteCommentContentOutput || (DeleteCommentContentOutput = {}));
|
|
1818
|
+
var InvalidCommentIdException = (function (_super) {
|
|
1819
|
+
__extends(InvalidCommentIdException, _super);
|
|
1820
|
+
function InvalidCommentIdException(opts) {
|
|
1821
|
+
var _this = _super.call(this, __assign({ name: "InvalidCommentIdException", $fault: "client" }, opts)) || this;
|
|
1822
|
+
_this.name = "InvalidCommentIdException";
|
|
1823
|
+
_this.$fault = "client";
|
|
1824
|
+
Object.setPrototypeOf(_this, InvalidCommentIdException.prototype);
|
|
1825
|
+
return _this;
|
|
1826
|
+
}
|
|
1827
|
+
return InvalidCommentIdException;
|
|
1828
|
+
}(__BaseException));
|
|
1829
|
+
export { InvalidCommentIdException };
|
|
329
1830
|
export var DeleteFileInput;
|
|
330
1831
|
(function (DeleteFileInput) {
|
|
331
1832
|
DeleteFileInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -398,6 +1899,42 @@ export var DescribePullRequestEventsOutput;
|
|
|
398
1899
|
(function (DescribePullRequestEventsOutput) {
|
|
399
1900
|
DescribePullRequestEventsOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
400
1901
|
})(DescribePullRequestEventsOutput || (DescribePullRequestEventsOutput = {}));
|
|
1902
|
+
var InvalidActorArnException = (function (_super) {
|
|
1903
|
+
__extends(InvalidActorArnException, _super);
|
|
1904
|
+
function InvalidActorArnException(opts) {
|
|
1905
|
+
var _this = _super.call(this, __assign({ name: "InvalidActorArnException", $fault: "client" }, opts)) || this;
|
|
1906
|
+
_this.name = "InvalidActorArnException";
|
|
1907
|
+
_this.$fault = "client";
|
|
1908
|
+
Object.setPrototypeOf(_this, InvalidActorArnException.prototype);
|
|
1909
|
+
return _this;
|
|
1910
|
+
}
|
|
1911
|
+
return InvalidActorArnException;
|
|
1912
|
+
}(__BaseException));
|
|
1913
|
+
export { InvalidActorArnException };
|
|
1914
|
+
var InvalidMaxResultsException = (function (_super) {
|
|
1915
|
+
__extends(InvalidMaxResultsException, _super);
|
|
1916
|
+
function InvalidMaxResultsException(opts) {
|
|
1917
|
+
var _this = _super.call(this, __assign({ name: "InvalidMaxResultsException", $fault: "client" }, opts)) || this;
|
|
1918
|
+
_this.name = "InvalidMaxResultsException";
|
|
1919
|
+
_this.$fault = "client";
|
|
1920
|
+
Object.setPrototypeOf(_this, InvalidMaxResultsException.prototype);
|
|
1921
|
+
return _this;
|
|
1922
|
+
}
|
|
1923
|
+
return InvalidMaxResultsException;
|
|
1924
|
+
}(__BaseException));
|
|
1925
|
+
export { InvalidMaxResultsException };
|
|
1926
|
+
var InvalidPullRequestEventTypeException = (function (_super) {
|
|
1927
|
+
__extends(InvalidPullRequestEventTypeException, _super);
|
|
1928
|
+
function InvalidPullRequestEventTypeException(opts) {
|
|
1929
|
+
var _this = _super.call(this, __assign({ name: "InvalidPullRequestEventTypeException", $fault: "client" }, opts)) || this;
|
|
1930
|
+
_this.name = "InvalidPullRequestEventTypeException";
|
|
1931
|
+
_this.$fault = "client";
|
|
1932
|
+
Object.setPrototypeOf(_this, InvalidPullRequestEventTypeException.prototype);
|
|
1933
|
+
return _this;
|
|
1934
|
+
}
|
|
1935
|
+
return InvalidPullRequestEventTypeException;
|
|
1936
|
+
}(__BaseException));
|
|
1937
|
+
export { InvalidPullRequestEventTypeException };
|
|
401
1938
|
export var DisassociateApprovalRuleTemplateFromRepositoryInput;
|
|
402
1939
|
(function (DisassociateApprovalRuleTemplateFromRepositoryInput) {
|
|
403
1940
|
DisassociateApprovalRuleTemplateFromRepositoryInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -414,6 +1951,42 @@ export var EvaluatePullRequestApprovalRulesOutput;
|
|
|
414
1951
|
(function (EvaluatePullRequestApprovalRulesOutput) {
|
|
415
1952
|
EvaluatePullRequestApprovalRulesOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
416
1953
|
})(EvaluatePullRequestApprovalRulesOutput || (EvaluatePullRequestApprovalRulesOutput = {}));
|
|
1954
|
+
var InvalidRevisionIdException = (function (_super) {
|
|
1955
|
+
__extends(InvalidRevisionIdException, _super);
|
|
1956
|
+
function InvalidRevisionIdException(opts) {
|
|
1957
|
+
var _this = _super.call(this, __assign({ name: "InvalidRevisionIdException", $fault: "client" }, opts)) || this;
|
|
1958
|
+
_this.name = "InvalidRevisionIdException";
|
|
1959
|
+
_this.$fault = "client";
|
|
1960
|
+
Object.setPrototypeOf(_this, InvalidRevisionIdException.prototype);
|
|
1961
|
+
return _this;
|
|
1962
|
+
}
|
|
1963
|
+
return InvalidRevisionIdException;
|
|
1964
|
+
}(__BaseException));
|
|
1965
|
+
export { InvalidRevisionIdException };
|
|
1966
|
+
var RevisionIdRequiredException = (function (_super) {
|
|
1967
|
+
__extends(RevisionIdRequiredException, _super);
|
|
1968
|
+
function RevisionIdRequiredException(opts) {
|
|
1969
|
+
var _this = _super.call(this, __assign({ name: "RevisionIdRequiredException", $fault: "client" }, opts)) || this;
|
|
1970
|
+
_this.name = "RevisionIdRequiredException";
|
|
1971
|
+
_this.$fault = "client";
|
|
1972
|
+
Object.setPrototypeOf(_this, RevisionIdRequiredException.prototype);
|
|
1973
|
+
return _this;
|
|
1974
|
+
}
|
|
1975
|
+
return RevisionIdRequiredException;
|
|
1976
|
+
}(__BaseException));
|
|
1977
|
+
export { RevisionIdRequiredException };
|
|
1978
|
+
var RevisionNotCurrentException = (function (_super) {
|
|
1979
|
+
__extends(RevisionNotCurrentException, _super);
|
|
1980
|
+
function RevisionNotCurrentException(opts) {
|
|
1981
|
+
var _this = _super.call(this, __assign({ name: "RevisionNotCurrentException", $fault: "client" }, opts)) || this;
|
|
1982
|
+
_this.name = "RevisionNotCurrentException";
|
|
1983
|
+
_this.$fault = "client";
|
|
1984
|
+
Object.setPrototypeOf(_this, RevisionNotCurrentException.prototype);
|
|
1985
|
+
return _this;
|
|
1986
|
+
}
|
|
1987
|
+
return RevisionNotCurrentException;
|
|
1988
|
+
}(__BaseException));
|
|
1989
|
+
export { RevisionNotCurrentException };
|
|
417
1990
|
export var GetApprovalRuleTemplateInput;
|
|
418
1991
|
(function (GetApprovalRuleTemplateInput) {
|
|
419
1992
|
GetApprovalRuleTemplateInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -422,6 +1995,18 @@ export var GetApprovalRuleTemplateOutput;
|
|
|
422
1995
|
(function (GetApprovalRuleTemplateOutput) {
|
|
423
1996
|
GetApprovalRuleTemplateOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
424
1997
|
})(GetApprovalRuleTemplateOutput || (GetApprovalRuleTemplateOutput = {}));
|
|
1998
|
+
var FileTooLargeException = (function (_super) {
|
|
1999
|
+
__extends(FileTooLargeException, _super);
|
|
2000
|
+
function FileTooLargeException(opts) {
|
|
2001
|
+
var _this = _super.call(this, __assign({ name: "FileTooLargeException", $fault: "client" }, opts)) || this;
|
|
2002
|
+
_this.name = "FileTooLargeException";
|
|
2003
|
+
_this.$fault = "client";
|
|
2004
|
+
Object.setPrototypeOf(_this, FileTooLargeException.prototype);
|
|
2005
|
+
return _this;
|
|
2006
|
+
}
|
|
2007
|
+
return FileTooLargeException;
|
|
2008
|
+
}(__BaseException));
|
|
2009
|
+
export { FileTooLargeException };
|
|
425
2010
|
export var GetBlobInput;
|
|
426
2011
|
(function (GetBlobInput) {
|
|
427
2012
|
GetBlobInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -430,6 +2015,18 @@ export var GetBlobOutput;
|
|
|
430
2015
|
(function (GetBlobOutput) {
|
|
431
2016
|
GetBlobOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
432
2017
|
})(GetBlobOutput || (GetBlobOutput = {}));
|
|
2018
|
+
var InvalidBlobIdException = (function (_super) {
|
|
2019
|
+
__extends(InvalidBlobIdException, _super);
|
|
2020
|
+
function InvalidBlobIdException(opts) {
|
|
2021
|
+
var _this = _super.call(this, __assign({ name: "InvalidBlobIdException", $fault: "client" }, opts)) || this;
|
|
2022
|
+
_this.name = "InvalidBlobIdException";
|
|
2023
|
+
_this.$fault = "client";
|
|
2024
|
+
Object.setPrototypeOf(_this, InvalidBlobIdException.prototype);
|
|
2025
|
+
return _this;
|
|
2026
|
+
}
|
|
2027
|
+
return InvalidBlobIdException;
|
|
2028
|
+
}(__BaseException));
|
|
2029
|
+
export { InvalidBlobIdException };
|
|
433
2030
|
export var GetBranchInput;
|
|
434
2031
|
(function (GetBranchInput) {
|
|
435
2032
|
GetBranchInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -462,6 +2059,18 @@ export var GetCommentReactionsOutput;
|
|
|
462
2059
|
(function (GetCommentReactionsOutput) {
|
|
463
2060
|
GetCommentReactionsOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
464
2061
|
})(GetCommentReactionsOutput || (GetCommentReactionsOutput = {}));
|
|
2062
|
+
var InvalidReactionUserArnException = (function (_super) {
|
|
2063
|
+
__extends(InvalidReactionUserArnException, _super);
|
|
2064
|
+
function InvalidReactionUserArnException(opts) {
|
|
2065
|
+
var _this = _super.call(this, __assign({ name: "InvalidReactionUserArnException", $fault: "client" }, opts)) || this;
|
|
2066
|
+
_this.name = "InvalidReactionUserArnException";
|
|
2067
|
+
_this.$fault = "client";
|
|
2068
|
+
Object.setPrototypeOf(_this, InvalidReactionUserArnException.prototype);
|
|
2069
|
+
return _this;
|
|
2070
|
+
}
|
|
2071
|
+
return InvalidReactionUserArnException;
|
|
2072
|
+
}(__BaseException));
|
|
2073
|
+
export { InvalidReactionUserArnException };
|
|
465
2074
|
export var GetCommentsForComparedCommitInput;
|
|
466
2075
|
(function (GetCommentsForComparedCommitInput) {
|
|
467
2076
|
GetCommentsForComparedCommitInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -495,6 +2104,30 @@ export var GetCommentsForPullRequestOutput;
|
|
|
495
2104
|
(function (GetCommentsForPullRequestOutput) {
|
|
496
2105
|
GetCommentsForPullRequestOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
497
2106
|
})(GetCommentsForPullRequestOutput || (GetCommentsForPullRequestOutput = {}));
|
|
2107
|
+
var RepositoryNotAssociatedWithPullRequestException = (function (_super) {
|
|
2108
|
+
__extends(RepositoryNotAssociatedWithPullRequestException, _super);
|
|
2109
|
+
function RepositoryNotAssociatedWithPullRequestException(opts) {
|
|
2110
|
+
var _this = _super.call(this, __assign({ name: "RepositoryNotAssociatedWithPullRequestException", $fault: "client" }, opts)) || this;
|
|
2111
|
+
_this.name = "RepositoryNotAssociatedWithPullRequestException";
|
|
2112
|
+
_this.$fault = "client";
|
|
2113
|
+
Object.setPrototypeOf(_this, RepositoryNotAssociatedWithPullRequestException.prototype);
|
|
2114
|
+
return _this;
|
|
2115
|
+
}
|
|
2116
|
+
return RepositoryNotAssociatedWithPullRequestException;
|
|
2117
|
+
}(__BaseException));
|
|
2118
|
+
export { RepositoryNotAssociatedWithPullRequestException };
|
|
2119
|
+
var CommitIdDoesNotExistException = (function (_super) {
|
|
2120
|
+
__extends(CommitIdDoesNotExistException, _super);
|
|
2121
|
+
function CommitIdDoesNotExistException(opts) {
|
|
2122
|
+
var _this = _super.call(this, __assign({ name: "CommitIdDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
2123
|
+
_this.name = "CommitIdDoesNotExistException";
|
|
2124
|
+
_this.$fault = "client";
|
|
2125
|
+
Object.setPrototypeOf(_this, CommitIdDoesNotExistException.prototype);
|
|
2126
|
+
return _this;
|
|
2127
|
+
}
|
|
2128
|
+
return CommitIdDoesNotExistException;
|
|
2129
|
+
}(__BaseException));
|
|
2130
|
+
export { CommitIdDoesNotExistException };
|
|
498
2131
|
export var GetCommitInput;
|
|
499
2132
|
(function (GetCommitInput) {
|
|
500
2133
|
GetCommitInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -515,6 +2148,18 @@ export var GetDifferencesOutput;
|
|
|
515
2148
|
(function (GetDifferencesOutput) {
|
|
516
2149
|
GetDifferencesOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
517
2150
|
})(GetDifferencesOutput || (GetDifferencesOutput = {}));
|
|
2151
|
+
var PathDoesNotExistException = (function (_super) {
|
|
2152
|
+
__extends(PathDoesNotExistException, _super);
|
|
2153
|
+
function PathDoesNotExistException(opts) {
|
|
2154
|
+
var _this = _super.call(this, __assign({ name: "PathDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
2155
|
+
_this.name = "PathDoesNotExistException";
|
|
2156
|
+
_this.$fault = "client";
|
|
2157
|
+
Object.setPrototypeOf(_this, PathDoesNotExistException.prototype);
|
|
2158
|
+
return _this;
|
|
2159
|
+
}
|
|
2160
|
+
return PathDoesNotExistException;
|
|
2161
|
+
}(__BaseException));
|
|
2162
|
+
export { PathDoesNotExistException };
|
|
518
2163
|
export var GetFileInput;
|
|
519
2164
|
(function (GetFileInput) {
|
|
520
2165
|
GetFileInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -523,6 +2168,18 @@ export var GetFileOutput;
|
|
|
523
2168
|
(function (GetFileOutput) {
|
|
524
2169
|
GetFileOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
525
2170
|
})(GetFileOutput || (GetFileOutput = {}));
|
|
2171
|
+
var FolderDoesNotExistException = (function (_super) {
|
|
2172
|
+
__extends(FolderDoesNotExistException, _super);
|
|
2173
|
+
function FolderDoesNotExistException(opts) {
|
|
2174
|
+
var _this = _super.call(this, __assign({ name: "FolderDoesNotExistException", $fault: "client" }, opts)) || this;
|
|
2175
|
+
_this.name = "FolderDoesNotExistException";
|
|
2176
|
+
_this.$fault = "client";
|
|
2177
|
+
Object.setPrototypeOf(_this, FolderDoesNotExistException.prototype);
|
|
2178
|
+
return _this;
|
|
2179
|
+
}
|
|
2180
|
+
return FolderDoesNotExistException;
|
|
2181
|
+
}(__BaseException));
|
|
2182
|
+
export { FolderDoesNotExistException };
|
|
526
2183
|
export var GetFolderInput;
|
|
527
2184
|
(function (GetFolderInput) {
|
|
528
2185
|
GetFolderInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -563,6 +2220,30 @@ export var GetMergeConflictsOutput;
|
|
|
563
2220
|
(function (GetMergeConflictsOutput) {
|
|
564
2221
|
GetMergeConflictsOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
565
2222
|
})(GetMergeConflictsOutput || (GetMergeConflictsOutput = {}));
|
|
2223
|
+
var InvalidDestinationCommitSpecifierException = (function (_super) {
|
|
2224
|
+
__extends(InvalidDestinationCommitSpecifierException, _super);
|
|
2225
|
+
function InvalidDestinationCommitSpecifierException(opts) {
|
|
2226
|
+
var _this = _super.call(this, __assign({ name: "InvalidDestinationCommitSpecifierException", $fault: "client" }, opts)) || this;
|
|
2227
|
+
_this.name = "InvalidDestinationCommitSpecifierException";
|
|
2228
|
+
_this.$fault = "client";
|
|
2229
|
+
Object.setPrototypeOf(_this, InvalidDestinationCommitSpecifierException.prototype);
|
|
2230
|
+
return _this;
|
|
2231
|
+
}
|
|
2232
|
+
return InvalidDestinationCommitSpecifierException;
|
|
2233
|
+
}(__BaseException));
|
|
2234
|
+
export { InvalidDestinationCommitSpecifierException };
|
|
2235
|
+
var InvalidSourceCommitSpecifierException = (function (_super) {
|
|
2236
|
+
__extends(InvalidSourceCommitSpecifierException, _super);
|
|
2237
|
+
function InvalidSourceCommitSpecifierException(opts) {
|
|
2238
|
+
var _this = _super.call(this, __assign({ name: "InvalidSourceCommitSpecifierException", $fault: "client" }, opts)) || this;
|
|
2239
|
+
_this.name = "InvalidSourceCommitSpecifierException";
|
|
2240
|
+
_this.$fault = "client";
|
|
2241
|
+
Object.setPrototypeOf(_this, InvalidSourceCommitSpecifierException.prototype);
|
|
2242
|
+
return _this;
|
|
2243
|
+
}
|
|
2244
|
+
return InvalidSourceCommitSpecifierException;
|
|
2245
|
+
}(__BaseException));
|
|
2246
|
+
export { InvalidSourceCommitSpecifierException };
|
|
566
2247
|
export var GetMergeOptionsInput;
|
|
567
2248
|
(function (GetMergeOptionsInput) {
|
|
568
2249
|
GetMergeOptionsInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -646,6 +2327,30 @@ export var ListBranchesOutput;
|
|
|
646
2327
|
(function (ListBranchesOutput) {
|
|
647
2328
|
ListBranchesOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
648
2329
|
})(ListBranchesOutput || (ListBranchesOutput = {}));
|
|
2330
|
+
var InvalidAuthorArnException = (function (_super) {
|
|
2331
|
+
__extends(InvalidAuthorArnException, _super);
|
|
2332
|
+
function InvalidAuthorArnException(opts) {
|
|
2333
|
+
var _this = _super.call(this, __assign({ name: "InvalidAuthorArnException", $fault: "client" }, opts)) || this;
|
|
2334
|
+
_this.name = "InvalidAuthorArnException";
|
|
2335
|
+
_this.$fault = "client";
|
|
2336
|
+
Object.setPrototypeOf(_this, InvalidAuthorArnException.prototype);
|
|
2337
|
+
return _this;
|
|
2338
|
+
}
|
|
2339
|
+
return InvalidAuthorArnException;
|
|
2340
|
+
}(__BaseException));
|
|
2341
|
+
export { InvalidAuthorArnException };
|
|
2342
|
+
var InvalidPullRequestStatusException = (function (_super) {
|
|
2343
|
+
__extends(InvalidPullRequestStatusException, _super);
|
|
2344
|
+
function InvalidPullRequestStatusException(opts) {
|
|
2345
|
+
var _this = _super.call(this, __assign({ name: "InvalidPullRequestStatusException", $fault: "client" }, opts)) || this;
|
|
2346
|
+
_this.name = "InvalidPullRequestStatusException";
|
|
2347
|
+
_this.$fault = "client";
|
|
2348
|
+
Object.setPrototypeOf(_this, InvalidPullRequestStatusException.prototype);
|
|
2349
|
+
return _this;
|
|
2350
|
+
}
|
|
2351
|
+
return InvalidPullRequestStatusException;
|
|
2352
|
+
}(__BaseException));
|
|
2353
|
+
export { InvalidPullRequestStatusException };
|
|
649
2354
|
export var ListPullRequestsInput;
|
|
650
2355
|
(function (ListPullRequestsInput) {
|
|
651
2356
|
ListPullRequestsInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -654,3 +2359,27 @@ export var ListPullRequestsOutput;
|
|
|
654
2359
|
(function (ListPullRequestsOutput) {
|
|
655
2360
|
ListPullRequestsOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
656
2361
|
})(ListPullRequestsOutput || (ListPullRequestsOutput = {}));
|
|
2362
|
+
var InvalidOrderException = (function (_super) {
|
|
2363
|
+
__extends(InvalidOrderException, _super);
|
|
2364
|
+
function InvalidOrderException(opts) {
|
|
2365
|
+
var _this = _super.call(this, __assign({ name: "InvalidOrderException", $fault: "client" }, opts)) || this;
|
|
2366
|
+
_this.name = "InvalidOrderException";
|
|
2367
|
+
_this.$fault = "client";
|
|
2368
|
+
Object.setPrototypeOf(_this, InvalidOrderException.prototype);
|
|
2369
|
+
return _this;
|
|
2370
|
+
}
|
|
2371
|
+
return InvalidOrderException;
|
|
2372
|
+
}(__BaseException));
|
|
2373
|
+
export { InvalidOrderException };
|
|
2374
|
+
var InvalidSortByException = (function (_super) {
|
|
2375
|
+
__extends(InvalidSortByException, _super);
|
|
2376
|
+
function InvalidSortByException(opts) {
|
|
2377
|
+
var _this = _super.call(this, __assign({ name: "InvalidSortByException", $fault: "client" }, opts)) || this;
|
|
2378
|
+
_this.name = "InvalidSortByException";
|
|
2379
|
+
_this.$fault = "client";
|
|
2380
|
+
Object.setPrototypeOf(_this, InvalidSortByException.prototype);
|
|
2381
|
+
return _this;
|
|
2382
|
+
}
|
|
2383
|
+
return InvalidSortByException;
|
|
2384
|
+
}(__BaseException));
|
|
2385
|
+
export { InvalidSortByException };
|