@aws-sdk/client-codecommit 3.391.0 → 3.398.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.
Files changed (130) hide show
  1. package/README.md +30 -32
  2. package/dist-cjs/CodeCommit.js +2 -0
  3. package/dist-cjs/CodeCommitClient.js +4 -2
  4. package/dist-cjs/commands/ListFileCommitHistoryCommand.js +46 -0
  5. package/dist-cjs/commands/index.js +1 -0
  6. package/dist-cjs/endpoint/ruleset.js +3 -3
  7. package/dist-cjs/extensionConfiguration.js +2 -0
  8. package/dist-cjs/models/models_0.js +1 -27
  9. package/dist-cjs/models/models_1.js +27 -1
  10. package/dist-cjs/pagination/ListFileCommitHistoryPaginator.js +29 -0
  11. package/dist-cjs/pagination/index.js +1 -0
  12. package/dist-cjs/protocols/Aws_json1_1.js +85 -6
  13. package/dist-cjs/runtimeConfig.shared.js +1 -0
  14. package/dist-cjs/runtimeExtensions.js +16 -0
  15. package/dist-es/CodeCommit.js +2 -0
  16. package/dist-es/CodeCommitClient.js +4 -2
  17. package/dist-es/commands/ListFileCommitHistoryCommand.js +42 -0
  18. package/dist-es/commands/index.js +1 -0
  19. package/dist-es/endpoint/ruleset.js +3 -3
  20. package/dist-es/extensionConfiguration.js +1 -0
  21. package/dist-es/models/models_0.js +0 -24
  22. package/dist-es/models/models_1.js +24 -0
  23. package/dist-es/pagination/ListFileCommitHistoryPaginator.js +25 -0
  24. package/dist-es/pagination/index.js +1 -0
  25. package/dist-es/protocols/Aws_json1_1.js +79 -2
  26. package/dist-es/runtimeConfig.shared.js +1 -0
  27. package/dist-es/runtimeExtensions.js +12 -0
  28. package/dist-types/CodeCommit.d.ts +100 -109
  29. package/dist-types/CodeCommitClient.d.ts +102 -112
  30. package/dist-types/commands/AssociateApprovalRuleTemplateWithRepositoryCommand.d.ts +4 -6
  31. package/dist-types/commands/BatchAssociateApprovalRuleTemplateWithRepositoriesCommand.d.ts +3 -4
  32. package/dist-types/commands/BatchDescribeMergeConflictsCommand.d.ts +12 -13
  33. package/dist-types/commands/BatchDisassociateApprovalRuleTemplateFromRepositoriesCommand.d.ts +3 -4
  34. package/dist-types/commands/BatchGetCommitsCommand.d.ts +1 -2
  35. package/dist-types/commands/BatchGetRepositoriesCommand.d.ts +2 -3
  36. package/dist-types/commands/CreateApprovalRuleTemplateCommand.d.ts +7 -9
  37. package/dist-types/commands/CreateBranchCommand.d.ts +3 -3
  38. package/dist-types/commands/CreateCommitCommand.d.ts +6 -7
  39. package/dist-types/commands/CreatePullRequestCommand.d.ts +4 -5
  40. package/dist-types/commands/CreateRepositoryCommand.d.ts +2 -3
  41. package/dist-types/commands/CreateUnreferencedMergeCommitCommand.d.ts +8 -9
  42. package/dist-types/commands/DeleteApprovalRuleTemplateCommand.d.ts +2 -3
  43. package/dist-types/commands/DeleteBranchCommand.d.ts +1 -2
  44. package/dist-types/commands/DeleteFileCommand.d.ts +1 -2
  45. package/dist-types/commands/DeleteRepositoryCommand.d.ts +2 -3
  46. package/dist-types/commands/DescribeMergeConflictsCommand.d.ts +12 -13
  47. package/dist-types/commands/DescribePullRequestEventsCommand.d.ts +7 -7
  48. package/dist-types/commands/DisassociateApprovalRuleTemplateFromRepositoryCommand.d.ts +4 -6
  49. package/dist-types/commands/GetApprovalRuleTemplateCommand.d.ts +3 -4
  50. package/dist-types/commands/GetBlobCommand.d.ts +3 -4
  51. package/dist-types/commands/GetBranchCommand.d.ts +1 -2
  52. package/dist-types/commands/GetCommentCommand.d.ts +1 -1
  53. package/dist-types/commands/GetCommentsForComparedCommitCommand.d.ts +3 -4
  54. package/dist-types/commands/GetCommentsForPullRequestCommand.d.ts +3 -4
  55. package/dist-types/commands/GetCommitCommand.d.ts +1 -2
  56. package/dist-types/commands/GetDifferencesCommand.d.ts +2 -3
  57. package/dist-types/commands/GetFileCommand.d.ts +4 -5
  58. package/dist-types/commands/GetFolderCommand.d.ts +3 -4
  59. package/dist-types/commands/GetMergeCommitCommand.d.ts +3 -4
  60. package/dist-types/commands/GetMergeConflictsCommand.d.ts +12 -13
  61. package/dist-types/commands/GetMergeOptionsCommand.d.ts +4 -5
  62. package/dist-types/commands/GetPullRequestApprovalStatesCommand.d.ts +1 -1
  63. package/dist-types/commands/GetPullRequestCommand.d.ts +2 -2
  64. package/dist-types/commands/GetRepositoryCommand.d.ts +2 -4
  65. package/dist-types/commands/GetRepositoryTriggersCommand.d.ts +2 -3
  66. package/dist-types/commands/ListApprovalRuleTemplatesCommand.d.ts +2 -2
  67. package/dist-types/commands/ListAssociatedApprovalRuleTemplatesForRepositoryCommand.d.ts +1 -2
  68. package/dist-types/commands/ListBranchesCommand.d.ts +1 -2
  69. package/dist-types/commands/ListFileCommitHistoryCommand.d.ts +153 -0
  70. package/dist-types/commands/ListPullRequestsCommand.d.ts +5 -5
  71. package/dist-types/commands/ListRepositoriesCommand.d.ts +2 -2
  72. package/dist-types/commands/ListRepositoriesForApprovalRuleTemplateCommand.d.ts +3 -4
  73. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -8
  74. package/dist-types/commands/MergeBranchesByFastForwardCommand.d.ts +1 -2
  75. package/dist-types/commands/MergeBranchesBySquashCommand.d.ts +6 -7
  76. package/dist-types/commands/MergeBranchesByThreeWayCommand.d.ts +6 -7
  77. package/dist-types/commands/MergePullRequestByFastForwardCommand.d.ts +3 -4
  78. package/dist-types/commands/MergePullRequestBySquashCommand.d.ts +8 -9
  79. package/dist-types/commands/MergePullRequestByThreeWayCommand.d.ts +8 -9
  80. package/dist-types/commands/OverridePullRequestApprovalRulesCommand.d.ts +1 -1
  81. package/dist-types/commands/PostCommentForComparedCommitCommand.d.ts +4 -5
  82. package/dist-types/commands/PostCommentForPullRequestCommand.d.ts +4 -5
  83. package/dist-types/commands/PostCommentReplyCommand.d.ts +1 -1
  84. package/dist-types/commands/PutCommentReactionCommand.d.ts +1 -1
  85. package/dist-types/commands/PutFileCommand.d.ts +3 -4
  86. package/dist-types/commands/PutRepositoryTriggersCommand.d.ts +4 -5
  87. package/dist-types/commands/TagResourceCommand.d.ts +8 -9
  88. package/dist-types/commands/TestRepositoryTriggersCommand.d.ts +4 -5
  89. package/dist-types/commands/UntagResourceCommand.d.ts +7 -9
  90. package/dist-types/commands/UpdateApprovalRuleTemplateContentCommand.d.ts +3 -4
  91. package/dist-types/commands/UpdateApprovalRuleTemplateDescriptionCommand.d.ts +5 -7
  92. package/dist-types/commands/UpdateApprovalRuleTemplateNameCommand.d.ts +4 -5
  93. package/dist-types/commands/UpdateCommentCommand.d.ts +1 -1
  94. package/dist-types/commands/UpdateDefaultBranchCommand.d.ts +2 -3
  95. package/dist-types/commands/UpdatePullRequestApprovalStateCommand.d.ts +1 -1
  96. package/dist-types/commands/UpdatePullRequestDescriptionCommand.d.ts +2 -2
  97. package/dist-types/commands/UpdatePullRequestStatusCommand.d.ts +3 -3
  98. package/dist-types/commands/UpdatePullRequestTitleCommand.d.ts +2 -2
  99. package/dist-types/commands/UpdateRepositoryDescriptionCommand.d.ts +2 -3
  100. package/dist-types/commands/UpdateRepositoryNameCommand.d.ts +4 -5
  101. package/dist-types/commands/index.d.ts +1 -0
  102. package/dist-types/extensionConfiguration.d.ts +6 -0
  103. package/dist-types/index.d.ts +93 -109
  104. package/dist-types/models/models_0.d.ts +153 -114
  105. package/dist-types/models/models_1.d.ts +68 -30
  106. package/dist-types/pagination/ListFileCommitHistoryPaginator.d.ts +7 -0
  107. package/dist-types/pagination/index.d.ts +1 -0
  108. package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
  109. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  110. package/dist-types/runtimeConfig.d.ts +1 -0
  111. package/dist-types/runtimeConfig.native.d.ts +1 -0
  112. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  113. package/dist-types/runtimeExtensions.d.ts +17 -0
  114. package/dist-types/ts3.4/CodeCommit.d.ts +17 -0
  115. package/dist-types/ts3.4/CodeCommitClient.d.ts +9 -0
  116. package/dist-types/ts3.4/commands/ListFileCommitHistoryCommand.d.ts +42 -0
  117. package/dist-types/ts3.4/commands/ListPullRequestsCommand.d.ts +2 -4
  118. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  119. package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -0
  120. package/dist-types/ts3.4/models/models_0.d.ts +17 -18
  121. package/dist-types/ts3.4/models/models_1.d.ts +18 -0
  122. package/dist-types/ts3.4/pagination/ListFileCommitHistoryPaginator.d.ts +11 -0
  123. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  124. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +12 -0
  125. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -0
  126. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -0
  127. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
  128. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  129. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  130. package/package.json +29 -29
