mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-05-06 22:18:28 +00:00
Update Go AWS SDK to the latest version
This commit is contained in:
committed by
Andrey Smirnov
parent
d08be990ef
commit
94a72b23ff
+63
-8
@@ -45,14 +45,23 @@
|
||||
//
|
||||
// Files, by calling the following:
|
||||
//
|
||||
// * PutFile, which adds or modifies a file in a specified repository and
|
||||
// * DeleteFile, which deletes the content of a specified file from a specified
|
||||
// branch.
|
||||
//
|
||||
// Information about committed code in a repository, by calling the following:
|
||||
//
|
||||
// * GetBlob, which returns the base-64 encoded content of an individual
|
||||
// Git blob object within a repository.
|
||||
//
|
||||
// * GetFile, which returns the base-64 encoded content of a specified file.
|
||||
//
|
||||
// * GetFolder, which returns the contents of a specified folder or directory.
|
||||
//
|
||||
// * PutFile, which adds or modifies a single file in a specified repository
|
||||
// and branch.
|
||||
//
|
||||
// Commits, by calling the following:
|
||||
//
|
||||
// * CreateCommit, which creates a commit for changes to a repository.
|
||||
//
|
||||
// * GetCommit, which returns information about a commit, including commit
|
||||
// messages and author and committer information.
|
||||
//
|
||||
@@ -60,6 +69,37 @@
|
||||
// valid commit specifier (such as a branch, tag, HEAD, commit ID or other
|
||||
// fully qualified reference).
|
||||
//
|
||||
// Merges, by calling the following:
|
||||
//
|
||||
// * BatchDescribeMergeConflicts, which returns information about conflicts
|
||||
// in a merge between commits in a repository.
|
||||
//
|
||||
// * CreateUnreferencedMergeCommit, which creates an unreferenced commit
|
||||
// between two branches or commits for the purpose of comparing them and
|
||||
// identifying any potential conflicts.
|
||||
//
|
||||
// * DescribeMergeConflicts, which returns information about merge conflicts
|
||||
// between the base, source, and destination versions of a file in a potential
|
||||
// merge.
|
||||
//
|
||||
// * GetMergeCommit, which returns information about the merge between a
|
||||
// source and destination commit.
|
||||
//
|
||||
// * GetMergeConflicts, which returns information about merge conflicts between
|
||||
// the source and destination branch in a pull request.
|
||||
//
|
||||
// * GetMergeOptions, which returns information about the available merge
|
||||
// options between two branches or commit specifiers.
|
||||
//
|
||||
// * MergeBranchesByFastForward, which merges two branches using the fast-forward
|
||||
// merge option.
|
||||
//
|
||||
// * MergeBranchesBySquash, which merges two branches using the squash merge
|
||||
// option.
|
||||
//
|
||||
// * MergeBranchesByThreeWay, which merges two branches using the three-way
|
||||
// merge option.
|
||||
//
|
||||
// Pull requests, by calling the following:
|
||||
//
|
||||
// * CreatePullRequest, which creates a pull request in a specified repository.
|
||||
@@ -70,9 +110,6 @@
|
||||
// * GetCommentsForPullRequest, which returns information about comments
|
||||
// on a specified pull request.
|
||||
//
|
||||
// * GetMergeConflicts, which returns information about merge conflicts between
|
||||
// the source and destination branch in a pull request.
|
||||
//
|
||||
// * GetPullRequest, which returns information about a specified pull request.
|
||||
//
|
||||
// * ListPullRequests, which lists all pull requests for a repository.
|
||||
@@ -81,6 +118,14 @@
|
||||
// of a pull request into the specified destination branch for that pull
|
||||
// request using the fast-forward merge option.
|
||||
//
|
||||
// * MergePullRequestBySquash, which merges the source destination branch
|
||||
// of a pull request into the specified destination branch for that pull
|
||||
// request using the squash merge option.
|
||||
//
|
||||
// * MergePullRequestByThreeWay. which merges the source destination branch
|
||||
// of a pull request into the specified destination branch for that pull
|
||||
// request using the three-way merge option.
|
||||
//
|
||||
// * PostCommentForPullRequest, which posts a comment to a pull request at
|
||||
// the specified line, file, or request.
|
||||
//
|
||||
@@ -91,7 +136,7 @@
|
||||
//
|
||||
// * UpdatePullRequestTitle, which updates the title of a pull request.
|
||||
//
|
||||
// Information about comments in a repository, by calling the following:
|
||||
// Comments in a repository, by calling the following:
|
||||
//
|
||||
// * DeleteCommentContent, which deletes the content of a comment on a commit
|
||||
// in a repository.
|
||||
@@ -109,6 +154,16 @@
|
||||
// * UpdateComment, which updates the content of a comment on a commit in
|
||||
// a repository.
|
||||
//
|
||||
// Tags used to tag resources in AWS CodeCommit (not Git tags), by calling the
|
||||
// following:
|
||||
//
|
||||
// * ListTagsForResource, which gets information about AWS tags for a specified
|
||||
// Amazon Resource Name (ARN) in AWS CodeCommit.
|
||||
//
|
||||
// * TagResource, which adds or updates tags for a resource in AWS CodeCommit.
|
||||
//
|
||||
// * UntagResource, which removes tags for a resource in AWS CodeCommit.
|
||||
//
|
||||
// Triggers, by calling the following:
|
||||
//
|
||||
// * GetRepositoryTriggers, which returns information about triggers configured
|
||||
@@ -121,7 +176,7 @@
|
||||
// trigger by sending data to the trigger target.
|
||||
//
|
||||
// For information about how to use AWS CodeCommit, see the AWS CodeCommit User
|
||||
// Guide (http://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html).
|
||||
// Guide (https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html).
|
||||
//
|
||||
// See https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13 for more information on this service.
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user