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 commentId
The system-generated comment ID.
String content
The content of the comment.
String inReplyTo
The ID of the comment for which this comment is a reply, if any.
Date creationDate
The date and time the comment was created, in timestamp format.
Date lastModifiedDate
The date and time the comment was most recently modified, in timestamp format.
String authorArn
The Amazon Resource Name (ARN) of the person who posted the comment.
Boolean deleted
A Boolean value indicating whether the comment has been deleted.
String clientRequestToken
A unique, client-generated idempotency token that when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request will return information about the initial request that used that token.
String repositoryName
The name of the repository that contains the compared commits.
String beforeCommitId
The full commit ID of the commit used to establish the 'before' of the comparison.
String afterCommitId
The full commit ID of the commit used to establish the 'after' of the comparison.
String beforeBlobId
The full blob ID of the commit used to establish the 'before' of the comparison.
String afterBlobId
The full blob ID of the commit used to establish the 'after' of the comparison.
Location location
Location information about the comment on the comparison, including the file name, line number, and whether the version of the file where the comment was made is 'BEFORE' or 'AFTER'.
List<E> comments
An array of comment objects. Each comment object contains information about a comment on the comparison between commits.
String pullRequestId
The system-generated ID of the pull request.
String repositoryName
The name of the repository that contains the pull request.
String beforeCommitId
The full commit ID of the commit that was the tip of the destination branch when the pull request was created. This commit will be superceded by the after commit in the source branch when and if you merge the source branch into the destination branch.
String afterCommitId
he full commit ID of the commit that was the tip of the source branch at the time the comment was made.
String beforeBlobId
The full blob ID of the file on which you want to comment on the destination commit.
String afterBlobId
The full blob ID of the file on which you want to comment on the source commit.
Location location
Location information about the comment on the pull request, including the file name, line number, and whether the version of the file where the comment was made is 'BEFORE' (destination branch) or 'AFTER' (source branch).
List<E> comments
An array of comment objects. Each comment object contains information about a comment on the pull request.
String commitId
The full SHA of the specified commit.
String treeId
Tree information for the specified commit.
List<E> parents
A list of parent commits for the specified commit. Each parent commit ID is the full commit ID.
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 repository where you will create the commit.
String branchName
The name of the branch where you will create the commit.
String parentCommitId
The ID of the commit that is the parent of the commit you will create. If this is an empty repository, this is not required.
String authorName
The name of the author who created the commit. This information will be used as both the author and committer for the commit.
String email
The email address of the person who created the commit.
String commitMessage
The commit message you want to include as part of creating the commit. Commit messages are limited to 256 KB. If no message is specified, a default message will be used.
Boolean keepEmptyFolders
If the commit contains deletions, whether to keep a folder or folder structure if the changes leave the folders empty. If this is specified as true, a .gitkeep file will be created for empty folders.
List<E> putFiles
The files to add or update in this commit.
List<E> deleteFiles
The files to delete in this commit. These files will still exist in prior commits.
List<E> setFileModes
The file modes to update for files in this commit.
String commitId
The full commit ID of the commit that contains your committed file changes.
String treeId
The full SHA-1 pointer of the tree information for the commit that contains the commited file changes.
List<E> filesAdded
The files added as part of the committed file changes.
List<E> filesUpdated
The files updated as part of the commited file changes.
List<E> filesDeleted
The files deleted as part of the committed file changes.
String title
The title of the pull request. This title will be used to identify the pull request to other users in the repository.
String description
A description of the pull request.
List<E> targets
The targets for the pull request, including the source of the code to be reviewed (the source branch), and the destination where the creator of the pull request intends the code to be merged after the pull request is closed (the destination branch).
String clientRequestToken
A unique, client-generated idempotency token that when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request will return information about the initial request that used that token.
The AWS SDKs prepopulate client request tokens. If using an AWS SDK, you do not have to generate an idempotency token, as this will be done for you.
PullRequest pullRequest
Information about the newly created pull request.
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.
Map<K,V> tags
One or more tag key-value pairs to use when tagging this repository.
RepositoryMetadata repositoryMetadata
Information about the newly created repository.
BranchInfo deletedBranch
Information about the branch deleted by the operation, including the branch name and the commit ID that was the tip of the branch.
String commentId
The unique, system-generated ID of the comment. To get this ID, use GetCommentsForComparedCommit or GetCommentsForPullRequest.
Comment comment
Information about the comment you just deleted.
String filePath
The full path of the file that will be deleted, including the name of the file.
String repositoryName
The name of the repository that contains the file to delete.
String branchName
The name of the branch where the commit will be made deleting the file.
String filePath
The fully-qualified path to the file that will be deleted, including the full name and extension of that file. For example, /examples/file.md is a fully qualified path to a file named file.md in a folder named examples.
String parentCommitId
The ID of the commit that is the tip of the branch where you want to create the commit that will delete the file. This must be the HEAD commit for the branch. The commit that deletes the file will be created from this commit ID.
Boolean keepEmptyFolders
Specifies whether to delete the folder or directory that contains the file you want to delete if that file is the only object in the folder or directory. By default, empty folders will be deleted. This includes empty folders that are part of the directory structure. For example, if the path to a file is dir1/dir2/dir3/dir4, and dir2 and dir3 are empty, deleting the last file in dir4 will also delete the empty folders dir4, dir3, and dir2.
String commitMessage
The commit message you want to include as part of deleting the file. Commit messages are limited to 256 KB. If no message is specified, a default message will be used.
String name
The name of the author of the commit that deletes the file. If no name is specified, the user's ARN will be used as the author name and committer name.
String email
The email address for the commit that deletes the file. If no email address is specified, the email address will be left blank.
String commitId
The full commit ID of the commit that contains the change that deletes the file.
String blobId
The blob ID removed from the tree as part of deleting the file.
String treeId
The full SHA-1 pointer of the tree information for the commit that contains the delete file change.
String filePath
The fully-qualified path to the file that will be deleted, including the full name and extension of that file.
String repositoryName
The name of the repository to delete.
String repositoryId
The ID of the repository that was deleted.
String pullRequestId
The system-generated ID of the pull request. To get this ID, use ListPullRequests.
String pullRequestEventType
Optional. The pull request event type about which you want to return information.
String actorArn
The Amazon Resource Name (ARN) of the user whose actions resulted in the event. Examples include updating the pull request with additional commits or changing the status of a pull request.
String nextToken
An enumeration token that when provided in a request, returns the next batch of the results.
Integer maxResults
A non-negative integer used to limit the number of returned results. The default is 100 events, which is also the maximum number of events that can be returned in a result.
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).
String blobId
The blob ID that contains the file information.
String absolutePath
The fully-qualified path to the file in the repository.
String relativePath
The relative path of the file from the folder where the query originated.
String fileMode
The extrapolated file mode permissions for the file. Valid values include EXECUTABLE and NORMAL.
String absolutePath
The full path to the file that will be added or updated, including the name of the file.
String blobId
The blob ID that contains the file information.
String fileMode
The extrapolated file mode permissions for the file. Valid values include EXECUTABLE and NORMAL.
String treeId
The full SHA-1 pointer of the tree information for the commit that contains the folder.
String absolutePath
The fully-qualified path of the folder in the repository.
String relativePath
The relative path of the specified folder from the folder where the query originated.
ByteBuffer content
The content of the blob, usually a file.
BranchInfo branch
The name of the branch.
String commentId
The unique, system-generated ID of the comment. To get this ID, use GetCommentsForComparedCommit or GetCommentsForPullRequest.
Comment comment
The contents of the comment.
String repositoryName
The name of the repository where you want to compare commits.
String beforeCommitId
To establish the directionality of the comparison, the full commit ID of the 'before' commit.
String afterCommitId
To establish the directionality of the comparison, the full commit ID of the 'after' commit.
String nextToken
An enumeration token that when provided in a request, returns the next batch of the results.
Integer maxResults
A non-negative integer used to limit the number of returned results. The default is 100 comments, and is configurable up to 500.
String pullRequestId
The system-generated ID of the pull request. To get this ID, use ListPullRequests.
String repositoryName
The name of the repository that contains the pull request.
String beforeCommitId
The full commit ID of the commit in the destination branch that was the tip of the branch at the time the pull request was created.
String afterCommitId
The full commit ID of the commit in the source branch that was the tip of the branch at the time the comment was made.
String nextToken
An enumeration token that when provided in a request, returns the next batch of the results.
Integer maxResults
A non-negative integer used to limit the number of returned results. The default is 100 comments. You can return up to 500 comments with a single request.
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 that contains the file.
String commitSpecifier
The fully-quaified reference that identifies the commit that contains the file. For example, you could specify a full commit ID, a tag, a branch name, or a reference such as refs/heads/master. If none is provided, then the head commit will be used.
String filePath
The fully-qualified path to the file, including the full name and extension of the file. For example, /examples/file.md is the fully-qualified path to a file named file.md in a folder named examples.
String commitId
The full commit ID of the commit that contains the content returned by GetFile.
String blobId
The blob ID of the object that represents the file content.
String filePath
The fully qualified path to the specified file. This returns the name and extension of the file.
String fileMode
The extrapolated file mode permissions of the blob. Valid values include strings such as EXECUTABLE and not numeric values.
The file mode permissions returned by this API are not the standard file mode permission values, such as 100644, but rather extrapolated values. See below for a full list of supported return values.
Long fileSize
The size of the contents of the file, in bytes.
ByteBuffer fileContent
The base-64 encoded binary data object that represents the content of the file.
String repositoryName
The name of the repository.
String commitSpecifier
A fully-qualified reference used to identify a commit that contains the version of the folder's content to return. A fully-qualified reference can be a commit ID, branch name, tag, or reference such as HEAD. If no specifier is provided, the folder content will be returned as it exists in the HEAD commit.
String folderPath
The fully-qualified path to the folder whose contents will be returned, including the folder name. For example, /examples is a fully-qualified path to a folder named examples that was created off of the root directory (/) of a repository.
String commitId
The full commit ID used as a reference for which version of the folder content is returned.
String folderPath
The fully-qualified path of the folder whose contents are returned.
String treeId
The full SHA-1 pointer of the tree information for the commit that contains the folder.
List<E> subFolders
The list of folders that exist beneath the specified folder, if any.
List<E> files
The list of files that exist in the specified folder, if any.
List<E> symbolicLinks
The list of symbolic links to other files and folders that exist in the specified folder, if any.
List<E> subModules
The list of submodules that exist in the specified folder, if any.
String repositoryName
The name of the repository where the pull request was created.
String destinationCommitSpecifier
The branch, tag, HEAD, or other fully qualified reference used to identify a commit. For example, a branch name or a full commit ID.
String sourceCommitSpecifier
The branch, tag, HEAD, or other fully qualified reference used to identify a commit. For example, a branch name or a full commit ID.
String mergeOption
The merge option or strategy you want to use to merge the code. The only valid value is FAST_FORWARD_MERGE.
Boolean mergeable
A Boolean value that indicates whether the code is mergable by the specified merge option.
String destinationCommitId
The commit ID of the destination commit specifier that was used in the merge evaluation.
String sourceCommitId
The commit ID of the source commit specifier that was used in the merge evaluation.
String pullRequestId
The system-generated ID of the pull request. To get this ID, use ListPullRequests.
PullRequest pullRequest
Information about the specified pull request.
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 repositoryName
The name of the repository for which you want to list pull requests.
String authorArn
Optional. The Amazon Resource Name (ARN) of the user who created the pull request. If used, this filters the results to pull requests created by that user.
String pullRequestStatus
Optional. The status of the pull request. If used, this refines the results to the pull requests that match the specified status.
String nextToken
An enumeration token that when provided in a request, returns the next batch of the results.
Integer maxResults
A non-negative integer used to limit the number of returned results.
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 filePath
The name of the file being compared, including its extension and subdirectory, if any.
Long filePosition
The position of a change within a compared file, in line number format.
String relativeFileVersion
In a comparison of commits or a pull request, whether the change is in the 'before' or 'after' of that comparison.
String pullRequestId
The system-generated ID of the pull request. To get this ID, use ListPullRequests.
String repositoryName
The name of the repository where the pull request was created.
String sourceCommitId
The full commit ID of the original or updated commit in the pull request source branch. Pass this value if you want an exception thrown if the current commit ID of the tip of the source branch does not match this commit ID.
PullRequest pullRequest
Information about the specified pull request, including information about the merge.
String repositoryName
The name of the repository where you want to post a comment on the comparison between commits.
String beforeCommitId
To establish the directionality of the comparison, the full commit ID of the 'before' commit.
String afterCommitId
To establish the directionality of the comparison, the full commit ID of the 'after' commit.
Location location
The location of the comparison where you want to comment.
String content
The content of the comment you want to make.
String clientRequestToken
A unique, client-generated idempotency token that when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request will return information about the initial request that used that token.
String repositoryName
The name of the repository where you posted a comment on the comparison between commits.
String beforeCommitId
In the directionality you established, the full commit ID of the 'before' commit.
String afterCommitId
In the directionality you established, the full commit ID of the 'after' commit.
String beforeBlobId
In the directionality you established, the blob ID of the 'before' blob.
String afterBlobId
In the directionality you established, the blob ID of the 'after' blob.
Location location
The location of the comment in the comparison between the two commits.
Comment comment
The content of the comment you posted.
String pullRequestId
The system-generated ID of the pull request. To get this ID, use ListPullRequests.
String repositoryName
The name of the repository where you want to post a comment on a pull request.
String beforeCommitId
The full commit ID of the commit in the destination branch that was the tip of the branch at the time the pull request was created.
String afterCommitId
The full commit ID of the commit in the source branch that is the current tip of the branch for the pull request when you post the comment.
Location location
The location of the change where you want to post your comment. If no location is provided, the comment will be posted as a general comment on the pull request difference between the before commit ID and the after commit ID.
String content
The content of your comment on the change.
String clientRequestToken
A unique, client-generated idempotency token that when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request will return information about the initial request that used that token.
String repositoryName
The name of the repository where you posted a comment on a pull request.
String pullRequestId
The system-generated ID of the pull request.
String beforeCommitId
The full commit ID of the commit in the source branch used to create the pull request, or in the case of an updated pull request, the full commit ID of the commit used to update the pull request.
String afterCommitId
The full commit ID of the commit in the destination branch where the pull request will be merged.
String beforeBlobId
In the directionality of the pull request, the blob ID of the 'before' blob.
String afterBlobId
In the directionality of the pull request, the blob ID of the 'after' blob.
Location location
The location of the change where you posted your comment.
Comment comment
The content of the comment you posted.
String inReplyTo
The system-generated ID of the comment to which you want to reply. To get this ID, use GetCommentsForComparedCommit or GetCommentsForPullRequest.
String clientRequestToken
A unique, client-generated idempotency token that when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request will return information about the initial request that used that token.
String content
The contents of your reply to a comment.
Comment comment
Information about the reply to a comment.
String pullRequestId
The system-generated ID of the pull request.
String title
The user-defined title of the pull request. This title is displayed in the list of pull requests to other users of the repository.
String description
The user-defined description of the pull request. This description can be used to clarify what should be reviewed and other details of the request.
Date lastActivityDate
The day and time of the last user or system activity on the pull request, in timestamp format.
Date creationDate
The date and time the pull request was originally created, in timestamp format.
String pullRequestStatus
The status of the pull request. Pull request status can only change from OPEN to CLOSED
.
String authorArn
The Amazon Resource Name (ARN) of the user who created the pull request.
List<E> pullRequestTargets
The targets of the pull request, including the source branch and destination branch for the pull request.
String clientRequestToken
A unique, client-generated idempotency token that when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request will return information about the initial request that used that token.
String repositoryName
The name of the repository where the pull request was created.
String sourceCommitId
The commit ID on the source branch used when the pull request was created.
String destinationCommitId
The commit ID of the tip of the branch specified as the destination branch when the pull request was created.
String mergeBase
The commit ID of the most recent commit that the source branch and the destination branch have in common.
String pullRequestId
The system-generated ID of the pull request.
Date eventDate
The day and time of the pull request event, in timestamp format.
String pullRequestEventType
The type of the pull request event, for example a status change event (PULL_REQUEST_STATUS_CHANGED) or update event (PULL_REQUEST_SOURCE_REFERENCE_UPDATED).
String actorArn
The Amazon Resource Name (ARN) of the user whose actions resulted in the event. Examples include updating the pull request with additional commits or changing the status of a pull request.
PullRequestCreatedEventMetadata pullRequestCreatedEventMetadata
Information about the source and destination branches for the pull request.
PullRequestStatusChangedEventMetadata pullRequestStatusChangedEventMetadata
Information about the change in status for the pull request event.
PullRequestSourceReferenceUpdatedEventMetadata pullRequestSourceReferenceUpdatedEventMetadata
Information about the updated source branch for the pull request event.
PullRequestMergedStateChangedEventMetadata pullRequestMergedStateChangedEventMetadata
Information about the change in mergability state for the pull request event.
String repositoryName
The name of the repository where the pull request was created.
String destinationReference
The name of the branch that the pull request will be merged into.
MergeMetadata mergeMetadata
Information about the merge state change event.
String repositoryName
The name of the repository where the pull request was updated.
String beforeCommitId
The full commit ID of the commit in the destination branch that was the tip of the branch at the time the pull request was updated.
String afterCommitId
The full commit ID of the commit in the source branch that was the tip of the branch at the time the pull request was updated.
String mergeBase
The commit ID of the most recent commit that the source branch and the destination branch have in common.
String pullRequestStatus
The changed status of the pull request.
String repositoryName
The name of the repository that contains the pull request source and destination branches.
String sourceReference
The branch of the repository that contains the changes for the pull request. Also known as the source branch.
String destinationReference
The branch of the repository where the pull request changes will be merged into. Also known as the destination branch.
String destinationCommit
The full commit ID that is the tip of the destination branch. This is the commit where the pull request was or will be merged.
String sourceCommit
The full commit ID of the tip of the source branch used to create the pull request. If the pull request branch is updated by a push while the pull request is open, the commit ID will change to reflect the new tip of the branch.
String mergeBase
The commit ID of the most recent commit that the source branch and the destination branch have in common.
MergeMetadata mergeMetadata
Returns metadata about the state of the merge, including whether the merge has been made.
String filePath
The full path to the file in the repository, including the name of the file.
String fileMode
The extrapolated file mode permissions for the file. Valid values include EXECUTABLE and NORMAL.
ByteBuffer fileContent
The content of the file, if a source file is not specified.
SourceFileSpecifier sourceFile
The name and full path of the file that contains the changes you want to make as part of the commit, if you are not providing the file content directly.
String repositoryName
The name of the repository where you want to add or update the file.
String branchName
The name of the branch where you want to add or update the file. If this is an empty repository, this branch will be created.
ByteBuffer fileContent
The content of the file, in binary object format.
String filePath
The name of the file you want to add or update, including the relative path to the file in the repository.
If the path does not currently exist in the repository, the path will be created as part of adding the file.
String fileMode
The file mode permissions of the blob. Valid file mode permissions are listed below.
String parentCommitId
The full commit ID of the head commit in the branch where you want to add or update the file. If this is an empty repository, no commit ID is required. If this is not an empty repository, a commit ID is required.
The commit ID must match the ID of the head commit at the time of the operation, or an error will occur, and the file will not be added or updated.
String commitMessage
A message about why this file was added or updated. While optional, adding a message is strongly encouraged in order to provide a more useful commit history for your repository.
String name
The name of the person adding or updating the file. While optional, adding a name is strongly encouraged in order to provide a more useful commit history for your repository.
String email
An email address for the person adding or updating the file.
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 you specify an empty array, the trigger will apply to all branches.
While no content is required in the array, you must include the array itself.
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.
String commitId
The commit ID that contains the reference to the submodule.
String absolutePath
The fully qualified path to the folder that contains the reference to the submodule.
String relativePath
The relative path of the submodule from the folder where the query originated.
String blobId
The blob ID that contains the information about the symbolic link.
String absolutePath
The fully-qualified path to the folder that contains the symbolic link.
String relativePath
The relative path of the symbolic link from the folder where the query originated.
String fileMode
The file mode permissions of the blob that cotains information about the symbolic link.
String repositoryName
The name of the repository that contains the pull request.
String sourceReference
The branch of the repository that contains the changes for the pull request. Also known as the source branch.
String destinationReference
The branch of the repository where the pull request changes will be merged into. Also known as the destination branch.
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.
String commentId
The system-generated ID of the comment you want to update. To get this ID, use GetCommentsForComparedCommit or GetCommentsForPullRequest.
String content
The updated content with which you want to replace the existing content of the comment.
Comment comment
Information about the updated comment.
String pullRequestId
The system-generated ID of the pull request. To get this ID, use ListPullRequests.
String description
The updated content of the description for the pull request. This content will replace the existing description.
PullRequest pullRequest
Information about the updated pull request.
String pullRequestId
The system-generated ID of the pull request. To get this ID, use ListPullRequests.
String pullRequestStatus
The status of the pull request. The only valid operations are to update the status from OPEN to
OPEN, OPEN to CLOSED or from from CLOSED to
CLOSED.
PullRequest pullRequest
Information about the pull request.
String pullRequestId
The system-generated ID of the pull request. To get this ID, use ListPullRequests.
String title
The updated title of the pull request. This will replace the existing title.
PullRequest pullRequest
Information about the updated pull request.
Copyright © 2019. All rights reserved.