![]() |
![]()
| ![]() |
![]()
NAMEPaws::CodeCommit - Perl Interface to AWS AWS CodeCommitSYNOPSISuse Paws; my $obj = Paws->service('CodeCommit')->new; my $res = $obj->Method( Arg1 => $val1, Arg2 => [ 'V1', 'V2' ], # if Arg3 is an object, the HashRef will be used as arguments to the constructor # of the arguments type Arg3 => { Att1 => 'Val1' }, # if Arg4 is an array of objects, the HashRefs will be passed as arguments to # the constructor of the arguments type Arg4 => [ { Att1 => 'Val1' }, { Att1 => 'Val2' } ], ); DESCRIPTIONAWS CodeCommitThis is the AWS CodeCommit API Reference. This reference provides descriptions of the AWS CodeCommit API. You can use the AWS CodeCommit API to work with the following objects:
For information about how to use AWS CodeCommit, see the AWS CodeCommit User Guide. METHODSBatchGetRepositories(repositoryNames => ArrayRef[Str])Each argument is described in detail in: Paws::CodeCommit::BatchGetRepositoriesReturns: a Paws::CodeCommit::BatchGetRepositoriesOutput instance Gets information about one or more repositories. The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page. CreateBranch(branchName => Str, commitId => Str, repositoryName => Str)Each argument is described in detail in: Paws::CodeCommit::CreateBranchReturns: nothing Creates a new branch in a repository and points the branch to a commit. Calling the create branch operation does not set a repository's default branch. To do this, call the update default branch operation. CreateRepository(repositoryName => Str, [repositoryDescription => Str])Each argument is described in detail in: Paws::CodeCommit::CreateRepositoryReturns: a Paws::CodeCommit::CreateRepositoryOutput instance Creates a new, empty repository. DeleteRepository(repositoryName => Str)Each argument is described in detail in: Paws::CodeCommit::DeleteRepositoryReturns: a Paws::CodeCommit::DeleteRepositoryOutput instance Deletes a repository. If a specified repository was already deleted, a null repository ID will be returned. Deleting a repository also deletes all associated objects and metadata. After a repository is deleted, all future push calls to the deleted repository will fail. GetBranch([branchName => Str, repositoryName => Str])Each argument is described in detail in: Paws::CodeCommit::GetBranchReturns: a Paws::CodeCommit::GetBranchOutput instance Retrieves information about a repository branch, including its name and the last commit ID. GetRepository(repositoryName => Str)Each argument is described in detail in: Paws::CodeCommit::GetRepositoryReturns: a Paws::CodeCommit::GetRepositoryOutput instance Gets information about a repository. The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page. ListBranches(repositoryName => Str, [nextToken => Str])Each argument is described in detail in: Paws::CodeCommit::ListBranchesReturns: a Paws::CodeCommit::ListBranchesOutput instance Gets information about one or more branches in a repository. ListRepositories([nextToken => Str, order => Str, sortBy => Str])Each argument is described in detail in: Paws::CodeCommit::ListRepositoriesReturns: a Paws::CodeCommit::ListRepositoriesOutput instance Gets information about one or more repositories. UpdateDefaultBranch(defaultBranchName => Str, repositoryName => Str)Each argument is described in detail in: Paws::CodeCommit::UpdateDefaultBranchReturns: nothing Sets or changes the default branch name for the specified repository. If you use this operation to change the default branch name to the current default branch name, a success message is returned even though the default branch did not change. UpdateRepositoryDescription(repositoryName => Str, [repositoryDescription => Str])Each argument is described in detail in: Paws::CodeCommit::UpdateRepositoryDescriptionReturns: nothing Sets or changes the comment or description for a repository. The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a web page could expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a web page. UpdateRepositoryName(newName => Str, oldName => Str)Each argument is described in detail in: Paws::CodeCommit::UpdateRepositoryNameReturns: nothing Renames a repository. SEE ALSOThis service class forms part of PawsBUGS and CONTRIBUTIONSThe source code is located here: https://github.com/pplu/aws-sdk-perlPlease report bugs to: https://github.com/pplu/aws-sdk-perl/issues
|