errors.go 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775
  1. // Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
  2. package codecommit
  3. const (
  4. // ErrCodeActorDoesNotExistException for service response error code
  5. // "ActorDoesNotExistException".
  6. //
  7. // The specified Amazon Resource Name (ARN) does not exist in the AWS account.
  8. ErrCodeActorDoesNotExistException = "ActorDoesNotExistException"
  9. // ErrCodeAuthorDoesNotExistException for service response error code
  10. // "AuthorDoesNotExistException".
  11. //
  12. // The specified Amazon Resource Name (ARN) does not exist in the AWS account.
  13. ErrCodeAuthorDoesNotExistException = "AuthorDoesNotExistException"
  14. // ErrCodeBeforeCommitIdAndAfterCommitIdAreSameException for service response error code
  15. // "BeforeCommitIdAndAfterCommitIdAreSameException".
  16. //
  17. // The before commit ID and the after commit ID are the same, which is not valid.
  18. // The before commit ID and the after commit ID must be different commit IDs.
  19. ErrCodeBeforeCommitIdAndAfterCommitIdAreSameException = "BeforeCommitIdAndAfterCommitIdAreSameException"
  20. // ErrCodeBlobIdDoesNotExistException for service response error code
  21. // "BlobIdDoesNotExistException".
  22. //
  23. // The specified blob does not exist.
  24. ErrCodeBlobIdDoesNotExistException = "BlobIdDoesNotExistException"
  25. // ErrCodeBlobIdRequiredException for service response error code
  26. // "BlobIdRequiredException".
  27. //
  28. // A blob ID is required but was not specified.
  29. ErrCodeBlobIdRequiredException = "BlobIdRequiredException"
  30. // ErrCodeBranchDoesNotExistException for service response error code
  31. // "BranchDoesNotExistException".
  32. //
  33. // The specified branch does not exist.
  34. ErrCodeBranchDoesNotExistException = "BranchDoesNotExistException"
  35. // ErrCodeBranchNameExistsException for service response error code
  36. // "BranchNameExistsException".
  37. //
  38. // The specified branch name already exists.
  39. ErrCodeBranchNameExistsException = "BranchNameExistsException"
  40. // ErrCodeBranchNameIsTagNameException for service response error code
  41. // "BranchNameIsTagNameException".
  42. //
  43. // The specified branch name is not valid because it is a tag name. Type the
  44. // name of a current branch in the repository. For a list of valid branch names,
  45. // use ListBranches.
  46. ErrCodeBranchNameIsTagNameException = "BranchNameIsTagNameException"
  47. // ErrCodeBranchNameRequiredException for service response error code
  48. // "BranchNameRequiredException".
  49. //
  50. // A branch name is required but was not specified.
  51. ErrCodeBranchNameRequiredException = "BranchNameRequiredException"
  52. // ErrCodeClientRequestTokenRequiredException for service response error code
  53. // "ClientRequestTokenRequiredException".
  54. //
  55. // A client request token is required. A client request token is an unique,
  56. // client-generated idempotency token that when provided in a request, ensures
  57. // the request cannot be repeated with a changed parameter. If a request is
  58. // received with the same parameters and a token is included, the request will
  59. // return information about the initial request that used that token.
  60. ErrCodeClientRequestTokenRequiredException = "ClientRequestTokenRequiredException"
  61. // ErrCodeCommentContentRequiredException for service response error code
  62. // "CommentContentRequiredException".
  63. //
  64. // The comment is empty. You must provide some content for a comment. The content
  65. // cannot be null.
  66. ErrCodeCommentContentRequiredException = "CommentContentRequiredException"
  67. // ErrCodeCommentContentSizeLimitExceededException for service response error code
  68. // "CommentContentSizeLimitExceededException".
  69. //
  70. // The comment is too large. Comments are limited to 1,000 characters.
  71. ErrCodeCommentContentSizeLimitExceededException = "CommentContentSizeLimitExceededException"
  72. // ErrCodeCommentDeletedException for service response error code
  73. // "CommentDeletedException".
  74. //
  75. // This comment has already been deleted. You cannot edit or delete a deleted
  76. // comment.
  77. ErrCodeCommentDeletedException = "CommentDeletedException"
  78. // ErrCodeCommentDoesNotExistException for service response error code
  79. // "CommentDoesNotExistException".
  80. //
  81. // No comment exists with the provided ID. Verify that you have provided the
  82. // correct ID, and then try again.
  83. ErrCodeCommentDoesNotExistException = "CommentDoesNotExistException"
  84. // ErrCodeCommentIdRequiredException for service response error code
  85. // "CommentIdRequiredException".
  86. //
  87. // The comment ID is missing or null. A comment ID is required.
  88. ErrCodeCommentIdRequiredException = "CommentIdRequiredException"
  89. // ErrCodeCommentNotCreatedByCallerException for service response error code
  90. // "CommentNotCreatedByCallerException".
  91. //
  92. // You cannot modify or delete this comment. Only comment authors can modify
  93. // or delete their comments.
  94. ErrCodeCommentNotCreatedByCallerException = "CommentNotCreatedByCallerException"
  95. // ErrCodeCommitDoesNotExistException for service response error code
  96. // "CommitDoesNotExistException".
  97. //
  98. // The specified commit does not exist or no commit was specified, and the specified
  99. // repository has no default branch.
  100. ErrCodeCommitDoesNotExistException = "CommitDoesNotExistException"
  101. // ErrCodeCommitIdDoesNotExistException for service response error code
  102. // "CommitIdDoesNotExistException".
  103. //
  104. // The specified commit ID does not exist.
  105. ErrCodeCommitIdDoesNotExistException = "CommitIdDoesNotExistException"
  106. // ErrCodeCommitIdRequiredException for service response error code
  107. // "CommitIdRequiredException".
  108. //
  109. // A commit ID was not specified.
  110. ErrCodeCommitIdRequiredException = "CommitIdRequiredException"
  111. // ErrCodeCommitMessageLengthExceededException for service response error code
  112. // "CommitMessageLengthExceededException".
  113. //
  114. // The commit message is too long. Provide a shorter string.
  115. ErrCodeCommitMessageLengthExceededException = "CommitMessageLengthExceededException"
  116. // ErrCodeCommitRequiredException for service response error code
  117. // "CommitRequiredException".
  118. //
  119. // A commit was not specified.
  120. ErrCodeCommitRequiredException = "CommitRequiredException"
  121. // ErrCodeDefaultBranchCannotBeDeletedException for service response error code
  122. // "DefaultBranchCannotBeDeletedException".
  123. //
  124. // The specified branch is the default branch for the repository, and cannot
  125. // be deleted. To delete this branch, you must first set another branch as the
  126. // default branch.
  127. ErrCodeDefaultBranchCannotBeDeletedException = "DefaultBranchCannotBeDeletedException"
  128. // ErrCodeDirectoryNameConflictsWithFileNameException for service response error code
  129. // "DirectoryNameConflictsWithFileNameException".
  130. //
  131. // A file cannot be added to the repository because the specified path name
  132. // has the same name as a file that already exists in this repository. Either
  133. // provide a different name for the file, or specify a different path for the
  134. // file.
  135. ErrCodeDirectoryNameConflictsWithFileNameException = "DirectoryNameConflictsWithFileNameException"
  136. // ErrCodeEncryptionIntegrityChecksFailedException for service response error code
  137. // "EncryptionIntegrityChecksFailedException".
  138. //
  139. // An encryption integrity check failed.
  140. ErrCodeEncryptionIntegrityChecksFailedException = "EncryptionIntegrityChecksFailedException"
  141. // ErrCodeEncryptionKeyAccessDeniedException for service response error code
  142. // "EncryptionKeyAccessDeniedException".
  143. //
  144. // An encryption key could not be accessed.
  145. ErrCodeEncryptionKeyAccessDeniedException = "EncryptionKeyAccessDeniedException"
  146. // ErrCodeEncryptionKeyDisabledException for service response error code
  147. // "EncryptionKeyDisabledException".
  148. //
  149. // The encryption key is disabled.
  150. ErrCodeEncryptionKeyDisabledException = "EncryptionKeyDisabledException"
  151. // ErrCodeEncryptionKeyNotFoundException for service response error code
  152. // "EncryptionKeyNotFoundException".
  153. //
  154. // No encryption key was found.
  155. ErrCodeEncryptionKeyNotFoundException = "EncryptionKeyNotFoundException"
  156. // ErrCodeEncryptionKeyUnavailableException for service response error code
  157. // "EncryptionKeyUnavailableException".
  158. //
  159. // The encryption key is not available.
  160. ErrCodeEncryptionKeyUnavailableException = "EncryptionKeyUnavailableException"
  161. // ErrCodeFileContentRequiredException for service response error code
  162. // "FileContentRequiredException".
  163. //
  164. // The file cannot be added because it is empty. Empty files cannot be added
  165. // to the repository with this API.
  166. ErrCodeFileContentRequiredException = "FileContentRequiredException"
  167. // ErrCodeFileContentSizeLimitExceededException for service response error code
  168. // "FileContentSizeLimitExceededException".
  169. //
  170. // The file cannot be added because it is too large. The maximum file size that
  171. // can be added using PutFile is 6 MB. For files larger than 6 MB but smaller
  172. // than 2 GB, add them using a Git client.
  173. ErrCodeFileContentSizeLimitExceededException = "FileContentSizeLimitExceededException"
  174. // ErrCodeFileDoesNotExistException for service response error code
  175. // "FileDoesNotExistException".
  176. //
  177. // The specified file does not exist. Verify that you have provided the correct
  178. // name of the file, including its full path and extension.
  179. ErrCodeFileDoesNotExistException = "FileDoesNotExistException"
  180. // ErrCodeFileNameConflictsWithDirectoryNameException for service response error code
  181. // "FileNameConflictsWithDirectoryNameException".
  182. //
  183. // A file cannot be added to the repository because the specified file name
  184. // has the same name as a directory in this repository. Either provide another
  185. // name for the file, or add the file in a directory that does not match the
  186. // file name.
  187. ErrCodeFileNameConflictsWithDirectoryNameException = "FileNameConflictsWithDirectoryNameException"
  188. // ErrCodeFileTooLargeException for service response error code
  189. // "FileTooLargeException".
  190. //
  191. // The specified file exceeds the file size limit for AWS CodeCommit. For more
  192. // information about limits in AWS CodeCommit, see AWS CodeCommit User Guide
  193. // (http://docs.aws.amazon.com/codecommit/latest/userguide/limits.html).
  194. ErrCodeFileTooLargeException = "FileTooLargeException"
  195. // ErrCodeFolderDoesNotExistException for service response error code
  196. // "FolderDoesNotExistException".
  197. //
  198. // The specified folder does not exist. Either the folder name is not correct,
  199. // or you did not provide the full path to the folder.
  200. ErrCodeFolderDoesNotExistException = "FolderDoesNotExistException"
  201. // ErrCodeIdempotencyParameterMismatchException for service response error code
  202. // "IdempotencyParameterMismatchException".
  203. //
  204. // The client request token is not valid. Either the token is not in a valid
  205. // format, or the token has been used in a previous request and cannot be re-used.
  206. ErrCodeIdempotencyParameterMismatchException = "IdempotencyParameterMismatchException"
  207. // ErrCodeInvalidActorArnException for service response error code
  208. // "InvalidActorArnException".
  209. //
  210. // The Amazon Resource Name (ARN) is not valid. Make sure that you have provided
  211. // the full ARN for the user who initiated the change for the pull request,
  212. // and then try again.
  213. ErrCodeInvalidActorArnException = "InvalidActorArnException"
  214. // ErrCodeInvalidAuthorArnException for service response error code
  215. // "InvalidAuthorArnException".
  216. //
  217. // The Amazon Resource Name (ARN) is not valid. Make sure that you have provided
  218. // the full ARN for the author of the pull request, and then try again.
  219. ErrCodeInvalidAuthorArnException = "InvalidAuthorArnException"
  220. // ErrCodeInvalidBlobIdException for service response error code
  221. // "InvalidBlobIdException".
  222. //
  223. // The specified blob is not valid.
  224. ErrCodeInvalidBlobIdException = "InvalidBlobIdException"
  225. // ErrCodeInvalidBranchNameException for service response error code
  226. // "InvalidBranchNameException".
  227. //
  228. // The specified reference name is not valid.
  229. ErrCodeInvalidBranchNameException = "InvalidBranchNameException"
  230. // ErrCodeInvalidClientRequestTokenException for service response error code
  231. // "InvalidClientRequestTokenException".
  232. //
  233. // The client request token is not valid.
  234. ErrCodeInvalidClientRequestTokenException = "InvalidClientRequestTokenException"
  235. // ErrCodeInvalidCommentIdException for service response error code
  236. // "InvalidCommentIdException".
  237. //
  238. // The comment ID is not in a valid format. Make sure that you have provided
  239. // the full comment ID.
  240. ErrCodeInvalidCommentIdException = "InvalidCommentIdException"
  241. // ErrCodeInvalidCommitException for service response error code
  242. // "InvalidCommitException".
  243. //
  244. // The specified commit is not valid.
  245. ErrCodeInvalidCommitException = "InvalidCommitException"
  246. // ErrCodeInvalidCommitIdException for service response error code
  247. // "InvalidCommitIdException".
  248. //
  249. // The specified commit ID is not valid.
  250. ErrCodeInvalidCommitIdException = "InvalidCommitIdException"
  251. // ErrCodeInvalidContinuationTokenException for service response error code
  252. // "InvalidContinuationTokenException".
  253. //
  254. // The specified continuation token is not valid.
  255. ErrCodeInvalidContinuationTokenException = "InvalidContinuationTokenException"
  256. // ErrCodeInvalidDeletionParameterException for service response error code
  257. // "InvalidDeletionParameterException".
  258. //
  259. // The specified deletion parameter is not valid.
  260. ErrCodeInvalidDeletionParameterException = "InvalidDeletionParameterException"
  261. // ErrCodeInvalidDescriptionException for service response error code
  262. // "InvalidDescriptionException".
  263. //
  264. // The pull request description is not valid. Descriptions are limited to 1,000
  265. // characters in length.
  266. ErrCodeInvalidDescriptionException = "InvalidDescriptionException"
  267. // ErrCodeInvalidDestinationCommitSpecifierException for service response error code
  268. // "InvalidDestinationCommitSpecifierException".
  269. //
  270. // The destination commit specifier is not valid. You must provide a valid branch
  271. // name, tag, or full commit ID.
  272. ErrCodeInvalidDestinationCommitSpecifierException = "InvalidDestinationCommitSpecifierException"
  273. // ErrCodeInvalidEmailException for service response error code
  274. // "InvalidEmailException".
  275. //
  276. // The specified email address either contains one or more characters that are
  277. // not allowed, or it exceeds the maximum number of characters allowed for an
  278. // email address.
  279. ErrCodeInvalidEmailException = "InvalidEmailException"
  280. // ErrCodeInvalidFileLocationException for service response error code
  281. // "InvalidFileLocationException".
  282. //
  283. // The location of the file is not valid. Make sure that you include the extension
  284. // of the file as well as the file name.
  285. ErrCodeInvalidFileLocationException = "InvalidFileLocationException"
  286. // ErrCodeInvalidFileModeException for service response error code
  287. // "InvalidFileModeException".
  288. //
  289. // The specified file mode permission is not valid. For a list of valid file
  290. // mode permissions, see PutFile.
  291. ErrCodeInvalidFileModeException = "InvalidFileModeException"
  292. // ErrCodeInvalidFilePositionException for service response error code
  293. // "InvalidFilePositionException".
  294. //
  295. // The position is not valid. Make sure that the line number exists in the version
  296. // of the file you want to comment on.
  297. ErrCodeInvalidFilePositionException = "InvalidFilePositionException"
  298. // ErrCodeInvalidMaxResultsException for service response error code
  299. // "InvalidMaxResultsException".
  300. //
  301. // The specified number of maximum results is not valid.
  302. ErrCodeInvalidMaxResultsException = "InvalidMaxResultsException"
  303. // ErrCodeInvalidMergeOptionException for service response error code
  304. // "InvalidMergeOptionException".
  305. //
  306. // The specified merge option is not valid. The only valid value is FAST_FORWARD_MERGE.
  307. ErrCodeInvalidMergeOptionException = "InvalidMergeOptionException"
  308. // ErrCodeInvalidOrderException for service response error code
  309. // "InvalidOrderException".
  310. //
  311. // The specified sort order is not valid.
  312. ErrCodeInvalidOrderException = "InvalidOrderException"
  313. // ErrCodeInvalidParentCommitIdException for service response error code
  314. // "InvalidParentCommitIdException".
  315. //
  316. // The parent commit ID is not valid. The commit ID cannot be empty, and must
  317. // match the head commit ID for the branch of the repository where you want
  318. // to add or update a file.
  319. ErrCodeInvalidParentCommitIdException = "InvalidParentCommitIdException"
  320. // ErrCodeInvalidPathException for service response error code
  321. // "InvalidPathException".
  322. //
  323. // The specified path is not valid.
  324. ErrCodeInvalidPathException = "InvalidPathException"
  325. // ErrCodeInvalidPullRequestEventTypeException for service response error code
  326. // "InvalidPullRequestEventTypeException".
  327. //
  328. // The pull request event type is not valid.
  329. ErrCodeInvalidPullRequestEventTypeException = "InvalidPullRequestEventTypeException"
  330. // ErrCodeInvalidPullRequestIdException for service response error code
  331. // "InvalidPullRequestIdException".
  332. //
  333. // The pull request ID is not valid. Make sure that you have provided the full
  334. // ID and that the pull request is in the specified repository, and then try
  335. // again.
  336. ErrCodeInvalidPullRequestIdException = "InvalidPullRequestIdException"
  337. // ErrCodeInvalidPullRequestStatusException for service response error code
  338. // "InvalidPullRequestStatusException".
  339. //
  340. // The pull request status is not valid. The only valid values are OPEN and
  341. // CLOSED.
  342. ErrCodeInvalidPullRequestStatusException = "InvalidPullRequestStatusException"
  343. // ErrCodeInvalidPullRequestStatusUpdateException for service response error code
  344. // "InvalidPullRequestStatusUpdateException".
  345. //
  346. // The pull request status update is not valid. The only valid update is from
  347. // OPEN to CLOSED.
  348. ErrCodeInvalidPullRequestStatusUpdateException = "InvalidPullRequestStatusUpdateException"
  349. // ErrCodeInvalidReferenceNameException for service response error code
  350. // "InvalidReferenceNameException".
  351. //
  352. // The specified reference name format is not valid. Reference names must conform
  353. // to the Git references format, for example refs/heads/master. For more information,
  354. // see Git Internals - Git References (https://git-scm.com/book/en/v2/Git-Internals-Git-References)
  355. // or consult your Git documentation.
  356. ErrCodeInvalidReferenceNameException = "InvalidReferenceNameException"
  357. // ErrCodeInvalidRelativeFileVersionEnumException for service response error code
  358. // "InvalidRelativeFileVersionEnumException".
  359. //
  360. // Either the enum is not in a valid format, or the specified file version enum
  361. // is not valid in respect to the current file version.
  362. ErrCodeInvalidRelativeFileVersionEnumException = "InvalidRelativeFileVersionEnumException"
  363. // ErrCodeInvalidRepositoryDescriptionException for service response error code
  364. // "InvalidRepositoryDescriptionException".
  365. //
  366. // The specified repository description is not valid.
  367. ErrCodeInvalidRepositoryDescriptionException = "InvalidRepositoryDescriptionException"
  368. // ErrCodeInvalidRepositoryNameException for service response error code
  369. // "InvalidRepositoryNameException".
  370. //
  371. // At least one specified repository name is not valid.
  372. //
  373. // This exception only occurs when a specified repository name is not valid.
  374. // Other exceptions occur when a required repository parameter is missing, or
  375. // when a specified repository does not exist.
  376. ErrCodeInvalidRepositoryNameException = "InvalidRepositoryNameException"
  377. // ErrCodeInvalidRepositoryTriggerBranchNameException for service response error code
  378. // "InvalidRepositoryTriggerBranchNameException".
  379. //
  380. // One or more branch names specified for the trigger is not valid.
  381. ErrCodeInvalidRepositoryTriggerBranchNameException = "InvalidRepositoryTriggerBranchNameException"
  382. // ErrCodeInvalidRepositoryTriggerCustomDataException for service response error code
  383. // "InvalidRepositoryTriggerCustomDataException".
  384. //
  385. // The custom data provided for the trigger is not valid.
  386. ErrCodeInvalidRepositoryTriggerCustomDataException = "InvalidRepositoryTriggerCustomDataException"
  387. // ErrCodeInvalidRepositoryTriggerDestinationArnException for service response error code
  388. // "InvalidRepositoryTriggerDestinationArnException".
  389. //
  390. // The Amazon Resource Name (ARN) for the trigger is not valid for the specified
  391. // destination. The most common reason for this error is that the ARN does not
  392. // meet the requirements for the service type.
  393. ErrCodeInvalidRepositoryTriggerDestinationArnException = "InvalidRepositoryTriggerDestinationArnException"
  394. // ErrCodeInvalidRepositoryTriggerEventsException for service response error code
  395. // "InvalidRepositoryTriggerEventsException".
  396. //
  397. // One or more events specified for the trigger is not valid. Check to make
  398. // sure that all events specified match the requirements for allowed events.
  399. ErrCodeInvalidRepositoryTriggerEventsException = "InvalidRepositoryTriggerEventsException"
  400. // ErrCodeInvalidRepositoryTriggerNameException for service response error code
  401. // "InvalidRepositoryTriggerNameException".
  402. //
  403. // The name of the trigger is not valid.
  404. ErrCodeInvalidRepositoryTriggerNameException = "InvalidRepositoryTriggerNameException"
  405. // ErrCodeInvalidRepositoryTriggerRegionException for service response error code
  406. // "InvalidRepositoryTriggerRegionException".
  407. //
  408. // The region for the trigger target does not match the region for the repository.
  409. // Triggers must be created in the same region as the target for the trigger.
  410. ErrCodeInvalidRepositoryTriggerRegionException = "InvalidRepositoryTriggerRegionException"
  411. // ErrCodeInvalidSortByException for service response error code
  412. // "InvalidSortByException".
  413. //
  414. // The specified sort by value is not valid.
  415. ErrCodeInvalidSortByException = "InvalidSortByException"
  416. // ErrCodeInvalidSourceCommitSpecifierException for service response error code
  417. // "InvalidSourceCommitSpecifierException".
  418. //
  419. // The source commit specifier is not valid. You must provide a valid branch
  420. // name, tag, or full commit ID.
  421. ErrCodeInvalidSourceCommitSpecifierException = "InvalidSourceCommitSpecifierException"
  422. // ErrCodeInvalidTargetException for service response error code
  423. // "InvalidTargetException".
  424. //
  425. // The target for the pull request is not valid. A target must contain the full
  426. // values for the repository name, source branch, and destination branch for
  427. // the pull request.
  428. ErrCodeInvalidTargetException = "InvalidTargetException"
  429. // ErrCodeInvalidTargetsException for service response error code
  430. // "InvalidTargetsException".
  431. //
  432. // The targets for the pull request is not valid or not in a valid format. Targets
  433. // are a list of target objects. Each target object must contain the full values
  434. // for the repository name, source branch, and destination branch for a pull
  435. // request.
  436. ErrCodeInvalidTargetsException = "InvalidTargetsException"
  437. // ErrCodeInvalidTitleException for service response error code
  438. // "InvalidTitleException".
  439. //
  440. // The title of the pull request is not valid. Pull request titles cannot exceed
  441. // 100 characters in length.
  442. ErrCodeInvalidTitleException = "InvalidTitleException"
  443. // ErrCodeManualMergeRequiredException for service response error code
  444. // "ManualMergeRequiredException".
  445. //
  446. // The pull request cannot be merged automatically into the destination branch.
  447. // You must manually merge the branches and resolve any conflicts.
  448. ErrCodeManualMergeRequiredException = "ManualMergeRequiredException"
  449. // ErrCodeMaximumBranchesExceededException for service response error code
  450. // "MaximumBranchesExceededException".
  451. //
  452. // The number of branches for the trigger was exceeded.
  453. ErrCodeMaximumBranchesExceededException = "MaximumBranchesExceededException"
  454. // ErrCodeMaximumOpenPullRequestsExceededException for service response error code
  455. // "MaximumOpenPullRequestsExceededException".
  456. //
  457. // You cannot create the pull request because the repository has too many open
  458. // pull requests. The maximum number of open pull requests for a repository
  459. // is 1,000. Close one or more open pull requests, and then try again.
  460. ErrCodeMaximumOpenPullRequestsExceededException = "MaximumOpenPullRequestsExceededException"
  461. // ErrCodeMaximumRepositoryNamesExceededException for service response error code
  462. // "MaximumRepositoryNamesExceededException".
  463. //
  464. // The maximum number of allowed repository names was exceeded. Currently, this
  465. // number is 25.
  466. ErrCodeMaximumRepositoryNamesExceededException = "MaximumRepositoryNamesExceededException"
  467. // ErrCodeMaximumRepositoryTriggersExceededException for service response error code
  468. // "MaximumRepositoryTriggersExceededException".
  469. //
  470. // The number of triggers allowed for the repository was exceeded.
  471. ErrCodeMaximumRepositoryTriggersExceededException = "MaximumRepositoryTriggersExceededException"
  472. // ErrCodeMergeOptionRequiredException for service response error code
  473. // "MergeOptionRequiredException".
  474. //
  475. // A merge option or stategy is required, and none was provided.
  476. ErrCodeMergeOptionRequiredException = "MergeOptionRequiredException"
  477. // ErrCodeMultipleRepositoriesInPullRequestException for service response error code
  478. // "MultipleRepositoriesInPullRequestException".
  479. //
  480. // You cannot include more than one repository in a pull request. Make sure
  481. // you have specified only one repository name in your request, and then try
  482. // again.
  483. ErrCodeMultipleRepositoriesInPullRequestException = "MultipleRepositoriesInPullRequestException"
  484. // ErrCodeNameLengthExceededException for service response error code
  485. // "NameLengthExceededException".
  486. //
  487. // The user name is not valid because it has exceeded the character limit for
  488. // file names. File names, including the path to the file, cannot exceed the
  489. // character limit.
  490. ErrCodeNameLengthExceededException = "NameLengthExceededException"
  491. // ErrCodeParentCommitDoesNotExistException for service response error code
  492. // "ParentCommitDoesNotExistException".
  493. //
  494. // The parent commit ID is not valid because it does not exist. The specified
  495. // parent commit ID does not exist in the specified branch of the repository.
  496. ErrCodeParentCommitDoesNotExistException = "ParentCommitDoesNotExistException"
  497. // ErrCodeParentCommitIdOutdatedException for service response error code
  498. // "ParentCommitIdOutdatedException".
  499. //
  500. // The file could not be added because the provided parent commit ID is not
  501. // the current tip of the specified branch. To view the full commit ID of the
  502. // current head of the branch, use GetBranch.
  503. ErrCodeParentCommitIdOutdatedException = "ParentCommitIdOutdatedException"
  504. // ErrCodeParentCommitIdRequiredException for service response error code
  505. // "ParentCommitIdRequiredException".
  506. //
  507. // A parent commit ID is required. To view the full commit ID of a branch in
  508. // a repository, use GetBranch or a Git command (for example, git pull or git
  509. // log).
  510. ErrCodeParentCommitIdRequiredException = "ParentCommitIdRequiredException"
  511. // ErrCodePathDoesNotExistException for service response error code
  512. // "PathDoesNotExistException".
  513. //
  514. // The specified path does not exist.
  515. ErrCodePathDoesNotExistException = "PathDoesNotExistException"
  516. // ErrCodePathRequiredException for service response error code
  517. // "PathRequiredException".
  518. //
  519. // The folderPath for a location cannot be null.
  520. ErrCodePathRequiredException = "PathRequiredException"
  521. // ErrCodePullRequestAlreadyClosedException for service response error code
  522. // "PullRequestAlreadyClosedException".
  523. //
  524. // The pull request status cannot be updated because it is already closed.
  525. ErrCodePullRequestAlreadyClosedException = "PullRequestAlreadyClosedException"
  526. // ErrCodePullRequestDoesNotExistException for service response error code
  527. // "PullRequestDoesNotExistException".
  528. //
  529. // The pull request ID could not be found. Make sure that you have specified
  530. // the correct repository name and pull request ID, and then try again.
  531. ErrCodePullRequestDoesNotExistException = "PullRequestDoesNotExistException"
  532. // ErrCodePullRequestIdRequiredException for service response error code
  533. // "PullRequestIdRequiredException".
  534. //
  535. // A pull request ID is required, but none was provided.
  536. ErrCodePullRequestIdRequiredException = "PullRequestIdRequiredException"
  537. // ErrCodePullRequestStatusRequiredException for service response error code
  538. // "PullRequestStatusRequiredException".
  539. //
  540. // A pull request status is required, but none was provided.
  541. ErrCodePullRequestStatusRequiredException = "PullRequestStatusRequiredException"
  542. // ErrCodeReferenceDoesNotExistException for service response error code
  543. // "ReferenceDoesNotExistException".
  544. //
  545. // The specified reference does not exist. You must provide a full commit ID.
  546. ErrCodeReferenceDoesNotExistException = "ReferenceDoesNotExistException"
  547. // ErrCodeReferenceNameRequiredException for service response error code
  548. // "ReferenceNameRequiredException".
  549. //
  550. // A reference name is required, but none was provided.
  551. ErrCodeReferenceNameRequiredException = "ReferenceNameRequiredException"
  552. // ErrCodeReferenceTypeNotSupportedException for service response error code
  553. // "ReferenceTypeNotSupportedException".
  554. //
  555. // The specified reference is not a supported type.
  556. ErrCodeReferenceTypeNotSupportedException = "ReferenceTypeNotSupportedException"
  557. // ErrCodeRepositoryDoesNotExistException for service response error code
  558. // "RepositoryDoesNotExistException".
  559. //
  560. // The specified repository does not exist.
  561. ErrCodeRepositoryDoesNotExistException = "RepositoryDoesNotExistException"
  562. // ErrCodeRepositoryLimitExceededException for service response error code
  563. // "RepositoryLimitExceededException".
  564. //
  565. // A repository resource limit was exceeded.
  566. ErrCodeRepositoryLimitExceededException = "RepositoryLimitExceededException"
  567. // ErrCodeRepositoryNameExistsException for service response error code
  568. // "RepositoryNameExistsException".
  569. //
  570. // The specified repository name already exists.
  571. ErrCodeRepositoryNameExistsException = "RepositoryNameExistsException"
  572. // ErrCodeRepositoryNameRequiredException for service response error code
  573. // "RepositoryNameRequiredException".
  574. //
  575. // A repository name is required but was not specified.
  576. ErrCodeRepositoryNameRequiredException = "RepositoryNameRequiredException"
  577. // ErrCodeRepositoryNamesRequiredException for service response error code
  578. // "RepositoryNamesRequiredException".
  579. //
  580. // A repository names object is required but was not specified.
  581. ErrCodeRepositoryNamesRequiredException = "RepositoryNamesRequiredException"
  582. // ErrCodeRepositoryNotAssociatedWithPullRequestException for service response error code
  583. // "RepositoryNotAssociatedWithPullRequestException".
  584. //
  585. // The repository does not contain any pull requests with that pull request
  586. // ID. Check to make sure you have provided the correct repository name for
  587. // the pull request.
  588. ErrCodeRepositoryNotAssociatedWithPullRequestException = "RepositoryNotAssociatedWithPullRequestException"
  589. // ErrCodeRepositoryTriggerBranchNameListRequiredException for service response error code
  590. // "RepositoryTriggerBranchNameListRequiredException".
  591. //
  592. // At least one branch name is required but was not specified in the trigger
  593. // configuration.
  594. ErrCodeRepositoryTriggerBranchNameListRequiredException = "RepositoryTriggerBranchNameListRequiredException"
  595. // ErrCodeRepositoryTriggerDestinationArnRequiredException for service response error code
  596. // "RepositoryTriggerDestinationArnRequiredException".
  597. //
  598. // A destination ARN for the target service for the trigger is required but
  599. // was not specified.
  600. ErrCodeRepositoryTriggerDestinationArnRequiredException = "RepositoryTriggerDestinationArnRequiredException"
  601. // ErrCodeRepositoryTriggerEventsListRequiredException for service response error code
  602. // "RepositoryTriggerEventsListRequiredException".
  603. //
  604. // At least one event for the trigger is required but was not specified.
  605. ErrCodeRepositoryTriggerEventsListRequiredException = "RepositoryTriggerEventsListRequiredException"
  606. // ErrCodeRepositoryTriggerNameRequiredException for service response error code
  607. // "RepositoryTriggerNameRequiredException".
  608. //
  609. // A name for the trigger is required but was not specified.
  610. ErrCodeRepositoryTriggerNameRequiredException = "RepositoryTriggerNameRequiredException"
  611. // ErrCodeRepositoryTriggersListRequiredException for service response error code
  612. // "RepositoryTriggersListRequiredException".
  613. //
  614. // The list of triggers for the repository is required but was not specified.
  615. ErrCodeRepositoryTriggersListRequiredException = "RepositoryTriggersListRequiredException"
  616. // ErrCodeSameFileContentException for service response error code
  617. // "SameFileContentException".
  618. //
  619. // The file was not added or updated because the content of the file is exactly
  620. // the same as the content of that file in the repository and branch that you
  621. // specified.
  622. ErrCodeSameFileContentException = "SameFileContentException"
  623. // ErrCodeSourceAndDestinationAreSameException for service response error code
  624. // "SourceAndDestinationAreSameException".
  625. //
  626. // The source branch and the destination branch for the pull request are the
  627. // same. You must specify different branches for the source and destination.
  628. ErrCodeSourceAndDestinationAreSameException = "SourceAndDestinationAreSameException"
  629. // ErrCodeTargetRequiredException for service response error code
  630. // "TargetRequiredException".
  631. //
  632. // A pull request target is required. It cannot be empty or null. A pull request
  633. // target must contain the full values for the repository name, source branch,
  634. // and destination branch for the pull request.
  635. ErrCodeTargetRequiredException = "TargetRequiredException"
  636. // ErrCodeTargetsRequiredException for service response error code
  637. // "TargetsRequiredException".
  638. //
  639. // An array of target objects is required. It cannot be empty or null.
  640. ErrCodeTargetsRequiredException = "TargetsRequiredException"
  641. // ErrCodeTipOfSourceReferenceIsDifferentException for service response error code
  642. // "TipOfSourceReferenceIsDifferentException".
  643. //
  644. // The tip of the source branch in the destination repository does not match
  645. // the tip of the source branch specified in your request. The pull request
  646. // might have been updated. Make sure that you have the latest changes.
  647. ErrCodeTipOfSourceReferenceIsDifferentException = "TipOfSourceReferenceIsDifferentException"
  648. // ErrCodeTipsDivergenceExceededException for service response error code
  649. // "TipsDivergenceExceededException".
  650. //
  651. // The divergence between the tips of the provided commit specifiers is too
  652. // great to determine whether there might be any merge conflicts. Locally compare
  653. // the specifiers using git diff or a diff tool.
  654. ErrCodeTipsDivergenceExceededException = "TipsDivergenceExceededException"
  655. // ErrCodeTitleRequiredException for service response error code
  656. // "TitleRequiredException".
  657. //
  658. // A pull request title is required. It cannot be empty or null.
  659. ErrCodeTitleRequiredException = "TitleRequiredException"
  660. )