@@ -45,6 +45,7 @@ import { GetRepositoryTriggersCommandInput, GetRepositoryTriggersCommandOutput }
45
45
  import { ListApprovalRuleTemplatesCommandInput, ListApprovalRuleTemplatesCommandOutput } from "./commands/ListApprovalRuleTemplatesCommand";
46
46
  import { ListAssociatedApprovalRuleTemplatesForRepositoryCommandInput, ListAssociatedApprovalRuleTemplatesForRepositoryCommandOutput } from "./commands/ListAssociatedApprovalRuleTemplatesForRepositoryCommand";
47
47
  import { ListBranchesCommandInput, ListBranchesCommandOutput } from "./commands/ListBranchesCommand";
48
+ import { ListFileCommitHistoryCommandInput, ListFileCommitHistoryCommandOutput } from "./commands/ListFileCommitHistoryCommand";
48
49
  import { ListPullRequestsCommandInput, ListPullRequestsCommandOutput } from "./commands/ListPullRequestsCommand";
49
50
  import { ListRepositoriesCommandInput, ListRepositoriesCommandOutput } from "./commands/ListRepositoriesCommand";
50
51
  import { ListRepositoriesForApprovalRuleTemplateCommandInput, ListRepositoriesForApprovalRuleTemplateCommandOutput } from "./commands/ListRepositoriesForApprovalRuleTemplateCommand";
