Struct rusoto_codecommit::CodeCommitClient[][src]

pub struct CodeCommitClient { /* fields omitted */ }

A client for the CodeCommit API.

Methods

impl CodeCommitClient
[src]

Creates a client backed by the default tokio event loop.

The client will use the default credentials provider and tls client.

Trait Implementations

impl CodeCommit for CodeCommitClient
[src]

Returns 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.

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.

Creates a pull request in the specified repository.

Creates a new, empty repository.

Deletes a branch from a repository, unless that branch is the default branch for the repository.

Deletes the content of a comment made on a change, file, or commit in a repository.

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.

Returns information about one or more pull request events.

Returns the base-64 encoded content of an individual blob within a repository.

Returns information about a repository branch, including its name and the last commit ID.

Returns the content of a comment made on a change, file, or commit in a repository.

Returns information about comments made on the comparison between two commits.

Returns comments made on a pull request.

Returns information about a commit, including commit message and committer information.

Returns information about the differences in a valid commit specifier (such as a branch, tag, HEAD, commit ID or other fully qualified reference). Results can be limited to a specified path.

Returns information about merge conflicts between the before and after commit IDs for a pull request in a repository.

Gets information about a pull request in a specified repository.

Returns 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.

Gets information about triggers configured for a repository.

Gets information about one or more branches in a repository.

Returns a list of pull requests for a specified repository. The return list can be refined by pull request status or pull request author ARN.

Gets information about one or more repositories.

Closes a pull request and attempts to merge the source commit of a pull request into the specified destination branch for that pull request at the specified commit using the fast-forward merge option.

Posts a comment on the comparison between two commits.

Posts a comment on a pull request.

Posts a comment in reply to an existing comment on a comparison between commits or a pull request.

Adds or updates a file in an AWS CodeCommit repository.

Replaces all triggers for a repository. This can be used to create or delete triggers.

Tests the functionality of repository triggers by sending information to the trigger target. If real data is available in the repository, the test will send data from the last commit. If no data is available, sample data will be generated.

Replaces the contents of a comment.

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.

Replaces the contents of the description of a pull request.

Updates the status of a pull request.

Replaces the title of a pull request.

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.

Renames a repository. 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. The suffix ".git" is prohibited. For a full description of the limits on repository names, see Limits in the AWS CodeCommit User Guide.

Auto Trait Implementations