String blobId
The full ID of the blob.
String path
The path to the blob and any associated file name, if any.
String mode
The file mode permissions of the blob. File mode permission codes include:
100644 indicates read/write
100755 indicates read/write/execute
160000 indicates a submodule
120000 indicates a symlink
String treeId
Tree information for the specified commit.
List<E> parents
The parent list for the specified commit.
String message
The commit message associated with the specified commit.
UserInfo author
Information about the author of the specified commit. Information includes the date in timestamp format with GMT offset, the name of the author, and the email address for the author, as configured in Git.
UserInfo committer
Information about the person who committed the specified commit, also known as the committer. Information includes the date in timestamp format with GMT offset, the name of the committer, and the email address for the committer, as configured in Git.
For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.
String additionalData
Any additional data associated with the specified commit.
String repositoryName
The name of the new repository to be created.
The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix ".git" is prohibited.
String repositoryDescription
A comment or description about the new 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.
RepositoryMetadata repositoryMetadata
Information about the newly created repository.
String repositoryName
The name of the repository to delete.
String repositoryId
The ID of the repository that was deleted.
BlobMetadata beforeBlob
Information about a beforeBlob data type object, including the ID, the file mode permission code,
and the path.
BlobMetadata afterBlob
Information about an afterBlob data type object, including the ID, the file mode permission code,
and the path.
String changeType
Whether the change type of the difference is an addition (A), deletion (D), or modification (M).
ByteBuffer content
The content of the blob, usually a file.
BranchInfo branch
The name of the branch.
Commit commit
A commit data type object that contains information about the specified commit.
String repositoryName
The name of the repository where you want to get differences.
String beforeCommitSpecifier
The branch, tag, HEAD, or other fully qualified reference used to identify a commit. For example, the full commit
ID. Optional. If not specified, all changes prior to the afterCommitSpecifier value will be shown.
If you do not use beforeCommitSpecifier in your request, consider limiting the results with
maxResults.
String afterCommitSpecifier
The branch, tag, HEAD, or other fully qualified reference used to identify a commit.
String beforePath
The file path in which to check for differences. Limits the results to this path. Can also be used to specify the
previous name of a directory or folder. If beforePath and afterPath are not specified,
differences will be shown for all paths.
String afterPath
The file path in which to check differences. Limits the results to this path. Can also be used to specify the changed name of a directory or folder, if it has changed. If not specified, differences will be shown for all paths.
Integer maxResults
A non-negative integer used to limit the number of returned results.
String nextToken
An enumeration token that when provided in a request, returns the next batch of the results.
List<E> differences
A differences data type object that contains information about the differences, including whether the difference is added, modified, or deleted (A, D, M).
String nextToken
An enumeration token that can be used in a request to return the next batch of the results.
String repositoryName
The name of the repository to get information about.
RepositoryMetadata repositoryMetadata
Information about the repository.
String repositoryName
The name of the repository for which the trigger is configured.
String nextToken
An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.
String sortBy
The criteria used to sort the results of a list repositories operation.
String order
The order in which to sort the results of a list repositories operation.
List<E> repositories
Lists the repositories called by the list repositories operation.
String nextToken
An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.
String configurationId
The system-generated unique ID for the create or update operation.
String accountId
The ID of the AWS account associated with the repository.
String repositoryId
The ID of the repository.
String repositoryName
The repository's name.
String repositoryDescription
A comment or description about the repository.
String defaultBranch
The repository's default branch name.
Date lastModifiedDate
The date and time the repository was last modified, in timestamp format.
Date creationDate
The date and time the repository was created, in timestamp format.
String cloneUrlHttp
The URL to use for cloning the repository over HTTPS.
String cloneUrlSsh
The URL to use for cloning the repository over SSH.
String arn
The Amazon Resource Name (ARN) of the repository.
String name
The name of the trigger.
String destinationArn
The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS).
String customData
Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.
List<E> branches
The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches.
List<E> events
The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS).
The valid value "all" cannot be used with any other values.
List<E> successfulExecutions
The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.
List<E> failedExecutions
The list of triggers that were not able to be tested. This list provides the names of the triggers that could not be tested, separated by commas.
Copyright © 2017. All rights reserved.