@@ -348,6 +349,12 @@ export interface CodeCommit {
348
349
  listBranches(args: ListBranchesCommandInput, options?: __HttpHandlerOptions): Promise<ListBranchesCommandOutput>;
349
350
  listBranches(args: ListBranchesCommandInput, cb: (err: any, data?: ListBranchesCommandOutput) => void): void;
350
351
  listBranches(args: ListBranchesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBranchesCommandOutput) => void): void;
352
+ /**
353
+ * @see {@link ListFileCommitHistoryCommand}
354
+ */
355
+ listFileCommitHistory(args: ListFileCommitHistoryCommandInput, options?: __HttpHandlerOptions): Promise<ListFileCommitHistoryCommandOutput>;
356
+ listFileCommitHistory(args: ListFileCommitHistoryCommandInput, cb: (err: any, data?: ListFileCommitHistoryCommandOutput) => void): void;
357
+ listFileCommitHistory(args: ListFileCommitHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFileCommitHistoryCommandOutput) => void): void;
351
358
  /**
352
359
  * @see {@link ListPullRequestsCommand}
353
360
  */
@@ -543,79 +550,76 @@ export interface CodeCommit {
543
550
  }
544
551
  /**
545
552
  * @public
546
- * <fullname>AWS CodeCommit</fullname>
547
- * <p>This is the <i>AWS CodeCommit API Reference</i>. This reference provides descriptions of the operations and data types for
548
- * AWS CodeCommit API along with usage examples.</p>
549
- * <p>You can use the AWS CodeCommit API to work with the following objects:</p>
550
- *
551
- * <p>Repositories, by calling the following:</p>
552
- * <ul>
553
+ * <fullname>CodeCommit</fullname>
554
+ * <p>This is the <i>CodeCommit API Reference</i>. This reference provides descriptions of the operations and data types for
555
+ * CodeCommit API along with usage examples.</p>
556
+ * <p>You can use the CodeCommit API to work with the following objects:</p>
557
+ * <p>Repositories, by calling the following:</p>
558
+ * <ul>
553
559
  * <li>
554
- * <p>
555
- * <a>BatchGetRepositories</a>, which returns information about one or more repositories associated with your AWS account.</p>
560
+ * <p>
561
+ * <a>BatchGetRepositories</a>, which returns information about one or more repositories associated with your Amazon Web Services account.</p>
556
562
  * </li>
557
563
  * <li>
558
- * <p>
559
- * <a>CreateRepository</a>, which creates an AWS CodeCommit repository.</p>
564
+ * <p>
565
+ * <a>CreateRepository</a>, which creates an CodeCommit repository.</p>
560
566
  * </li>
561
567
  * <li>
562
- * <p>
563
- * <a>DeleteRepository</a>, which deletes an AWS CodeCommit repository.</p>
568
+ * <p>
569
+ * <a>DeleteRepository</a>, which deletes an CodeCommit repository.</p>
564
570
  * </li>
565
571
  * <li>
566
- * <p>
572
+ * <p>
567
573
  * <a>GetRepository</a>, which returns information about a specified repository.</p>
568
574
  * </li>
569
575
  * <li>
570
- * <p>
571
- * <a>ListRepositories</a>, which lists all AWS CodeCommit repositories associated with your AWS account.</p>
576
+ * <p>
577
+ * <a>ListRepositories</a>, which lists all CodeCommit repositories associated with your Amazon Web Services account.</p>
572
578
  * </li>
573
579
  * <li>
574
- * <p>
580
+ * <p>
575
581
  * <a>UpdateRepositoryDescription</a>, which sets or updates the description of the repository.</p>
576
- * </li>
582
+ * </li>
577
583
  * <li>
578
- * <p>
584
+ * <p>
579
585
  * <a>UpdateRepositoryName</a>, which changes the name of the
580
586
  * repository. If you change the name of a repository, no other users of that
581
587
  * repository can access it until you send them the new HTTPS or SSH URL to
582
588
  * use.</p>
583
589
  * </li>
584
590
  * </ul>
585
- *
586
- * <p>Branches, by calling the following:</p>
587
- * <ul>
591
+ * <p>Branches, by calling the following:</p>
592
+ * <ul>
588
593
  * <li>
589
- * <p>
594
+ * <p>
590
595
  * <a>CreateBranch</a>, which creates a branch in a specified
591
596
  * repository.</p>
592
597
  * </li>
593
598
  * <li>
594
- * <p>
599
+ * <p>
595
600
  * <a>DeleteBranch</a>, which deletes the specified branch in a repository unless it is the default branch.</p>
596
- * </li>
601
+ * </li>
597
602
  * <li>
598
- * <p>
603
+ * <p>
599
604
  * <a>GetBranch</a>, which returns information about a specified branch.</p>
600
605
  * </li>
601
606
  * <li>
602
- * <p>
607
+ * <p>
603
608
  * <a>ListBranches</a>, which lists all branches for a specified repository.</p>
604
609
  * </li>
605
610
  * <li>
606
- * <p>
611
+ * <p>
607
612
  * <a>UpdateDefaultBranch</a>, which changes the default branch for a repository.</p>
608
613
  * </li>
609
614
  * </ul>
610
- *
611
- * <p>Files, by calling the following:</p>
612
- * <ul>
615
+ * <p>Files, by calling the following:</p>
616
+ * <ul>
613
617
  * <li>
614
618
  * <p>
615
619
  * <a>DeleteFile</a>, which deletes the content of a specified file from a specified branch.</p>
616
620
  * </li>
617
621
  * <li>
618
- * <p>
622
+ * <p>
619
623
  * <a>GetBlob</a>, which returns the base-64 encoded content of an
620
624
  * individual Git blob object in a repository.</p>
621
625
  * </li>
@@ -629,85 +633,81 @@ export interface CodeCommit {
629
633
  * </li>
630
634
  * <li>
631
635
  * <p>
636
+ * <a>ListFileCommitHistory</a>, which retrieves a list of commits and changes to a specified file. </p>
637
+ * </li>
638
+ * <li>
639
+ * <p>
632
640
  * <a>PutFile</a>, which adds or modifies a single file in a specified repository and branch.</p>
633
641
  * </li>
634
642
  * </ul>
635
- *
636
- *
637
- * <p>Commits, by calling the following:</p>
638
- * <ul>
643
+ * <p>Commits, by calling the following:</p>
644
+ * <ul>
639
645
  * <li>
640
- * <p>
646
+ * <p>
641
647
  * <a>BatchGetCommits</a>, which returns information about one or more commits in a repository.</p>
642
- * </li>
648
+ * </li>
643
649
  * <li>
644
650
  * <p>
645
651
  * <a>CreateCommit</a>, which creates a commit for changes to a repository.</p>
646
652
  * </li>
647
653
  * <li>
648
- * <p>
654
+ * <p>
649
655
  * <a>GetCommit</a>, which returns information about a commit, including commit
650
656
  * messages and author and committer information.</p>
651
- * </li>
657
+ * </li>
652
658
  * <li>
653
- * <p>
659
+ * <p>
654
660
  * <a>GetDifferences</a>, which returns information about the
655
661
  * differences in a valid commit specifier (such as a branch, tag, HEAD, commit ID,
656
662
  * or other fully qualified reference).</p>
657
- * </li>
663
+ * </li>
658
664
  * </ul>
659
- *
660
- *
661
- * <p>Merges, by calling the following:</p>
662
- * <ul>
665
+ * <p>Merges, by calling the following:</p>
666
+ * <ul>
663
667
  * <li>
664
- * <p>
668
+ * <p>
665
669
  * <a>BatchDescribeMergeConflicts</a>, which returns information about conflicts in a merge between commits in a repository.</p>
666
670
  * </li>
667
671
  * <li>
668
- * <p>
672
+ * <p>
669
673
  * <a>CreateUnreferencedMergeCommit</a>, which creates an unreferenced commit between two branches or commits for the
670
674
  * purpose of comparing them and identifying any potential conflicts.</p>
671
675
  * </li>
672
676
  * <li>
673
- * <p>
677
+ * <p>
674
678
  * <a>DescribeMergeConflicts</a>, which returns information about merge conflicts between the base, source, and destination versions
675
679
  * of a file in a potential merge.</p>
676
680
  * </li>
677
681
  * <li>
678
- * <p>
682
+ * <p>
679
683
  * <a>GetMergeCommit</a>, which returns information about the merge between a source and destination commit. </p>
680
- *
681
684
  * </li>
682
685
  * <li>
683
- * <p>
686
+ * <p>
684
687
  * <a>GetMergeConflicts</a>, which returns information about merge conflicts
685
688
  * between the source and destination branch in a pull request.</p>
686
689
  * </li>
687
690
  * <li>
688
- *
689
- * <p>
691
+ * <p>
690
692
  * <a>GetMergeOptions</a>, which returns information about the available merge options between two branches or commit specifiers.</p>
691
693
  * </li>
692
694
  * <li>
693
- * <p>
695
+ * <p>
694
696
  * <a>MergeBranchesByFastForward</a>, which merges two branches using the fast-forward merge option.</p>
695
697
  * </li>
696
698
  * <li>
697
- * <p>
699
+ * <p>
698
700
  * <a>MergeBranchesBySquash</a>, which merges two branches using the squash merge option.</p>
699
701
  * </li>
700
702
  * <li>
701
- * <p>
703
+ * <p>
702
704
  * <a>MergeBranchesByThreeWay</a>, which merges two branches using the three-way merge option.</p>
703
705
  * </li>
704
706
  * </ul>
705
- *
706
- *
707
- * <p>Pull requests, by calling the following:</p>
708
- * <ul>
707
+ * <p>Pull requests, by calling the following:</p>
708
+ * <ul>
709
709
  * <li>
710
- * <p>
710
+ * <p>
711
711
  * <a>CreatePullRequest</a>, which creates a pull request in a specified repository.</p>
712
712
  * </li>
713
713
  * <li>
@@ -719,7 +719,7 @@ export interface CodeCommit {
719
719
  * <a>DeletePullRequestApprovalRule</a>, which deletes an approval rule for a specified pull request.</p>
720
720
  * </li>
721
721
  * <li>
722
- * <p>
722
+ * <p>
723
723
  * <a>DescribePullRequestEvents</a>, which returns information about one or more pull request events.</p>
724
724
  * </li>
725
725
  * <li>
@@ -727,12 +727,11 @@ export interface CodeCommit {
727
727
  * <a>EvaluatePullRequestApprovalRules</a>, which evaluates whether a pull request has met all the conditions specified in its associated approval rules.</p>
728
728
  * </li>
729
729
  * <li>
730
- * <p>
730
+ * <p>
731
731
  * <a>GetCommentsForPullRequest</a>, which returns information about comments on a specified pull request.</p>
732
732
  * </li>
733
733
  * <li>
734
- *
735
- * <p>
734
+ * <p>
736
735
  * <a>GetPullRequest</a>, which returns information about a specified pull request.</p>
737
736
  * </li>
738
737
  * <li>
@@ -745,22 +744,22 @@ export interface CodeCommit {
745
744
  * pull request, and if so, the Amazon Resource Name (ARN) of the user or identity that overrode the rules and their requirements for the pull request.</p>
746
745
  * </li>
747
746
  * <li>
748
- * <p>
747
+ * <p>
749
748
  * <a>ListPullRequests</a>, which lists all pull requests for a repository.</p>
750
749
  * </li>
751
750
  * <li>
752
- * <p>
751
+ * <p>
753
752
  * <a>MergePullRequestByFastForward</a>, which merges the source destination branch of a pull request into the specified destination
754
753
  * branch for that pull request using the fast-forward merge option.</p>
755
754
  * </li>
756
755
  * <li>
757
- * <p>
756
+ * <p>
758
757
  * <a>MergePullRequestBySquash</a>, which merges the source destination branch of a pull request into the specified destination
759
758
  * branch for that pull request using the squash merge option.</p>
760
759
  * </li>
761
760
  * <li>
762
- * <p>
763
- * <a>MergePullRequestByThreeWay</a>. which merges the source destination branch of a pull request into the specified destination
761
+ * <p>
762
+ * <a>MergePullRequestByThreeWay</a>, which merges the source destination branch of a pull request into the specified destination
764
763
  * branch for that pull request using the three-way merge option.</p>
765
764
  * </li>
766
765
  * <li>
@@ -768,7 +767,7 @@ export interface CodeCommit {
768
767
  * <a>OverridePullRequestApprovalRules</a>, which sets aside all approval rule requirements for a pull request.</p>
769
768
  * </li>
770
769
  * <li>
771
- * <p>
770
+ * <p>
772
771
  * <a>PostCommentForPullRequest</a>, which posts a comment to a pull request at the specified line, file, or request.</p>
773
772
  * </li>
774
773
  * <li>
@@ -780,33 +779,32 @@ export interface CodeCommit {
780
779
  * <a>UpdatePullRequestApprovalState</a>, which updates the state of an approval on a pull request.</p>
781
780
  * </li>
782
781
  * <li>
783
- * <p>
782
+ * <p>
784
783
  * <a>UpdatePullRequestDescription</a>, which updates the description of a pull request.</p>
785
784
  * </li>
786
785
  * <li>
787
- * <p>
786
+ * <p>
788
787
  * <a>UpdatePullRequestStatus</a>, which updates the status of a pull request.</p>
789
788
  * </li>
790
789
  * <li>
791
- * <p>
790
+ * <p>
792
791
  * <a>UpdatePullRequestTitle</a>, which updates the title of a pull request.</p>
793
792
  * </li>
794
793
  * </ul>
795
- *
796
- * <p>Approval rule templates, by calling the following:</p>
797
- * <ul>
794
+ * <p>Approval rule templates, by calling the following:</p>
795
+ * <ul>
798
796
  * <li>
799
797
  * <p>
800
798
  * <a>AssociateApprovalRuleTemplateWithRepository</a>, which associates a template
801
799
  * with a specified repository. After the template is associated with a repository,
802
- * AWS CodeCommit creates approval rules that match the template conditions on
800
+ * CodeCommit creates approval rules that match the template conditions on
803
801
  * every pull request created in the specified repository.</p>
804
802
  * </li>
805
803
  * <li>
806
804
  * <p>
807
805
  * <a>BatchAssociateApprovalRuleTemplateWithRepositories</a>, which associates a
808
806
  * template with one or more specified repositories. After the template is
809
- * associated with a repository, AWS CodeCommit creates approval rules that match
807
+ * associated with a repository, CodeCommit creates approval rules that match
810
808
  * the template conditions on every pull request created in the specified
811
809
  * repositories.</p>
812
810
  * </li>
@@ -820,7 +818,7 @@ export interface CodeCommit {
820
818
  * <li>
821
819
  * <p>
822
820
  * <a>CreateApprovalRuleTemplate</a>, which creates a template for approval rules that can then be associated with one or more repositories
823
- * in your AWS account.</p>
821
+ * in your Amazon Web Services account.</p>
824
822
  * </li>
825
823
  * <li>
826
824
  * <p>
@@ -839,7 +837,7 @@ export interface CodeCommit {
839
837
  * </li>
840
838
  * <li>
841
839
  * <p>
842
- * <a>ListApprovalRuleTemplates</a>, which lists all approval rule templates in the AWS Region in your AWS account.</p>
840
+ * <a>ListApprovalRuleTemplates</a>, which lists all approval rule templates in the Amazon Web Services Region in your Amazon Web Services account.</p>
843
841
  * </li>
844
842
  * <li>
845
843
  * <p>
@@ -863,32 +861,31 @@ export interface CodeCommit {
863
861
  * <a>UpdateApprovalRuleTemplateContent</a>, which updates the content of an approval rule template.</p>
864
862
  * </li>
865
863
  * </ul>
866
- *
867
- * <p>Comments in a repository, by calling the following:</p>
868
- * <ul>
864
+ * <p>Comments in a repository, by calling the following:</p>
865
+ * <ul>
869
866
  * <li>
870
- * <p>
867
+ * <p>
871
868
  * <a>DeleteCommentContent</a>, which deletes the content of a comment on a commit in a repository.</p>
872
869
  * </li>
873
870
  * <li>
874
- * <p>
871
+ * <p>
875
872
  * <a>GetComment</a>, which returns information about a comment on a commit.</p>
876
873
  * </li>
877
874
  * <li>
878
- * <p>
875
+ * <p>
879
876
  * <a>GetCommentReactions</a>, which returns information about emoji reactions to comments.</p>
880
877
  * </li>
881
878
  * <li>
882
- * <p>
879
+ * <p>
883
880
  * <a>GetCommentsForComparedCommit</a>, which returns information about comments on the comparison between two commit specifiers
884
881
  * in a repository.</p>
885
882
  * </li>
886
883
  * <li>
887
- * <p>
884
+ * <p>
888
885
  * <a>PostCommentForComparedCommit</a>, which creates a comment on the comparison between two commit specifiers in a repository.</p>
889
886
  * </li>
890
887
  * <li>
891
- * <p>
888
+ * <p>
892
889
  * <a>PostCommentReply</a>, which creates a reply to a comment.</p>
893
890
  * </li>
894
891
  * <li>
@@ -896,50 +893,44 @@ export interface CodeCommit {
896
893
  * <a>PutCommentReaction</a>, which creates or updates an emoji reaction to a comment.</p>
897
894
  * </li>
898
895
  * <li>
899
- * <p>
896
+ * <p>
900
897
  * <a>UpdateComment</a>, which updates the content of a comment on a commit in a repository.</p>
901
898
  * </li>
902
899
  * </ul>
903
- *
904
- * <p>Tags used to tag resources in AWS CodeCommit (not Git tags), by calling the following:</p>
905
- * <ul>
900
+ * <p>Tags used to tag resources in CodeCommit (not Git tags), by calling the following:</p>
901
+ * <ul>
906
902
  * <li>
907
903
  * <p>
908
- * <a>ListTagsForResource</a>, which gets information about AWS tags for a specified Amazon Resource Name (ARN) in AWS CodeCommit.</p>
904
+ * <a>ListTagsForResource</a>, which gets information about Amazon Web Servicestags for a specified Amazon Resource Name (ARN) in CodeCommit.</p>
909
905
  * </li>
910
906
  * <li>
911
907
  * <p>
912
- * <a>TagResource</a>, which adds or updates tags for a resource in AWS CodeCommit.</p>
908
+ * <a>TagResource</a>, which adds or updates tags for a resource in CodeCommit.</p>
913
909
  * </li>
914
910
  * <li>
915
911
  * <p>
916
- * <a>UntagResource</a>, which removes tags for a resource in AWS CodeCommit.</p>
912
+ * <a>UntagResource</a>, which removes tags for a resource in CodeCommit.</p>
917
913
  * </li>
918
914
  * </ul>
919
- *
920
- * <p>Triggers, by calling the following:</p>
921
- * <ul>
915
+ * <p>Triggers, by calling the following:</p>
916
+ * <ul>
922
917
  * <li>
923
- * <p>
918
+ * <p>
924
919
  * <a>GetRepositoryTriggers</a>, which returns information about triggers configured
925
920
  * for a repository.</p>
926
921
  * </li>
927
922
  * <li>
928
- * <p>
923
+ * <p>
929
924
  * <a>PutRepositoryTriggers</a>, which replaces all triggers for a repository and can
930
925
  * be used to create or delete triggers.</p>
931
926
  * </li>
932
927
  * <li>
933
- * <p>
928
+ * <p>
934
929
  * <a>TestRepositoryTriggers</a>, which tests the functionality of a repository trigger
935
930
  * by sending data to the trigger target.</p>
936
931
  * </li>
937
932
  * </ul>
938
- *
939
- *
940
- *
941
- *
942
- * <p>For information about how to use AWS CodeCommit, see the <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">AWS CodeCommit User Guide</a>.</p>
933
+ * <p>For information about how to use CodeCommit, see the <a href="https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html">CodeCommit User Guide</a>.</p>
943
934
  */
944
935
  export declare class CodeCommit extends CodeCommitClient implements CodeCommit {
945
936
  }