@aws-sdk/client-codecommit 3.52.0 → 3.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/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/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/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/package.json +25 -25
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { CodeCommitServiceException as __BaseException } from "./CodeCommitServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>The specified Amazon Resource Name (ARN) does not exist in the AWS account.</p>
|
|
4
5
|
*/
|
|
5
|
-
export
|
|
6
|
-
name: "ActorDoesNotExistException";
|
|
7
|
-
$fault: "client";
|
|
6
|
+
export declare class ActorDoesNotExistException extends __BaseException {
|
|
7
|
+
readonly name: "ActorDoesNotExistException";
|
|
8
|
+
readonly $fault: "client";
|
|
8
9
|
/**
|
|
9
|
-
*
|
|
10
|
+
* @internal
|
|
10
11
|
*/
|
|
11
|
-
|
|
12
|
+
constructor(opts: __ExceptionOptionType<ActorDoesNotExistException, __BaseException>);
|
|
12
13
|
}
|
|
13
14
|
export declare enum ApprovalState {
|
|
14
15
|
APPROVE = "APPROVE",
|
|
@@ -98,24 +99,24 @@ export declare namespace ApprovalRule {
|
|
|
98
99
|
/**
|
|
99
100
|
* <p>The content for the approval rule is empty. You must provide some content for an approval rule. The content cannot be null.</p>
|
|
100
101
|
*/
|
|
101
|
-
export
|
|
102
|
-
name: "ApprovalRuleContentRequiredException";
|
|
103
|
-
$fault: "client";
|
|
102
|
+
export declare class ApprovalRuleContentRequiredException extends __BaseException {
|
|
103
|
+
readonly name: "ApprovalRuleContentRequiredException";
|
|
104
|
+
readonly $fault: "client";
|
|
104
105
|
/**
|
|
105
|
-
*
|
|
106
|
+
* @internal
|
|
106
107
|
*/
|
|
107
|
-
|
|
108
|
+
constructor(opts: __ExceptionOptionType<ApprovalRuleContentRequiredException, __BaseException>);
|
|
108
109
|
}
|
|
109
110
|
/**
|
|
110
111
|
* <p>The specified approval rule does not exist.</p>
|
|
111
112
|
*/
|
|
112
|
-
export
|
|
113
|
-
name: "ApprovalRuleDoesNotExistException";
|
|
114
|
-
$fault: "client";
|
|
113
|
+
export declare class ApprovalRuleDoesNotExistException extends __BaseException {
|
|
114
|
+
readonly name: "ApprovalRuleDoesNotExistException";
|
|
115
|
+
readonly $fault: "client";
|
|
115
116
|
/**
|
|
116
|
-
*
|
|
117
|
+
* @internal
|
|
117
118
|
*/
|
|
118
|
-
|
|
119
|
+
constructor(opts: __ExceptionOptionType<ApprovalRuleDoesNotExistException, __BaseException>);
|
|
119
120
|
}
|
|
120
121
|
/**
|
|
121
122
|
* <p>Returns information about an event for an approval rule.</p>
|
|
@@ -144,24 +145,24 @@ export declare namespace ApprovalRuleEventMetadata {
|
|
|
144
145
|
* <p>An approval rule with that name already exists. Approval rule names must be unique
|
|
145
146
|
* within the scope of a pull request.</p>
|
|
146
147
|
*/
|
|
147
|
-
export
|
|
148
|
-
name: "ApprovalRuleNameAlreadyExistsException";
|
|
149
|
-
$fault: "client";
|
|
148
|
+
export declare class ApprovalRuleNameAlreadyExistsException extends __BaseException {
|
|
149
|
+
readonly name: "ApprovalRuleNameAlreadyExistsException";
|
|
150
|
+
readonly $fault: "client";
|
|
150
151
|
/**
|
|
151
|
-
*
|
|
152
|
+
* @internal
|
|
152
153
|
*/
|
|
153
|
-
|
|
154
|
+
constructor(opts: __ExceptionOptionType<ApprovalRuleNameAlreadyExistsException, __BaseException>);
|
|
154
155
|
}
|
|
155
156
|
/**
|
|
156
157
|
* <p>An approval rule name is required, but was not specified.</p>
|
|
157
158
|
*/
|
|
158
|
-
export
|
|
159
|
-
name: "ApprovalRuleNameRequiredException";
|
|
160
|
-
$fault: "client";
|
|
159
|
+
export declare class ApprovalRuleNameRequiredException extends __BaseException {
|
|
160
|
+
readonly name: "ApprovalRuleNameRequiredException";
|
|
161
|
+
readonly $fault: "client";
|
|
161
162
|
/**
|
|
162
|
-
*
|
|
163
|
+
* @internal
|
|
163
164
|
*/
|
|
164
|
-
|
|
165
|
+
constructor(opts: __ExceptionOptionType<ApprovalRuleNameRequiredException, __BaseException>);
|
|
165
166
|
}
|
|
166
167
|
export declare enum OverrideStatus {
|
|
167
168
|
OVERRIDE = "OVERRIDE",
|
|
@@ -232,61 +233,61 @@ export declare namespace ApprovalRuleTemplate {
|
|
|
232
233
|
/**
|
|
233
234
|
* <p>The content for the approval rule template is empty. You must provide some content for an approval rule template. The content cannot be null.</p>
|
|
234
235
|
*/
|
|
235
|
-
export
|
|
236
|
-
name: "ApprovalRuleTemplateContentRequiredException";
|
|
237
|
-
$fault: "client";
|
|
236
|
+
export declare class ApprovalRuleTemplateContentRequiredException extends __BaseException {
|
|
237
|
+
readonly name: "ApprovalRuleTemplateContentRequiredException";
|
|
238
|
+
readonly $fault: "client";
|
|
238
239
|
/**
|
|
239
|
-
*
|
|
240
|
+
* @internal
|
|
240
241
|
*/
|
|
241
|
-
|
|
242
|
+
constructor(opts: __ExceptionOptionType<ApprovalRuleTemplateContentRequiredException, __BaseException>);
|
|
242
243
|
}
|
|
243
244
|
/**
|
|
244
245
|
* <p>The specified approval rule template does not exist. Verify that the name is correct and that you are signed in to the AWS Region where the template
|
|
245
246
|
* was created, and then try again.</p>
|
|
246
247
|
*/
|
|
247
|
-
export
|
|
248
|
-
name: "ApprovalRuleTemplateDoesNotExistException";
|
|
249
|
-
$fault: "client";
|
|
248
|
+
export declare class ApprovalRuleTemplateDoesNotExistException extends __BaseException {
|
|
249
|
+
readonly name: "ApprovalRuleTemplateDoesNotExistException";
|
|
250
|
+
readonly $fault: "client";
|
|
250
251
|
/**
|
|
251
|
-
*
|
|
252
|
+
* @internal
|
|
252
253
|
*/
|
|
253
|
-
|
|
254
|
+
constructor(opts: __ExceptionOptionType<ApprovalRuleTemplateDoesNotExistException, __BaseException>);
|
|
254
255
|
}
|
|
255
256
|
/**
|
|
256
257
|
* <p>The approval rule template is associated with one or more repositories. You cannot delete a template that is associated with a repository. Remove
|
|
257
258
|
* all associations, and then try again.</p>
|
|
258
259
|
*/
|
|
259
|
-
export
|
|
260
|
-
name: "ApprovalRuleTemplateInUseException";
|
|
261
|
-
$fault: "client";
|
|
260
|
+
export declare class ApprovalRuleTemplateInUseException extends __BaseException {
|
|
261
|
+
readonly name: "ApprovalRuleTemplateInUseException";
|
|
262
|
+
readonly $fault: "client";
|
|
262
263
|
/**
|
|
263
|
-
*
|
|
264
|
+
* @internal
|
|
264
265
|
*/
|
|
265
|
-
|
|
266
|
+
constructor(opts: __ExceptionOptionType<ApprovalRuleTemplateInUseException, __BaseException>);
|
|
266
267
|
}
|
|
267
268
|
/**
|
|
268
269
|
* <p>You cannot create an approval rule template with that name because a template with
|
|
269
270
|
* that name already exists in this AWS Region for your AWS account. Approval rule template
|
|
270
271
|
* names must be unique.</p>
|
|
271
272
|
*/
|
|
272
|
-
export
|
|
273
|
-
name: "ApprovalRuleTemplateNameAlreadyExistsException";
|
|
274
|
-
$fault: "client";
|
|
273
|
+
export declare class ApprovalRuleTemplateNameAlreadyExistsException extends __BaseException {
|
|
274
|
+
readonly name: "ApprovalRuleTemplateNameAlreadyExistsException";
|
|
275
|
+
readonly $fault: "client";
|
|
275
276
|
/**
|
|
276
|
-
*
|
|
277
|
+
* @internal
|
|
277
278
|
*/
|
|
278
|
-
|
|
279
|
+
constructor(opts: __ExceptionOptionType<ApprovalRuleTemplateNameAlreadyExistsException, __BaseException>);
|
|
279
280
|
}
|
|
280
281
|
/**
|
|
281
282
|
* <p>An approval rule template name is required, but was not specified.</p>
|
|
282
283
|
*/
|
|
283
|
-
export
|
|
284
|
-
name: "ApprovalRuleTemplateNameRequiredException";
|
|
285
|
-
$fault: "client";
|
|
284
|
+
export declare class ApprovalRuleTemplateNameRequiredException extends __BaseException {
|
|
285
|
+
readonly name: "ApprovalRuleTemplateNameRequiredException";
|
|
286
|
+
readonly $fault: "client";
|
|
286
287
|
/**
|
|
287
|
-
*
|
|
288
|
+
* @internal
|
|
288
289
|
*/
|
|
289
|
-
|
|
290
|
+
constructor(opts: __ExceptionOptionType<ApprovalRuleTemplateNameRequiredException, __BaseException>);
|
|
290
291
|
}
|
|
291
292
|
/**
|
|
292
293
|
* <p>Returns information about a change in the approval state for a pull request.</p>
|
|
@@ -310,13 +311,13 @@ export declare namespace ApprovalStateChangedEventMetadata {
|
|
|
310
311
|
/**
|
|
311
312
|
* <p>An approval state is required, but was not specified.</p>
|
|
312
313
|
*/
|
|
313
|
-
export
|
|
314
|
-
name: "ApprovalStateRequiredException";
|
|
315
|
-
$fault: "client";
|
|
314
|
+
export declare class ApprovalStateRequiredException extends __BaseException {
|
|
315
|
+
readonly name: "ApprovalStateRequiredException";
|
|
316
|
+
readonly $fault: "client";
|
|
316
317
|
/**
|
|
317
|
-
*
|
|
318
|
+
* @internal
|
|
318
319
|
*/
|
|
319
|
-
|
|
320
|
+
constructor(opts: __ExceptionOptionType<ApprovalStateRequiredException, __BaseException>);
|
|
320
321
|
}
|
|
321
322
|
export interface AssociateApprovalRuleTemplateWithRepositoryInput {
|
|
322
323
|
/**
|
|
@@ -337,57 +338,57 @@ export declare namespace AssociateApprovalRuleTemplateWithRepositoryInput {
|
|
|
337
338
|
/**
|
|
338
339
|
* <p>An encryption integrity check failed.</p>
|
|
339
340
|
*/
|
|
340
|
-
export
|
|
341
|
-
name: "EncryptionIntegrityChecksFailedException";
|
|
342
|
-
$fault: "server";
|
|
341
|
+
export declare class EncryptionIntegrityChecksFailedException extends __BaseException {
|
|
342
|
+
readonly name: "EncryptionIntegrityChecksFailedException";
|
|
343
|
+
readonly $fault: "server";
|
|
343
344
|
/**
|
|
344
|
-
*
|
|
345
|
+
* @internal
|
|
345
346
|
*/
|
|
346
|
-
|
|
347
|
+
constructor(opts: __ExceptionOptionType<EncryptionIntegrityChecksFailedException, __BaseException>);
|
|
347
348
|
}
|
|
348
349
|
/**
|
|
349
350
|
* <p>An encryption key could not be accessed.</p>
|
|
350
351
|
*/
|
|
351
|
-
export
|
|
352
|
-
name: "EncryptionKeyAccessDeniedException";
|
|
353
|
-
$fault: "client";
|
|
352
|
+
export declare class EncryptionKeyAccessDeniedException extends __BaseException {
|
|
353
|
+
readonly name: "EncryptionKeyAccessDeniedException";
|
|
354
|
+
readonly $fault: "client";
|
|
354
355
|
/**
|
|
355
|
-
*
|
|
356
|
+
* @internal
|
|
356
357
|
*/
|
|
357
|
-
|
|
358
|
+
constructor(opts: __ExceptionOptionType<EncryptionKeyAccessDeniedException, __BaseException>);
|
|
358
359
|
}
|
|
359
360
|
/**
|
|
360
361
|
* <p>The encryption key is disabled.</p>
|
|
361
362
|
*/
|
|
362
|
-
export
|
|
363
|
-
name: "EncryptionKeyDisabledException";
|
|
364
|
-
$fault: "client";
|
|
363
|
+
export declare class EncryptionKeyDisabledException extends __BaseException {
|
|
364
|
+
readonly name: "EncryptionKeyDisabledException";
|
|
365
|
+
readonly $fault: "client";
|
|
365
366
|
/**
|
|
366
|
-
*
|
|
367
|
+
* @internal
|
|
367
368
|
*/
|
|
368
|
-
|
|
369
|
+
constructor(opts: __ExceptionOptionType<EncryptionKeyDisabledException, __BaseException>);
|
|
369
370
|
}
|
|
370
371
|
/**
|
|
371
372
|
* <p>No encryption key was found.</p>
|
|
372
373
|
*/
|
|
373
|
-
export
|
|
374
|
-
name: "EncryptionKeyNotFoundException";
|
|
375
|
-
$fault: "client";
|
|
374
|
+
export declare class EncryptionKeyNotFoundException extends __BaseException {
|
|
375
|
+
readonly name: "EncryptionKeyNotFoundException";
|
|
376
|
+
readonly $fault: "client";
|
|
376
377
|
/**
|
|
377
|
-
*
|
|
378
|
+
* @internal
|
|
378
379
|
*/
|
|
379
|
-
|
|
380
|
+
constructor(opts: __ExceptionOptionType<EncryptionKeyNotFoundException, __BaseException>);
|
|
380
381
|
}
|
|
381
382
|
/**
|
|
382
383
|
* <p>The encryption key is not available.</p>
|
|
383
384
|
*/
|
|
384
|
-
export
|
|
385
|
-
name: "EncryptionKeyUnavailableException";
|
|
386
|
-
$fault: "client";
|
|
385
|
+
export declare class EncryptionKeyUnavailableException extends __BaseException {
|
|
386
|
+
readonly name: "EncryptionKeyUnavailableException";
|
|
387
|
+
readonly $fault: "client";
|
|
387
388
|
/**
|
|
388
|
-
*
|
|
389
|
+
* @internal
|
|
389
390
|
*/
|
|
390
|
-
|
|
391
|
+
constructor(opts: __ExceptionOptionType<EncryptionKeyUnavailableException, __BaseException>);
|
|
391
392
|
}
|
|
392
393
|
/**
|
|
393
394
|
* <p>The name of the approval rule template is not valid. Template names must be between 1
|
|
@@ -395,13 +396,13 @@ export interface EncryptionKeyUnavailableException extends __SmithyException, $M
|
|
|
395
396
|
* see <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/limits.html">AWS
|
|
396
397
|
* CodeCommit User Guide</a>.</p>
|
|
397
398
|
*/
|
|
398
|
-
export
|
|
399
|
-
name: "InvalidApprovalRuleTemplateNameException";
|
|
400
|
-
$fault: "client";
|
|
399
|
+
export declare class InvalidApprovalRuleTemplateNameException extends __BaseException {
|
|
400
|
+
readonly name: "InvalidApprovalRuleTemplateNameException";
|
|
401
|
+
readonly $fault: "client";
|
|
401
402
|
/**
|
|
402
|
-
*
|
|
403
|
+
* @internal
|
|
403
404
|
*/
|
|
404
|
-
|
|
405
|
+
constructor(opts: __ExceptionOptionType<InvalidApprovalRuleTemplateNameException, __BaseException>);
|
|
405
406
|
}
|
|
406
407
|
/**
|
|
407
408
|
* <p>A specified repository name is not valid.</p>
|
|
@@ -412,58 +413,58 @@ export interface InvalidApprovalRuleTemplateNameException extends __SmithyExcept
|
|
|
412
413
|
* specified repository does not exist.</p>
|
|
413
414
|
* </note>
|
|
414
415
|
*/
|
|
415
|
-
export
|
|
416
|
-
name: "InvalidRepositoryNameException";
|
|
417
|
-
$fault: "client";
|
|
416
|
+
export declare class InvalidRepositoryNameException extends __BaseException {
|
|
417
|
+
readonly name: "InvalidRepositoryNameException";
|
|
418
|
+
readonly $fault: "client";
|
|
418
419
|
/**
|
|
419
|
-
*
|
|
420
|
+
* @internal
|
|
420
421
|
*/
|
|
421
|
-
|
|
422
|
+
constructor(opts: __ExceptionOptionType<InvalidRepositoryNameException, __BaseException>);
|
|
422
423
|
}
|
|
423
424
|
/**
|
|
424
425
|
* <p>The maximum number of approval rule templates for a repository has been exceeded. You cannot associate more than 25
|
|
425
426
|
* approval rule templates with a repository.</p>
|
|
426
427
|
*/
|
|
427
|
-
export
|
|
428
|
-
name: "MaximumRuleTemplatesAssociatedWithRepositoryException";
|
|
429
|
-
$fault: "client";
|
|
428
|
+
export declare class MaximumRuleTemplatesAssociatedWithRepositoryException extends __BaseException {
|
|
429
|
+
readonly name: "MaximumRuleTemplatesAssociatedWithRepositoryException";
|
|
430
|
+
readonly $fault: "client";
|
|
430
431
|
/**
|
|
431
|
-
*
|
|
432
|
+
* @internal
|
|
432
433
|
*/
|
|
433
|
-
|
|
434
|
+
constructor(opts: __ExceptionOptionType<MaximumRuleTemplatesAssociatedWithRepositoryException, __BaseException>);
|
|
434
435
|
}
|
|
435
436
|
/**
|
|
436
437
|
* <p>The specified repository does not exist.</p>
|
|
437
438
|
*/
|
|
438
|
-
export
|
|
439
|
-
name: "RepositoryDoesNotExistException";
|
|
440
|
-
$fault: "client";
|
|
439
|
+
export declare class RepositoryDoesNotExistException extends __BaseException {
|
|
440
|
+
readonly name: "RepositoryDoesNotExistException";
|
|
441
|
+
readonly $fault: "client";
|
|
441
442
|
/**
|
|
442
|
-
*
|
|
443
|
+
* @internal
|
|
443
444
|
*/
|
|
444
|
-
|
|
445
|
+
constructor(opts: __ExceptionOptionType<RepositoryDoesNotExistException, __BaseException>);
|
|
445
446
|
}
|
|
446
447
|
/**
|
|
447
448
|
* <p>A repository name is required, but was not specified.</p>
|
|
448
449
|
*/
|
|
449
|
-
export
|
|
450
|
-
name: "RepositoryNameRequiredException";
|
|
451
|
-
$fault: "client";
|
|
450
|
+
export declare class RepositoryNameRequiredException extends __BaseException {
|
|
451
|
+
readonly name: "RepositoryNameRequiredException";
|
|
452
|
+
readonly $fault: "client";
|
|
452
453
|
/**
|
|
453
|
-
*
|
|
454
|
+
* @internal
|
|
454
455
|
*/
|
|
455
|
-
|
|
456
|
+
constructor(opts: __ExceptionOptionType<RepositoryNameRequiredException, __BaseException>);
|
|
456
457
|
}
|
|
457
458
|
/**
|
|
458
459
|
* <p>The specified Amazon Resource Name (ARN) does not exist in the AWS account.</p>
|
|
459
460
|
*/
|
|
460
|
-
export
|
|
461
|
-
name: "AuthorDoesNotExistException";
|
|
462
|
-
$fault: "client";
|
|
461
|
+
export declare class AuthorDoesNotExistException extends __BaseException {
|
|
462
|
+
readonly name: "AuthorDoesNotExistException";
|
|
463
|
+
readonly $fault: "client";
|
|
463
464
|
/**
|
|
464
|
-
*
|
|
465
|
+
* @internal
|
|
465
466
|
*/
|
|
466
|
-
|
|
467
|
+
constructor(opts: __ExceptionOptionType<AuthorDoesNotExistException, __BaseException>);
|
|
467
468
|
}
|
|
468
469
|
export interface BatchAssociateApprovalRuleTemplateWithRepositoriesInput {
|
|
469
470
|
/**
|
|
@@ -526,24 +527,24 @@ export declare namespace BatchAssociateApprovalRuleTemplateWithRepositoriesOutpu
|
|
|
526
527
|
/**
|
|
527
528
|
* <p>The maximum number of allowed repository names was exceeded. Currently, this number is 100.</p>
|
|
528
529
|
*/
|
|
529
|
-
export
|
|
530
|
-
name: "MaximumRepositoryNamesExceededException";
|
|
531
|
-
$fault: "client";
|
|
530
|
+
export declare class MaximumRepositoryNamesExceededException extends __BaseException {
|
|
531
|
+
readonly name: "MaximumRepositoryNamesExceededException";
|
|
532
|
+
readonly $fault: "client";
|
|
532
533
|
/**
|
|
533
|
-
*
|
|
534
|
+
* @internal
|
|
534
535
|
*/
|
|
535
|
-
|
|
536
|
+
constructor(opts: __ExceptionOptionType<MaximumRepositoryNamesExceededException, __BaseException>);
|
|
536
537
|
}
|
|
537
538
|
/**
|
|
538
539
|
* <p>At least one repository name object is required, but was not specified.</p>
|
|
539
540
|
*/
|
|
540
|
-
export
|
|
541
|
-
name: "RepositoryNamesRequiredException";
|
|
542
|
-
$fault: "client";
|
|
541
|
+
export declare class RepositoryNamesRequiredException extends __BaseException {
|
|
542
|
+
readonly name: "RepositoryNamesRequiredException";
|
|
543
|
+
readonly $fault: "client";
|
|
543
544
|
/**
|
|
544
|
-
*
|
|
545
|
+
* @internal
|
|
545
546
|
*/
|
|
546
|
-
|
|
547
|
+
constructor(opts: __ExceptionOptionType<RepositoryNamesRequiredException, __BaseException>);
|
|
547
548
|
}
|
|
548
549
|
export declare enum ConflictDetailLevelTypeEnum {
|
|
549
550
|
FILE_LEVEL = "FILE_LEVEL",
|
|
@@ -927,146 +928,146 @@ export declare namespace BatchDescribeMergeConflictsOutput {
|
|
|
927
928
|
/**
|
|
928
929
|
* <p>The specified commit does not exist or no commit was specified, and the specified repository has no default branch.</p>
|
|
929
930
|
*/
|
|
930
|
-
export
|
|
931
|
-
name: "CommitDoesNotExistException";
|
|
932
|
-
$fault: "client";
|
|
931
|
+
export declare class CommitDoesNotExistException extends __BaseException {
|
|
932
|
+
readonly name: "CommitDoesNotExistException";
|
|
933
|
+
readonly $fault: "client";
|
|
933
934
|
/**
|
|
934
|
-
*
|
|
935
|
+
* @internal
|
|
935
936
|
*/
|
|
936
|
-
|
|
937
|
+
constructor(opts: __ExceptionOptionType<CommitDoesNotExistException, __BaseException>);
|
|
937
938
|
}
|
|
938
939
|
/**
|
|
939
940
|
* <p>A commit was not specified.</p>
|
|
940
941
|
*/
|
|
941
|
-
export
|
|
942
|
-
name: "CommitRequiredException";
|
|
943
|
-
$fault: "client";
|
|
942
|
+
export declare class CommitRequiredException extends __BaseException {
|
|
943
|
+
readonly name: "CommitRequiredException";
|
|
944
|
+
readonly $fault: "client";
|
|
944
945
|
/**
|
|
945
|
-
*
|
|
946
|
+
* @internal
|
|
946
947
|
*/
|
|
947
|
-
|
|
948
|
+
constructor(opts: __ExceptionOptionType<CommitRequiredException, __BaseException>);
|
|
948
949
|
}
|
|
949
950
|
/**
|
|
950
951
|
* <p>The specified commit is not valid.</p>
|
|
951
952
|
*/
|
|
952
|
-
export
|
|
953
|
-
name: "InvalidCommitException";
|
|
954
|
-
$fault: "client";
|
|
953
|
+
export declare class InvalidCommitException extends __BaseException {
|
|
954
|
+
readonly name: "InvalidCommitException";
|
|
955
|
+
readonly $fault: "client";
|
|
955
956
|
/**
|
|
956
|
-
*
|
|
957
|
+
* @internal
|
|
957
958
|
*/
|
|
958
|
-
|
|
959
|
+
constructor(opts: __ExceptionOptionType<InvalidCommitException, __BaseException>);
|
|
959
960
|
}
|
|
960
961
|
/**
|
|
961
962
|
* <p>The specified conflict detail level is not valid.</p>
|
|
962
963
|
*/
|
|
963
|
-
export
|
|
964
|
-
name: "InvalidConflictDetailLevelException";
|
|
965
|
-
$fault: "client";
|
|
964
|
+
export declare class InvalidConflictDetailLevelException extends __BaseException {
|
|
965
|
+
readonly name: "InvalidConflictDetailLevelException";
|
|
966
|
+
readonly $fault: "client";
|
|
966
967
|
/**
|
|
967
|
-
*
|
|
968
|
+
* @internal
|
|
968
969
|
*/
|
|
969
|
-
|
|
970
|
+
constructor(opts: __ExceptionOptionType<InvalidConflictDetailLevelException, __BaseException>);
|
|
970
971
|
}
|
|
971
972
|
/**
|
|
972
973
|
* <p>The specified conflict resolution strategy is not valid.</p>
|
|
973
974
|
*/
|
|
974
|
-
export
|
|
975
|
-
name: "InvalidConflictResolutionStrategyException";
|
|
976
|
-
$fault: "client";
|
|
975
|
+
export declare class InvalidConflictResolutionStrategyException extends __BaseException {
|
|
976
|
+
readonly name: "InvalidConflictResolutionStrategyException";
|
|
977
|
+
readonly $fault: "client";
|
|
977
978
|
/**
|
|
978
|
-
*
|
|
979
|
+
* @internal
|
|
979
980
|
*/
|
|
980
|
-
|
|
981
|
+
constructor(opts: __ExceptionOptionType<InvalidConflictResolutionStrategyException, __BaseException>);
|
|
981
982
|
}
|
|
982
983
|
/**
|
|
983
984
|
* <p>The specified continuation token is not valid.</p>
|
|
984
985
|
*/
|
|
985
|
-
export
|
|
986
|
-
name: "InvalidContinuationTokenException";
|
|
987
|
-
$fault: "client";
|
|
986
|
+
export declare class InvalidContinuationTokenException extends __BaseException {
|
|
987
|
+
readonly name: "InvalidContinuationTokenException";
|
|
988
|
+
readonly $fault: "client";
|
|
988
989
|
/**
|
|
989
|
-
*
|
|
990
|
+
* @internal
|
|
990
991
|
*/
|
|
991
|
-
|
|
992
|
+
constructor(opts: __ExceptionOptionType<InvalidContinuationTokenException, __BaseException>);
|
|
992
993
|
}
|
|
993
994
|
/**
|
|
994
995
|
* <p>The specified value for the number of conflict files to return is not valid.</p>
|
|
995
996
|
*/
|
|
996
|
-
export
|
|
997
|
-
name: "InvalidMaxConflictFilesException";
|
|
998
|
-
$fault: "client";
|
|
997
|
+
export declare class InvalidMaxConflictFilesException extends __BaseException {
|
|
998
|
+
readonly name: "InvalidMaxConflictFilesException";
|
|
999
|
+
readonly $fault: "client";
|
|
999
1000
|
/**
|
|
1000
|
-
*
|
|
1001
|
+
* @internal
|
|
1001
1002
|
*/
|
|
1002
|
-
|
|
1003
|
+
constructor(opts: __ExceptionOptionType<InvalidMaxConflictFilesException, __BaseException>);
|
|
1003
1004
|
}
|
|
1004
1005
|
/**
|
|
1005
1006
|
* <p>The specified value for the number of merge hunks to return is not valid.</p>
|
|
1006
1007
|
*/
|
|
1007
|
-
export
|
|
1008
|
-
name: "InvalidMaxMergeHunksException";
|
|
1009
|
-
$fault: "client";
|
|
1008
|
+
export declare class InvalidMaxMergeHunksException extends __BaseException {
|
|
1009
|
+
readonly name: "InvalidMaxMergeHunksException";
|
|
1010
|
+
readonly $fault: "client";
|
|
1010
1011
|
/**
|
|
1011
|
-
*
|
|
1012
|
+
* @internal
|
|
1012
1013
|
*/
|
|
1013
|
-
|
|
1014
|
+
constructor(opts: __ExceptionOptionType<InvalidMaxMergeHunksException, __BaseException>);
|
|
1014
1015
|
}
|
|
1015
1016
|
/**
|
|
1016
1017
|
* <p>The specified merge option is not valid for this operation. Not all merge strategies are supported for all operations.</p>
|
|
1017
1018
|
*/
|
|
1018
|
-
export
|
|
1019
|
-
name: "InvalidMergeOptionException";
|
|
1020
|
-
$fault: "client";
|
|
1019
|
+
export declare class InvalidMergeOptionException extends __BaseException {
|
|
1020
|
+
readonly name: "InvalidMergeOptionException";
|
|
1021
|
+
readonly $fault: "client";
|
|
1021
1022
|
/**
|
|
1022
|
-
*
|
|
1023
|
+
* @internal
|
|
1023
1024
|
*/
|
|
1024
|
-
|
|
1025
|
+
constructor(opts: __ExceptionOptionType<InvalidMergeOptionException, __BaseException>);
|
|
1025
1026
|
}
|
|
1026
1027
|
/**
|
|
1027
1028
|
* <p>The number of files to load exceeds the allowed limit.</p>
|
|
1028
1029
|
*/
|
|
1029
|
-
export
|
|
1030
|
-
name: "MaximumFileContentToLoadExceededException";
|
|
1031
|
-
$fault: "client";
|
|
1030
|
+
export declare class MaximumFileContentToLoadExceededException extends __BaseException {
|
|
1031
|
+
readonly name: "MaximumFileContentToLoadExceededException";
|
|
1032
|
+
readonly $fault: "client";
|
|
1032
1033
|
/**
|
|
1033
|
-
*
|
|
1034
|
+
* @internal
|
|
1034
1035
|
*/
|
|
1035
|
-
|
|
1036
|
+
constructor(opts: __ExceptionOptionType<MaximumFileContentToLoadExceededException, __BaseException>);
|
|
1036
1037
|
}
|
|
1037
1038
|
/**
|
|
1038
1039
|
* <p>The number of items to compare between the source or destination branches and the merge base has exceeded the maximum allowed.</p>
|
|
1039
1040
|
*/
|
|
1040
|
-
export
|
|
1041
|
-
name: "MaximumItemsToCompareExceededException";
|
|
1042
|
-
$fault: "client";
|
|
1041
|
+
export declare class MaximumItemsToCompareExceededException extends __BaseException {
|
|
1042
|
+
readonly name: "MaximumItemsToCompareExceededException";
|
|
1043
|
+
readonly $fault: "client";
|
|
1043
1044
|
/**
|
|
1044
|
-
*
|
|
1045
|
+
* @internal
|
|
1045
1046
|
*/
|
|
1046
|
-
|
|
1047
|
+
constructor(opts: __ExceptionOptionType<MaximumItemsToCompareExceededException, __BaseException>);
|
|
1047
1048
|
}
|
|
1048
1049
|
/**
|
|
1049
1050
|
* <p>A merge option or stategy is required, and none was provided.</p>
|
|
1050
1051
|
*/
|
|
1051
|
-
export
|
|
1052
|
-
name: "MergeOptionRequiredException";
|
|
1053
|
-
$fault: "client";
|
|
1052
|
+
export declare class MergeOptionRequiredException extends __BaseException {
|
|
1053
|
+
readonly name: "MergeOptionRequiredException";
|
|
1054
|
+
readonly $fault: "client";
|
|
1054
1055
|
/**
|
|
1055
|
-
*
|
|
1056
|
+
* @internal
|
|
1056
1057
|
*/
|
|
1057
|
-
|
|
1058
|
+
constructor(opts: __ExceptionOptionType<MergeOptionRequiredException, __BaseException>);
|
|
1058
1059
|
}
|
|
1059
1060
|
/**
|
|
1060
1061
|
* <p>The divergence between the tips of the provided commit specifiers is too great to determine whether there might be
|
|
1061
1062
|
* any merge conflicts. Locally compare the specifiers using <code>git diff</code> or a diff tool.</p>
|
|
1062
1063
|
*/
|
|
1063
|
-
export
|
|
1064
|
-
name: "TipsDivergenceExceededException";
|
|
1065
|
-
$fault: "client";
|
|
1064
|
+
export declare class TipsDivergenceExceededException extends __BaseException {
|
|
1065
|
+
readonly name: "TipsDivergenceExceededException";
|
|
1066
|
+
readonly $fault: "client";
|
|
1066
1067
|
/**
|
|
1067
|
-
*
|
|
1068
|
+
* @internal
|
|
1068
1069
|
*/
|
|
1069
|
-
|
|
1070
|
+
constructor(opts: __ExceptionOptionType<TipsDivergenceExceededException, __BaseException>);
|
|
1070
1071
|
}
|
|
1071
1072
|
export interface BatchDisassociateApprovalRuleTemplateFromRepositoriesInput {
|
|
1072
1073
|
/**
|
|
@@ -1262,24 +1263,24 @@ export declare namespace BatchGetCommitsOutput {
|
|
|
1262
1263
|
/**
|
|
1263
1264
|
* <p>The maximum number of allowed commit IDs in a batch request is 100. Verify that your batch requests contains no more than 100 commit IDs, and then try again.</p>
|
|
1264
1265
|
*/
|
|
1265
|
-
export
|
|
1266
|
-
name: "CommitIdsLimitExceededException";
|
|
1267
|
-
$fault: "client";
|
|
1266
|
+
export declare class CommitIdsLimitExceededException extends __BaseException {
|
|
1267
|
+
readonly name: "CommitIdsLimitExceededException";
|
|
1268
|
+
readonly $fault: "client";
|
|
1268
1269
|
/**
|
|
1269
|
-
*
|
|
1270
|
+
* @internal
|
|
1270
1271
|
*/
|
|
1271
|
-
|
|
1272
|
+
constructor(opts: __ExceptionOptionType<CommitIdsLimitExceededException, __BaseException>);
|
|
1272
1273
|
}
|
|
1273
1274
|
/**
|
|
1274
1275
|
* <p>A list of commit IDs is required, but was either not specified or the list was empty.</p>
|
|
1275
1276
|
*/
|
|
1276
|
-
export
|
|
1277
|
-
name: "CommitIdsListRequiredException";
|
|
1278
|
-
$fault: "client";
|
|
1277
|
+
export declare class CommitIdsListRequiredException extends __BaseException {
|
|
1278
|
+
readonly name: "CommitIdsListRequiredException";
|
|
1279
|
+
readonly $fault: "client";
|
|
1279
1280
|
/**
|
|
1280
|
-
*
|
|
1281
|
+
* @internal
|
|
1281
1282
|
*/
|
|
1282
|
-
|
|
1283
|
+
constructor(opts: __ExceptionOptionType<CommitIdsListRequiredException, __BaseException>);
|
|
1283
1284
|
}
|
|
1284
1285
|
/**
|
|
1285
1286
|
* <p>Represents the input of a batch get repositories operation.</p>
|
|
@@ -1372,35 +1373,35 @@ export declare namespace BatchGetRepositoriesOutput {
|
|
|
1372
1373
|
/**
|
|
1373
1374
|
* <p>The before commit ID and the after commit ID are the same, which is not valid. The before commit ID and the after commit ID must be different commit IDs.</p>
|
|
1374
1375
|
*/
|
|
1375
|
-
export
|
|
1376
|
-
name: "BeforeCommitIdAndAfterCommitIdAreSameException";
|
|
1377
|
-
$fault: "client";
|
|
1376
|
+
export declare class BeforeCommitIdAndAfterCommitIdAreSameException extends __BaseException {
|
|
1377
|
+
readonly name: "BeforeCommitIdAndAfterCommitIdAreSameException";
|
|
1378
|
+
readonly $fault: "client";
|
|
1378
1379
|
/**
|
|
1379
|
-
*
|
|
1380
|
+
* @internal
|
|
1380
1381
|
*/
|
|
1381
|
-
|
|
1382
|
+
constructor(opts: __ExceptionOptionType<BeforeCommitIdAndAfterCommitIdAreSameException, __BaseException>);
|
|
1382
1383
|
}
|
|
1383
1384
|
/**
|
|
1384
1385
|
* <p>The specified blob does not exist.</p>
|
|
1385
1386
|
*/
|
|
1386
|
-
export
|
|
1387
|
-
name: "BlobIdDoesNotExistException";
|
|
1388
|
-
$fault: "client";
|
|
1387
|
+
export declare class BlobIdDoesNotExistException extends __BaseException {
|
|
1388
|
+
readonly name: "BlobIdDoesNotExistException";
|
|
1389
|
+
readonly $fault: "client";
|
|
1389
1390
|
/**
|
|
1390
|
-
*
|
|
1391
|
+
* @internal
|
|
1391
1392
|
*/
|
|
1392
|
-
|
|
1393
|
+
constructor(opts: __ExceptionOptionType<BlobIdDoesNotExistException, __BaseException>);
|
|
1393
1394
|
}
|
|
1394
1395
|
/**
|
|
1395
1396
|
* <p>A blob ID is required, but was not specified.</p>
|
|
1396
1397
|
*/
|
|
1397
|
-
export
|
|
1398
|
-
name: "BlobIdRequiredException";
|
|
1399
|
-
$fault: "client";
|
|
1398
|
+
export declare class BlobIdRequiredException extends __BaseException {
|
|
1399
|
+
readonly name: "BlobIdRequiredException";
|
|
1400
|
+
readonly $fault: "client";
|
|
1400
1401
|
/**
|
|
1401
|
-
*
|
|
1402
|
+
* @internal
|
|
1402
1403
|
*/
|
|
1403
|
-
|
|
1404
|
+
constructor(opts: __ExceptionOptionType<BlobIdRequiredException, __BaseException>);
|
|
1404
1405
|
}
|
|
1405
1406
|
/**
|
|
1406
1407
|
* <p>Returns information about a specific Git blob object.</p>
|
|
@@ -1446,13 +1447,13 @@ export declare namespace BlobMetadata {
|
|
|
1446
1447
|
/**
|
|
1447
1448
|
* <p>The specified branch does not exist.</p>
|
|
1448
1449
|
*/
|
|
1449
|
-
export
|
|
1450
|
-
name: "BranchDoesNotExistException";
|
|
1451
|
-
$fault: "client";
|
|
1450
|
+
export declare class BranchDoesNotExistException extends __BaseException {
|
|
1451
|
+
readonly name: "BranchDoesNotExistException";
|
|
1452
|
+
readonly $fault: "client";
|
|
1452
1453
|
/**
|
|
1453
|
-
*
|
|
1454
|
+
* @internal
|
|
1454
1455
|
*/
|
|
1455
|
-
|
|
1456
|
+
constructor(opts: __ExceptionOptionType<BranchDoesNotExistException, __BaseException>);
|
|
1456
1457
|
}
|
|
1457
1458
|
/**
|
|
1458
1459
|
* <p>Returns information about a branch.</p>
|
|
@@ -1477,60 +1478,60 @@ export declare namespace BranchInfo {
|
|
|
1477
1478
|
* <p>Cannot create the branch with the specified name because the commit conflicts with an existing branch with the same name.
|
|
1478
1479
|
* Branch names must be unique.</p>
|
|
1479
1480
|
*/
|
|
1480
|
-
export
|
|
1481
|
-
name: "BranchNameExistsException";
|
|
1482
|
-
$fault: "client";
|
|
1481
|
+
export declare class BranchNameExistsException extends __BaseException {
|
|
1482
|
+
readonly name: "BranchNameExistsException";
|
|
1483
|
+
readonly $fault: "client";
|
|
1483
1484
|
/**
|
|
1484
|
-
*
|
|
1485
|
+
* @internal
|
|
1485
1486
|
*/
|
|
1486
|
-
|
|
1487
|
+
constructor(opts: __ExceptionOptionType<BranchNameExistsException, __BaseException>);
|
|
1487
1488
|
}
|
|
1488
1489
|
/**
|
|
1489
1490
|
* <p>The specified branch name is not valid because it is a tag name. Enter the name of a
|
|
1490
1491
|
* branch in the repository. For a list of valid branch names, use <a>ListBranches</a>.</p>
|
|
1491
1492
|
*/
|
|
1492
|
-
export
|
|
1493
|
-
name: "BranchNameIsTagNameException";
|
|
1494
|
-
$fault: "client";
|
|
1493
|
+
export declare class BranchNameIsTagNameException extends __BaseException {
|
|
1494
|
+
readonly name: "BranchNameIsTagNameException";
|
|
1495
|
+
readonly $fault: "client";
|
|
1495
1496
|
/**
|
|
1496
|
-
*
|
|
1497
|
+
* @internal
|
|
1497
1498
|
*/
|
|
1498
|
-
|
|
1499
|
+
constructor(opts: __ExceptionOptionType<BranchNameIsTagNameException, __BaseException>);
|
|
1499
1500
|
}
|
|
1500
1501
|
/**
|
|
1501
1502
|
* <p>A branch name is required, but was not specified.</p>
|
|
1502
1503
|
*/
|
|
1503
|
-
export
|
|
1504
|
-
name: "BranchNameRequiredException";
|
|
1505
|
-
$fault: "client";
|
|
1504
|
+
export declare class BranchNameRequiredException extends __BaseException {
|
|
1505
|
+
readonly name: "BranchNameRequiredException";
|
|
1506
|
+
readonly $fault: "client";
|
|
1506
1507
|
/**
|
|
1507
|
-
*
|
|
1508
|
+
* @internal
|
|
1508
1509
|
*/
|
|
1509
|
-
|
|
1510
|
+
constructor(opts: __ExceptionOptionType<BranchNameRequiredException, __BaseException>);
|
|
1510
1511
|
}
|
|
1511
1512
|
/**
|
|
1512
1513
|
* <p>The approval rule cannot be deleted from the pull request because it was created by an
|
|
1513
1514
|
* approval rule template and applied to the pull request automatically.</p>
|
|
1514
1515
|
*/
|
|
1515
|
-
export
|
|
1516
|
-
name: "CannotDeleteApprovalRuleFromTemplateException";
|
|
1517
|
-
$fault: "client";
|
|
1516
|
+
export declare class CannotDeleteApprovalRuleFromTemplateException extends __BaseException {
|
|
1517
|
+
readonly name: "CannotDeleteApprovalRuleFromTemplateException";
|
|
1518
|
+
readonly $fault: "client";
|
|
1518
1519
|
/**
|
|
1519
|
-
*
|
|
1520
|
+
* @internal
|
|
1520
1521
|
*/
|
|
1521
|
-
|
|
1522
|
+
constructor(opts: __ExceptionOptionType<CannotDeleteApprovalRuleFromTemplateException, __BaseException>);
|
|
1522
1523
|
}
|
|
1523
1524
|
/**
|
|
1524
1525
|
* <p>The approval rule cannot be modified for the pull request because it was created by an
|
|
1525
1526
|
* approval rule template and applied to the pull request automatically.</p>
|
|
1526
1527
|
*/
|
|
1527
|
-
export
|
|
1528
|
-
name: "CannotModifyApprovalRuleFromTemplateException";
|
|
1529
|
-
$fault: "client";
|
|
1528
|
+
export declare class CannotModifyApprovalRuleFromTemplateException extends __BaseException {
|
|
1529
|
+
readonly name: "CannotModifyApprovalRuleFromTemplateException";
|
|
1530
|
+
readonly $fault: "client";
|
|
1530
1531
|
/**
|
|
1531
|
-
*
|
|
1532
|
+
* @internal
|
|
1532
1533
|
*/
|
|
1533
|
-
|
|
1534
|
+
constructor(opts: __ExceptionOptionType<CannotModifyApprovalRuleFromTemplateException, __BaseException>);
|
|
1534
1535
|
}
|
|
1535
1536
|
/**
|
|
1536
1537
|
* <p>A client request token is required. A client request token is an unique,
|
|
@@ -1539,13 +1540,13 @@ export interface CannotModifyApprovalRuleFromTemplateException extends __SmithyE
|
|
|
1539
1540
|
* parameters and a token is included, the request returns information about the initial
|
|
1540
1541
|
* request that used that token.</p>
|
|
1541
1542
|
*/
|
|
1542
|
-
export
|
|
1543
|
-
name: "ClientRequestTokenRequiredException";
|
|
1544
|
-
$fault: "client";
|
|
1543
|
+
export declare class ClientRequestTokenRequiredException extends __BaseException {
|
|
1544
|
+
readonly name: "ClientRequestTokenRequiredException";
|
|
1545
|
+
readonly $fault: "client";
|
|
1545
1546
|
/**
|
|
1546
|
-
*
|
|
1547
|
+
* @internal
|
|
1547
1548
|
*/
|
|
1548
|
-
|
|
1549
|
+
constructor(opts: __ExceptionOptionType<ClientRequestTokenRequiredException, __BaseException>);
|
|
1549
1550
|
}
|
|
1550
1551
|
export interface CreateApprovalRuleTemplateInput {
|
|
1551
1552
|
/**
|
|
@@ -1629,13 +1630,13 @@ export declare namespace CreateApprovalRuleTemplateOutput {
|
|
|
1629
1630
|
/**
|
|
1630
1631
|
* <p>The content of the approval rule template is not valid.</p>
|
|
1631
1632
|
*/
|
|
1632
|
-
export
|
|
1633
|
-
name: "InvalidApprovalRuleTemplateContentException";
|
|
1634
|
-
$fault: "client";
|
|
1633
|
+
export declare class InvalidApprovalRuleTemplateContentException extends __BaseException {
|
|
1634
|
+
readonly name: "InvalidApprovalRuleTemplateContentException";
|
|
1635
|
+
readonly $fault: "client";
|
|
1635
1636
|
/**
|
|
1636
|
-
*
|
|
1637
|
+
* @internal
|
|
1637
1638
|
*/
|
|
1638
|
-
|
|
1639
|
+
constructor(opts: __ExceptionOptionType<InvalidApprovalRuleTemplateContentException, __BaseException>);
|
|
1639
1640
|
}
|
|
1640
1641
|
/**
|
|
1641
1642
|
* <p>The description for the approval rule template is not valid because it exceeds the
|
|
@@ -1643,35 +1644,35 @@ export interface InvalidApprovalRuleTemplateContentException extends __SmithyExc
|
|
|
1643
1644
|
* CodeCommit, see <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/limits.html">AWS CodeCommit User
|
|
1644
1645
|
* Guide</a>.</p>
|
|
1645
1646
|
*/
|
|
1646
|
-
export
|
|
1647
|
-
name: "InvalidApprovalRuleTemplateDescriptionException";
|
|
1648
|
-
$fault: "client";
|
|
1647
|
+
export declare class InvalidApprovalRuleTemplateDescriptionException extends __BaseException {
|
|
1648
|
+
readonly name: "InvalidApprovalRuleTemplateDescriptionException";
|
|
1649
|
+
readonly $fault: "client";
|
|
1649
1650
|
/**
|
|
1650
|
-
*
|
|
1651
|
+
* @internal
|
|
1651
1652
|
*/
|
|
1652
|
-
|
|
1653
|
+
constructor(opts: __ExceptionOptionType<InvalidApprovalRuleTemplateDescriptionException, __BaseException>);
|
|
1653
1654
|
}
|
|
1654
1655
|
/**
|
|
1655
1656
|
* <p>The maximum number of approval rule templates has been exceeded for this AWS Region. </p>
|
|
1656
1657
|
*/
|
|
1657
|
-
export
|
|
1658
|
-
name: "NumberOfRuleTemplatesExceededException";
|
|
1659
|
-
$fault: "client";
|
|
1658
|
+
export declare class NumberOfRuleTemplatesExceededException extends __BaseException {
|
|
1659
|
+
readonly name: "NumberOfRuleTemplatesExceededException";
|
|
1660
|
+
readonly $fault: "client";
|
|
1660
1661
|
/**
|
|
1661
|
-
*
|
|
1662
|
+
* @internal
|
|
1662
1663
|
*/
|
|
1663
|
-
|
|
1664
|
+
constructor(opts: __ExceptionOptionType<NumberOfRuleTemplatesExceededException, __BaseException>);
|
|
1664
1665
|
}
|
|
1665
1666
|
/**
|
|
1666
1667
|
* <p>A commit ID was not specified.</p>
|
|
1667
1668
|
*/
|
|
1668
|
-
export
|
|
1669
|
-
name: "CommitIdRequiredException";
|
|
1670
|
-
$fault: "client";
|
|
1669
|
+
export declare class CommitIdRequiredException extends __BaseException {
|
|
1670
|
+
readonly name: "CommitIdRequiredException";
|
|
1671
|
+
readonly $fault: "client";
|
|
1671
1672
|
/**
|
|
1672
|
-
*
|
|
1673
|
+
* @internal
|
|
1673
1674
|
*/
|
|
1674
|
-
|
|
1675
|
+
constructor(opts: __ExceptionOptionType<CommitIdRequiredException, __BaseException>);
|
|
1675
1676
|
}
|
|
1676
1677
|
/**
|
|
1677
1678
|
* <p>Represents the input of a create branch operation.</p>
|
|
@@ -1699,35 +1700,35 @@ export declare namespace CreateBranchInput {
|
|
|
1699
1700
|
/**
|
|
1700
1701
|
* <p>The specified reference name is not valid.</p>
|
|
1701
1702
|
*/
|
|
1702
|
-
export
|
|
1703
|
-
name: "InvalidBranchNameException";
|
|
1704
|
-
$fault: "client";
|
|
1703
|
+
export declare class InvalidBranchNameException extends __BaseException {
|
|
1704
|
+
readonly name: "InvalidBranchNameException";
|
|
1705
|
+
readonly $fault: "client";
|
|
1705
1706
|
/**
|
|
1706
|
-
*
|
|
1707
|
+
* @internal
|
|
1707
1708
|
*/
|
|
1708
|
-
|
|
1709
|
+
constructor(opts: __ExceptionOptionType<InvalidBranchNameException, __BaseException>);
|
|
1709
1710
|
}
|
|
1710
1711
|
/**
|
|
1711
1712
|
* <p>The specified commit ID is not valid.</p>
|
|
1712
1713
|
*/
|
|
1713
|
-
export
|
|
1714
|
-
name: "InvalidCommitIdException";
|
|
1715
|
-
$fault: "client";
|
|
1714
|
+
export declare class InvalidCommitIdException extends __BaseException {
|
|
1715
|
+
readonly name: "InvalidCommitIdException";
|
|
1716
|
+
readonly $fault: "client";
|
|
1716
1717
|
/**
|
|
1717
|
-
*
|
|
1718
|
+
* @internal
|
|
1718
1719
|
*/
|
|
1719
|
-
|
|
1720
|
+
constructor(opts: __ExceptionOptionType<InvalidCommitIdException, __BaseException>);
|
|
1720
1721
|
}
|
|
1721
1722
|
/**
|
|
1722
1723
|
* <p>The commit message is too long. Provide a shorter string. </p>
|
|
1723
1724
|
*/
|
|
1724
|
-
export
|
|
1725
|
-
name: "CommitMessageLengthExceededException";
|
|
1726
|
-
$fault: "client";
|
|
1725
|
+
export declare class CommitMessageLengthExceededException extends __BaseException {
|
|
1726
|
+
readonly name: "CommitMessageLengthExceededException";
|
|
1727
|
+
readonly $fault: "client";
|
|
1727
1728
|
/**
|
|
1728
|
-
*
|
|
1729
|
+
* @internal
|
|
1729
1730
|
*/
|
|
1730
|
-
|
|
1731
|
+
constructor(opts: __ExceptionOptionType<CommitMessageLengthExceededException, __BaseException>);
|
|
1731
1732
|
}
|
|
1732
1733
|
/**
|
|
1733
1734
|
* <p>A file that is deleted as part of a commit.</p>
|
|
@@ -1919,294 +1920,294 @@ export declare namespace CreateCommitOutput {
|
|
|
1919
1920
|
* <p>A file cannot be added to the repository because the specified path name has the same name as a file that already exists in this repository.
|
|
1920
1921
|
* Either provide a different name for the file, or specify a different path for the file.</p>
|
|
1921
1922
|
*/
|
|
1922
|
-
export
|
|
1923
|
-
name: "DirectoryNameConflictsWithFileNameException";
|
|
1924
|
-
$fault: "client";
|
|
1923
|
+
export declare class DirectoryNameConflictsWithFileNameException extends __BaseException {
|
|
1924
|
+
readonly name: "DirectoryNameConflictsWithFileNameException";
|
|
1925
|
+
readonly $fault: "client";
|
|
1925
1926
|
/**
|
|
1926
|
-
*
|
|
1927
|
+
* @internal
|
|
1927
1928
|
*/
|
|
1928
|
-
|
|
1929
|
+
constructor(opts: __ExceptionOptionType<DirectoryNameConflictsWithFileNameException, __BaseException>);
|
|
1929
1930
|
}
|
|
1930
1931
|
/**
|
|
1931
1932
|
* <p>The commit cannot be created because both a source file and file content have been
|
|
1932
1933
|
* specified for the same file. You cannot provide both. Either specify a source file or
|
|
1933
1934
|
* provide the file content directly.</p>
|
|
1934
1935
|
*/
|
|
1935
|
-
export
|
|
1936
|
-
name: "FileContentAndSourceFileSpecifiedException";
|
|
1937
|
-
$fault: "client";
|
|
1936
|
+
export declare class FileContentAndSourceFileSpecifiedException extends __BaseException {
|
|
1937
|
+
readonly name: "FileContentAndSourceFileSpecifiedException";
|
|
1938
|
+
readonly $fault: "client";
|
|
1938
1939
|
/**
|
|
1939
|
-
*
|
|
1940
|
+
* @internal
|
|
1940
1941
|
*/
|
|
1941
|
-
|
|
1942
|
+
constructor(opts: __ExceptionOptionType<FileContentAndSourceFileSpecifiedException, __BaseException>);
|
|
1942
1943
|
}
|
|
1943
1944
|
/**
|
|
1944
1945
|
* <p>The file cannot be added because it is too large. The maximum file size is 6 MB, and
|
|
1945
1946
|
* the combined file content change size is 7 MB. Consider making these changes using a Git
|
|
1946
1947
|
* client.</p>
|
|
1947
1948
|
*/
|
|
1948
|
-
export
|
|
1949
|
-
name: "FileContentSizeLimitExceededException";
|
|
1950
|
-
$fault: "client";
|
|
1949
|
+
export declare class FileContentSizeLimitExceededException extends __BaseException {
|
|
1950
|
+
readonly name: "FileContentSizeLimitExceededException";
|
|
1951
|
+
readonly $fault: "client";
|
|
1951
1952
|
/**
|
|
1952
|
-
*
|
|
1953
|
+
* @internal
|
|
1953
1954
|
*/
|
|
1954
|
-
|
|
1955
|
+
constructor(opts: __ExceptionOptionType<FileContentSizeLimitExceededException, __BaseException>);
|
|
1955
1956
|
}
|
|
1956
1957
|
/**
|
|
1957
1958
|
* <p>The specified file does not exist. Verify that you have used the correct file name,
|
|
1958
1959
|
* full path, and extension.</p>
|
|
1959
1960
|
*/
|
|
1960
|
-
export
|
|
1961
|
-
name: "FileDoesNotExistException";
|
|
1962
|
-
$fault: "client";
|
|
1961
|
+
export declare class FileDoesNotExistException extends __BaseException {
|
|
1962
|
+
readonly name: "FileDoesNotExistException";
|
|
1963
|
+
readonly $fault: "client";
|
|
1963
1964
|
/**
|
|
1964
|
-
*
|
|
1965
|
+
* @internal
|
|
1965
1966
|
*/
|
|
1966
|
-
|
|
1967
|
+
constructor(opts: __ExceptionOptionType<FileDoesNotExistException, __BaseException>);
|
|
1967
1968
|
}
|
|
1968
1969
|
/**
|
|
1969
1970
|
* <p>The commit cannot be created because no files have been specified as added, updated, or changed (PutFile or DeleteFile) for the commit.</p>
|
|
1970
1971
|
*/
|
|
1971
|
-
export
|
|
1972
|
-
name: "FileEntryRequiredException";
|
|
1973
|
-
$fault: "client";
|
|
1972
|
+
export declare class FileEntryRequiredException extends __BaseException {
|
|
1973
|
+
readonly name: "FileEntryRequiredException";
|
|
1974
|
+
readonly $fault: "client";
|
|
1974
1975
|
/**
|
|
1975
|
-
*
|
|
1976
|
+
* @internal
|
|
1976
1977
|
*/
|
|
1977
|
-
|
|
1978
|
+
constructor(opts: __ExceptionOptionType<FileEntryRequiredException, __BaseException>);
|
|
1978
1979
|
}
|
|
1979
1980
|
/**
|
|
1980
1981
|
* <p>The commit cannot be created because no file mode has been specified. A file mode is
|
|
1981
1982
|
* required to update mode permissions for a file.</p>
|
|
1982
1983
|
*/
|
|
1983
|
-
export
|
|
1984
|
-
name: "FileModeRequiredException";
|
|
1985
|
-
$fault: "client";
|
|
1984
|
+
export declare class FileModeRequiredException extends __BaseException {
|
|
1985
|
+
readonly name: "FileModeRequiredException";
|
|
1986
|
+
readonly $fault: "client";
|
|
1986
1987
|
/**
|
|
1987
|
-
*
|
|
1988
|
+
* @internal
|
|
1988
1989
|
*/
|
|
1989
|
-
|
|
1990
|
+
constructor(opts: __ExceptionOptionType<FileModeRequiredException, __BaseException>);
|
|
1990
1991
|
}
|
|
1991
1992
|
/**
|
|
1992
1993
|
* <p>A file cannot be added to the repository because the specified file name has the same name as a directory in this repository. Either provide
|
|
1993
1994
|
* another name for the file, or add the file in a directory that does not match the file name.</p>
|
|
1994
1995
|
*/
|
|
1995
|
-
export
|
|
1996
|
-
name: "FileNameConflictsWithDirectoryNameException";
|
|
1997
|
-
$fault: "client";
|
|
1996
|
+
export declare class FileNameConflictsWithDirectoryNameException extends __BaseException {
|
|
1997
|
+
readonly name: "FileNameConflictsWithDirectoryNameException";
|
|
1998
|
+
readonly $fault: "client";
|
|
1998
1999
|
/**
|
|
1999
|
-
*
|
|
2000
|
+
* @internal
|
|
2000
2001
|
*/
|
|
2001
|
-
|
|
2002
|
+
constructor(opts: __ExceptionOptionType<FileNameConflictsWithDirectoryNameException, __BaseException>);
|
|
2002
2003
|
}
|
|
2003
2004
|
/**
|
|
2004
2005
|
* <p>The commit cannot be created because a specified file path points to a submodule. Verify that the destination files
|
|
2005
2006
|
* have valid file paths that do not point to a submodule.</p>
|
|
2006
2007
|
*/
|
|
2007
|
-
export
|
|
2008
|
-
name: "FilePathConflictsWithSubmodulePathException";
|
|
2009
|
-
$fault: "client";
|
|
2008
|
+
export declare class FilePathConflictsWithSubmodulePathException extends __BaseException {
|
|
2009
|
+
readonly name: "FilePathConflictsWithSubmodulePathException";
|
|
2010
|
+
readonly $fault: "client";
|
|
2010
2011
|
/**
|
|
2011
|
-
*
|
|
2012
|
+
* @internal
|
|
2012
2013
|
*/
|
|
2013
|
-
|
|
2014
|
+
constructor(opts: __ExceptionOptionType<FilePathConflictsWithSubmodulePathException, __BaseException>);
|
|
2014
2015
|
}
|
|
2015
2016
|
/**
|
|
2016
2017
|
* <p>The commit cannot be created because at least one of the overall changes in the commit results in a
|
|
2017
2018
|
* folder whose contents exceed the limit of 6 MB. Either reduce the number and size of your changes,
|
|
2018
2019
|
* or split the changes across multiple folders.</p>
|
|
2019
2020
|
*/
|
|
2020
|
-
export
|
|
2021
|
-
name: "FolderContentSizeLimitExceededException";
|
|
2022
|
-
$fault: "client";
|
|
2021
|
+
export declare class FolderContentSizeLimitExceededException extends __BaseException {
|
|
2022
|
+
readonly name: "FolderContentSizeLimitExceededException";
|
|
2023
|
+
readonly $fault: "client";
|
|
2023
2024
|
/**
|
|
2024
|
-
*
|
|
2025
|
+
* @internal
|
|
2025
2026
|
*/
|
|
2026
|
-
|
|
2027
|
+
constructor(opts: __ExceptionOptionType<FolderContentSizeLimitExceededException, __BaseException>);
|
|
2027
2028
|
}
|
|
2028
2029
|
/**
|
|
2029
2030
|
* <p>The specified deletion parameter is not valid.</p>
|
|
2030
2031
|
*/
|
|
2031
|
-
export
|
|
2032
|
-
name: "InvalidDeletionParameterException";
|
|
2033
|
-
$fault: "client";
|
|
2032
|
+
export declare class InvalidDeletionParameterException extends __BaseException {
|
|
2033
|
+
readonly name: "InvalidDeletionParameterException";
|
|
2034
|
+
readonly $fault: "client";
|
|
2034
2035
|
/**
|
|
2035
|
-
*
|
|
2036
|
+
* @internal
|
|
2036
2037
|
*/
|
|
2037
|
-
|
|
2038
|
+
constructor(opts: __ExceptionOptionType<InvalidDeletionParameterException, __BaseException>);
|
|
2038
2039
|
}
|
|
2039
2040
|
/**
|
|
2040
2041
|
* <p>The specified email address either contains one or more characters that are not allowed, or it exceeds the maximum number of characters
|
|
2041
2042
|
* allowed for an email address.</p>
|
|
2042
2043
|
*/
|
|
2043
|
-
export
|
|
2044
|
-
name: "InvalidEmailException";
|
|
2045
|
-
$fault: "client";
|
|
2044
|
+
export declare class InvalidEmailException extends __BaseException {
|
|
2045
|
+
readonly name: "InvalidEmailException";
|
|
2046
|
+
readonly $fault: "client";
|
|
2046
2047
|
/**
|
|
2047
|
-
*
|
|
2048
|
+
* @internal
|
|
2048
2049
|
*/
|
|
2049
|
-
|
|
2050
|
+
constructor(opts: __ExceptionOptionType<InvalidEmailException, __BaseException>);
|
|
2050
2051
|
}
|
|
2051
2052
|
/**
|
|
2052
2053
|
* <p>The specified file mode permission is not valid. For a list of valid file mode permissions, see <a>PutFile</a>. </p>
|
|
2053
2054
|
*/
|
|
2054
|
-
export
|
|
2055
|
-
name: "InvalidFileModeException";
|
|
2056
|
-
$fault: "client";
|
|
2055
|
+
export declare class InvalidFileModeException extends __BaseException {
|
|
2056
|
+
readonly name: "InvalidFileModeException";
|
|
2057
|
+
readonly $fault: "client";
|
|
2057
2058
|
/**
|
|
2058
|
-
*
|
|
2059
|
+
* @internal
|
|
2059
2060
|
*/
|
|
2060
|
-
|
|
2061
|
+
constructor(opts: __ExceptionOptionType<InvalidFileModeException, __BaseException>);
|
|
2061
2062
|
}
|
|
2062
2063
|
/**
|
|
2063
2064
|
* <p>The parent commit ID is not valid. The commit ID cannot be empty, and must match the head commit ID for the branch of the repository where you
|
|
2064
2065
|
* want to add or update a file.</p>
|
|
2065
2066
|
*/
|
|
2066
|
-
export
|
|
2067
|
-
name: "InvalidParentCommitIdException";
|
|
2068
|
-
$fault: "client";
|
|
2067
|
+
export declare class InvalidParentCommitIdException extends __BaseException {
|
|
2068
|
+
readonly name: "InvalidParentCommitIdException";
|
|
2069
|
+
readonly $fault: "client";
|
|
2069
2070
|
/**
|
|
2070
|
-
*
|
|
2071
|
+
* @internal
|
|
2071
2072
|
*/
|
|
2072
|
-
|
|
2073
|
+
constructor(opts: __ExceptionOptionType<InvalidParentCommitIdException, __BaseException>);
|
|
2073
2074
|
}
|
|
2074
2075
|
/**
|
|
2075
2076
|
* <p>The specified path is not valid.</p>
|
|
2076
2077
|
*/
|
|
2077
|
-
export
|
|
2078
|
-
name: "InvalidPathException";
|
|
2079
|
-
$fault: "client";
|
|
2078
|
+
export declare class InvalidPathException extends __BaseException {
|
|
2079
|
+
readonly name: "InvalidPathException";
|
|
2080
|
+
readonly $fault: "client";
|
|
2080
2081
|
/**
|
|
2081
|
-
*
|
|
2082
|
+
* @internal
|
|
2082
2083
|
*/
|
|
2083
|
-
|
|
2084
|
+
constructor(opts: __ExceptionOptionType<InvalidPathException, __BaseException>);
|
|
2084
2085
|
}
|
|
2085
2086
|
/**
|
|
2086
2087
|
* <p>The number of specified files to change as part of this commit exceeds the maximum number of files
|
|
2087
2088
|
* that can be changed in a single commit. Consider using a Git client for these changes.</p>
|
|
2088
2089
|
*/
|
|
2089
|
-
export
|
|
2090
|
-
name: "MaximumFileEntriesExceededException";
|
|
2091
|
-
$fault: "client";
|
|
2090
|
+
export declare class MaximumFileEntriesExceededException extends __BaseException {
|
|
2091
|
+
readonly name: "MaximumFileEntriesExceededException";
|
|
2092
|
+
readonly $fault: "client";
|
|
2092
2093
|
/**
|
|
2093
|
-
*
|
|
2094
|
+
* @internal
|
|
2094
2095
|
*/
|
|
2095
|
-
|
|
2096
|
+
constructor(opts: __ExceptionOptionType<MaximumFileEntriesExceededException, __BaseException>);
|
|
2096
2097
|
}
|
|
2097
2098
|
/**
|
|
2098
2099
|
* <p>The user name is not valid because it has exceeded the character limit for author names. </p>
|
|
2099
2100
|
*/
|
|
2100
|
-
export
|
|
2101
|
-
name: "NameLengthExceededException";
|
|
2102
|
-
$fault: "client";
|
|
2101
|
+
export declare class NameLengthExceededException extends __BaseException {
|
|
2102
|
+
readonly name: "NameLengthExceededException";
|
|
2103
|
+
readonly $fault: "client";
|
|
2103
2104
|
/**
|
|
2104
|
-
*
|
|
2105
|
+
* @internal
|
|
2105
2106
|
*/
|
|
2106
|
-
|
|
2107
|
+
constructor(opts: __ExceptionOptionType<NameLengthExceededException, __BaseException>);
|
|
2107
2108
|
}
|
|
2108
2109
|
/**
|
|
2109
2110
|
* <p>The commit cannot be created because no changes will be made to the repository as a result of this commit. A commit must contain at least one change.</p>
|
|
2110
2111
|
*/
|
|
2111
|
-
export
|
|
2112
|
-
name: "NoChangeException";
|
|
2113
|
-
$fault: "client";
|
|
2112
|
+
export declare class NoChangeException extends __BaseException {
|
|
2113
|
+
readonly name: "NoChangeException";
|
|
2114
|
+
readonly $fault: "client";
|
|
2114
2115
|
/**
|
|
2115
|
-
*
|
|
2116
|
+
* @internal
|
|
2116
2117
|
*/
|
|
2117
|
-
|
|
2118
|
+
constructor(opts: __ExceptionOptionType<NoChangeException, __BaseException>);
|
|
2118
2119
|
}
|
|
2119
2120
|
/**
|
|
2120
2121
|
* <p>The parent commit ID is not valid because it does not exist. The specified parent commit ID does not exist in the specified branch of the repository.</p>
|
|
2121
2122
|
*/
|
|
2122
|
-
export
|
|
2123
|
-
name: "ParentCommitDoesNotExistException";
|
|
2124
|
-
$fault: "client";
|
|
2123
|
+
export declare class ParentCommitDoesNotExistException extends __BaseException {
|
|
2124
|
+
readonly name: "ParentCommitDoesNotExistException";
|
|
2125
|
+
readonly $fault: "client";
|
|
2125
2126
|
/**
|
|
2126
|
-
*
|
|
2127
|
+
* @internal
|
|
2127
2128
|
*/
|
|
2128
|
-
|
|
2129
|
+
constructor(opts: __ExceptionOptionType<ParentCommitDoesNotExistException, __BaseException>);
|
|
2129
2130
|
}
|
|
2130
2131
|
/**
|
|
2131
2132
|
* <p>The file could not be added because the provided parent commit ID is not the current tip of the specified branch. To view the full commit ID of the current head
|
|
2132
2133
|
* of the branch, use <a>GetBranch</a>.</p>
|
|
2133
2134
|
*/
|
|
2134
|
-
export
|
|
2135
|
-
name: "ParentCommitIdOutdatedException";
|
|
2136
|
-
$fault: "client";
|
|
2135
|
+
export declare class ParentCommitIdOutdatedException extends __BaseException {
|
|
2136
|
+
readonly name: "ParentCommitIdOutdatedException";
|
|
2137
|
+
readonly $fault: "client";
|
|
2137
2138
|
/**
|
|
2138
|
-
*
|
|
2139
|
+
* @internal
|
|
2139
2140
|
*/
|
|
2140
|
-
|
|
2141
|
+
constructor(opts: __ExceptionOptionType<ParentCommitIdOutdatedException, __BaseException>);
|
|
2141
2142
|
}
|
|
2142
2143
|
/**
|
|
2143
2144
|
* <p>A parent commit ID is required. To view the full commit ID of a branch in a repository, use <a>GetBranch</a> or a Git command
|
|
2144
2145
|
* (for example, git pull or git log).</p>
|
|
2145
2146
|
*/
|
|
2146
|
-
export
|
|
2147
|
-
name: "ParentCommitIdRequiredException";
|
|
2148
|
-
$fault: "client";
|
|
2147
|
+
export declare class ParentCommitIdRequiredException extends __BaseException {
|
|
2148
|
+
readonly name: "ParentCommitIdRequiredException";
|
|
2149
|
+
readonly $fault: "client";
|
|
2149
2150
|
/**
|
|
2150
|
-
*
|
|
2151
|
+
* @internal
|
|
2151
2152
|
*/
|
|
2152
|
-
|
|
2153
|
+
constructor(opts: __ExceptionOptionType<ParentCommitIdRequiredException, __BaseException>);
|
|
2153
2154
|
}
|
|
2154
2155
|
/**
|
|
2155
2156
|
* <p>The folderPath for a location cannot be null.</p>
|
|
2156
2157
|
*/
|
|
2157
|
-
export
|
|
2158
|
-
name: "PathRequiredException";
|
|
2159
|
-
$fault: "client";
|
|
2158
|
+
export declare class PathRequiredException extends __BaseException {
|
|
2159
|
+
readonly name: "PathRequiredException";
|
|
2160
|
+
readonly $fault: "client";
|
|
2160
2161
|
/**
|
|
2161
|
-
*
|
|
2162
|
+
* @internal
|
|
2162
2163
|
*/
|
|
2163
|
-
|
|
2164
|
+
constructor(opts: __ExceptionOptionType<PathRequiredException, __BaseException>);
|
|
2164
2165
|
}
|
|
2165
2166
|
/**
|
|
2166
2167
|
* <p>The commit cannot be created because one or more files specified in the commit reference both a file and a folder.</p>
|
|
2167
2168
|
*/
|
|
2168
|
-
export
|
|
2169
|
-
name: "PutFileEntryConflictException";
|
|
2170
|
-
$fault: "client";
|
|
2169
|
+
export declare class PutFileEntryConflictException extends __BaseException {
|
|
2170
|
+
readonly name: "PutFileEntryConflictException";
|
|
2171
|
+
readonly $fault: "client";
|
|
2171
2172
|
/**
|
|
2172
|
-
*
|
|
2173
|
+
* @internal
|
|
2173
2174
|
*/
|
|
2174
|
-
|
|
2175
|
+
constructor(opts: __ExceptionOptionType<PutFileEntryConflictException, __BaseException>);
|
|
2175
2176
|
}
|
|
2176
2177
|
/**
|
|
2177
2178
|
* <p>The commit cannot be created because one of the changes specifies copying or moving a .gitkeep file.</p>
|
|
2178
2179
|
*/
|
|
2179
|
-
export
|
|
2180
|
-
name: "RestrictedSourceFileException";
|
|
2181
|
-
$fault: "client";
|
|
2180
|
+
export declare class RestrictedSourceFileException extends __BaseException {
|
|
2181
|
+
readonly name: "RestrictedSourceFileException";
|
|
2182
|
+
readonly $fault: "client";
|
|
2182
2183
|
/**
|
|
2183
|
-
*
|
|
2184
|
+
* @internal
|
|
2184
2185
|
*/
|
|
2185
|
-
|
|
2186
|
+
constructor(opts: __ExceptionOptionType<RestrictedSourceFileException, __BaseException>);
|
|
2186
2187
|
}
|
|
2187
2188
|
/**
|
|
2188
2189
|
* <p>The commit cannot be created because one or more changes in this commit duplicate actions in the same file path. For example,
|
|
2189
2190
|
* you cannot make the same delete request to the same file in the same file path twice, or make a delete request and a move request to the same
|
|
2190
2191
|
* file as part of the same commit.</p>
|
|
2191
2192
|
*/
|
|
2192
|
-
export
|
|
2193
|
-
name: "SamePathRequestException";
|
|
2194
|
-
$fault: "client";
|
|
2193
|
+
export declare class SamePathRequestException extends __BaseException {
|
|
2194
|
+
readonly name: "SamePathRequestException";
|
|
2195
|
+
readonly $fault: "client";
|
|
2195
2196
|
/**
|
|
2196
|
-
*
|
|
2197
|
+
* @internal
|
|
2197
2198
|
*/
|
|
2198
|
-
|
|
2199
|
+
constructor(opts: __ExceptionOptionType<SamePathRequestException, __BaseException>);
|
|
2199
2200
|
}
|
|
2200
2201
|
/**
|
|
2201
2202
|
* <p>The commit cannot be created because no source files or file content have been specified for the commit.</p>
|
|
2202
2203
|
*/
|
|
2203
|
-
export
|
|
2204
|
-
name: "SourceFileOrContentRequiredException";
|
|
2205
|
-
$fault: "client";
|
|
2204
|
+
export declare class SourceFileOrContentRequiredException extends __BaseException {
|
|
2205
|
+
readonly name: "SourceFileOrContentRequiredException";
|
|
2206
|
+
readonly $fault: "client";
|
|
2206
2207
|
/**
|
|
2207
|
-
*
|
|
2208
|
+
* @internal
|
|
2208
2209
|
*/
|
|
2209
|
-
|
|
2210
|
+
constructor(opts: __ExceptionOptionType<SourceFileOrContentRequiredException, __BaseException>);
|
|
2210
2211
|
}
|
|
2211
2212
|
/**
|
|
2212
2213
|
* <p>Returns information about a target for a pull request.</p>
|
|
@@ -2414,184 +2415,184 @@ export declare namespace CreatePullRequestOutput {
|
|
|
2414
2415
|
* <p>The client request token is not valid. Either the token is not in a valid format, or
|
|
2415
2416
|
* the token has been used in a previous request and cannot be reused.</p>
|
|
2416
2417
|
*/
|
|
2417
|
-
export
|
|
2418
|
-
name: "IdempotencyParameterMismatchException";
|
|
2419
|
-
$fault: "client";
|
|
2418
|
+
export declare class IdempotencyParameterMismatchException extends __BaseException {
|
|
2419
|
+
readonly name: "IdempotencyParameterMismatchException";
|
|
2420
|
+
readonly $fault: "client";
|
|
2420
2421
|
/**
|
|
2421
|
-
*
|
|
2422
|
+
* @internal
|
|
2422
2423
|
*/
|
|
2423
|
-
|
|
2424
|
+
constructor(opts: __ExceptionOptionType<IdempotencyParameterMismatchException, __BaseException>);
|
|
2424
2425
|
}
|
|
2425
2426
|
/**
|
|
2426
2427
|
* <p>The client request token is not valid.</p>
|
|
2427
2428
|
*/
|
|
2428
|
-
export
|
|
2429
|
-
name: "InvalidClientRequestTokenException";
|
|
2430
|
-
$fault: "client";
|
|
2429
|
+
export declare class InvalidClientRequestTokenException extends __BaseException {
|
|
2430
|
+
readonly name: "InvalidClientRequestTokenException";
|
|
2431
|
+
readonly $fault: "client";
|
|
2431
2432
|
/**
|
|
2432
|
-
*
|
|
2433
|
+
* @internal
|
|
2433
2434
|
*/
|
|
2434
|
-
|
|
2435
|
+
constructor(opts: __ExceptionOptionType<InvalidClientRequestTokenException, __BaseException>);
|
|
2435
2436
|
}
|
|
2436
2437
|
/**
|
|
2437
2438
|
* <p>The pull request description is not valid. Descriptions cannot be more than 1,000
|
|
2438
2439
|
* characters.</p>
|
|
2439
2440
|
*/
|
|
2440
|
-
export
|
|
2441
|
-
name: "InvalidDescriptionException";
|
|
2442
|
-
$fault: "client";
|
|
2441
|
+
export declare class InvalidDescriptionException extends __BaseException {
|
|
2442
|
+
readonly name: "InvalidDescriptionException";
|
|
2443
|
+
readonly $fault: "client";
|
|
2443
2444
|
/**
|
|
2444
|
-
*
|
|
2445
|
+
* @internal
|
|
2445
2446
|
*/
|
|
2446
|
-
|
|
2447
|
+
constructor(opts: __ExceptionOptionType<InvalidDescriptionException, __BaseException>);
|
|
2447
2448
|
}
|
|
2448
2449
|
/**
|
|
2449
2450
|
* <p>The specified reference name format is not valid. Reference names must conform to the
|
|
2450
2451
|
* Git references format (for example, refs/heads/master). For more information, see <a href="https://git-scm.com/book/en/v2/Git-Internals-Git-References">Git Internals -
|
|
2451
2452
|
* Git References</a> or consult your Git documentation.</p>
|
|
2452
2453
|
*/
|
|
2453
|
-
export
|
|
2454
|
-
name: "InvalidReferenceNameException";
|
|
2455
|
-
$fault: "client";
|
|
2454
|
+
export declare class InvalidReferenceNameException extends __BaseException {
|
|
2455
|
+
readonly name: "InvalidReferenceNameException";
|
|
2456
|
+
readonly $fault: "client";
|
|
2456
2457
|
/**
|
|
2457
|
-
*
|
|
2458
|
+
* @internal
|
|
2458
2459
|
*/
|
|
2459
|
-
|
|
2460
|
+
constructor(opts: __ExceptionOptionType<InvalidReferenceNameException, __BaseException>);
|
|
2460
2461
|
}
|
|
2461
2462
|
/**
|
|
2462
2463
|
* <p>The target for the pull request is not valid. A target must contain the full values for the repository name, source branch, and destination branch for the pull request.</p>
|
|
2463
2464
|
*/
|
|
2464
|
-
export
|
|
2465
|
-
name: "InvalidTargetException";
|
|
2466
|
-
$fault: "client";
|
|
2465
|
+
export declare class InvalidTargetException extends __BaseException {
|
|
2466
|
+
readonly name: "InvalidTargetException";
|
|
2467
|
+
readonly $fault: "client";
|
|
2467
2468
|
/**
|
|
2468
|
-
*
|
|
2469
|
+
* @internal
|
|
2469
2470
|
*/
|
|
2470
|
-
|
|
2471
|
+
constructor(opts: __ExceptionOptionType<InvalidTargetException, __BaseException>);
|
|
2471
2472
|
}
|
|
2472
2473
|
/**
|
|
2473
2474
|
* <p>The targets for the pull request is not valid or not in a valid format. Targets are a list of target objects. Each target object must contain the full values for
|
|
2474
2475
|
* the repository name, source branch, and destination branch for a pull request.</p>
|
|
2475
2476
|
*/
|
|
2476
|
-
export
|
|
2477
|
-
name: "InvalidTargetsException";
|
|
2478
|
-
$fault: "client";
|
|
2477
|
+
export declare class InvalidTargetsException extends __BaseException {
|
|
2478
|
+
readonly name: "InvalidTargetsException";
|
|
2479
|
+
readonly $fault: "client";
|
|
2479
2480
|
/**
|
|
2480
|
-
*
|
|
2481
|
+
* @internal
|
|
2481
2482
|
*/
|
|
2482
|
-
|
|
2483
|
+
constructor(opts: __ExceptionOptionType<InvalidTargetsException, __BaseException>);
|
|
2483
2484
|
}
|
|
2484
2485
|
/**
|
|
2485
2486
|
* <p>The title of the pull request is not valid. Pull request titles cannot exceed 100 characters in length.</p>
|
|
2486
2487
|
*/
|
|
2487
|
-
export
|
|
2488
|
-
name: "InvalidTitleException";
|
|
2489
|
-
$fault: "client";
|
|
2488
|
+
export declare class InvalidTitleException extends __BaseException {
|
|
2489
|
+
readonly name: "InvalidTitleException";
|
|
2490
|
+
readonly $fault: "client";
|
|
2490
2491
|
/**
|
|
2491
|
-
*
|
|
2492
|
+
* @internal
|
|
2492
2493
|
*/
|
|
2493
|
-
|
|
2494
|
+
constructor(opts: __ExceptionOptionType<InvalidTitleException, __BaseException>);
|
|
2494
2495
|
}
|
|
2495
2496
|
/**
|
|
2496
2497
|
* <p>You cannot create the pull request because the repository has too many open pull requests.
|
|
2497
2498
|
* The maximum number of open pull requests for a repository is 1,000. Close one or more open pull requests, and then try again.</p>
|
|
2498
2499
|
*/
|
|
2499
|
-
export
|
|
2500
|
-
name: "MaximumOpenPullRequestsExceededException";
|
|
2501
|
-
$fault: "client";
|
|
2500
|
+
export declare class MaximumOpenPullRequestsExceededException extends __BaseException {
|
|
2501
|
+
readonly name: "MaximumOpenPullRequestsExceededException";
|
|
2502
|
+
readonly $fault: "client";
|
|
2502
2503
|
/**
|
|
2503
|
-
*
|
|
2504
|
+
* @internal
|
|
2504
2505
|
*/
|
|
2505
|
-
|
|
2506
|
+
constructor(opts: __ExceptionOptionType<MaximumOpenPullRequestsExceededException, __BaseException>);
|
|
2506
2507
|
}
|
|
2507
2508
|
/**
|
|
2508
2509
|
* <p>You cannot include more than one repository in a pull request. Make sure you have specified only one repository name in your request, and then try again.</p>
|
|
2509
2510
|
*/
|
|
2510
|
-
export
|
|
2511
|
-
name: "MultipleRepositoriesInPullRequestException";
|
|
2512
|
-
$fault: "client";
|
|
2511
|
+
export declare class MultipleRepositoriesInPullRequestException extends __BaseException {
|
|
2512
|
+
readonly name: "MultipleRepositoriesInPullRequestException";
|
|
2513
|
+
readonly $fault: "client";
|
|
2513
2514
|
/**
|
|
2514
|
-
*
|
|
2515
|
+
* @internal
|
|
2515
2516
|
*/
|
|
2516
|
-
|
|
2517
|
+
constructor(opts: __ExceptionOptionType<MultipleRepositoriesInPullRequestException, __BaseException>);
|
|
2517
2518
|
}
|
|
2518
2519
|
/**
|
|
2519
2520
|
* <p>The specified reference does not exist. You must provide a full commit ID.</p>
|
|
2520
2521
|
*/
|
|
2521
|
-
export
|
|
2522
|
-
name: "ReferenceDoesNotExistException";
|
|
2523
|
-
$fault: "client";
|
|
2522
|
+
export declare class ReferenceDoesNotExistException extends __BaseException {
|
|
2523
|
+
readonly name: "ReferenceDoesNotExistException";
|
|
2524
|
+
readonly $fault: "client";
|
|
2524
2525
|
/**
|
|
2525
|
-
*
|
|
2526
|
+
* @internal
|
|
2526
2527
|
*/
|
|
2527
|
-
|
|
2528
|
+
constructor(opts: __ExceptionOptionType<ReferenceDoesNotExistException, __BaseException>);
|
|
2528
2529
|
}
|
|
2529
2530
|
/**
|
|
2530
2531
|
* <p>A reference name is required, but none was provided.</p>
|
|
2531
2532
|
*/
|
|
2532
|
-
export
|
|
2533
|
-
name: "ReferenceNameRequiredException";
|
|
2534
|
-
$fault: "client";
|
|
2533
|
+
export declare class ReferenceNameRequiredException extends __BaseException {
|
|
2534
|
+
readonly name: "ReferenceNameRequiredException";
|
|
2535
|
+
readonly $fault: "client";
|
|
2535
2536
|
/**
|
|
2536
|
-
*
|
|
2537
|
+
* @internal
|
|
2537
2538
|
*/
|
|
2538
|
-
|
|
2539
|
+
constructor(opts: __ExceptionOptionType<ReferenceNameRequiredException, __BaseException>);
|
|
2539
2540
|
}
|
|
2540
2541
|
/**
|
|
2541
2542
|
* <p>The specified reference is not a supported type. </p>
|
|
2542
2543
|
*/
|
|
2543
|
-
export
|
|
2544
|
-
name: "ReferenceTypeNotSupportedException";
|
|
2545
|
-
$fault: "client";
|
|
2544
|
+
export declare class ReferenceTypeNotSupportedException extends __BaseException {
|
|
2545
|
+
readonly name: "ReferenceTypeNotSupportedException";
|
|
2546
|
+
readonly $fault: "client";
|
|
2546
2547
|
/**
|
|
2547
|
-
*
|
|
2548
|
+
* @internal
|
|
2548
2549
|
*/
|
|
2549
|
-
|
|
2550
|
+
constructor(opts: __ExceptionOptionType<ReferenceTypeNotSupportedException, __BaseException>);
|
|
2550
2551
|
}
|
|
2551
2552
|
/**
|
|
2552
2553
|
* <p>The source branch and destination branch for the pull request are the same. You must
|
|
2553
2554
|
* specify different branches for the source and destination.</p>
|
|
2554
2555
|
*/
|
|
2555
|
-
export
|
|
2556
|
-
name: "SourceAndDestinationAreSameException";
|
|
2557
|
-
$fault: "client";
|
|
2556
|
+
export declare class SourceAndDestinationAreSameException extends __BaseException {
|
|
2557
|
+
readonly name: "SourceAndDestinationAreSameException";
|
|
2558
|
+
readonly $fault: "client";
|
|
2558
2559
|
/**
|
|
2559
|
-
*
|
|
2560
|
+
* @internal
|
|
2560
2561
|
*/
|
|
2561
|
-
|
|
2562
|
+
constructor(opts: __ExceptionOptionType<SourceAndDestinationAreSameException, __BaseException>);
|
|
2562
2563
|
}
|
|
2563
2564
|
/**
|
|
2564
2565
|
* <p>A pull request target is required. It cannot be empty or null. A pull request target must contain the full values for the repository name, source branch, and destination branch for the pull request.</p>
|
|
2565
2566
|
*/
|
|
2566
|
-
export
|
|
2567
|
-
name: "TargetRequiredException";
|
|
2568
|
-
$fault: "client";
|
|
2567
|
+
export declare class TargetRequiredException extends __BaseException {
|
|
2568
|
+
readonly name: "TargetRequiredException";
|
|
2569
|
+
readonly $fault: "client";
|
|
2569
2570
|
/**
|
|
2570
|
-
*
|
|
2571
|
+
* @internal
|
|
2571
2572
|
*/
|
|
2572
|
-
|
|
2573
|
+
constructor(opts: __ExceptionOptionType<TargetRequiredException, __BaseException>);
|
|
2573
2574
|
}
|
|
2574
2575
|
/**
|
|
2575
2576
|
* <p>An array of target objects is required. It cannot be empty or null.</p>
|
|
2576
2577
|
*/
|
|
2577
|
-
export
|
|
2578
|
-
name: "TargetsRequiredException";
|
|
2579
|
-
$fault: "client";
|
|
2578
|
+
export declare class TargetsRequiredException extends __BaseException {
|
|
2579
|
+
readonly name: "TargetsRequiredException";
|
|
2580
|
+
readonly $fault: "client";
|
|
2580
2581
|
/**
|
|
2581
|
-
*
|
|
2582
|
+
* @internal
|
|
2582
2583
|
*/
|
|
2583
|
-
|
|
2584
|
+
constructor(opts: __ExceptionOptionType<TargetsRequiredException, __BaseException>);
|
|
2584
2585
|
}
|
|
2585
2586
|
/**
|
|
2586
2587
|
* <p>A pull request title is required. It cannot be empty or null.</p>
|
|
2587
2588
|
*/
|
|
2588
|
-
export
|
|
2589
|
-
name: "TitleRequiredException";
|
|
2590
|
-
$fault: "client";
|
|
2589
|
+
export declare class TitleRequiredException extends __BaseException {
|
|
2590
|
+
readonly name: "TitleRequiredException";
|
|
2591
|
+
readonly $fault: "client";
|
|
2591
2592
|
/**
|
|
2592
|
-
*
|
|
2593
|
+
* @internal
|
|
2593
2594
|
*/
|
|
2594
|
-
|
|
2595
|
+
constructor(opts: __ExceptionOptionType<TitleRequiredException, __BaseException>);
|
|
2595
2596
|
}
|
|
2596
2597
|
export interface CreatePullRequestApprovalRuleInput {
|
|
2597
2598
|
/**
|
|
@@ -2670,79 +2671,79 @@ export declare namespace CreatePullRequestApprovalRuleOutput {
|
|
|
2670
2671
|
/**
|
|
2671
2672
|
* <p>The content for the approval rule is not valid.</p>
|
|
2672
2673
|
*/
|
|
2673
|
-
export
|
|
2674
|
-
name: "InvalidApprovalRuleContentException";
|
|
2675
|
-
$fault: "client";
|
|
2674
|
+
export declare class InvalidApprovalRuleContentException extends __BaseException {
|
|
2675
|
+
readonly name: "InvalidApprovalRuleContentException";
|
|
2676
|
+
readonly $fault: "client";
|
|
2676
2677
|
/**
|
|
2677
|
-
*
|
|
2678
|
+
* @internal
|
|
2678
2679
|
*/
|
|
2679
|
-
|
|
2680
|
+
constructor(opts: __ExceptionOptionType<InvalidApprovalRuleContentException, __BaseException>);
|
|
2680
2681
|
}
|
|
2681
2682
|
/**
|
|
2682
2683
|
* <p>The name for the approval rule is not valid.</p>
|
|
2683
2684
|
*/
|
|
2684
|
-
export
|
|
2685
|
-
name: "InvalidApprovalRuleNameException";
|
|
2686
|
-
$fault: "client";
|
|
2685
|
+
export declare class InvalidApprovalRuleNameException extends __BaseException {
|
|
2686
|
+
readonly name: "InvalidApprovalRuleNameException";
|
|
2687
|
+
readonly $fault: "client";
|
|
2687
2688
|
/**
|
|
2688
|
-
*
|
|
2689
|
+
* @internal
|
|
2689
2690
|
*/
|
|
2690
|
-
|
|
2691
|
+
constructor(opts: __ExceptionOptionType<InvalidApprovalRuleNameException, __BaseException>);
|
|
2691
2692
|
}
|
|
2692
2693
|
/**
|
|
2693
2694
|
* <p>The pull request ID is not valid. Make sure that you have provided the full ID and that the pull request is in the specified repository, and then try again.</p>
|
|
2694
2695
|
*/
|
|
2695
|
-
export
|
|
2696
|
-
name: "InvalidPullRequestIdException";
|
|
2697
|
-
$fault: "client";
|
|
2696
|
+
export declare class InvalidPullRequestIdException extends __BaseException {
|
|
2697
|
+
readonly name: "InvalidPullRequestIdException";
|
|
2698
|
+
readonly $fault: "client";
|
|
2698
2699
|
/**
|
|
2699
|
-
*
|
|
2700
|
+
* @internal
|
|
2700
2701
|
*/
|
|
2701
|
-
|
|
2702
|
+
constructor(opts: __ExceptionOptionType<InvalidPullRequestIdException, __BaseException>);
|
|
2702
2703
|
}
|
|
2703
2704
|
/**
|
|
2704
2705
|
* <p>The approval rule cannot be added. The pull request has the maximum number of approval rules associated with it.</p>
|
|
2705
2706
|
*/
|
|
2706
|
-
export
|
|
2707
|
-
name: "NumberOfRulesExceededException";
|
|
2708
|
-
$fault: "client";
|
|
2707
|
+
export declare class NumberOfRulesExceededException extends __BaseException {
|
|
2708
|
+
readonly name: "NumberOfRulesExceededException";
|
|
2709
|
+
readonly $fault: "client";
|
|
2709
2710
|
/**
|
|
2710
|
-
*
|
|
2711
|
+
* @internal
|
|
2711
2712
|
*/
|
|
2712
|
-
|
|
2713
|
+
constructor(opts: __ExceptionOptionType<NumberOfRulesExceededException, __BaseException>);
|
|
2713
2714
|
}
|
|
2714
2715
|
/**
|
|
2715
2716
|
* <p>The pull request status cannot be updated because it is already closed.</p>
|
|
2716
2717
|
*/
|
|
2717
|
-
export
|
|
2718
|
-
name: "PullRequestAlreadyClosedException";
|
|
2719
|
-
$fault: "client";
|
|
2718
|
+
export declare class PullRequestAlreadyClosedException extends __BaseException {
|
|
2719
|
+
readonly name: "PullRequestAlreadyClosedException";
|
|
2720
|
+
readonly $fault: "client";
|
|
2720
2721
|
/**
|
|
2721
|
-
*
|
|
2722
|
+
* @internal
|
|
2722
2723
|
*/
|
|
2723
|
-
|
|
2724
|
+
constructor(opts: __ExceptionOptionType<PullRequestAlreadyClosedException, __BaseException>);
|
|
2724
2725
|
}
|
|
2725
2726
|
/**
|
|
2726
2727
|
* <p>The pull request ID could not be found. Make sure that you have specified the correct repository name and pull request ID, and then try again.</p>
|
|
2727
2728
|
*/
|
|
2728
|
-
export
|
|
2729
|
-
name: "PullRequestDoesNotExistException";
|
|
2730
|
-
$fault: "client";
|
|
2729
|
+
export declare class PullRequestDoesNotExistException extends __BaseException {
|
|
2730
|
+
readonly name: "PullRequestDoesNotExistException";
|
|
2731
|
+
readonly $fault: "client";
|
|
2731
2732
|
/**
|
|
2732
|
-
*
|
|
2733
|
+
* @internal
|
|
2733
2734
|
*/
|
|
2734
|
-
|
|
2735
|
+
constructor(opts: __ExceptionOptionType<PullRequestDoesNotExistException, __BaseException>);
|
|
2735
2736
|
}
|
|
2736
2737
|
/**
|
|
2737
2738
|
* <p>A pull request ID is required, but none was provided.</p>
|
|
2738
2739
|
*/
|
|
2739
|
-
export
|
|
2740
|
-
name: "PullRequestIdRequiredException";
|
|
2741
|
-
$fault: "client";
|
|
2740
|
+
export declare class PullRequestIdRequiredException extends __BaseException {
|
|
2741
|
+
readonly name: "PullRequestIdRequiredException";
|
|
2742
|
+
readonly $fault: "client";
|
|
2742
2743
|
/**
|
|
2743
|
-
*
|
|
2744
|
+
* @internal
|
|
2744
2745
|
*/
|
|
2745
|
-
|
|
2746
|
+
constructor(opts: __ExceptionOptionType<PullRequestIdRequiredException, __BaseException>);
|
|
2746
2747
|
}
|
|
2747
2748
|
/**
|
|
2748
2749
|
* <p>Represents the input of a create repository operation.</p>
|
|
@@ -2801,90 +2802,90 @@ export declare namespace CreateRepositoryOutput {
|
|
|
2801
2802
|
/**
|
|
2802
2803
|
* <p>The specified repository description is not valid.</p>
|
|
2803
2804
|
*/
|
|
2804
|
-
export
|
|
2805
|
-
name: "InvalidRepositoryDescriptionException";
|
|
2806
|
-
$fault: "client";
|
|
2805
|
+
export declare class InvalidRepositoryDescriptionException extends __BaseException {
|
|
2806
|
+
readonly name: "InvalidRepositoryDescriptionException";
|
|
2807
|
+
readonly $fault: "client";
|
|
2807
2808
|
/**
|
|
2808
|
-
*
|
|
2809
|
+
* @internal
|
|
2809
2810
|
*/
|
|
2810
|
-
|
|
2811
|
+
constructor(opts: __ExceptionOptionType<InvalidRepositoryDescriptionException, __BaseException>);
|
|
2811
2812
|
}
|
|
2812
2813
|
/**
|
|
2813
2814
|
* <p>The specified tag is not valid. Key names cannot be prefixed with aws:.</p>
|
|
2814
2815
|
*/
|
|
2815
|
-
export
|
|
2816
|
-
name: "InvalidSystemTagUsageException";
|
|
2817
|
-
$fault: "client";
|
|
2816
|
+
export declare class InvalidSystemTagUsageException extends __BaseException {
|
|
2817
|
+
readonly name: "InvalidSystemTagUsageException";
|
|
2818
|
+
readonly $fault: "client";
|
|
2818
2819
|
/**
|
|
2819
|
-
*
|
|
2820
|
+
* @internal
|
|
2820
2821
|
*/
|
|
2821
|
-
|
|
2822
|
+
constructor(opts: __ExceptionOptionType<InvalidSystemTagUsageException, __BaseException>);
|
|
2822
2823
|
}
|
|
2823
2824
|
/**
|
|
2824
2825
|
* <p>The map of tags is not valid.</p>
|
|
2825
2826
|
*/
|
|
2826
|
-
export
|
|
2827
|
-
name: "InvalidTagsMapException";
|
|
2828
|
-
$fault: "client";
|
|
2827
|
+
export declare class InvalidTagsMapException extends __BaseException {
|
|
2828
|
+
readonly name: "InvalidTagsMapException";
|
|
2829
|
+
readonly $fault: "client";
|
|
2829
2830
|
/**
|
|
2830
|
-
*
|
|
2831
|
+
* @internal
|
|
2831
2832
|
*/
|
|
2832
|
-
|
|
2833
|
+
constructor(opts: __ExceptionOptionType<InvalidTagsMapException, __BaseException>);
|
|
2833
2834
|
}
|
|
2834
2835
|
/**
|
|
2835
2836
|
* <p>A repository resource limit was exceeded.</p>
|
|
2836
2837
|
*/
|
|
2837
|
-
export
|
|
2838
|
-
name: "RepositoryLimitExceededException";
|
|
2839
|
-
$fault: "client";
|
|
2838
|
+
export declare class RepositoryLimitExceededException extends __BaseException {
|
|
2839
|
+
readonly name: "RepositoryLimitExceededException";
|
|
2840
|
+
readonly $fault: "client";
|
|
2840
2841
|
/**
|
|
2841
|
-
*
|
|
2842
|
+
* @internal
|
|
2842
2843
|
*/
|
|
2843
|
-
|
|
2844
|
+
constructor(opts: __ExceptionOptionType<RepositoryLimitExceededException, __BaseException>);
|
|
2844
2845
|
}
|
|
2845
2846
|
/**
|
|
2846
2847
|
* <p>The specified repository name already exists.</p>
|
|
2847
2848
|
*/
|
|
2848
|
-
export
|
|
2849
|
-
name: "RepositoryNameExistsException";
|
|
2850
|
-
$fault: "client";
|
|
2849
|
+
export declare class RepositoryNameExistsException extends __BaseException {
|
|
2850
|
+
readonly name: "RepositoryNameExistsException";
|
|
2851
|
+
readonly $fault: "client";
|
|
2851
2852
|
/**
|
|
2852
|
-
*
|
|
2853
|
+
* @internal
|
|
2853
2854
|
*/
|
|
2854
|
-
|
|
2855
|
+
constructor(opts: __ExceptionOptionType<RepositoryNameExistsException, __BaseException>);
|
|
2855
2856
|
}
|
|
2856
2857
|
/**
|
|
2857
2858
|
* <p>The tag policy is not valid.</p>
|
|
2858
2859
|
*/
|
|
2859
|
-
export
|
|
2860
|
-
name: "TagPolicyException";
|
|
2861
|
-
$fault: "client";
|
|
2860
|
+
export declare class TagPolicyException extends __BaseException {
|
|
2861
|
+
readonly name: "TagPolicyException";
|
|
2862
|
+
readonly $fault: "client";
|
|
2862
2863
|
/**
|
|
2863
|
-
*
|
|
2864
|
+
* @internal
|
|
2864
2865
|
*/
|
|
2865
|
-
|
|
2866
|
+
constructor(opts: __ExceptionOptionType<TagPolicyException, __BaseException>);
|
|
2866
2867
|
}
|
|
2867
2868
|
/**
|
|
2868
2869
|
* <p>The maximum number of tags for an AWS CodeCommit resource has been exceeded.</p>
|
|
2869
2870
|
*/
|
|
2870
|
-
export
|
|
2871
|
-
name: "TooManyTagsException";
|
|
2872
|
-
$fault: "client";
|
|
2871
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
2872
|
+
readonly name: "TooManyTagsException";
|
|
2873
|
+
readonly $fault: "client";
|
|
2873
2874
|
/**
|
|
2874
|
-
*
|
|
2875
|
+
* @internal
|
|
2875
2876
|
*/
|
|
2876
|
-
|
|
2877
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
2877
2878
|
}
|
|
2878
2879
|
/**
|
|
2879
2880
|
* <p>The merge cannot be completed because the target branch has been modified. Another user might have modified the target branch while the merge was in progress. Wait a few minutes, and then try again.</p>
|
|
2880
2881
|
*/
|
|
2881
|
-
export
|
|
2882
|
-
name: "ConcurrentReferenceUpdateException";
|
|
2883
|
-
$fault: "client";
|
|
2882
|
+
export declare class ConcurrentReferenceUpdateException extends __BaseException {
|
|
2883
|
+
readonly name: "ConcurrentReferenceUpdateException";
|
|
2884
|
+
readonly $fault: "client";
|
|
2884
2885
|
/**
|
|
2885
|
-
*
|
|
2886
|
+
* @internal
|
|
2886
2887
|
*/
|
|
2887
|
-
|
|
2888
|
+
constructor(opts: __ExceptionOptionType<ConcurrentReferenceUpdateException, __BaseException>);
|
|
2888
2889
|
}
|
|
2889
2890
|
export declare enum ReplacementTypeEnum {
|
|
2890
2891
|
KEEP_BASE = "KEEP_BASE",
|
|
@@ -3025,90 +3026,90 @@ export declare namespace CreateUnreferencedMergeCommitOutput {
|
|
|
3025
3026
|
/**
|
|
3026
3027
|
* <p>The specified conflict resolution list is not valid.</p>
|
|
3027
3028
|
*/
|
|
3028
|
-
export
|
|
3029
|
-
name: "InvalidConflictResolutionException";
|
|
3030
|
-
$fault: "client";
|
|
3029
|
+
export declare class InvalidConflictResolutionException extends __BaseException {
|
|
3030
|
+
readonly name: "InvalidConflictResolutionException";
|
|
3031
|
+
readonly $fault: "client";
|
|
3031
3032
|
/**
|
|
3032
|
-
*
|
|
3033
|
+
* @internal
|
|
3033
3034
|
*/
|
|
3034
|
-
|
|
3035
|
+
constructor(opts: __ExceptionOptionType<InvalidConflictResolutionException, __BaseException>);
|
|
3035
3036
|
}
|
|
3036
3037
|
/**
|
|
3037
3038
|
* <p>Automerge was specified for resolving the conflict, but the replacement type is not valid or content is missing. </p>
|
|
3038
3039
|
*/
|
|
3039
|
-
export
|
|
3040
|
-
name: "InvalidReplacementContentException";
|
|
3041
|
-
$fault: "client";
|
|
3040
|
+
export declare class InvalidReplacementContentException extends __BaseException {
|
|
3041
|
+
readonly name: "InvalidReplacementContentException";
|
|
3042
|
+
readonly $fault: "client";
|
|
3042
3043
|
/**
|
|
3043
|
-
*
|
|
3044
|
+
* @internal
|
|
3044
3045
|
*/
|
|
3045
|
-
|
|
3046
|
+
constructor(opts: __ExceptionOptionType<InvalidReplacementContentException, __BaseException>);
|
|
3046
3047
|
}
|
|
3047
3048
|
/**
|
|
3048
3049
|
* <p>Automerge was specified for resolving the conflict, but the specified replacement type is not valid.</p>
|
|
3049
3050
|
*/
|
|
3050
|
-
export
|
|
3051
|
-
name: "InvalidReplacementTypeException";
|
|
3052
|
-
$fault: "client";
|
|
3051
|
+
export declare class InvalidReplacementTypeException extends __BaseException {
|
|
3052
|
+
readonly name: "InvalidReplacementTypeException";
|
|
3053
|
+
readonly $fault: "client";
|
|
3053
3054
|
/**
|
|
3054
|
-
*
|
|
3055
|
+
* @internal
|
|
3055
3056
|
*/
|
|
3056
|
-
|
|
3057
|
+
constructor(opts: __ExceptionOptionType<InvalidReplacementTypeException, __BaseException>);
|
|
3057
3058
|
}
|
|
3058
3059
|
/**
|
|
3059
3060
|
* <p>The pull request cannot be merged automatically into the destination branch. You must manually merge the branches and resolve any conflicts.</p>
|
|
3060
3061
|
*/
|
|
3061
|
-
export
|
|
3062
|
-
name: "ManualMergeRequiredException";
|
|
3063
|
-
$fault: "client";
|
|
3062
|
+
export declare class ManualMergeRequiredException extends __BaseException {
|
|
3063
|
+
readonly name: "ManualMergeRequiredException";
|
|
3064
|
+
readonly $fault: "client";
|
|
3064
3065
|
/**
|
|
3065
|
-
*
|
|
3066
|
+
* @internal
|
|
3066
3067
|
*/
|
|
3067
|
-
|
|
3068
|
+
constructor(opts: __ExceptionOptionType<ManualMergeRequiredException, __BaseException>);
|
|
3068
3069
|
}
|
|
3069
3070
|
/**
|
|
3070
3071
|
* <p>The number of allowed conflict resolution entries was exceeded.</p>
|
|
3071
3072
|
*/
|
|
3072
|
-
export
|
|
3073
|
-
name: "MaximumConflictResolutionEntriesExceededException";
|
|
3074
|
-
$fault: "client";
|
|
3073
|
+
export declare class MaximumConflictResolutionEntriesExceededException extends __BaseException {
|
|
3074
|
+
readonly name: "MaximumConflictResolutionEntriesExceededException";
|
|
3075
|
+
readonly $fault: "client";
|
|
3075
3076
|
/**
|
|
3076
|
-
*
|
|
3077
|
+
* @internal
|
|
3077
3078
|
*/
|
|
3078
|
-
|
|
3079
|
+
constructor(opts: __ExceptionOptionType<MaximumConflictResolutionEntriesExceededException, __BaseException>);
|
|
3079
3080
|
}
|
|
3080
3081
|
/**
|
|
3081
3082
|
* <p>More than one conflict resolution entries exists for the conflict. A conflict can have only one conflict resolution entry.</p>
|
|
3082
3083
|
*/
|
|
3083
|
-
export
|
|
3084
|
-
name: "MultipleConflictResolutionEntriesException";
|
|
3085
|
-
$fault: "client";
|
|
3084
|
+
export declare class MultipleConflictResolutionEntriesException extends __BaseException {
|
|
3085
|
+
readonly name: "MultipleConflictResolutionEntriesException";
|
|
3086
|
+
readonly $fault: "client";
|
|
3086
3087
|
/**
|
|
3087
|
-
*
|
|
3088
|
+
* @internal
|
|
3088
3089
|
*/
|
|
3089
|
-
|
|
3090
|
+
constructor(opts: __ExceptionOptionType<MultipleConflictResolutionEntriesException, __BaseException>);
|
|
3090
3091
|
}
|
|
3091
3092
|
/**
|
|
3092
3093
|
* <p>USE_NEW_CONTENT was specified, but no replacement content has been provided.</p>
|
|
3093
3094
|
*/
|
|
3094
|
-
export
|
|
3095
|
-
name: "ReplacementContentRequiredException";
|
|
3096
|
-
$fault: "client";
|
|
3095
|
+
export declare class ReplacementContentRequiredException extends __BaseException {
|
|
3096
|
+
readonly name: "ReplacementContentRequiredException";
|
|
3097
|
+
readonly $fault: "client";
|
|
3097
3098
|
/**
|
|
3098
|
-
*
|
|
3099
|
+
* @internal
|
|
3099
3100
|
*/
|
|
3100
|
-
|
|
3101
|
+
constructor(opts: __ExceptionOptionType<ReplacementContentRequiredException, __BaseException>);
|
|
3101
3102
|
}
|
|
3102
3103
|
/**
|
|
3103
3104
|
* <p>A replacement type is required.</p>
|
|
3104
3105
|
*/
|
|
3105
|
-
export
|
|
3106
|
-
name: "ReplacementTypeRequiredException";
|
|
3107
|
-
$fault: "client";
|
|
3106
|
+
export declare class ReplacementTypeRequiredException extends __BaseException {
|
|
3107
|
+
readonly name: "ReplacementTypeRequiredException";
|
|
3108
|
+
readonly $fault: "client";
|
|
3108
3109
|
/**
|
|
3109
|
-
*
|
|
3110
|
+
* @internal
|
|
3110
3111
|
*/
|
|
3111
|
-
|
|
3112
|
+
constructor(opts: __ExceptionOptionType<ReplacementTypeRequiredException, __BaseException>);
|
|
3112
3113
|
}
|
|
3113
3114
|
export interface DeleteApprovalRuleTemplateInput {
|
|
3114
3115
|
/**
|
|
@@ -3138,13 +3139,13 @@ export declare namespace DeleteApprovalRuleTemplateOutput {
|
|
|
3138
3139
|
/**
|
|
3139
3140
|
* <p>The specified branch is the default branch for the repository, and cannot be deleted. To delete this branch, you must first set another branch as the default branch.</p>
|
|
3140
3141
|
*/
|
|
3141
|
-
export
|
|
3142
|
-
name: "DefaultBranchCannotBeDeletedException";
|
|
3143
|
-
$fault: "client";
|
|
3142
|
+
export declare class DefaultBranchCannotBeDeletedException extends __BaseException {
|
|
3143
|
+
readonly name: "DefaultBranchCannotBeDeletedException";
|
|
3144
|
+
readonly $fault: "client";
|
|
3144
3145
|
/**
|
|
3145
|
-
*
|
|
3146
|
+
* @internal
|
|
3146
3147
|
*/
|
|
3147
|
-
|
|
3148
|
+
constructor(opts: __ExceptionOptionType<DefaultBranchCannotBeDeletedException, __BaseException>);
|
|
3148
3149
|
}
|
|
3149
3150
|
/**
|
|
3150
3151
|
* <p>Represents the input of a delete branch operation.</p>
|
|
@@ -3183,36 +3184,36 @@ export declare namespace DeleteBranchOutput {
|
|
|
3183
3184
|
/**
|
|
3184
3185
|
* <p>This comment has already been deleted. You cannot edit or delete a deleted comment.</p>
|
|
3185
3186
|
*/
|
|
3186
|
-
export
|
|
3187
|
-
name: "CommentDeletedException";
|
|
3188
|
-
$fault: "client";
|
|
3187
|
+
export declare class CommentDeletedException extends __BaseException {
|
|
3188
|
+
readonly name: "CommentDeletedException";
|
|
3189
|
+
readonly $fault: "client";
|
|
3189
3190
|
/**
|
|
3190
|
-
*
|
|
3191
|
+
* @internal
|
|
3191
3192
|
*/
|
|
3192
|
-
|
|
3193
|
+
constructor(opts: __ExceptionOptionType<CommentDeletedException, __BaseException>);
|
|
3193
3194
|
}
|
|
3194
3195
|
/**
|
|
3195
3196
|
* <p>No comment exists with the provided ID. Verify that you have used the correct ID, and
|
|
3196
3197
|
* then try again.</p>
|
|
3197
3198
|
*/
|
|
3198
|
-
export
|
|
3199
|
-
name: "CommentDoesNotExistException";
|
|
3200
|
-
$fault: "client";
|
|
3199
|
+
export declare class CommentDoesNotExistException extends __BaseException {
|
|
3200
|
+
readonly name: "CommentDoesNotExistException";
|
|
3201
|
+
readonly $fault: "client";
|
|
3201
3202
|
/**
|
|
3202
|
-
*
|
|
3203
|
+
* @internal
|
|
3203
3204
|
*/
|
|
3204
|
-
|
|
3205
|
+
constructor(opts: __ExceptionOptionType<CommentDoesNotExistException, __BaseException>);
|
|
3205
3206
|
}
|
|
3206
3207
|
/**
|
|
3207
3208
|
* <p>The comment ID is missing or null. A comment ID is required.</p>
|
|
3208
3209
|
*/
|
|
3209
|
-
export
|
|
3210
|
-
name: "CommentIdRequiredException";
|
|
3211
|
-
$fault: "client";
|
|
3210
|
+
export declare class CommentIdRequiredException extends __BaseException {
|
|
3211
|
+
readonly name: "CommentIdRequiredException";
|
|
3212
|
+
readonly $fault: "client";
|
|
3212
3213
|
/**
|
|
3213
|
-
*
|
|
3214
|
+
* @internal
|
|
3214
3215
|
*/
|
|
3215
|
-
|
|
3216
|
+
constructor(opts: __ExceptionOptionType<CommentIdRequiredException, __BaseException>);
|
|
3216
3217
|
}
|
|
3217
3218
|
export interface DeleteCommentContentInput {
|
|
3218
3219
|
/**
|
|
@@ -3298,13 +3299,13 @@ export declare namespace DeleteCommentContentOutput {
|
|
|
3298
3299
|
/**
|
|
3299
3300
|
* <p>The comment ID is not in a valid format. Make sure that you have provided the full comment ID.</p>
|
|
3300
3301
|
*/
|
|
3301
|
-
export
|
|
3302
|
-
name: "InvalidCommentIdException";
|
|
3303
|
-
$fault: "client";
|
|
3302
|
+
export declare class InvalidCommentIdException extends __BaseException {
|
|
3303
|
+
readonly name: "InvalidCommentIdException";
|
|
3304
|
+
readonly $fault: "client";
|
|
3304
3305
|
/**
|
|
3305
|
-
*
|
|
3306
|
+
* @internal
|
|
3306
3307
|
*/
|
|
3307
|
-
|
|
3308
|
+
constructor(opts: __ExceptionOptionType<InvalidCommentIdException, __BaseException>);
|
|
3308
3309
|
}
|
|
3309
3310
|
export interface DeleteFileInput {
|
|
3310
3311
|
/**
|
|
@@ -3742,35 +3743,35 @@ export declare namespace DescribePullRequestEventsOutput {
|
|
|
3742
3743
|
* <p>The Amazon Resource Name (ARN) is not valid. Make sure that you have provided the full ARN for the user who initiated the change for the pull request,
|
|
3743
3744
|
* and then try again.</p>
|
|
3744
3745
|
*/
|
|
3745
|
-
export
|
|
3746
|
-
name: "InvalidActorArnException";
|
|
3747
|
-
$fault: "client";
|
|
3746
|
+
export declare class InvalidActorArnException extends __BaseException {
|
|
3747
|
+
readonly name: "InvalidActorArnException";
|
|
3748
|
+
readonly $fault: "client";
|
|
3748
3749
|
/**
|
|
3749
|
-
*
|
|
3750
|
+
* @internal
|
|
3750
3751
|
*/
|
|
3751
|
-
|
|
3752
|
+
constructor(opts: __ExceptionOptionType<InvalidActorArnException, __BaseException>);
|
|
3752
3753
|
}
|
|
3753
3754
|
/**
|
|
3754
3755
|
* <p>The specified number of maximum results is not valid.</p>
|
|
3755
3756
|
*/
|
|
3756
|
-
export
|
|
3757
|
-
name: "InvalidMaxResultsException";
|
|
3758
|
-
$fault: "client";
|
|
3757
|
+
export declare class InvalidMaxResultsException extends __BaseException {
|
|
3758
|
+
readonly name: "InvalidMaxResultsException";
|
|
3759
|
+
readonly $fault: "client";
|
|
3759
3760
|
/**
|
|
3760
|
-
*
|
|
3761
|
+
* @internal
|
|
3761
3762
|
*/
|
|
3762
|
-
|
|
3763
|
+
constructor(opts: __ExceptionOptionType<InvalidMaxResultsException, __BaseException>);
|
|
3763
3764
|
}
|
|
3764
3765
|
/**
|
|
3765
3766
|
* <p>The pull request event type is not valid. </p>
|
|
3766
3767
|
*/
|
|
3767
|
-
export
|
|
3768
|
-
name: "InvalidPullRequestEventTypeException";
|
|
3769
|
-
$fault: "client";
|
|
3768
|
+
export declare class InvalidPullRequestEventTypeException extends __BaseException {
|
|
3769
|
+
readonly name: "InvalidPullRequestEventTypeException";
|
|
3770
|
+
readonly $fault: "client";
|
|
3770
3771
|
/**
|
|
3771
|
-
*
|
|
3772
|
+
* @internal
|
|
3772
3773
|
*/
|
|
3773
|
-
|
|
3774
|
+
constructor(opts: __ExceptionOptionType<InvalidPullRequestEventTypeException, __BaseException>);
|
|
3774
3775
|
}
|
|
3775
3776
|
export interface DisassociateApprovalRuleTemplateFromRepositoryInput {
|
|
3776
3777
|
/**
|
|
@@ -3849,35 +3850,35 @@ export declare namespace EvaluatePullRequestApprovalRulesOutput {
|
|
|
3849
3850
|
/**
|
|
3850
3851
|
* <p>The revision ID is not valid. Use GetPullRequest to determine the value.</p>
|
|
3851
3852
|
*/
|
|
3852
|
-
export
|
|
3853
|
-
name: "InvalidRevisionIdException";
|
|
3854
|
-
$fault: "client";
|
|
3853
|
+
export declare class InvalidRevisionIdException extends __BaseException {
|
|
3854
|
+
readonly name: "InvalidRevisionIdException";
|
|
3855
|
+
readonly $fault: "client";
|
|
3855
3856
|
/**
|
|
3856
|
-
*
|
|
3857
|
+
* @internal
|
|
3857
3858
|
*/
|
|
3858
|
-
|
|
3859
|
+
constructor(opts: __ExceptionOptionType<InvalidRevisionIdException, __BaseException>);
|
|
3859
3860
|
}
|
|
3860
3861
|
/**
|
|
3861
3862
|
* <p>A revision ID is required, but was not provided.</p>
|
|
3862
3863
|
*/
|
|
3863
|
-
export
|
|
3864
|
-
name: "RevisionIdRequiredException";
|
|
3865
|
-
$fault: "client";
|
|
3864
|
+
export declare class RevisionIdRequiredException extends __BaseException {
|
|
3865
|
+
readonly name: "RevisionIdRequiredException";
|
|
3866
|
+
readonly $fault: "client";
|
|
3866
3867
|
/**
|
|
3867
|
-
*
|
|
3868
|
+
* @internal
|
|
3868
3869
|
*/
|
|
3869
|
-
|
|
3870
|
+
constructor(opts: __ExceptionOptionType<RevisionIdRequiredException, __BaseException>);
|
|
3870
3871
|
}
|
|
3871
3872
|
/**
|
|
3872
3873
|
* <p>The revision ID provided in the request does not match the current revision ID. Use GetPullRequest to retrieve the current revision ID.</p>
|
|
3873
3874
|
*/
|
|
3874
|
-
export
|
|
3875
|
-
name: "RevisionNotCurrentException";
|
|
3876
|
-
$fault: "client";
|
|
3875
|
+
export declare class RevisionNotCurrentException extends __BaseException {
|
|
3876
|
+
readonly name: "RevisionNotCurrentException";
|
|
3877
|
+
readonly $fault: "client";
|
|
3877
3878
|
/**
|
|
3878
|
-
*
|
|
3879
|
+
* @internal
|
|
3879
3880
|
*/
|
|
3880
|
-
|
|
3881
|
+
constructor(opts: __ExceptionOptionType<RevisionNotCurrentException, __BaseException>);
|
|
3881
3882
|
}
|
|
3882
3883
|
export interface GetApprovalRuleTemplateInput {
|
|
3883
3884
|
/**
|
|
@@ -3907,13 +3908,13 @@ export declare namespace GetApprovalRuleTemplateOutput {
|
|
|
3907
3908
|
* <p>The specified file exceeds the file size limit for AWS CodeCommit. For more information about limits in AWS CodeCommit, see
|
|
3908
3909
|
* <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/limits.html">AWS CodeCommit User Guide</a>.</p>
|
|
3909
3910
|
*/
|
|
3910
|
-
export
|
|
3911
|
-
name: "FileTooLargeException";
|
|
3912
|
-
$fault: "client";
|
|
3911
|
+
export declare class FileTooLargeException extends __BaseException {
|
|
3912
|
+
readonly name: "FileTooLargeException";
|
|
3913
|
+
readonly $fault: "client";
|
|
3913
3914
|
/**
|
|
3914
|
-
*
|
|
3915
|
+
* @internal
|
|
3915
3916
|
*/
|
|
3916
|
-
|
|
3917
|
+
constructor(opts: __ExceptionOptionType<FileTooLargeException, __BaseException>);
|
|
3917
3918
|
}
|
|
3918
3919
|
/**
|
|
3919
3920
|
* <p>Represents the input of a get blob operation.</p>
|
|
@@ -3952,13 +3953,13 @@ export declare namespace GetBlobOutput {
|
|
|
3952
3953
|
/**
|
|
3953
3954
|
* <p>The specified blob is not valid.</p>
|
|
3954
3955
|
*/
|
|
3955
|
-
export
|
|
3956
|
-
name: "InvalidBlobIdException";
|
|
3957
|
-
$fault: "client";
|
|
3956
|
+
export declare class InvalidBlobIdException extends __BaseException {
|
|
3957
|
+
readonly name: "InvalidBlobIdException";
|
|
3958
|
+
readonly $fault: "client";
|
|
3958
3959
|
/**
|
|
3959
|
-
*
|
|
3960
|
+
* @internal
|
|
3960
3961
|
*/
|
|
3961
|
-
|
|
3962
|
+
constructor(opts: __ExceptionOptionType<InvalidBlobIdException, __BaseException>);
|
|
3962
3963
|
}
|
|
3963
3964
|
/**
|
|
3964
3965
|
* <p>Represents the input of a get branch operation.</p>
|
|
@@ -4109,13 +4110,13 @@ export declare namespace GetCommentReactionsOutput {
|
|
|
4109
4110
|
/**
|
|
4110
4111
|
* <p>The Amazon Resource Name (ARN) of the user or identity is not valid.</p>
|
|
4111
4112
|
*/
|
|
4112
|
-
export
|
|
4113
|
-
name: "InvalidReactionUserArnException";
|
|
4114
|
-
$fault: "client";
|
|
4113
|
+
export declare class InvalidReactionUserArnException extends __BaseException {
|
|
4114
|
+
readonly name: "InvalidReactionUserArnException";
|
|
4115
|
+
readonly $fault: "client";
|
|
4115
4116
|
/**
|
|
4116
|
-
*
|
|
4117
|
+
* @internal
|
|
4117
4118
|
*/
|
|
4118
|
-
|
|
4119
|
+
constructor(opts: __ExceptionOptionType<InvalidReactionUserArnException, __BaseException>);
|
|
4119
4120
|
}
|
|
4120
4121
|
export interface GetCommentsForComparedCommitInput {
|
|
4121
4122
|
/**
|
|
@@ -4336,24 +4337,24 @@ export declare namespace GetCommentsForPullRequestOutput {
|
|
|
4336
4337
|
/**
|
|
4337
4338
|
* <p>The repository does not contain any pull requests with that pull request ID. Use GetPullRequest to verify the correct repository name for the pull request ID.</p>
|
|
4338
4339
|
*/
|
|
4339
|
-
export
|
|
4340
|
-
name: "RepositoryNotAssociatedWithPullRequestException";
|
|
4341
|
-
$fault: "client";
|
|
4340
|
+
export declare class RepositoryNotAssociatedWithPullRequestException extends __BaseException {
|
|
4341
|
+
readonly name: "RepositoryNotAssociatedWithPullRequestException";
|
|
4342
|
+
readonly $fault: "client";
|
|
4342
4343
|
/**
|
|
4343
|
-
*
|
|
4344
|
+
* @internal
|
|
4344
4345
|
*/
|
|
4345
|
-
|
|
4346
|
+
constructor(opts: __ExceptionOptionType<RepositoryNotAssociatedWithPullRequestException, __BaseException>);
|
|
4346
4347
|
}
|
|
4347
4348
|
/**
|
|
4348
4349
|
* <p>The specified commit ID does not exist.</p>
|
|
4349
4350
|
*/
|
|
4350
|
-
export
|
|
4351
|
-
name: "CommitIdDoesNotExistException";
|
|
4352
|
-
$fault: "client";
|
|
4351
|
+
export declare class CommitIdDoesNotExistException extends __BaseException {
|
|
4352
|
+
readonly name: "CommitIdDoesNotExistException";
|
|
4353
|
+
readonly $fault: "client";
|
|
4353
4354
|
/**
|
|
4354
|
-
*
|
|
4355
|
+
* @internal
|
|
4355
4356
|
*/
|
|
4356
|
-
|
|
4357
|
+
constructor(opts: __ExceptionOptionType<CommitIdDoesNotExistException, __BaseException>);
|
|
4357
4358
|
}
|
|
4358
4359
|
/**
|
|
4359
4360
|
* <p>Represents the input of a get commit operation.</p>
|
|
@@ -4480,13 +4481,13 @@ export declare namespace GetDifferencesOutput {
|
|
|
4480
4481
|
/**
|
|
4481
4482
|
* <p>The specified path does not exist.</p>
|
|
4482
4483
|
*/
|
|
4483
|
-
export
|
|
4484
|
-
name: "PathDoesNotExistException";
|
|
4485
|
-
$fault: "client";
|
|
4484
|
+
export declare class PathDoesNotExistException extends __BaseException {
|
|
4485
|
+
readonly name: "PathDoesNotExistException";
|
|
4486
|
+
readonly $fault: "client";
|
|
4486
4487
|
/**
|
|
4487
|
-
*
|
|
4488
|
+
* @internal
|
|
4488
4489
|
*/
|
|
4489
|
-
|
|
4490
|
+
constructor(opts: __ExceptionOptionType<PathDoesNotExistException, __BaseException>);
|
|
4490
4491
|
}
|
|
4491
4492
|
export interface GetFileInput {
|
|
4492
4493
|
/**
|
|
@@ -4554,13 +4555,13 @@ export declare namespace GetFileOutput {
|
|
|
4554
4555
|
* <p>The specified folder does not exist. Either the folder name is not correct, or you did
|
|
4555
4556
|
* not enter the full path to the folder.</p>
|
|
4556
4557
|
*/
|
|
4557
|
-
export
|
|
4558
|
-
name: "FolderDoesNotExistException";
|
|
4559
|
-
$fault: "client";
|
|
4558
|
+
export declare class FolderDoesNotExistException extends __BaseException {
|
|
4559
|
+
readonly name: "FolderDoesNotExistException";
|
|
4560
|
+
readonly $fault: "client";
|
|
4560
4561
|
/**
|
|
4561
|
-
*
|
|
4562
|
+
* @internal
|
|
4562
4563
|
*/
|
|
4563
|
-
|
|
4564
|
+
constructor(opts: __ExceptionOptionType<FolderDoesNotExistException, __BaseException>);
|
|
4564
4565
|
}
|
|
4565
4566
|
export interface GetFolderInput {
|
|
4566
4567
|
/**
|
|
@@ -4870,24 +4871,24 @@ export declare namespace GetMergeConflictsOutput {
|
|
|
4870
4871
|
/**
|
|
4871
4872
|
* <p>The destination commit specifier is not valid. You must provide a valid branch name, tag, or full commit ID. </p>
|
|
4872
4873
|
*/
|
|
4873
|
-
export
|
|
4874
|
-
name: "InvalidDestinationCommitSpecifierException";
|
|
4875
|
-
$fault: "client";
|
|
4874
|
+
export declare class InvalidDestinationCommitSpecifierException extends __BaseException {
|
|
4875
|
+
readonly name: "InvalidDestinationCommitSpecifierException";
|
|
4876
|
+
readonly $fault: "client";
|
|
4876
4877
|
/**
|
|
4877
|
-
*
|
|
4878
|
+
* @internal
|
|
4878
4879
|
*/
|
|
4879
|
-
|
|
4880
|
+
constructor(opts: __ExceptionOptionType<InvalidDestinationCommitSpecifierException, __BaseException>);
|
|
4880
4881
|
}
|
|
4881
4882
|
/**
|
|
4882
4883
|
* <p>The source commit specifier is not valid. You must provide a valid branch name, tag, or full commit ID.</p>
|
|
4883
4884
|
*/
|
|
4884
|
-
export
|
|
4885
|
-
name: "InvalidSourceCommitSpecifierException";
|
|
4886
|
-
$fault: "client";
|
|
4885
|
+
export declare class InvalidSourceCommitSpecifierException extends __BaseException {
|
|
4886
|
+
readonly name: "InvalidSourceCommitSpecifierException";
|
|
4887
|
+
readonly $fault: "client";
|
|
4887
4888
|
/**
|
|
4888
|
-
*
|
|
4889
|
+
* @internal
|
|
4889
4890
|
*/
|
|
4890
|
-
|
|
4891
|
+
constructor(opts: __ExceptionOptionType<InvalidSourceCommitSpecifierException, __BaseException>);
|
|
4891
4892
|
}
|
|
4892
4893
|
export interface GetMergeOptionsInput {
|
|
4893
4894
|
/**
|
|
@@ -5258,24 +5259,24 @@ export declare namespace ListBranchesOutput {
|
|
|
5258
5259
|
/**
|
|
5259
5260
|
* <p>The Amazon Resource Name (ARN) is not valid. Make sure that you have provided the full ARN for the author of the pull request, and then try again.</p>
|
|
5260
5261
|
*/
|
|
5261
|
-
export
|
|
5262
|
-
name: "InvalidAuthorArnException";
|
|
5263
|
-
$fault: "client";
|
|
5262
|
+
export declare class InvalidAuthorArnException extends __BaseException {
|
|
5263
|
+
readonly name: "InvalidAuthorArnException";
|
|
5264
|
+
readonly $fault: "client";
|
|
5264
5265
|
/**
|
|
5265
|
-
*
|
|
5266
|
+
* @internal
|
|
5266
5267
|
*/
|
|
5267
|
-
|
|
5268
|
+
constructor(opts: __ExceptionOptionType<InvalidAuthorArnException, __BaseException>);
|
|
5268
5269
|
}
|
|
5269
5270
|
/**
|
|
5270
5271
|
* <p>The pull request status is not valid. The only valid values are <code>OPEN</code> and <code>CLOSED</code>.</p>
|
|
5271
5272
|
*/
|
|
5272
|
-
export
|
|
5273
|
-
name: "InvalidPullRequestStatusException";
|
|
5274
|
-
$fault: "client";
|
|
5273
|
+
export declare class InvalidPullRequestStatusException extends __BaseException {
|
|
5274
|
+
readonly name: "InvalidPullRequestStatusException";
|
|
5275
|
+
readonly $fault: "client";
|
|
5275
5276
|
/**
|
|
5276
|
-
*
|
|
5277
|
+
* @internal
|
|
5277
5278
|
*/
|
|
5278
|
-
|
|
5279
|
+
constructor(opts: __ExceptionOptionType<InvalidPullRequestStatusException, __BaseException>);
|
|
5279
5280
|
}
|
|
5280
5281
|
export interface ListPullRequestsInput {
|
|
5281
5282
|
/**
|
|
@@ -5326,22 +5327,22 @@ export declare namespace ListPullRequestsOutput {
|
|
|
5326
5327
|
/**
|
|
5327
5328
|
* <p>The specified sort order is not valid.</p>
|
|
5328
5329
|
*/
|
|
5329
|
-
export
|
|
5330
|
-
name: "InvalidOrderException";
|
|
5331
|
-
$fault: "client";
|
|
5330
|
+
export declare class InvalidOrderException extends __BaseException {
|
|
5331
|
+
readonly name: "InvalidOrderException";
|
|
5332
|
+
readonly $fault: "client";
|
|
5332
5333
|
/**
|
|
5333
|
-
*
|
|
5334
|
+
* @internal
|
|
5334
5335
|
*/
|
|
5335
|
-
|
|
5336
|
+
constructor(opts: __ExceptionOptionType<InvalidOrderException, __BaseException>);
|
|
5336
5337
|
}
|
|
5337
5338
|
/**
|
|
5338
5339
|
* <p>The specified sort by value is not valid.</p>
|
|
5339
5340
|
*/
|
|
5340
|
-
export
|
|
5341
|
-
name: "InvalidSortByException";
|
|
5342
|
-
$fault: "client";
|
|
5341
|
+
export declare class InvalidSortByException extends __BaseException {
|
|
5342
|
+
readonly name: "InvalidSortByException";
|
|
5343
|
+
readonly $fault: "client";
|
|
5343
5344
|
/**
|
|
5344
|
-
*
|
|
5345
|
+
* @internal
|
|
5345
5346
|
*/
|
|
5346
|
-
|
|
5347
|
+
constructor(opts: __ExceptionOptionType<InvalidSortByException, __BaseException>);
|
|
5347
5348
|
}
|