You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CodeCommit::Client

Inherits:
Seahorse::Client::Base show all
Defined in:
(unknown)

Overview

An API client for AWS CodeCommit. To construct a client, you need to configure a :region and :credentials.

codecommit = Aws::CodeCommit::Client.new(
  region: region_name,
  credentials: credentials,
  # ...
)

See #initialize for a full list of supported configuration options.

Region

You can configure a default region in the following locations:

  • ENV['AWS_REGION']
  • Aws.config[:region]

Go here for a list of supported regions.

Credentials

Default credentials are loaded automatically from the following locations:

  • ENV['AWS_ACCESS_KEY_ID'] and ENV['AWS_SECRET_ACCESS_KEY']
  • Aws.config[:credentials]
  • The shared credentials ini file at ~/.aws/credentials (more information)
  • From an instance profile when running on EC2

You can also construct a credentials object from one of the following classes:

Alternatively, you configure credentials with :access_key_id and :secret_access_key:

# load credentials from disk
creds = YAML.load(File.read('/path/to/secrets'))

Aws::CodeCommit::Client.new(
  access_key_id: creds['access_key_id'],
  secret_access_key: creds['secret_access_key']
)

Always load your credentials from outside your application. Avoid configuring credentials statically and never commit them to source control.

Instance Attribute Summary

Attributes inherited from Seahorse::Client::Base

#config, #handlers

Constructor collapse

API Operations collapse

Instance Method Summary collapse

Methods inherited from Seahorse::Client::Base

add_plugin, api, #build_request, clear_plugins, define, new, #operation, #operation_names, plugins, remove_plugin, set_api, set_plugins

Methods included from Seahorse::Client::HandlerBuilder

#handle, #handle_request, #handle_response

Constructor Details

#initialize(options = {}) ⇒ Aws::CodeCommit::Client

Constructs an API client.

Options Hash (options):

  • :access_key_id (String)

    Used to set credentials statically. See Plugins::RequestSigner for more details.

  • :active_endpoint_cache (Boolean)

    When set to true, a thread polling for endpoints will be running in the background every 60 secs (default). Defaults to false. See Plugins::EndpointDiscovery for more details.

  • :convert_params (Boolean) — default: true

    When true, an attempt is made to coerce request parameters into the required types. See Plugins::ParamConverter for more details.

  • :credentials (required, Credentials)

    Your AWS credentials. The following locations will be searched in order for credentials:

    • :access_key_id, :secret_access_key, and :session_token options
    • ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
    • HOME/.aws/credentials shared credentials file
    • EC2 instance profile credentials See Plugins::RequestSigner for more details.
  • :disable_host_prefix_injection (Boolean)

    Set to true to disable SDK automatically adding host prefix to default service endpoint when available. See Plugins::EndpointPattern for more details.

  • :endpoint (String)

    A default endpoint is constructed from the :region. See Plugins::RegionalEndpoint for more details.

  • :endpoint_cache_max_entries (Integer)

    Used for the maximum size limit of the LRU cache storing endpoints data for endpoint discovery enabled operations. Defaults to 1000. See Plugins::EndpointDiscovery for more details.

  • :endpoint_cache_max_threads (Integer)

    Used for the maximum threads in use for polling endpoints to be cached, defaults to 10. See Plugins::EndpointDiscovery for more details.

  • :endpoint_cache_poll_interval (Integer)

    When :endpoint_discovery and :active_endpoint_cache is enabled, Use this option to config the time interval in seconds for making requests fetching endpoints information. Defaults to 60 sec. See Plugins::EndpointDiscovery for more details.

  • :endpoint_discovery (Boolean)

    When set to true, endpoint discovery will be enabled for operations when available. Defaults to false. See Plugins::EndpointDiscovery for more details.

  • :http_continue_timeout (Float) — default: 1

    See Seahorse::Client::Plugins::NetHttp for more details.

  • :http_idle_timeout (Integer) — default: 5

    See Seahorse::Client::Plugins::NetHttp for more details.

  • :http_open_timeout (Integer) — default: 15

    See Seahorse::Client::Plugins::NetHttp for more details.

  • :http_proxy (String)

    See Seahorse::Client::Plugins::NetHttp for more details.

  • :http_read_timeout (Integer) — default: 60

    See Seahorse::Client::Plugins::NetHttp for more details.

  • :http_wire_trace (Boolean) — default: false

    See Seahorse::Client::Plugins::NetHttp for more details.

  • :log_level (Symbol) — default: :info

    The log level to send messages to the logger at. See Plugins::Logging for more details.

  • :log_formatter (Logging::LogFormatter)

    The log formatter. Defaults to Seahorse::Client::Logging::Formatter.default. See Plugins::Logging for more details.

  • :logger (Logger) — default: nil

    The Logger instance to send log messages to. If this option is not set, logging will be disabled. See Plugins::Logging for more details.

  • :profile (String)

    Used when loading credentials from the shared credentials file at HOME/.aws/credentials. When not specified, 'default' is used. See Plugins::RequestSigner for more details.

  • :raise_response_errors (Boolean) — default: true

    When true, response errors are raised. See Seahorse::Client::Plugins::RaiseResponseErrors for more details.

  • :region (required, String)

    The AWS region to connect to. The region is used to construct the client endpoint. Defaults to ENV['AWS_REGION']. Also checks AMAZON_REGION and AWS_DEFAULT_REGION. See Plugins::RegionalEndpoint for more details.

  • :retry_limit (Integer) — default: 3

    The maximum number of times to retry failed requests. Only ~ 500 level server errors and certain ~ 400 level client errors are retried. Generally, these are throttling errors, data checksum errors, networking errors, timeout errors and auth errors from expired credentials. See Plugins::RetryErrors for more details.

  • :secret_access_key (String)

    Used to set credentials statically. See Plugins::RequestSigner for more details.

  • :session_token (String)

    Used to set credentials statically. See Plugins::RequestSigner for more details.

  • :simple_json (Boolean) — default: false

    Disables request parameter conversion, validation, and formatting. Also disable response data type conversions. This option is useful when you want to ensure the highest level of performance by avoiding overhead of walking request parameters and response data structures.

    When :simple_json is enabled, the request parameters hash must be formatted exactly as the DynamoDB API expects. See Plugins::Protocols::JsonRpc for more details.

  • :ssl_ca_bundle (String)

    See Seahorse::Client::Plugins::NetHttp for more details.

  • :ssl_ca_directory (String)

    See Seahorse::Client::Plugins::NetHttp for more details.

  • :ssl_ca_store (String)

    See Seahorse::Client::Plugins::NetHttp for more details.

  • :ssl_verify_peer (Boolean) — default: true

    See Seahorse::Client::Plugins::NetHttp for more details.

  • :stub_responses (Boolean) — default: false

    Causes the client to return stubbed responses. By default fake responses are generated and returned. You can specify the response data to return or errors to raise by calling Aws::ClientStubs#stub_responses. See Aws::ClientStubs for more information.

    Please note When response stubbing is enabled, no HTTP requests are made, and retries are disabled. See Plugins::StubResponses for more details.

  • :validate_params (Boolean) — default: true

    When true, request parameters are validated before sending the request. See Plugins::ParamValidator for more details.

Instance Method Details

#associate_approval_rule_template_with_repository(options = {}) ⇒ Struct

Creates an association between an approval rule template and a specified repository. Then, the next time a pull request is created in the repository where the destination reference (if specified) matches the destination reference (branch) for the pull request, an approval rule that matches the template conditions is automatically created for that pull request. If no destination references are specified in the template, an approval rule that matches the template contents is created for all pull requests in that repository.

Examples:

Request syntax with placeholder values


resp = client.associate_approval_rule_template_with_repository({
  approval_rule_template_name: "ApprovalRuleTemplateName", # required
  repository_name: "RepositoryName", # required
})

Options Hash (options):

  • :approval_rule_template_name (required, String)

    The name for the approval rule template.

  • :repository_name (required, String)

    The name of the repository that you want to associate with the template.

Returns:

  • (Struct)

    Returns an empty response.

See Also:

#batch_associate_approval_rule_template_with_repositories(options = {}) ⇒ Types::BatchAssociateApprovalRuleTemplateWithRepositoriesOutput

Creates an association between an approval rule template and one or more specified repositories.

Examples:

Request syntax with placeholder values


resp = client.batch_associate_approval_rule_template_with_repositories({
  approval_rule_template_name: "ApprovalRuleTemplateName", # required
  repository_names: ["RepositoryName"], # required
})

Response structure


resp.associated_repository_names #=> Array
resp.associated_repository_names[0] #=> String
resp.errors #=> Array
resp.errors[0].repository_name #=> String
resp.errors[0].error_code #=> String
resp.errors[0].error_message #=> String

Options Hash (options):

  • :approval_rule_template_name (required, String)

    The name of the template you want to associate with one or more repositories.

  • :repository_names (required, Array<String>)

    The names of the repositories you want to associate with the template.

    The length constraint limit is for each string in the array. The array itself can be empty.

Returns:

See Also:

#batch_describe_merge_conflicts(options = {}) ⇒ Types::BatchDescribeMergeConflictsOutput

Returns information about one or more merge conflicts in the attempted merge of two commit specifiers using the squash or three-way merge strategy.

Examples:

Request syntax with placeholder values


resp = client.batch_describe_merge_conflicts({
  repository_name: "RepositoryName", # required
  destination_commit_specifier: "CommitName", # required
  source_commit_specifier: "CommitName", # required
  merge_option: "FAST_FORWARD_MERGE", # required, accepts FAST_FORWARD_MERGE, SQUASH_MERGE, THREE_WAY_MERGE
  max_merge_hunks: 1,
  max_conflict_files: 1,
  file_paths: ["Path"],
  conflict_detail_level: "FILE_LEVEL", # accepts FILE_LEVEL, LINE_LEVEL
  conflict_resolution_strategy: "NONE", # accepts NONE, ACCEPT_SOURCE, ACCEPT_DESTINATION, AUTOMERGE
  next_token: "NextToken",
})

Response structure


resp.conflicts #=> Array
resp.conflicts[0]..file_path #=> String
resp.conflicts[0]..file_sizes.source #=> Integer
resp.conflicts[0]..file_sizes.destination #=> Integer
resp.conflicts[0]..file_sizes.base #=> Integer
resp.conflicts[0]..file_modes.source #=> String, one of "EXECUTABLE", "NORMAL", "SYMLINK"
resp.conflicts[0]..file_modes.destination #=> String, one of "EXECUTABLE", "NORMAL", "SYMLINK"
resp.conflicts[0]..file_modes.base #=> String, one of "EXECUTABLE", "NORMAL", "SYMLINK"
resp.conflicts[0]..object_types.source #=> String, one of "FILE", "DIRECTORY", "GIT_LINK", "SYMBOLIC_LINK"
resp.conflicts[0]..object_types.destination #=> String, one of "FILE", "DIRECTORY", "GIT_LINK", "SYMBOLIC_LINK"
resp.conflicts[0]..object_types.base #=> String, one of "FILE", "DIRECTORY", "GIT_LINK", "SYMBOLIC_LINK"
resp.conflicts[0]..number_of_conflicts #=> Integer
resp.conflicts[0]..is_binary_file.source #=> true/false
resp.conflicts[0]..is_binary_file.destination #=> true/false
resp.conflicts[0]..is_binary_file.base #=> true/false
resp.conflicts[0]..content_conflict #=> true/false
resp.conflicts[0]..file_mode_conflict #=> true/false
resp.conflicts[0]..object_type_conflict #=> true/false
resp.conflicts[0]..merge_operations.source #=> String, one of "A", "M", "D"
resp.conflicts[0]..merge_operations.destination #=> String, one of "A", "M", "D"
resp.conflicts[0].merge_hunks #=> Array
resp.conflicts[0].merge_hunks[0].is_conflict #=> true/false
resp.conflicts[0].merge_hunks[0].source.start_line #=> Integer
resp.conflicts[0].merge_hunks[0].source.end_line #=> Integer
resp.conflicts[0].merge_hunks[0].source.hunk_content #=> String
resp.conflicts[0].merge_hunks[0].destination.start_line #=> Integer
resp.conflicts[0].merge_hunks[0].destination.end_line #=> Integer
resp.conflicts[0].merge_hunks[0].destination.hunk_content #=> String
resp.conflicts[0].merge_hunks[0].base.start_line #=> Integer
resp.conflicts[0].merge_hunks[0].base.end_line #=> Integer
resp.conflicts[0].merge_hunks[0].base.hunk_content #=> String
resp.next_token #=> String
resp.errors #=> Array
resp.errors[0].file_path #=> String
resp.errors[0].exception_name #=> String
resp.errors[0].message #=> String
resp.destination_commit_id #=> String
resp.source_commit_id #=> String
resp.base_commit_id #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository that contains the merge conflicts you want to review.

  • :destination_commit_specifier (required, String)

    The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

  • :source_commit_specifier (required, String)

    The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

  • :merge_option (required, String)

    The merge option or strategy you want to use to merge the code.

  • :max_merge_hunks (Integer)

    The maximum number of merge hunks to include in the output.

  • :max_conflict_files (Integer)

    The maximum number of files to include in the output.

  • :file_paths (Array<String>)

    The path of the target files used to describe the conflicts. If not specified, the default is all conflict files.

  • :conflict_detail_level (String)

    The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used, which returns a not-mergeable result if the same file has differences in both branches. If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in both branches has differences on the same line.

  • :conflict_resolution_strategy (String)

    Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two versions of a file. The default is NONE, which requires any conflicts to be resolved manually before the merge operation is successful.

  • :next_token (String)

    An enumeration token that, when provided in a request, returns the next batch of the results.

Returns:

See Also:

#batch_disassociate_approval_rule_template_from_repositories(options = {}) ⇒ Types::BatchDisassociateApprovalRuleTemplateFromRepositoriesOutput

Removes the association between an approval rule template and one or more specified repositories.

Examples:

Request syntax with placeholder values


resp = client.batch_disassociate_approval_rule_template_from_repositories({
  approval_rule_template_name: "ApprovalRuleTemplateName", # required
  repository_names: ["RepositoryName"], # required
})

Response structure


resp.disassociated_repository_names #=> Array
resp.disassociated_repository_names[0] #=> String
resp.errors #=> Array
resp.errors[0].repository_name #=> String
resp.errors[0].error_code #=> String
resp.errors[0].error_message #=> String

Options Hash (options):

  • :approval_rule_template_name (required, String)

    The name of the template that you want to disassociate from one or more repositories.

  • :repository_names (required, Array<String>)

    The repository names that you want to disassociate from the approval rule template.

    The length constraint limit is for each string in the array. The array itself can be empty.

Returns:

See Also:

#batch_get_commits(options = {}) ⇒ Types::BatchGetCommitsOutput

Returns information about the contents of one or more commits in a repository.

Examples:

Request syntax with placeholder values


resp = client.batch_get_commits({
  commit_ids: ["ObjectId"], # required
  repository_name: "RepositoryName", # required
})

Response structure


resp.commits #=> Array
resp.commits[0].commit_id #=> String
resp.commits[0].tree_id #=> String
resp.commits[0].parents #=> Array
resp.commits[0].parents[0] #=> String
resp.commits[0].message #=> String
resp.commits[0].author.name #=> String
resp.commits[0].author.email #=> String
resp.commits[0].author.date #=> String
resp.commits[0].committer.name #=> String
resp.commits[0].committer.email #=> String
resp.commits[0].committer.date #=> String
resp.commits[0].additional_data #=> String
resp.errors #=> Array
resp.errors[0].commit_id #=> String
resp.errors[0].error_code #=> String
resp.errors[0].error_message #=> String

Options Hash (options):

  • :commit_ids (required, Array<String>)

    The full commit IDs of the commits to get information about.

    You must supply the full SHA IDs of each commit. You cannot use shortened SHA IDs.

  • :repository_name (required, String)

    The name of the repository that contains the commits.

Returns:

See Also:

#batch_get_repositories(options = {}) ⇒ Types::BatchGetRepositoriesOutput

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 webpage can 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 webpage.

Examples:

Request syntax with placeholder values


resp = client.batch_get_repositories({
  repository_names: ["RepositoryName"], # required
})

Response structure


resp.repositories #=> Array
resp.repositories[0]. #=> String
resp.repositories[0].repository_id #=> String
resp.repositories[0].repository_name #=> String
resp.repositories[0].repository_description #=> String
resp.repositories[0].default_branch #=> String
resp.repositories[0].last_modified_date #=> Time
resp.repositories[0].creation_date #=> Time
resp.repositories[0].clone_url_http #=> String
resp.repositories[0].clone_url_ssh #=> String
resp.repositories[0].arn #=> String
resp.repositories_not_found #=> Array
resp.repositories_not_found[0] #=> String

Options Hash (options):

  • :repository_names (required, Array<String>)

    The names of the repositories to get information about.

    The length constraint limit is for each string in the array. The array itself can be empty.

Returns:

See Also:

#create_approval_rule_template(options = {}) ⇒ Types::CreateApprovalRuleTemplateOutput

Creates a template for approval rules that can then be associated with one or more repositories in your AWS account. When you associate a template with a repository, AWS CodeCommit creates an approval rule that matches the conditions of the template for all pull requests that meet the conditions of the template. For more information, see AssociateApprovalRuleTemplateWithRepository.

Examples:

Request syntax with placeholder values


resp = client.create_approval_rule_template({
  approval_rule_template_name: "ApprovalRuleTemplateName", # required
  approval_rule_template_content: "ApprovalRuleTemplateContent", # required
  approval_rule_template_description: "ApprovalRuleTemplateDescription",
})

Response structure


resp.approval_rule_template.approval_rule_template_id #=> String
resp.approval_rule_template.approval_rule_template_name #=> String
resp.approval_rule_template.approval_rule_template_description #=> String
resp.approval_rule_template.approval_rule_template_content #=> String
resp.approval_rule_template.rule_content_sha_256 #=> String
resp.approval_rule_template.last_modified_date #=> Time
resp.approval_rule_template.creation_date #=> Time
resp.approval_rule_template.last_modified_user #=> String

Options Hash (options):

  • :approval_rule_template_name (required, String)

    The name of the approval rule template. Provide descriptive names, because this name is applied to the approval rules created automatically in associated repositories.

  • :approval_rule_template_content (required, String)

    The content of the approval rule that is created on pull requests in associated repositories. If you specify one or more destination references (branches), approval rules are created in an associated repository only if their destination references (branches) match those specified in the template.

    When you create the content of the approval rule template, you can specify approvers in an approval pool in one of two ways:

    • CodeCommitApprovers: This option only requires an AWS account and a resource. It can be used for both IAM users and federated access users whose name matches the provided resource name. This is a very powerful option that offers a great deal of flexibility. For example, if you specify the AWS account 123456789012 and Mary_Major, all of the following are counted as approvals coming from that user:

    • An IAM user in the account (arn:aws:iam::123456789012:user/Mary_Major)

    • A federated user identified in IAM as Mary_Major (arn:aws:sts::123456789012:federated-user/Mary_Major)

    This option does not recognize an active session of someone assuming the role of CodeCommitReview with a role session name of Mary_Major (arn:aws:sts::123456789012:assumed-role/CodeCommitReview/Mary_Major) unless you include a wildcard (*Mary_Major).

    • Fully qualified ARN: This option allows you to specify the fully qualified Amazon Resource Name (ARN) of the IAM user or role.

    For more information about IAM ARNs, wildcards, and formats, see IAM Identifiers in the IAM User Guide.

  • :approval_rule_template_description (String)

    The description of the approval rule template. Consider providing a description that explains what this template does and when it might be appropriate to associate it with repositories.

Returns:

See Also:

#create_branch(options = {}) ⇒ Struct

Creates a 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.

Examples:

Request syntax with placeholder values


resp = client.create_branch({
  repository_name: "RepositoryName", # required
  branch_name: "BranchName", # required
  commit_id: "CommitId", # required
})

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository in which you want to create the new branch.

  • :branch_name (required, String)

    The name of the new branch to create.

  • :commit_id (required, String)

    The ID of the commit to point the new branch to.

Returns:

  • (Struct)

    Returns an empty response.

See Also:

#create_commit(options = {}) ⇒ Types::CreateCommitOutput

Creates a commit for a repository on the tip of a specified branch.

Examples:

Request syntax with placeholder values


resp = client.create_commit({
  repository_name: "RepositoryName", # required
  branch_name: "BranchName", # required
  parent_commit_id: "CommitId",
  author_name: "Name",
  email: "Email",
  commit_message: "Message",
  keep_empty_folders: false,
  put_files: [
    {
      file_path: "Path", # required
      file_mode: "EXECUTABLE", # accepts EXECUTABLE, NORMAL, SYMLINK
      file_content: "data",
      source_file: {
        file_path: "Path", # required
        is_move: false,
      },
    },
  ],
  delete_files: [
    {
      file_path: "Path", # required
    },
  ],
  set_file_modes: [
    {
      file_path: "Path", # required
      file_mode: "EXECUTABLE", # required, accepts EXECUTABLE, NORMAL, SYMLINK
    },
  ],
})

Response structure


resp.commit_id #=> String
resp.tree_id #=> String
resp.files_added #=> Array
resp.files_added[0].absolute_path #=> String
resp.files_added[0].blob_id #=> String
resp.files_added[0].file_mode #=> String, one of "EXECUTABLE", "NORMAL", "SYMLINK"
resp.files_updated #=> Array
resp.files_updated[0].absolute_path #=> String
resp.files_updated[0].blob_id #=> String
resp.files_updated[0].file_mode #=> String, one of "EXECUTABLE", "NORMAL", "SYMLINK"
resp.files_deleted #=> Array
resp.files_deleted[0].absolute_path #=> String
resp.files_deleted[0].blob_id #=> String
resp.files_deleted[0].file_mode #=> String, one of "EXECUTABLE", "NORMAL", "SYMLINK"

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository where you create the commit.

  • :branch_name (required, String)

    The name of the branch where you create the commit.

  • :parent_commit_id (String)

    The ID of the commit that is the parent of the commit you create. Not required if this is an empty repository.

  • :author_name (String)

    The name of the author who created the commit. This information is used as both the author and committer for the commit.

  • :email (String)

    The email address of the person who created the commit.

  • :commit_message (String)

    The commit message you want to include in the commit. Commit messages are limited to 256 KB. If no message is specified, a default message is used.

  • :keep_empty_folders (Boolean)

    If the commit contains deletions, whether to keep a folder or folder structure if the changes leave the folders empty. If true, a ..gitkeep file is created for empty folders. The default is false.

  • :put_files (Array<Types::PutFileEntry>)

    The files to add or update in this commit.

  • :delete_files (Array<Types::DeleteFileEntry>)

    The files to delete in this commit. These files still exist in earlier commits.

  • :set_file_modes (Array<Types::SetFileModeEntry>)

    The file modes to update for files in this commit.

Returns:

See Also:

#create_pull_request(options = {}) ⇒ Types::CreatePullRequestOutput

Creates a pull request in the specified repository.

Examples:

Request syntax with placeholder values


resp = client.create_pull_request({
  title: "Title", # required
  description: "Description",
  targets: [ # required
    {
      repository_name: "RepositoryName", # required
      source_reference: "ReferenceName", # required
      destination_reference: "ReferenceName",
    },
  ],
  client_request_token: "ClientRequestToken",
})

Response structure


resp.pull_request.pull_request_id #=> String
resp.pull_request.title #=> String
resp.pull_request.description #=> String
resp.pull_request.last_activity_date #=> Time
resp.pull_request.creation_date #=> Time
resp.pull_request.pull_request_status #=> String, one of "OPEN", "CLOSED"
resp.pull_request.author_arn #=> String
resp.pull_request.pull_request_targets #=> Array
resp.pull_request.pull_request_targets[0].repository_name #=> String
resp.pull_request.pull_request_targets[0].source_reference #=> String
resp.pull_request.pull_request_targets[0].destination_reference #=> String
resp.pull_request.pull_request_targets[0].destination_commit #=> String
resp.pull_request.pull_request_targets[0].source_commit #=> String
resp.pull_request.pull_request_targets[0].merge_base #=> String
resp.pull_request.pull_request_targets[0]..is_merged #=> true/false
resp.pull_request.pull_request_targets[0]..merged_by #=> String
resp.pull_request.pull_request_targets[0]..merge_commit_id #=> String
resp.pull_request.pull_request_targets[0]..merge_option #=> String, one of "FAST_FORWARD_MERGE", "SQUASH_MERGE", "THREE_WAY_MERGE"
resp.pull_request.client_request_token #=> String
resp.pull_request.revision_id #=> String
resp.pull_request.approval_rules #=> Array
resp.pull_request.approval_rules[0].approval_rule_id #=> String
resp.pull_request.approval_rules[0].approval_rule_name #=> String
resp.pull_request.approval_rules[0].approval_rule_content #=> String
resp.pull_request.approval_rules[0].rule_content_sha_256 #=> String
resp.pull_request.approval_rules[0].last_modified_date #=> Time
resp.pull_request.approval_rules[0].creation_date #=> Time
resp.pull_request.approval_rules[0].last_modified_user #=> String
resp.pull_request.approval_rules[0].origin_approval_rule_template.approval_rule_template_id #=> String
resp.pull_request.approval_rules[0].origin_approval_rule_template.approval_rule_template_name #=> String

Options Hash (options):

  • :title (required, String)

    The title of the pull request. This title is used to identify the pull request to other users in the repository.

  • :description (String)

    A description of the pull request.

  • :targets (required, Array<Types::Target>)

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

  • :client_request_token (String)

    This parameter will be auto-filled on your behalf with a random UUIDv4 when no value is provided. 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 returns information about the initial request that used that token.

    The AWS SDKs prepopulate client request tokens. If you are using an AWS SDK, an idempotency token is created for you.

Returns:

See Also:

#create_pull_request_approval_rule(options = {}) ⇒ Types::CreatePullRequestApprovalRuleOutput

Creates an approval rule for a pull request.

Examples:

Request syntax with placeholder values


resp = client.create_pull_request_approval_rule({
  pull_request_id: "PullRequestId", # required
  approval_rule_name: "ApprovalRuleName", # required
  approval_rule_content: "ApprovalRuleContent", # required
})

Response structure


resp.approval_rule.approval_rule_id #=> String
resp.approval_rule.approval_rule_name #=> String
resp.approval_rule.approval_rule_content #=> String
resp.approval_rule.rule_content_sha_256 #=> String
resp.approval_rule.last_modified_date #=> Time
resp.approval_rule.creation_date #=> Time
resp.approval_rule.last_modified_user #=> String
resp.approval_rule.origin_approval_rule_template.approval_rule_template_id #=> String
resp.approval_rule.origin_approval_rule_template.approval_rule_template_name #=> String

Options Hash (options):

  • :pull_request_id (required, String)

    The system-generated ID of the pull request for which you want to create the approval rule.

  • :approval_rule_name (required, String)

    The name for the approval rule.

  • :approval_rule_content (required, String)

    The content of the approval rule, including the number of approvals needed and the structure of an approval pool defined for approvals, if any. For more information about approval pools, see the AWS CodeCommit User Guide.

    When you create the content of the approval rule, you can specify approvers in an approval pool in one of two ways:

    • CodeCommitApprovers: This option only requires an AWS account and a resource. It can be used for both IAM users and federated access users whose name matches the provided resource name. This is a very powerful option that offers a great deal of flexibility. For example, if you specify the AWS account 123456789012 and Mary_Major, all of the following would be counted as approvals coming from that user:

    • An IAM user in the account (arn:aws:iam::123456789012:user/Mary_Major)

    • A federated user identified in IAM as Mary_Major (arn:aws:sts::123456789012:federated-user/Mary_Major)

    This option does not recognize an active session of someone assuming the role of CodeCommitReview with a role session name of Mary_Major (arn:aws:sts::123456789012:assumed-role/CodeCommitReview/Mary_Major) unless you include a wildcard (*Mary_Major).

    • Fully qualified ARN: This option allows you to specify the fully qualified Amazon Resource Name (ARN) of the IAM user or role.

    For more information about IAM ARNs, wildcards, and formats, see IAM Identifiers in the IAM User Guide.

Returns:

See Also:

#create_repository(options = {}) ⇒ Types::CreateRepositoryOutput

Creates a new, empty repository.

Examples:

Request syntax with placeholder values


resp = client.create_repository({
  repository_name: "RepositoryName", # required
  repository_description: "RepositoryDescription",
  tags: {
    "TagKey" => "TagValue",
  },
})

Response structure


resp.. #=> String
resp..repository_id #=> String
resp..repository_name #=> String
resp..repository_description #=> String
resp..default_branch #=> String
resp..last_modified_date #=> Time
resp..creation_date #=> Time
resp..clone_url_http #=> String
resp..clone_url_ssh #=> String
resp..arn #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the new repository to be created.

    The repository name must be unique across the calling AWS account. Repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For more information about the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix .git is prohibited.

  • :repository_description (String)

    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 webpage can 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 webpage.

  • :tags (Hash<String,String>)

    One or more tag key-value pairs to use when tagging this repository.

Returns:

See Also:

#create_unreferenced_merge_commit(options = {}) ⇒ Types::CreateUnreferencedMergeCommitOutput

Creates an unreferenced commit that represents the result of merging two branches using a specified merge strategy. This can help you determine the outcome of a potential merge. This API cannot be used with the fast-forward merge strategy because that strategy does not create a merge commit.

This unreferenced merge commit can only be accessed using the GetCommit API or through git commands such as git fetch. To retrieve this commit, you must specify its commit ID or otherwise reference it.

Examples:

Request syntax with placeholder values


resp = client.create_unreferenced_merge_commit({
  repository_name: "RepositoryName", # required
  source_commit_specifier: "CommitName", # required
  destination_commit_specifier: "CommitName", # required
  merge_option: "FAST_FORWARD_MERGE", # required, accepts FAST_FORWARD_MERGE, SQUASH_MERGE, THREE_WAY_MERGE
  conflict_detail_level: "FILE_LEVEL", # accepts FILE_LEVEL, LINE_LEVEL
  conflict_resolution_strategy: "NONE", # accepts NONE, ACCEPT_SOURCE, ACCEPT_DESTINATION, AUTOMERGE
  author_name: "Name",
  email: "Email",
  commit_message: "Message",
  keep_empty_folders: false,
  conflict_resolution: {
    replace_contents: [
      {
        file_path: "Path", # required
        replacement_type: "KEEP_BASE", # required, accepts KEEP_BASE, KEEP_SOURCE, KEEP_DESTINATION, USE_NEW_CONTENT
        content: "data",
        file_mode: "EXECUTABLE", # accepts EXECUTABLE, NORMAL, SYMLINK
      },
    ],
    delete_files: [
      {
        file_path: "Path", # required
      },
    ],
    set_file_modes: [
      {
        file_path: "Path", # required
        file_mode: "EXECUTABLE", # required, accepts EXECUTABLE, NORMAL, SYMLINK
      },
    ],
  },
})

Response structure


resp.commit_id #=> String
resp.tree_id #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository where you want to create the unreferenced merge commit.

  • :source_commit_specifier (required, String)

    The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

  • :destination_commit_specifier (required, String)

    The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

  • :merge_option (required, String)

    The merge option or strategy you want to use to merge the code.

  • :conflict_detail_level (String)

    The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used, which returns a not-mergeable result if the same file has differences in both branches. If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in both branches has differences on the same line.

  • :conflict_resolution_strategy (String)

    Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two versions of a file. The default is NONE, which requires any conflicts to be resolved manually before the merge operation is successful.

  • :author_name (String)

    The name of the author who created the unreferenced commit. This information is used as both the author and committer for the commit.

  • :email (String)

    The email address for the person who created the unreferenced commit.

  • :commit_message (String)

    The commit message for the unreferenced commit.

  • :keep_empty_folders (Boolean)

    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 is created for empty folders. The default is false.

  • :conflict_resolution (Types::ConflictResolution)

    If AUTOMERGE is the conflict resolution strategy, a list of inputs to use when resolving conflicts during a merge.

Returns:

See Also:

#delete_approval_rule_template(options = {}) ⇒ Types::DeleteApprovalRuleTemplateOutput

Deletes a specified approval rule template. Deleting a template does not remove approval rules on pull requests already created with the template.

Examples:

Request syntax with placeholder values


resp = client.delete_approval_rule_template({
  approval_rule_template_name: "ApprovalRuleTemplateName", # required
})

Response structure


resp.approval_rule_template_id #=> String

Options Hash (options):

  • :approval_rule_template_name (required, String)

    The name of the approval rule template to delete.

Returns:

See Also:

#delete_branch(options = {}) ⇒ Types::DeleteBranchOutput

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

Examples:

Request syntax with placeholder values


resp = client.delete_branch({
  repository_name: "RepositoryName", # required
  branch_name: "BranchName", # required
})

Response structure


resp.deleted_branch.branch_name #=> String
resp.deleted_branch.commit_id #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository that contains the branch to be deleted.

  • :branch_name (required, String)

    The name of the branch to delete.

Returns:

See Also:

#delete_comment_content(options = {}) ⇒ Types::DeleteCommentContentOutput

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

Examples:

Request syntax with placeholder values


resp = client.delete_comment_content({
  comment_id: "CommentId", # required
})

Response structure


resp.comment.comment_id #=> String
resp.comment.content #=> String
resp.comment.in_reply_to #=> String
resp.comment.creation_date #=> Time
resp.comment.last_modified_date #=> Time
resp.comment.author_arn #=> String
resp.comment.deleted #=> true/false
resp.comment.client_request_token #=> String
resp.comment.caller_reactions #=> Array
resp.comment.caller_reactions[0] #=> String
resp.comment.reaction_counts #=> Hash
resp.comment.reaction_counts["ReactionValue"] #=> Integer

Options Hash (options):

Returns:

See Also:

#delete_file(options = {}) ⇒ Types::DeleteFileOutput

Deletes a specified file from a specified branch. A commit is created on the branch that contains the revision. The file still exists in the commits earlier to the commit that contains the deletion.

Examples:

Request syntax with placeholder values


resp = client.delete_file({
  repository_name: "RepositoryName", # required
  branch_name: "BranchName", # required
  file_path: "Path", # required
  parent_commit_id: "CommitId", # required
  keep_empty_folders: false,
  commit_message: "Message",
  name: "Name",
  email: "Email",
})

Response structure


resp.commit_id #=> String
resp.blob_id #=> String
resp.tree_id #=> String
resp.file_path #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository that contains the file to delete.

  • :branch_name (required, String)

    The name of the branch where the commit that deletes the file is made.

  • :file_path (required, String)

    The fully qualified path to the file that to 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.

  • :parent_commit_id (required, String)

    The ID of the commit that is the tip of the branch where you want to create the commit that deletes the file. This must be the HEAD commit for the branch. The commit that deletes the file is created from this commit ID.

  • :keep_empty_folders (Boolean)

    If a file is the only object in the folder or directory, specifies whether to delete the folder or directory that contains the file. By default, empty folders are 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 also deletes the empty folders dir4, dir3, and dir2.

  • :commit_message (String)

    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 is used.

  • :name (String)

    The name of the author of the commit that deletes the file. If no name is specified, the user\'s ARN is used as the author name and committer name.

  • :email (String)

    The email address for the commit that deletes the file. If no email address is specified, the email address is left blank.

Returns:

See Also:

#delete_pull_request_approval_rule(options = {}) ⇒ Types::DeletePullRequestApprovalRuleOutput

Deletes an approval rule from a specified pull request. Approval rules can be deleted from a pull request only if the pull request is open, and if the approval rule was created specifically for a pull request and not generated from an approval rule template associated with the repository where the pull request was created. You cannot delete an approval rule from a merged or closed pull request.

Examples:

Request syntax with placeholder values


resp = client.delete_pull_request_approval_rule({
  pull_request_id: "PullRequestId", # required
  approval_rule_name: "ApprovalRuleName", # required
})

Response structure


resp.approval_rule_id #=> String

Options Hash (options):

  • :pull_request_id (required, String)

    The system-generated ID of the pull request that contains the approval rule you want to delete.

  • :approval_rule_name (required, String)

    The name of the approval rule you want to delete.

Returns:

See Also:

#delete_repository(options = {}) ⇒ Types::DeleteRepositoryOutput

Deletes a repository. If a specified repository was already deleted, a null repository ID is returned.

Deleting a repository also deletes all associated objects and metadata. After a repository is deleted, all future push calls to the deleted repository fail.

Examples:

Request syntax with placeholder values


resp = client.delete_repository({
  repository_name: "RepositoryName", # required
})

Response structure


resp.repository_id #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository to delete.

Returns:

See Also:

#describe_merge_conflicts(options = {}) ⇒ Types::DescribeMergeConflictsOutput

Returns information about one or more merge conflicts in the attempted merge of two commit specifiers using the squash or three-way merge strategy. If the merge option for the attempted merge is specified as FAST_FORWARD_MERGE, an exception is thrown.

Examples:

Request syntax with placeholder values


resp = client.describe_merge_conflicts({
  repository_name: "RepositoryName", # required
  destination_commit_specifier: "CommitName", # required
  source_commit_specifier: "CommitName", # required
  merge_option: "FAST_FORWARD_MERGE", # required, accepts FAST_FORWARD_MERGE, SQUASH_MERGE, THREE_WAY_MERGE
  max_merge_hunks: 1,
  file_path: "Path", # required
  conflict_detail_level: "FILE_LEVEL", # accepts FILE_LEVEL, LINE_LEVEL
  conflict_resolution_strategy: "NONE", # accepts NONE, ACCEPT_SOURCE, ACCEPT_DESTINATION, AUTOMERGE
  next_token: "NextToken",
})

Response structure


resp..file_path #=> String
resp..file_sizes.source #=> Integer
resp..file_sizes.destination #=> Integer
resp..file_sizes.base #=> Integer
resp..file_modes.source #=> String, one of "EXECUTABLE", "NORMAL", "SYMLINK"
resp..file_modes.destination #=> String, one of "EXECUTABLE", "NORMAL", "SYMLINK"
resp..file_modes.base #=> String, one of "EXECUTABLE", "NORMAL", "SYMLINK"
resp..object_types.source #=> String, one of "FILE", "DIRECTORY", "GIT_LINK", "SYMBOLIC_LINK"
resp..object_types.destination #=> String, one of "FILE", "DIRECTORY", "GIT_LINK", "SYMBOLIC_LINK"
resp..object_types.base #=> String, one of "FILE", "DIRECTORY", "GIT_LINK", "SYMBOLIC_LINK"
resp..number_of_conflicts #=> Integer
resp..is_binary_file.source #=> true/false
resp..is_binary_file.destination #=> true/false
resp..is_binary_file.base #=> true/false
resp..content_conflict #=> true/false
resp..file_mode_conflict #=> true/false
resp..object_type_conflict #=> true/false
resp..merge_operations.source #=> String, one of "A", "M", "D"
resp..merge_operations.destination #=> String, one of "A", "M", "D"
resp.merge_hunks #=> Array
resp.merge_hunks[0].is_conflict #=> true/false
resp.merge_hunks[0].source.start_line #=> Integer
resp.merge_hunks[0].source.end_line #=> Integer
resp.merge_hunks[0].source.hunk_content #=> String
resp.merge_hunks[0].destination.start_line #=> Integer
resp.merge_hunks[0].destination.end_line #=> Integer
resp.merge_hunks[0].destination.hunk_content #=> String
resp.merge_hunks[0].base.start_line #=> Integer
resp.merge_hunks[0].base.end_line #=> Integer
resp.merge_hunks[0].base.hunk_content #=> String
resp.next_token #=> String
resp.destination_commit_id #=> String
resp.source_commit_id #=> String
resp.base_commit_id #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository where you want to get information about a merge conflict.

  • :destination_commit_specifier (required, String)

    The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

  • :source_commit_specifier (required, String)

    The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

  • :merge_option (required, String)

    The merge option or strategy you want to use to merge the code.

  • :max_merge_hunks (Integer)

    The maximum number of merge hunks to include in the output.

  • :file_path (required, String)

    The path of the target files used to describe the conflicts.

  • :conflict_detail_level (String)

    The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used, which returns a not-mergeable result if the same file has differences in both branches. If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in both branches has differences on the same line.

  • :conflict_resolution_strategy (String)

    Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two versions of a file. The default is NONE, which requires any conflicts to be resolved manually before the merge operation is successful.

  • :next_token (String)

    An enumeration token that, when provided in a request, returns the next batch of the results.

Returns:

See Also:

#describe_pull_request_events(options = {}) ⇒ Types::DescribePullRequestEventsOutput

Returns information about one or more pull request events.

Examples:

Request syntax with placeholder values


resp = client.describe_pull_request_events({
  pull_request_id: "PullRequestId", # required
  pull_request_event_type: "PULL_REQUEST_CREATED", # accepts PULL_REQUEST_CREATED, PULL_REQUEST_STATUS_CHANGED, PULL_REQUEST_SOURCE_REFERENCE_UPDATED, PULL_REQUEST_MERGE_STATE_CHANGED, PULL_REQUEST_APPROVAL_RULE_CREATED, PULL_REQUEST_APPROVAL_RULE_UPDATED, PULL_REQUEST_APPROVAL_RULE_DELETED, PULL_REQUEST_APPROVAL_RULE_OVERRIDDEN, PULL_REQUEST_APPROVAL_STATE_CHANGED
  actor_arn: "Arn",
  next_token: "NextToken",
  max_results: 1,
})

Response structure


resp.pull_request_events #=> Array
resp.pull_request_events[0].pull_request_id #=> String
resp.pull_request_events[0].event_date #=> Time
resp.pull_request_events[0].pull_request_event_type #=> String, one of "PULL_REQUEST_CREATED", "PULL_REQUEST_STATUS_CHANGED", "PULL_REQUEST_SOURCE_REFERENCE_UPDATED", "PULL_REQUEST_MERGE_STATE_CHANGED", "PULL_REQUEST_APPROVAL_RULE_CREATED", "PULL_REQUEST_APPROVAL_RULE_UPDATED", "PULL_REQUEST_APPROVAL_RULE_DELETED", "PULL_REQUEST_APPROVAL_RULE_OVERRIDDEN", "PULL_REQUEST_APPROVAL_STATE_CHANGED"
resp.pull_request_events[0].actor_arn #=> String
resp.pull_request_events[0]..repository_name #=> String
resp.pull_request_events[0]..source_commit_id #=> String
resp.pull_request_events[0]..destination_commit_id #=> String
resp.pull_request_events[0]..merge_base #=> String
resp.pull_request_events[0]..pull_request_status #=> String, one of "OPEN", "CLOSED"
resp.pull_request_events[0]..repository_name #=> String
resp.pull_request_events[0]..before_commit_id #=> String
resp.pull_request_events[0]..after_commit_id #=> String
resp.pull_request_events[0]..merge_base #=> String
resp.pull_request_events[0]..repository_name #=> String
resp.pull_request_events[0]..destination_reference #=> String
resp.pull_request_events[0]...is_merged #=> true/false
resp.pull_request_events[0]...merged_by #=> String
resp.pull_request_events[0]...merge_commit_id #=> String
resp.pull_request_events[0]...merge_option #=> String, one of "FAST_FORWARD_MERGE", "SQUASH_MERGE", "THREE_WAY_MERGE"
resp.pull_request_events[0]..approval_rule_name #=> String
resp.pull_request_events[0]..approval_rule_id #=> String
resp.pull_request_events[0]..approval_rule_content #=> String
resp.pull_request_events[0]..revision_id #=> String
resp.pull_request_events[0]..approval_status #=> String, one of "APPROVE", "REVOKE"
resp.pull_request_events[0]..revision_id #=> String
resp.pull_request_events[0]..override_status #=> String, one of "OVERRIDE", "REVOKE"
resp.next_token #=> String

Options Hash (options):

  • :pull_request_id (required, String)

    The system-generated ID of the pull request. To get this ID, use ListPullRequests.

  • :pull_request_event_type (String)

    Optional. The pull request event type about which you want to return information.

  • :actor_arn (String)

    The Amazon Resource Name (ARN) of the user whose actions resulted in the event. Examples include updating the pull request with more commits or changing the status of a pull request.

  • :next_token (String)

    An enumeration token that, when provided in a request, returns the next batch of the results.

  • :max_results (Integer)

    A non-zero, 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.

Returns:

See Also:

#disassociate_approval_rule_template_from_repository(options = {}) ⇒ Struct

Removes the association between a template and a repository so that approval rules based on the template are not automatically created when pull requests are created in the specified repository. This does not delete any approval rules previously created for pull requests through the template association.

Examples:

Request syntax with placeholder values


resp = client.disassociate_approval_rule_template_from_repository({
  approval_rule_template_name: "ApprovalRuleTemplateName", # required
  repository_name: "RepositoryName", # required
})

Options Hash (options):

  • :approval_rule_template_name (required, String)

    The name of the approval rule template to disassociate from a specified repository.

  • :repository_name (required, String)

    The name of the repository you want to disassociate from the template.

Returns:

  • (Struct)

    Returns an empty response.

See Also:

#evaluate_pull_request_approval_rules(options = {}) ⇒ Types::EvaluatePullRequestApprovalRulesOutput

Evaluates whether a pull request has met all the conditions specified in its associated approval rules.

Examples:

Request syntax with placeholder values


resp = client.evaluate_pull_request_approval_rules({
  pull_request_id: "PullRequestId", # required
  revision_id: "RevisionId", # required
})

Response structure


resp.evaluation.approved #=> true/false
resp.evaluation.overridden #=> true/false
resp.evaluation.approval_rules_satisfied #=> Array
resp.evaluation.approval_rules_satisfied[0] #=> String
resp.evaluation.approval_rules_not_satisfied #=> Array
resp.evaluation.approval_rules_not_satisfied[0] #=> String

Options Hash (options):

  • :pull_request_id (required, String)

    The system-generated ID of the pull request you want to evaluate.

  • :revision_id (required, String)

    The system-generated ID for the pull request revision. To retrieve the most recent revision ID for a pull request, use GetPullRequest.

Returns:

See Also:

#get_approval_rule_template(options = {}) ⇒ Types::GetApprovalRuleTemplateOutput

Returns information about a specified approval rule template.

Examples:

Request syntax with placeholder values


resp = client.get_approval_rule_template({
  approval_rule_template_name: "ApprovalRuleTemplateName", # required
})

Response structure


resp.approval_rule_template.approval_rule_template_id #=> String
resp.approval_rule_template.approval_rule_template_name #=> String
resp.approval_rule_template.approval_rule_template_description #=> String
resp.approval_rule_template.approval_rule_template_content #=> String
resp.approval_rule_template.rule_content_sha_256 #=> String
resp.approval_rule_template.last_modified_date #=> Time
resp.approval_rule_template.creation_date #=> Time
resp.approval_rule_template.last_modified_user #=> String

Options Hash (options):

  • :approval_rule_template_name (required, String)

    The name of the approval rule template for which you want to get information.

Returns:

See Also:

#get_blob(options = {}) ⇒ Types::GetBlobOutput

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

Examples:

Request syntax with placeholder values


resp = client.get_blob({
  repository_name: "RepositoryName", # required
  blob_id: "ObjectId", # required
})

Response structure


resp.content #=> IO

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository that contains the blob.

  • :blob_id (required, String)

    The ID of the blob, which is its SHA-1 pointer.

Returns:

See Also:

#get_branch(options = {}) ⇒ Types::GetBranchOutput

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

Examples:

Request syntax with placeholder values


resp = client.get_branch({
  repository_name: "RepositoryName",
  branch_name: "BranchName",
})

Response structure


resp.branch.branch_name #=> String
resp.branch.commit_id #=> String

Options Hash (options):

  • :repository_name (String)

    The name of the repository that contains the branch for which you want to retrieve information.

  • :branch_name (String)

    The name of the branch for which you want to retrieve information.

Returns:

See Also:

#get_comment(options = {}) ⇒ Types::GetCommentOutput

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

Reaction counts might include numbers from user identities who were deleted after the reaction was made. For a count of reactions from active identities, use GetCommentReactions.

Examples:

Request syntax with placeholder values


resp = client.get_comment({
  comment_id: "CommentId", # required
})

Response structure


resp.comment.comment_id #=> String
resp.comment.content #=> String
resp.comment.in_reply_to #=> String
resp.comment.creation_date #=> Time
resp.comment.last_modified_date #=> Time
resp.comment.author_arn #=> String
resp.comment.deleted #=> true/false
resp.comment.client_request_token #=> String
resp.comment.caller_reactions #=> Array
resp.comment.caller_reactions[0] #=> String
resp.comment.reaction_counts #=> Hash
resp.comment.reaction_counts["ReactionValue"] #=> Integer

Options Hash (options):

Returns:

See Also:

#get_comment_reactions(options = {}) ⇒ Types::GetCommentReactionsOutput

Returns information about reactions to a specified comment ID. Reactions from users who have been deleted will not be included in the count.

Examples:

Request syntax with placeholder values


resp = client.get_comment_reactions({
  comment_id: "CommentId", # required
  reaction_user_arn: "Arn",
  next_token: "NextToken",
  max_results: 1,
})

Response structure


resp.reactions_for_comment #=> Array
resp.reactions_for_comment[0].reaction.emoji #=> String
resp.reactions_for_comment[0].reaction.short_code #=> String
resp.reactions_for_comment[0].reaction.unicode #=> String
resp.reactions_for_comment[0].reaction_users #=> Array
resp.reactions_for_comment[0].reaction_users[0] #=> String
resp.reactions_for_comment[0].reactions_from_deleted_users_count #=> Integer
resp.next_token #=> String

Options Hash (options):

  • :comment_id (required, String)

    The ID of the comment for which you want to get reactions information.

  • :reaction_user_arn (String)

    Optional. The Amazon Resource Name (ARN) of the user or identity for which you want to get reaction information.

  • :next_token (String)

    An enumeration token that, when provided in a request, returns the next batch of the results.

  • :max_results (Integer)

    A non-zero, non-negative integer used to limit the number of returned results. The default is the same as the allowed maximum, 1,000.

Returns:

See Also:

#get_comments_for_compared_commit(options = {}) ⇒ Types::GetCommentsForComparedCommitOutput

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

Reaction counts might include numbers from user identities who were deleted after the reaction was made. For a count of reactions from active identities, use GetCommentReactions.

Examples:

Request syntax with placeholder values


resp = client.get_comments_for_compared_commit({
  repository_name: "RepositoryName", # required
  before_commit_id: "CommitId",
  after_commit_id: "CommitId", # required
  next_token: "NextToken",
  max_results: 1,
})

Response structure


resp.comments_for_compared_commit_data #=> Array
resp.comments_for_compared_commit_data[0].repository_name #=> String
resp.comments_for_compared_commit_data[0].before_commit_id #=> String
resp.comments_for_compared_commit_data[0].after_commit_id #=> String
resp.comments_for_compared_commit_data[0].before_blob_id #=> String
resp.comments_for_compared_commit_data[0].after_blob_id #=> String
resp.comments_for_compared_commit_data[0].location.file_path #=> String
resp.comments_for_compared_commit_data[0].location.file_position #=> Integer
resp.comments_for_compared_commit_data[0].location.relative_file_version #=> String, one of "BEFORE", "AFTER"
resp.comments_for_compared_commit_data[0].comments #=> Array
resp.comments_for_compared_commit_data[0].comments[0].comment_id #=> String
resp.comments_for_compared_commit_data[0].comments[0].content #=> String
resp.comments_for_compared_commit_data[0].comments[0].in_reply_to #=> String
resp.comments_for_compared_commit_data[0].comments[0].creation_date #=> Time
resp.comments_for_compared_commit_data[0].comments[0].last_modified_date #=> Time
resp.comments_for_compared_commit_data[0].comments[0].author_arn #=> String
resp.comments_for_compared_commit_data[0].comments[0].deleted #=> true/false
resp.comments_for_compared_commit_data[0].comments[0].client_request_token #=> String
resp.comments_for_compared_commit_data[0].comments[0].caller_reactions #=> Array
resp.comments_for_compared_commit_data[0].comments[0].caller_reactions[0] #=> String
resp.comments_for_compared_commit_data[0].comments[0].reaction_counts #=> Hash
resp.comments_for_compared_commit_data[0].comments[0].reaction_counts["ReactionValue"] #=> Integer
resp.next_token #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository where you want to compare commits.

  • :before_commit_id (String)

    To establish the directionality of the comparison, the full commit ID of the before commit.

  • :after_commit_id (required, String)

    To establish the directionality of the comparison, the full commit ID of the after commit.

  • :next_token (String)

    An enumeration token that when provided in a request, returns the next batch of the results.

  • :max_results (Integer)

    A non-zero, non-negative integer used to limit the number of returned results. The default is 100 comments, but you can configure up to 500.

Returns:

See Also:

#get_comments_for_pull_request(options = {}) ⇒ Types::GetCommentsForPullRequestOutput

Returns comments made on a pull request.

Reaction counts might include numbers from user identities who were deleted after the reaction was made. For a count of reactions from active identities, use GetCommentReactions.

Examples:

Request syntax with placeholder values


resp = client.get_comments_for_pull_request({
  pull_request_id: "PullRequestId", # required
  repository_name: "RepositoryName",
  before_commit_id: "CommitId",
  after_commit_id: "CommitId",
  next_token: "NextToken",
  max_results: 1,
})

Response structure


resp.comments_for_pull_request_data #=> Array
resp.comments_for_pull_request_data[0].pull_request_id #=> String
resp.comments_for_pull_request_data[0].repository_name #=> String
resp.comments_for_pull_request_data[0].before_commit_id #=> String
resp.comments_for_pull_request_data[0].after_commit_id #=> String
resp.comments_for_pull_request_data[0].before_blob_id #=> String
resp.comments_for_pull_request_data[0].after_blob_id #=> String
resp.comments_for_pull_request_data[0].location.file_path #=> String
resp.comments_for_pull_request_data[0].location.file_position #=> Integer
resp.comments_for_pull_request_data[0].location.relative_file_version #=> String, one of "BEFORE", "AFTER"
resp.comments_for_pull_request_data[0].comments #=> Array
resp.comments_for_pull_request_data[0].comments[0].comment_id #=> String
resp.comments_for_pull_request_data[0].comments[0].content #=> String
resp.comments_for_pull_request_data[0].comments[0].in_reply_to #=> String
resp.comments_for_pull_request_data[0].comments[0].creation_date #=> Time
resp.comments_for_pull_request_data[0].comments[0].last_modified_date #=> Time
resp.comments_for_pull_request_data[0].comments[0].author_arn #=> String
resp.comments_for_pull_request_data[0].comments[0].deleted #=> true/false
resp.comments_for_pull_request_data[0].comments[0].client_request_token #=> String
resp.comments_for_pull_request_data[0].comments[0].caller_reactions #=> Array
resp.comments_for_pull_request_data[0].comments[0].caller_reactions[0] #=> String
resp.comments_for_pull_request_data[0].comments[0].reaction_counts #=> Hash
resp.comments_for_pull_request_data[0].comments[0].reaction_counts["ReactionValue"] #=> Integer
resp.next_token #=> String

Options Hash (options):

  • :pull_request_id (required, String)

    The system-generated ID of the pull request. To get this ID, use ListPullRequests.

  • :repository_name (String)

    The name of the repository that contains the pull request.

  • :before_commit_id (String)

    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.

  • :after_commit_id (String)

    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.

  • :next_token (String)

    An enumeration token that, when provided in a request, returns the next batch of the results.

  • :max_results (Integer)

    A non-zero, 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.

Returns:

See Also:

#get_commit(options = {}) ⇒ Types::GetCommitOutput

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

Examples:

Request syntax with placeholder values


resp = client.get_commit({
  repository_name: "RepositoryName", # required
  commit_id: "ObjectId", # required
})

Response structure


resp.commit.commit_id #=> String
resp.commit.tree_id #=> String
resp.commit.parents #=> Array
resp.commit.parents[0] #=> String
resp.commit.message #=> String
resp.commit.author.name #=> String
resp.commit.author.email #=> String
resp.commit.author.date #=> String
resp.commit.committer.name #=> String
resp.commit.committer.email #=> String
resp.commit.committer.date #=> String
resp.commit.additional_data #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository to which the commit was made.

  • :commit_id (required, String)

    The commit ID. Commit IDs are the full SHA ID of the commit.

Returns:

See Also:

#get_differences(options = {}) ⇒ Types::GetDifferencesOutput

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.

Examples:

Request syntax with placeholder values


resp = client.get_differences({
  repository_name: "RepositoryName", # required
  before_commit_specifier: "CommitName",
  after_commit_specifier: "CommitName", # required
  before_path: "Path",
  after_path: "Path",
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.differences #=> Array
resp.differences[0].before_blob.blob_id #=> String
resp.differences[0].before_blob.path #=> String
resp.differences[0].before_blob.mode #=> String
resp.differences[0].after_blob.blob_id #=> String
resp.differences[0].after_blob.path #=> String
resp.differences[0].after_blob.mode #=> String
resp.differences[0].change_type #=> String, one of "A", "M", "D"
resp.next_token #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository where you want to get differences.

  • :before_commit_specifier (String)

    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 before the afterCommitSpecifier value are shown. If you do not use beforeCommitSpecifier in your request, consider limiting the results with maxResults.

  • :after_commit_specifier (required, String)

    The branch, tag, HEAD, or other fully qualified reference used to identify a commit.

  • :before_path (String)

    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 are shown for all paths.

  • :after_path (String)

    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 are shown for all paths.

  • :max_results (Integer)

    A non-zero, non-negative integer used to limit the number of returned results.

  • :next_token (String)

    An enumeration token that, when provided in a request, returns the next batch of the results.

Returns:

See Also:

#get_file(options = {}) ⇒ Types::GetFileOutput

Returns the base-64 encoded contents of a specified file and its metadata.

Examples:

Request syntax with placeholder values


resp = client.get_file({
  repository_name: "RepositoryName", # required
  commit_specifier: "CommitName",
  file_path: "Path", # required
})

Response structure


resp.commit_id #=> String
resp.blob_id #=> String
resp.file_path #=> String
resp.file_mode #=> String, one of "EXECUTABLE", "NORMAL", "SYMLINK"
resp.file_size #=> Integer
resp.file_content #=> IO

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository that contains the file.

  • :commit_specifier (String)

    The fully quaified reference that identifies the commit that contains the file. For example, you can specify a full commit ID, a tag, a branch name, or a reference such as refs/heads/master. If none is provided, the head commit is used.

  • :file_path (required, String)

    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.

Returns:

See Also:

#get_folder(options = {}) ⇒ Types::GetFolderOutput

Returns the contents of a specified folder in a repository.

Examples:

Request syntax with placeholder values


resp = client.get_folder({
  repository_name: "RepositoryName", # required
  commit_specifier: "CommitName",
  folder_path: "Path", # required
})

Response structure


resp.commit_id #=> String
resp.folder_path #=> String
resp.tree_id #=> String
resp.sub_folders #=> Array
resp.sub_folders[0].tree_id #=> String
resp.sub_folders[0].absolute_path #=> String
resp.sub_folders[0].relative_path #=> String
resp.files #=> Array
resp.files[0].blob_id #=> String
resp.files[0].absolute_path #=> String
resp.files[0].relative_path #=> String
resp.files[0].file_mode #=> String, one of "EXECUTABLE", "NORMAL", "SYMLINK"
resp.symbolic_links #=> Array
resp.symbolic_links[0].blob_id #=> String
resp.symbolic_links[0].absolute_path #=> String
resp.symbolic_links[0].relative_path #=> String
resp.symbolic_links[0].file_mode #=> String, one of "EXECUTABLE", "NORMAL", "SYMLINK"
resp.sub_modules #=> Array
resp.sub_modules[0].commit_id #=> String
resp.sub_modules[0].absolute_path #=> String
resp.sub_modules[0].relative_path #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository.

  • :commit_specifier (String)

    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 is returned as it exists in the HEAD commit.

  • :folder_path (required, String)

    The fully qualified path to the folder whose contents are 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.

Returns:

See Also:

#get_merge_commit(options = {}) ⇒ Types::GetMergeCommitOutput

Returns information about a specified merge commit.

Examples:

Request syntax with placeholder values


resp = client.get_merge_commit({
  repository_name: "RepositoryName", # required
  source_commit_specifier: "CommitName", # required
  destination_commit_specifier: "CommitName", # required
  conflict_detail_level: "FILE_LEVEL", # accepts FILE_LEVEL, LINE_LEVEL
  conflict_resolution_strategy: "NONE", # accepts NONE, ACCEPT_SOURCE, ACCEPT_DESTINATION, AUTOMERGE
})

Response structure


resp.source_commit_id #=> String
resp.destination_commit_id #=> String
resp.base_commit_id #=> String
resp.merged_commit_id #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository that contains the merge commit about which you want to get information.

  • :source_commit_specifier (required, String)

    The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

  • :destination_commit_specifier (required, String)

    The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

  • :conflict_detail_level (String)

    The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used, which returns a not-mergeable result if the same file has differences in both branches. If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in both branches has differences on the same line.

  • :conflict_resolution_strategy (String)

    Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two versions of a file. The default is NONE, which requires any conflicts to be resolved manually before the merge operation is successful.

Returns:

See Also:

#get_merge_conflicts(options = {}) ⇒ Types::GetMergeConflictsOutput

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

Examples:

Request syntax with placeholder values


resp = client.get_merge_conflicts({
  repository_name: "RepositoryName", # required
  destination_commit_specifier: "CommitName", # required
  source_commit_specifier: "CommitName", # required
  merge_option: "FAST_FORWARD_MERGE", # required, accepts FAST_FORWARD_MERGE, SQUASH_MERGE, THREE_WAY_MERGE
  conflict_detail_level: "FILE_LEVEL", # accepts FILE_LEVEL, LINE_LEVEL
  max_conflict_files: 1,
  conflict_resolution_strategy: "NONE", # accepts NONE, ACCEPT_SOURCE, ACCEPT_DESTINATION, AUTOMERGE
  next_token: "NextToken",
})

Response structure


resp.mergeable #=> true/false
resp.destination_commit_id #=> String
resp.source_commit_id #=> String
resp.base_commit_id #=> String
resp. #=> Array
resp.[0].file_path #=> String
resp.[0].file_sizes.source #=> Integer
resp.[0].file_sizes.destination #=> Integer
resp.[0].file_sizes.base #=> Integer
resp.[0].file_modes.source #=> String, one of "EXECUTABLE", "NORMAL", "SYMLINK"
resp.[0].file_modes.destination #=> String, one of "EXECUTABLE", "NORMAL", "SYMLINK"
resp.[0].file_modes.base #=> String, one of "EXECUTABLE", "NORMAL", "SYMLINK"
resp.[0].object_types.source #=> String, one of "FILE", "DIRECTORY", "GIT_LINK", "SYMBOLIC_LINK"
resp.[0].object_types.destination #=> String, one of "FILE", "DIRECTORY", "GIT_LINK", "SYMBOLIC_LINK"
resp.[0].object_types.base #=> String, one of "FILE", "DIRECTORY", "GIT_LINK", "SYMBOLIC_LINK"
resp.[0].number_of_conflicts #=> Integer
resp.[0].is_binary_file.source #=> true/false
resp.[0].is_binary_file.destination #=> true/false
resp.[0].is_binary_file.base #=> true/false
resp.[0].content_conflict #=> true/false
resp.[0].file_mode_conflict #=> true/false
resp.[0].object_type_conflict #=> true/false
resp.[0].merge_operations.source #=> String, one of "A", "M", "D"
resp.[0].merge_operations.destination #=> String, one of "A", "M", "D"
resp.next_token #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository where the pull request was created.

  • :destination_commit_specifier (required, String)

    The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

  • :source_commit_specifier (required, String)

    The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

  • :merge_option (required, String)

    The merge option or strategy you want to use to merge the code.

  • :conflict_detail_level (String)

    The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used, which returns a not-mergeable result if the same file has differences in both branches. If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in both branches has differences on the same line.

  • :max_conflict_files (Integer)

    The maximum number of files to include in the output.

  • :conflict_resolution_strategy (String)

    Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two versions of a file. The default is NONE, which requires any conflicts to be resolved manually before the merge operation is successful.

  • :next_token (String)

    An enumeration token that, when provided in a request, returns the next batch of the results.

Returns:

See Also:

#get_merge_options(options = {}) ⇒ Types::GetMergeOptionsOutput

Returns information about the merge options available for merging two specified branches. For details about why a merge option is not available, use GetMergeConflicts or DescribeMergeConflicts.

Examples:

Request syntax with placeholder values


resp = client.get_merge_options({
  repository_name: "RepositoryName", # required
  source_commit_specifier: "CommitName", # required
  destination_commit_specifier: "CommitName", # required
  conflict_detail_level: "FILE_LEVEL", # accepts FILE_LEVEL, LINE_LEVEL
  conflict_resolution_strategy: "NONE", # accepts NONE, ACCEPT_SOURCE, ACCEPT_DESTINATION, AUTOMERGE
})

Response structure


resp.merge_options #=> Array
resp.merge_options[0] #=> String, one of "FAST_FORWARD_MERGE", "SQUASH_MERGE", "THREE_WAY_MERGE"
resp.source_commit_id #=> String
resp.destination_commit_id #=> String
resp.base_commit_id #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository that contains the commits about which you want to get merge options.

  • :source_commit_specifier (required, String)

    The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

  • :destination_commit_specifier (required, String)

    The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

  • :conflict_detail_level (String)

    The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used, which returns a not-mergeable result if the same file has differences in both branches. If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in both branches has differences on the same line.

  • :conflict_resolution_strategy (String)

    Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two versions of a file. The default is NONE, which requires any conflicts to be resolved manually before the merge operation is successful.

Returns:

See Also:

#get_pull_request(options = {}) ⇒ Types::GetPullRequestOutput

Gets information about a pull request in a specified repository.

Examples:

Request syntax with placeholder values


resp = client.get_pull_request({
  pull_request_id: "PullRequestId", # required
})

Response structure


resp.pull_request.pull_request_id #=> String
resp.pull_request.title #=> String
resp.pull_request.description #=> String
resp.pull_request.last_activity_date #=> Time
resp.pull_request.creation_date #=> Time
resp.pull_request.pull_request_status #=> String, one of "OPEN", "CLOSED"
resp.pull_request.author_arn #=> String
resp.pull_request.pull_request_targets #=> Array
resp.pull_request.pull_request_targets[0].repository_name #=> String
resp.pull_request.pull_request_targets[0].source_reference #=> String
resp.pull_request.pull_request_targets[0].destination_reference #=> String
resp.pull_request.pull_request_targets[0].destination_commit #=> String
resp.pull_request.pull_request_targets[0].source_commit #=> String
resp.pull_request.pull_request_targets[0].merge_base #=> String
resp.pull_request.pull_request_targets[0]..is_merged #=> true/false
resp.pull_request.pull_request_targets[0]..merged_by #=> String
resp.pull_request.pull_request_targets[0]..merge_commit_id #=> String
resp.pull_request.pull_request_targets[0]..merge_option #=> String, one of "FAST_FORWARD_MERGE", "SQUASH_MERGE", "THREE_WAY_MERGE"
resp.pull_request.client_request_token #=> String
resp.pull_request.revision_id #=> String
resp.pull_request.approval_rules #=> Array
resp.pull_request.approval_rules[0].approval_rule_id #=> String
resp.pull_request.approval_rules[0].approval_rule_name #=> String
resp.pull_request.approval_rules[0].approval_rule_content #=> String
resp.pull_request.approval_rules[0].rule_content_sha_256 #=> String
resp.pull_request.approval_rules[0].last_modified_date #=> Time
resp.pull_request.approval_rules[0].creation_date #=> Time
resp.pull_request.approval_rules[0].last_modified_user #=> String
resp.pull_request.approval_rules[0].origin_approval_rule_template.approval_rule_template_id #=> String
resp.pull_request.approval_rules[0].origin_approval_rule_template.approval_rule_template_name #=> String

Options Hash (options):

  • :pull_request_id (required, String)

    The system-generated ID of the pull request. To get this ID, use ListPullRequests.

Returns:

See Also:

#get_pull_request_approval_states(options = {}) ⇒ Types::GetPullRequestApprovalStatesOutput

Gets information about the approval states for a specified pull request. Approval states only apply to pull requests that have one or more approval rules applied to them.

Examples:

Request syntax with placeholder values


resp = client.get_pull_request_approval_states({
  pull_request_id: "PullRequestId", # required
  revision_id: "RevisionId", # required
})

Response structure


resp.approvals #=> Array
resp.approvals[0].user_arn #=> String
resp.approvals[0].approval_state #=> String, one of "APPROVE", "REVOKE"

Options Hash (options):

  • :pull_request_id (required, String)

    The system-generated ID for the pull request.

  • :revision_id (required, String)

    The system-generated ID for the pull request revision.

Returns:

See Also:

#get_pull_request_override_state(options = {}) ⇒ Types::GetPullRequestOverrideStateOutput

Returns information about whether approval rules have been set aside (overridden) for a pull request, and if so, the Amazon Resource Name (ARN) of the user or identity that overrode the rules and their requirements for the pull request.

Examples:

Request syntax with placeholder values


resp = client.get_pull_request_override_state({
  pull_request_id: "PullRequestId", # required
  revision_id: "RevisionId", # required
})

Response structure


resp.overridden #=> true/false
resp.overrider #=> String

Options Hash (options):

  • :pull_request_id (required, String)

    The ID of the pull request for which you want to get information about whether approval rules have been set aside (overridden).

  • :revision_id (required, String)

    The system-generated ID of the revision for the pull request. To retrieve the most recent revision ID, use GetPullRequest.

Returns:

See Also:

#get_repository(options = {}) ⇒ Types::GetRepositoryOutput

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 webpage can 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 webpage.

Examples:

Request syntax with placeholder values


resp = client.get_repository({
  repository_name: "RepositoryName", # required
})

Response structure


resp.. #=> String
resp..repository_id #=> String
resp..repository_name #=> String
resp..repository_description #=> String
resp..default_branch #=> String
resp..last_modified_date #=> Time
resp..creation_date #=> Time
resp..clone_url_http #=> String
resp..clone_url_ssh #=> String
resp..arn #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository to get information about.

Returns:

See Also:

#get_repository_triggers(options = {}) ⇒ Types::GetRepositoryTriggersOutput

Gets information about triggers configured for a repository.

Examples:

Request syntax with placeholder values


resp = client.get_repository_triggers({
  repository_name: "RepositoryName", # required
})

Response structure


resp.configuration_id #=> String
resp.triggers #=> Array
resp.triggers[0].name #=> String
resp.triggers[0].destination_arn #=> String
resp.triggers[0].custom_data #=> String
resp.triggers[0].branches #=> Array
resp.triggers[0].branches[0] #=> String
resp.triggers[0].events #=> Array
resp.triggers[0].events[0] #=> String, one of "all", "updateReference", "createReference", "deleteReference"

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository for which the trigger is configured.

Returns:

See Also:

#list_approval_rule_templates(options = {}) ⇒ Types::ListApprovalRuleTemplatesOutput

Lists all approval rule templates in the specified AWS Region in your AWS account. If an AWS Region is not specified, the AWS Region where you are signed in is used.

Examples:

Request syntax with placeholder values


resp = client.list_approval_rule_templates({
  next_token: "NextToken",
  max_results: 1,
})

Response structure


resp.approval_rule_template_names #=> Array
resp.approval_rule_template_names[0] #=> String
resp.next_token #=> String

Options Hash (options):

  • :next_token (String)

    An enumeration token that, when provided in a request, returns the next batch of the results.

  • :max_results (Integer)

    A non-zero, non-negative integer used to limit the number of returned results.

Returns:

See Also:

#list_associated_approval_rule_templates_for_repository(options = {}) ⇒ Types::ListAssociatedApprovalRuleTemplatesForRepositoryOutput

Lists all approval rule templates that are associated with a specified repository.

Examples:

Request syntax with placeholder values


resp = client.list_associated_approval_rule_templates_for_repository({
  repository_name: "RepositoryName", # required
  next_token: "NextToken",
  max_results: 1,
})

Response structure


resp.approval_rule_template_names #=> Array
resp.approval_rule_template_names[0] #=> String
resp.next_token #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository for which you want to list all associated approval rule templates.

  • :next_token (String)

    An enumeration token that, when provided in a request, returns the next batch of the results.

  • :max_results (Integer)

    A non-zero, non-negative integer used to limit the number of returned results.

Returns:

See Also:

#list_branches(options = {}) ⇒ Types::ListBranchesOutput

Gets information about one or more branches in a repository.

Examples:

Request syntax with placeholder values


resp = client.list_branches({
  repository_name: "RepositoryName", # required
  next_token: "NextToken",
})

Response structure


resp.branches #=> Array
resp.branches[0] #=> String
resp.next_token #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository that contains the branches.

  • :next_token (String)

    An enumeration token that allows the operation to batch the results.

Returns:

See Also:

#list_pull_requests(options = {}) ⇒ Types::ListPullRequestsOutput

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.

Examples:

Request syntax with placeholder values


resp = client.list_pull_requests({
  repository_name: "RepositoryName", # required
  author_arn: "Arn",
  pull_request_status: "OPEN", # accepts OPEN, CLOSED
  next_token: "NextToken",
  max_results: 1,
})

Response structure


resp.pull_request_ids #=> Array
resp.pull_request_ids[0] #=> String
resp.next_token #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository for which you want to list pull requests.

  • :author_arn (String)

    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.

  • :pull_request_status (String)

    Optional. The status of the pull request. If used, this refines the results to the pull requests that match the specified status.

  • :next_token (String)

    An enumeration token that, when provided in a request, returns the next batch of the results.

  • :max_results (Integer)

    A non-zero, non-negative integer used to limit the number of returned results.

Returns:

See Also:

#list_repositories(options = {}) ⇒ Types::ListRepositoriesOutput

Gets information about one or more repositories.

Examples:

Request syntax with placeholder values


resp = client.list_repositories({
  next_token: "NextToken",
  sort_by: "repositoryName", # accepts repositoryName, lastModifiedDate
  order: "ascending", # accepts ascending, descending
})

Response structure


resp.repositories #=> Array
resp.repositories[0].repository_name #=> String
resp.repositories[0].repository_id #=> String
resp.next_token #=> String

Options Hash (options):

  • :next_token (String)

    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.

  • :sort_by (String)

    The criteria used to sort the results of a list repositories operation.

  • :order (String)

    The order in which to sort the results of a list repositories operation.

Returns:

See Also:

#list_repositories_for_approval_rule_template(options = {}) ⇒ Types::ListRepositoriesForApprovalRuleTemplateOutput

Lists all repositories associated with the specified approval rule template.

Examples:

Request syntax with placeholder values


resp = client.list_repositories_for_approval_rule_template({
  approval_rule_template_name: "ApprovalRuleTemplateName", # required
  next_token: "NextToken",
  max_results: 1,
})

Response structure


resp.repository_names #=> Array
resp.repository_names[0] #=> String
resp.next_token #=> String

Options Hash (options):

  • :approval_rule_template_name (required, String)

    The name of the approval rule template for which you want to list repositories that are associated with that template.

  • :next_token (String)

    An enumeration token that, when provided in a request, returns the next batch of the results.

  • :max_results (Integer)

    A non-zero, non-negative integer used to limit the number of returned results.

Returns:

See Also:

#list_tags_for_resource(options = {}) ⇒ Types::ListTagsForResourceOutput

Gets information about AWS tags for a specified Amazon Resource Name (ARN) in AWS CodeCommit. For a list of valid resources in AWS CodeCommit, see CodeCommit Resources and Operations in the AWS CodeCommit User Guide.

Examples:

Request syntax with placeholder values


resp = client.list_tags_for_resource({
  resource_arn: "ResourceArn", # required
  next_token: "NextToken",
})

Response structure


resp.tags #=> Hash
resp.tags["TagKey"] #=> String
resp.next_token #=> String

Options Hash (options):

  • :resource_arn (required, String)

    The Amazon Resource Name (ARN) of the resource for which you want to get information about tags, if any.

  • :next_token (String)

    An enumeration token that, when provided in a request, returns the next batch of the results.

Returns:

See Also:

#merge_branches_by_fast_forward(options = {}) ⇒ Types::MergeBranchesByFastForwardOutput

Merges two branches using the fast-forward merge strategy.

Examples:

Request syntax with placeholder values


resp = client.merge_branches_by_fast_forward({
  repository_name: "RepositoryName", # required
  source_commit_specifier: "CommitName", # required
  destination_commit_specifier: "CommitName", # required
  target_branch: "BranchName",
})

Response structure


resp.commit_id #=> String
resp.tree_id #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository where you want to merge two branches.

  • :source_commit_specifier (required, String)

    The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

  • :destination_commit_specifier (required, String)

    The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

  • :target_branch (String)

    The branch where the merge is applied.

Returns:

See Also:

#merge_branches_by_squash(options = {}) ⇒ Types::MergeBranchesBySquashOutput

Merges two branches using the squash merge strategy.

Examples:

Request syntax with placeholder values


resp = client.merge_branches_by_squash({
  repository_name: "RepositoryName", # required
  source_commit_specifier: "CommitName", # required
  destination_commit_specifier: "CommitName", # required
  target_branch: "BranchName",
  conflict_detail_level: "FILE_LEVEL", # accepts FILE_LEVEL, LINE_LEVEL
  conflict_resolution_strategy: "NONE", # accepts NONE, ACCEPT_SOURCE, ACCEPT_DESTINATION, AUTOMERGE
  author_name: "Name",
  email: "Email",
  commit_message: "Message",
  keep_empty_folders: false,
  conflict_resolution: {
    replace_contents: [
      {
        file_path: "Path", # required
        replacement_type: "KEEP_BASE", # required, accepts KEEP_BASE, KEEP_SOURCE, KEEP_DESTINATION, USE_NEW_CONTENT
        content: "data",
        file_mode: "EXECUTABLE", # accepts EXECUTABLE, NORMAL, SYMLINK
      },
    ],
    delete_files: [
      {
        file_path: "Path", # required
      },
    ],
    set_file_modes: [
      {
        file_path: "Path", # required
        file_mode: "EXECUTABLE", # required, accepts EXECUTABLE, NORMAL, SYMLINK
      },
    ],
  },
})

Response structure


resp.commit_id #=> String
resp.tree_id #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository where you want to merge two branches.

  • :source_commit_specifier (required, String)

    The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

  • :destination_commit_specifier (required, String)

    The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

  • :target_branch (String)

    The branch where the merge is applied.

  • :conflict_detail_level (String)

    The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used, which returns a not-mergeable result if the same file has differences in both branches. If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in both branches has differences on the same line.

  • :conflict_resolution_strategy (String)

    Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two versions of a file. The default is NONE, which requires any conflicts to be resolved manually before the merge operation is successful.

  • :author_name (String)

    The name of the author who created the commit. This information is used as both the author and committer for the commit.

  • :email (String)

    The email address of the person merging the branches. This information is used in the commit information for the merge.

  • :commit_message (String)

    The commit message for the merge.

  • :keep_empty_folders (Boolean)

    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 is created for empty folders. The default is false.

  • :conflict_resolution (Types::ConflictResolution)

    If AUTOMERGE is the conflict resolution strategy, a list of inputs to use when resolving conflicts during a merge.

Returns:

See Also:

#merge_branches_by_three_way(options = {}) ⇒ Types::MergeBranchesByThreeWayOutput

Merges two specified branches using the three-way merge strategy.

Examples:

Request syntax with placeholder values


resp = client.merge_branches_by_three_way({
  repository_name: "RepositoryName", # required
  source_commit_specifier: "CommitName", # required
  destination_commit_specifier: "CommitName", # required
  target_branch: "BranchName",
  conflict_detail_level: "FILE_LEVEL", # accepts FILE_LEVEL, LINE_LEVEL
  conflict_resolution_strategy: "NONE", # accepts NONE, ACCEPT_SOURCE, ACCEPT_DESTINATION, AUTOMERGE
  author_name: "Name",
  email: "Email",
  commit_message: "Message",
  keep_empty_folders: false,
  conflict_resolution: {
    replace_contents: [
      {
        file_path: "Path", # required
        replacement_type: "KEEP_BASE", # required, accepts KEEP_BASE, KEEP_SOURCE, KEEP_DESTINATION, USE_NEW_CONTENT
        content: "data",
        file_mode: "EXECUTABLE", # accepts EXECUTABLE, NORMAL, SYMLINK
      },
    ],
    delete_files: [
      {
        file_path: "Path", # required
      },
    ],
    set_file_modes: [
      {
        file_path: "Path", # required
        file_mode: "EXECUTABLE", # required, accepts EXECUTABLE, NORMAL, SYMLINK
      },
    ],
  },
})

Response structure


resp.commit_id #=> String
resp.tree_id #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository where you want to merge two branches.

  • :source_commit_specifier (required, String)

    The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

  • :destination_commit_specifier (required, String)

    The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

  • :target_branch (String)

    The branch where the merge is applied.

  • :conflict_detail_level (String)

    The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used, which returns a not-mergeable result if the same file has differences in both branches. If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in both branches has differences on the same line.

  • :conflict_resolution_strategy (String)

    Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two versions of a file. The default is NONE, which requires any conflicts to be resolved manually before the merge operation is successful.

  • :author_name (String)

    The name of the author who created the commit. This information is used as both the author and committer for the commit.

  • :email (String)

    The email address of the person merging the branches. This information is used in the commit information for the merge.

  • :commit_message (String)

    The commit message to include in the commit information for the merge.

  • :keep_empty_folders (Boolean)

    If the commit contains deletions, whether to keep a folder or folder structure if the changes leave the folders empty. If true, a .gitkeep file is created for empty folders. The default is false.

  • :conflict_resolution (Types::ConflictResolution)

    If AUTOMERGE is the conflict resolution strategy, a list of inputs to use when resolving conflicts during a merge.

Returns:

See Also:

#merge_pull_request_by_fast_forward(options = {}) ⇒ Types::MergePullRequestByFastForwardOutput

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 strategy. If the merge is successful, it closes the pull request.

Examples:

Request syntax with placeholder values


resp = client.merge_pull_request_by_fast_forward({
  pull_request_id: "PullRequestId", # required
  repository_name: "RepositoryName", # required
  source_commit_id: "ObjectId",
})

Response structure


resp.pull_request.pull_request_id #=> String
resp.pull_request.title #=> String
resp.pull_request.description #=> String
resp.pull_request.last_activity_date #=> Time
resp.pull_request.creation_date #=> Time
resp.pull_request.pull_request_status #=> String, one of "OPEN", "CLOSED"
resp.pull_request.author_arn #=> String
resp.pull_request.pull_request_targets #=> Array
resp.pull_request.pull_request_targets[0].repository_name #=> String
resp.pull_request.pull_request_targets[0].source_reference #=> String
resp.pull_request.pull_request_targets[0].destination_reference #=> String
resp.pull_request.pull_request_targets[0].destination_commit #=> String
resp.pull_request.pull_request_targets[0].source_commit #=> String
resp.pull_request.pull_request_targets[0].merge_base #=> String
resp.pull_request.pull_request_targets[0]..is_merged #=> true/false
resp.pull_request.pull_request_targets[0]..merged_by #=> String
resp.pull_request.pull_request_targets[0]..merge_commit_id #=> String
resp.pull_request.pull_request_targets[0]..merge_option #=> String, one of "FAST_FORWARD_MERGE", "SQUASH_MERGE", "THREE_WAY_MERGE"
resp.pull_request.client_request_token #=> String
resp.pull_request.revision_id #=> String
resp.pull_request.approval_rules #=> Array
resp.pull_request.approval_rules[0].approval_rule_id #=> String
resp.pull_request.approval_rules[0].approval_rule_name #=> String
resp.pull_request.approval_rules[0].approval_rule_content #=> String
resp.pull_request.approval_rules[0].rule_content_sha_256 #=> String
resp.pull_request.approval_rules[0].last_modified_date #=> Time
resp.pull_request.approval_rules[0].creation_date #=> Time
resp.pull_request.approval_rules[0].last_modified_user #=> String
resp.pull_request.approval_rules[0].origin_approval_rule_template.approval_rule_template_id #=> String
resp.pull_request.approval_rules[0].origin_approval_rule_template.approval_rule_template_name #=> String

Options Hash (options):

  • :pull_request_id (required, String)

    The system-generated ID of the pull request. To get this ID, use ListPullRequests.

  • :repository_name (required, String)

    The name of the repository where the pull request was created.

  • :source_commit_id (String)

    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.

Returns:

See Also:

#merge_pull_request_by_squash(options = {}) ⇒ Types::MergePullRequestBySquashOutput

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 squash merge strategy. If the merge is successful, it closes the pull request.

Examples:

Request syntax with placeholder values


resp = client.merge_pull_request_by_squash({
  pull_request_id: "PullRequestId", # required
  repository_name: "RepositoryName", # required
  source_commit_id: "ObjectId",
  conflict_detail_level: "FILE_LEVEL", # accepts FILE_LEVEL, LINE_LEVEL
  conflict_resolution_strategy: "NONE", # accepts NONE, ACCEPT_SOURCE, ACCEPT_DESTINATION, AUTOMERGE
  commit_message: "Message",
  author_name: "Name",
  email: "Email",
  keep_empty_folders: false,
  conflict_resolution: {
    replace_contents: [
      {
        file_path: "Path", # required
        replacement_type: "KEEP_BASE", # required, accepts KEEP_BASE, KEEP_SOURCE, KEEP_DESTINATION, USE_NEW_CONTENT
        content: "data",
        file_mode: "EXECUTABLE", # accepts EXECUTABLE, NORMAL, SYMLINK
      },
    ],
    delete_files: [
      {
        file_path: "Path", # required
      },
    ],
    set_file_modes: [
      {
        file_path: "Path", # required
        file_mode: "EXECUTABLE", # required, accepts EXECUTABLE, NORMAL, SYMLINK
      },
    ],
  },
})

Response structure


resp.pull_request.pull_request_id #=> String
resp.pull_request.title #=> String
resp.pull_request.description #=> String
resp.pull_request.last_activity_date #=> Time
resp.pull_request.creation_date #=> Time
resp.pull_request.pull_request_status #=> String, one of "OPEN", "CLOSED"
resp.pull_request.author_arn #=> String
resp.pull_request.pull_request_targets #=> Array
resp.pull_request.pull_request_targets[0].repository_name #=> String
resp.pull_request.pull_request_targets[0].source_reference #=> String
resp.pull_request.pull_request_targets[0].destination_reference #=> String
resp.pull_request.pull_request_targets[0].destination_commit #=> String
resp.pull_request.pull_request_targets[0].source_commit #=> String
resp.pull_request.pull_request_targets[0].merge_base #=> String
resp.pull_request.pull_request_targets[0]..is_merged #=> true/false
resp.pull_request.pull_request_targets[0]..merged_by #=> String
resp.pull_request.pull_request_targets[0]..merge_commit_id #=> String
resp.pull_request.pull_request_targets[0]..merge_option #=> String, one of "FAST_FORWARD_MERGE", "SQUASH_MERGE", "THREE_WAY_MERGE"
resp.pull_request.client_request_token #=> String
resp.pull_request.revision_id #=> String
resp.pull_request.approval_rules #=> Array
resp.pull_request.approval_rules[0].approval_rule_id #=> String
resp.pull_request.approval_rules[0].approval_rule_name #=> String
resp.pull_request.approval_rules[0].approval_rule_content #=> String
resp.pull_request.approval_rules[0].rule_content_sha_256 #=> String
resp.pull_request.approval_rules[0].last_modified_date #=> Time
resp.pull_request.approval_rules[0].creation_date #=> Time
resp.pull_request.approval_rules[0].last_modified_user #=> String
resp.pull_request.approval_rules[0].origin_approval_rule_template.approval_rule_template_id #=> String
resp.pull_request.approval_rules[0].origin_approval_rule_template.approval_rule_template_name #=> String

Options Hash (options):

  • :pull_request_id (required, String)

    The system-generated ID of the pull request. To get this ID, use ListPullRequests.

  • :repository_name (required, String)

    The name of the repository where the pull request was created.

  • :source_commit_id (String)

    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.

  • :conflict_detail_level (String)

    The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used, which returns a not-mergeable result if the same file has differences in both branches. If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in both branches has differences on the same line.

  • :conflict_resolution_strategy (String)

    Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two versions of a file. The default is NONE, which requires any conflicts to be resolved manually before the merge operation is successful.

  • :commit_message (String)

    The commit message to include in the commit information for the merge.

  • :author_name (String)

    The name of the author who created the commit. This information is used as both the author and committer for the commit.

  • :email (String)

    The email address of the person merging the branches. This information is used in the commit information for the merge.

  • :keep_empty_folders (Boolean)

    If the commit contains deletions, whether to keep a folder or folder structure if the changes leave the folders empty. If true, a .gitkeep file is created for empty folders. The default is false.

  • :conflict_resolution (Types::ConflictResolution)

    If AUTOMERGE is the conflict resolution strategy, a list of inputs to use when resolving conflicts during a merge.

Returns:

See Also:

#merge_pull_request_by_three_way(options = {}) ⇒ Types::MergePullRequestByThreeWayOutput

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 three-way merge strategy. If the merge is successful, it closes the pull request.

Examples:

Request syntax with placeholder values


resp = client.merge_pull_request_by_three_way({
  pull_request_id: "PullRequestId", # required
  repository_name: "RepositoryName", # required
  source_commit_id: "ObjectId",
  conflict_detail_level: "FILE_LEVEL", # accepts FILE_LEVEL, LINE_LEVEL
  conflict_resolution_strategy: "NONE", # accepts NONE, ACCEPT_SOURCE, ACCEPT_DESTINATION, AUTOMERGE
  commit_message: "Message",
  author_name: "Name",
  email: "Email",
  keep_empty_folders: false,
  conflict_resolution: {
    replace_contents: [
      {
        file_path: "Path", # required
        replacement_type: "KEEP_BASE", # required, accepts KEEP_BASE, KEEP_SOURCE, KEEP_DESTINATION, USE_NEW_CONTENT
        content: "data",
        file_mode: "EXECUTABLE", # accepts EXECUTABLE, NORMAL, SYMLINK
      },
    ],
    delete_files: [
      {
        file_path: "Path", # required
      },
    ],
    set_file_modes: [
      {
        file_path: "Path", # required
        file_mode: "EXECUTABLE", # required, accepts EXECUTABLE, NORMAL, SYMLINK
      },
    ],
  },
})

Response structure


resp.pull_request.pull_request_id #=> String
resp.pull_request.title #=> String
resp.pull_request.description #=> String
resp.pull_request.last_activity_date #=> Time
resp.pull_request.creation_date #=> Time
resp.pull_request.pull_request_status #=> String, one of "OPEN", "CLOSED"
resp.pull_request.author_arn #=> String
resp.pull_request.pull_request_targets #=> Array
resp.pull_request.pull_request_targets[0].repository_name #=> String
resp.pull_request.pull_request_targets[0].source_reference #=> String
resp.pull_request.pull_request_targets[0].destination_reference #=> String
resp.pull_request.pull_request_targets[0].destination_commit #=> String
resp.pull_request.pull_request_targets[0].source_commit #=> String
resp.pull_request.pull_request_targets[0].merge_base #=> String
resp.pull_request.pull_request_targets[0]..is_merged #=> true/false
resp.pull_request.pull_request_targets[0]..merged_by #=> String
resp.pull_request.pull_request_targets[0]..merge_commit_id #=> String
resp.pull_request.pull_request_targets[0]..merge_option #=> String, one of "FAST_FORWARD_MERGE", "SQUASH_MERGE", "THREE_WAY_MERGE"
resp.pull_request.client_request_token #=> String
resp.pull_request.revision_id #=> String
resp.pull_request.approval_rules #=> Array
resp.pull_request.approval_rules[0].approval_rule_id #=> String
resp.pull_request.approval_rules[0].approval_rule_name #=> String
resp.pull_request.approval_rules[0].approval_rule_content #=> String
resp.pull_request.approval_rules[0].rule_content_sha_256 #=> String
resp.pull_request.approval_rules[0].last_modified_date #=> Time
resp.pull_request.approval_rules[0].creation_date #=> Time
resp.pull_request.approval_rules[0].last_modified_user #=> String
resp.pull_request.approval_rules[0].origin_approval_rule_template.approval_rule_template_id #=> String
resp.pull_request.approval_rules[0].origin_approval_rule_template.approval_rule_template_name #=> String

Options Hash (options):

  • :pull_request_id (required, String)

    The system-generated ID of the pull request. To get this ID, use ListPullRequests.

  • :repository_name (required, String)

    The name of the repository where the pull request was created.

  • :source_commit_id (String)

    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.

  • :conflict_detail_level (String)

    The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used, which returns a not-mergeable result if the same file has differences in both branches. If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in both branches has differences on the same line.

  • :conflict_resolution_strategy (String)

    Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two versions of a file. The default is NONE, which requires any conflicts to be resolved manually before the merge operation is successful.

  • :commit_message (String)

    The commit message to include in the commit information for the merge.

  • :author_name (String)

    The name of the author who created the commit. This information is used as both the author and committer for the commit.

  • :email (String)

    The email address of the person merging the branches. This information is used in the commit information for the merge.

  • :keep_empty_folders (Boolean)

    If the commit contains deletions, whether to keep a folder or folder structure if the changes leave the folders empty. If true, a .gitkeep file is created for empty folders. The default is false.

  • :conflict_resolution (Types::ConflictResolution)

    If AUTOMERGE is the conflict resolution strategy, a list of inputs to use when resolving conflicts during a merge.

Returns:

See Also:

#override_pull_request_approval_rules(options = {}) ⇒ Struct

Sets aside (overrides) all approval rule requirements for a specified pull request.

Examples:

Request syntax with placeholder values


resp = client.override_pull_request_approval_rules({
  pull_request_id: "PullRequestId", # required
  revision_id: "RevisionId", # required
  override_status: "OVERRIDE", # required, accepts OVERRIDE, REVOKE
})

Options Hash (options):

  • :pull_request_id (required, String)

    The system-generated ID of the pull request for which you want to override all approval rule requirements. To get this information, use GetPullRequest.

  • :revision_id (required, String)

    The system-generated ID of the most recent revision of the pull request. You cannot override approval rules for anything but the most recent revision of a pull request. To get the revision ID, use GetPullRequest.

  • :override_status (required, String)

    Whether you want to set aside approval rule requirements for the pull request (OVERRIDE) or revoke a previous override and apply approval rule requirements (REVOKE). REVOKE status is not stored.

Returns:

  • (Struct)

    Returns an empty response.

See Also:

#post_comment_for_compared_commit(options = {}) ⇒ Types::PostCommentForComparedCommitOutput

Posts a comment on the comparison between two commits.

Examples:

Request syntax with placeholder values


resp = client.post_comment_for_compared_commit({
  repository_name: "RepositoryName", # required
  before_commit_id: "CommitId",
  after_commit_id: "CommitId", # required
  location: {
    file_path: "Path",
    file_position: 1,
    relative_file_version: "BEFORE", # accepts BEFORE, AFTER
  },
  content: "Content", # required
  client_request_token: "ClientRequestToken",
})

Response structure


resp.repository_name #=> String
resp.before_commit_id #=> String
resp.after_commit_id #=> String
resp.before_blob_id #=> String
resp.after_blob_id #=> String
resp.location.file_path #=> String
resp.location.file_position #=> Integer
resp.location.relative_file_version #=> String, one of "BEFORE", "AFTER"
resp.comment.comment_id #=> String
resp.comment.content #=> String
resp.comment.in_reply_to #=> String
resp.comment.creation_date #=> Time
resp.comment.last_modified_date #=> Time
resp.comment.author_arn #=> String
resp.comment.deleted #=> true/false
resp.comment.client_request_token #=> String
resp.comment.caller_reactions #=> Array
resp.comment.caller_reactions[0] #=> String
resp.comment.reaction_counts #=> Hash
resp.comment.reaction_counts["ReactionValue"] #=> Integer

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository where you want to post a comment on the comparison between commits.

  • :before_commit_id (String)

    To establish the directionality of the comparison, the full commit ID of the before commit. Required for commenting on any commit unless that commit is the initial commit.

  • :after_commit_id (required, String)

    To establish the directionality of the comparison, the full commit ID of the after commit.

  • :location (Types::Location)

    The location of the comparison where you want to comment.

  • :content (required, String)

    The content of the comment you want to make.

  • :client_request_token (String)

    This parameter will be auto-filled on your behalf with a random UUIDv4 when no value is provided. 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 returns information about the initial request that used that token.

Returns:

See Also:

#post_comment_for_pull_request(options = {}) ⇒ Types::PostCommentForPullRequestOutput

Posts a comment on a pull request.

Examples:

Request syntax with placeholder values


resp = client.post_comment_for_pull_request({
  pull_request_id: "PullRequestId", # required
  repository_name: "RepositoryName", # required
  before_commit_id: "CommitId", # required
  after_commit_id: "CommitId", # required
  location: {
    file_path: "Path",
    file_position: 1,
    relative_file_version: "BEFORE", # accepts BEFORE, AFTER
  },
  content: "Content", # required
  client_request_token: "ClientRequestToken",
})

Response structure


resp.repository_name #=> String
resp.pull_request_id #=> String
resp.before_commit_id #=> String
resp.after_commit_id #=> String
resp.before_blob_id #=> String
resp.after_blob_id #=> String
resp.location.file_path #=> String
resp.location.file_position #=> Integer
resp.location.relative_file_version #=> String, one of "BEFORE", "AFTER"
resp.comment.comment_id #=> String
resp.comment.content #=> String
resp.comment.in_reply_to #=> String
resp.comment.creation_date #=> Time
resp.comment.last_modified_date #=> Time
resp.comment.author_arn #=> String
resp.comment.deleted #=> true/false
resp.comment.client_request_token #=> String
resp.comment.caller_reactions #=> Array
resp.comment.caller_reactions[0] #=> String
resp.comment.reaction_counts #=> Hash
resp.comment.reaction_counts["ReactionValue"] #=> Integer

Options Hash (options):

  • :pull_request_id (required, String)

    The system-generated ID of the pull request. To get this ID, use ListPullRequests.

  • :repository_name (required, String)

    The name of the repository where you want to post a comment on a pull request.

  • :before_commit_id (required, String)

    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.

  • :after_commit_id (required, String)

    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 (Types::Location)

    The location of the change where you want to post your comment. If no location is provided, the comment is posted as a general comment on the pull request difference between the before commit ID and the after commit ID.

  • :content (required, String)

    The content of your comment on the change.

  • :client_request_token (String)

    This parameter will be auto-filled on your behalf with a random UUIDv4 when no value is provided. 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 returns information about the initial request that used that token.

Returns:

See Also:

#post_comment_reply(options = {}) ⇒ Types::PostCommentReplyOutput

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

Examples:

Request syntax with placeholder values


resp = client.post_comment_reply({
  in_reply_to: "CommentId", # required
  client_request_token: "ClientRequestToken",
  content: "Content", # required
})

Response structure


resp.comment.comment_id #=> String
resp.comment.content #=> String
resp.comment.in_reply_to #=> String
resp.comment.creation_date #=> Time
resp.comment.last_modified_date #=> Time
resp.comment.author_arn #=> String
resp.comment.deleted #=> true/false
resp.comment.client_request_token #=> String
resp.comment.caller_reactions #=> Array
resp.comment.caller_reactions[0] #=> String
resp.comment.reaction_counts #=> Hash
resp.comment.reaction_counts["ReactionValue"] #=> Integer

Options Hash (options):

  • :in_reply_to (required, String)

    The system-generated ID of the comment to which you want to reply. To get this ID, use GetCommentsForComparedCommit or GetCommentsForPullRequest.

  • :client_request_token (String)

    This parameter will be auto-filled on your behalf with a random UUIDv4 when no value is provided. 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 returns information about the initial request that used that token.

  • :content (required, String)

    The contents of your reply to a comment.

Returns:

See Also:

#put_comment_reaction(options = {}) ⇒ Struct

Adds or updates a reaction to a specified comment for the user whose identity is used to make the request. You can only add or update a reaction for yourself. You cannot add, modify, or delete a reaction for another user.

Examples:

Request syntax with placeholder values


resp = client.put_comment_reaction({
  comment_id: "CommentId", # required
  reaction_value: "ReactionValue", # required
})

Options Hash (options):

  • :comment_id (required, String)

    The ID of the comment to which you want to add or update a reaction.

  • :reaction_value (required, String)

    The emoji reaction you want to add or update. To remove a reaction, provide a value of blank or null. You can also provide the value of none. For information about emoji reaction values supported in AWS CodeCommit, see the AWS CodeCommit User Guide.

Returns:

  • (Struct)

    Returns an empty response.

See Also:

#put_file(options = {}) ⇒ Types::PutFileOutput

Adds or updates a file in a branch in an AWS CodeCommit repository, and generates a commit for the addition in the specified branch.

Examples:

Request syntax with placeholder values


resp = client.put_file({
  repository_name: "RepositoryName", # required
  branch_name: "BranchName", # required
  file_content: "data", # required
  file_path: "Path", # required
  file_mode: "EXECUTABLE", # accepts EXECUTABLE, NORMAL, SYMLINK
  parent_commit_id: "CommitId",
  commit_message: "Message",
  name: "Name",
  email: "Email",
})

Response structure


resp.commit_id #=> String
resp.blob_id #=> String
resp.tree_id #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository where you want to add or update the file.

  • :branch_name (required, String)

    The name of the branch where you want to add or update the file. If this is an empty repository, this branch is created.

  • :file_content (required, IO, String)

    The content of the file, in binary object format.

  • :file_path (required, String)

    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 is created as part of adding the file.

  • :file_mode (String)

    The file mode permissions of the blob. Valid file mode permissions are listed here.

  • :parent_commit_id (String)

    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. Otherwise, an error occurs, and the file is not added or updated.

  • :commit_message (String)

    A message about why this file was added or updated. Although it is optional, a message makes the commit history for your repository more useful.

  • :name (String)

    The name of the person adding or updating the file. Although it is optional, a name makes the commit history for your repository more useful.

  • :email (String)

    An email address for the person adding or updating the file.

Returns:

See Also:

#put_repository_triggers(options = {}) ⇒ Types::PutRepositoryTriggersOutput

Replaces all triggers for a repository. Used to create or delete triggers.

Examples:

Request syntax with placeholder values


resp = client.put_repository_triggers({
  repository_name: "RepositoryName", # required
  triggers: [ # required
    {
      name: "RepositoryTriggerName", # required
      destination_arn: "Arn", # required
      custom_data: "RepositoryTriggerCustomData",
      branches: ["BranchName"],
      events: ["all"], # required, accepts all, updateReference, createReference, deleteReference
    },
  ],
})

Response structure


resp.configuration_id #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository where you want to create or update the trigger.

  • :triggers (required, Array<Types::RepositoryTrigger>)

    The JSON block of configuration information for each trigger.

Returns:

See Also:

#tag_resource(options = {}) ⇒ Struct

Adds or updates tags for a resource in AWS CodeCommit. For a list of valid resources in AWS CodeCommit, see CodeCommit Resources and Operations in the AWS CodeCommit User Guide.

Examples:

Request syntax with placeholder values


resp = client.tag_resource({
  resource_arn: "ResourceArn", # required
  tags: { # required
    "TagKey" => "TagValue",
  },
})

Options Hash (options):

  • :resource_arn (required, String)

    The Amazon Resource Name (ARN) of the resource to which you want to add or update tags.

  • :tags (required, Hash<String,String>)

    The key-value pair to use when tagging this repository.

Returns:

  • (Struct)

    Returns an empty response.

See Also:

#test_repository_triggers(options = {}) ⇒ Types::TestRepositoryTriggersOutput

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

Examples:

Request syntax with placeholder values


resp = client.test_repository_triggers({
  repository_name: "RepositoryName", # required
  triggers: [ # required
    {
      name: "RepositoryTriggerName", # required
      destination_arn: "Arn", # required
      custom_data: "RepositoryTriggerCustomData",
      branches: ["BranchName"],
      events: ["all"], # required, accepts all, updateReference, createReference, deleteReference
    },
  ],
})

Response structure


resp.successful_executions #=> Array
resp.successful_executions[0] #=> String
resp.failed_executions #=> Array
resp.failed_executions[0].trigger #=> String
resp.failed_executions[0].failure_message #=> String

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository in which to test the triggers.

  • :triggers (required, Array<Types::RepositoryTrigger>)

    The list of triggers to test.

Returns:

See Also:

#untag_resource(options = {}) ⇒ Struct

Removes tags for a resource in AWS CodeCommit. For a list of valid resources in AWS CodeCommit, see CodeCommit Resources and Operations in the AWS CodeCommit User Guide.

Examples:

Request syntax with placeholder values


resp = client.untag_resource({
  resource_arn: "ResourceArn", # required
  tag_keys: ["TagKey"], # required
})

Options Hash (options):

  • :resource_arn (required, String)

    The Amazon Resource Name (ARN) of the resource to which you want to remove tags.

  • :tag_keys (required, Array<String>)

    The tag key for each tag that you want to remove from the resource.

Returns:

  • (Struct)

    Returns an empty response.

See Also:

#update_approval_rule_template_content(options = {}) ⇒ Types::UpdateApprovalRuleTemplateContentOutput

Updates the content of an approval rule template. You can change the number of required approvals, the membership of the approval rule, and whether an approval pool is defined.

Examples:

Request syntax with placeholder values


resp = client.update_approval_rule_template_content({
  approval_rule_template_name: "ApprovalRuleTemplateName", # required
  new_rule_content: "ApprovalRuleTemplateContent", # required
  existing_rule_content_sha_256: "RuleContentSha256",
})

Response structure


resp.approval_rule_template.approval_rule_template_id #=> String
resp.approval_rule_template.approval_rule_template_name #=> String
resp.approval_rule_template.approval_rule_template_description #=> String
resp.approval_rule_template.approval_rule_template_content #=> String
resp.approval_rule_template.rule_content_sha_256 #=> String
resp.approval_rule_template.last_modified_date #=> Time
resp.approval_rule_template.creation_date #=> Time
resp.approval_rule_template.last_modified_user #=> String

Options Hash (options):

  • :approval_rule_template_name (required, String)

    The name of the approval rule template where you want to update the content of the rule.

  • :new_rule_content (required, String)

    The content that replaces the existing content of the rule. Content statements must be complete. You cannot provide only the changes.

  • :existing_rule_content_sha_256 (String)

    The SHA-256 hash signature for the content of the approval rule. You can retrieve this information by using GetPullRequest.

Returns:

See Also:

#update_approval_rule_template_description(options = {}) ⇒ Types::UpdateApprovalRuleTemplateDescriptionOutput

Updates the description for a specified approval rule template.

Examples:

Request syntax with placeholder values


resp = client.update_approval_rule_template_description({
  approval_rule_template_name: "ApprovalRuleTemplateName", # required
  approval_rule_template_description: "ApprovalRuleTemplateDescription", # required
})

Response structure


resp.approval_rule_template.approval_rule_template_id #=> String
resp.approval_rule_template.approval_rule_template_name #=> String
resp.approval_rule_template.approval_rule_template_description #=> String
resp.approval_rule_template.approval_rule_template_content #=> String
resp.approval_rule_template.rule_content_sha_256 #=> String
resp.approval_rule_template.last_modified_date #=> Time
resp.approval_rule_template.creation_date #=> Time
resp.approval_rule_template.last_modified_user #=> String

Options Hash (options):

  • :approval_rule_template_name (required, String)

    The name of the template for which you want to update the description.

  • :approval_rule_template_description (required, String)

    The updated description of the approval rule template.

Returns:

See Also:

#update_approval_rule_template_name(options = {}) ⇒ Types::UpdateApprovalRuleTemplateNameOutput

Updates the name of a specified approval rule template.

Examples:

Request syntax with placeholder values


resp = client.update_approval_rule_template_name({
  old_approval_rule_template_name: "ApprovalRuleTemplateName", # required
  new_approval_rule_template_name: "ApprovalRuleTemplateName", # required
})

Response structure


resp.approval_rule_template.approval_rule_template_id #=> String
resp.approval_rule_template.approval_rule_template_name #=> String
resp.approval_rule_template.approval_rule_template_description #=> String
resp.approval_rule_template.approval_rule_template_content #=> String
resp.approval_rule_template.rule_content_sha_256 #=> String
resp.approval_rule_template.last_modified_date #=> Time
resp.approval_rule_template.creation_date #=> Time
resp.approval_rule_template.last_modified_user #=> String

Options Hash (options):

  • :old_approval_rule_template_name (required, String)

    The current name of the approval rule template.

  • :new_approval_rule_template_name (required, String)

    The new name you want to apply to the approval rule template.

Returns:

See Also:

#update_comment(options = {}) ⇒ Types::UpdateCommentOutput

Replaces the contents of a comment.

Examples:

Request syntax with placeholder values


resp = client.update_comment({
  comment_id: "CommentId", # required
  content: "Content", # required
})

Response structure


resp.comment.comment_id #=> String
resp.comment.content #=> String
resp.comment.in_reply_to #=> String
resp.comment.creation_date #=> Time
resp.comment.last_modified_date #=> Time
resp.comment.author_arn #=> String
resp.comment.deleted #=> true/false
resp.comment.client_request_token #=> String
resp.comment.caller_reactions #=> Array
resp.comment.caller_reactions[0] #=> String
resp.comment.reaction_counts #=> Hash
resp.comment.reaction_counts["ReactionValue"] #=> Integer

Options Hash (options):

  • :comment_id (required, String)

    The system-generated ID of the comment you want to update. To get this ID, use GetCommentsForComparedCommit or GetCommentsForPullRequest.

  • :content (required, String)

    The updated content to replace the existing content of the comment.

Returns:

See Also:

#update_default_branch(options = {}) ⇒ Struct

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.

Examples:

Request syntax with placeholder values


resp = client.update_default_branch({
  repository_name: "RepositoryName", # required
  default_branch_name: "BranchName", # required
})

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository to set or change the default branch for.

  • :default_branch_name (required, String)

    The name of the branch to set as the default.

Returns:

  • (Struct)

    Returns an empty response.

See Also:

#update_pull_request_approval_rule_content(options = {}) ⇒ Types::UpdatePullRequestApprovalRuleContentOutput

Updates the structure of an approval rule created specifically for a pull request. For example, you can change the number of required approvers and the approval pool for approvers.

Examples:

Request syntax with placeholder values


resp = client.update_pull_request_approval_rule_content({
  pull_request_id: "PullRequestId", # required
  approval_rule_name: "ApprovalRuleName", # required
  existing_rule_content_sha_256: "RuleContentSha256",
  new_rule_content: "ApprovalRuleContent", # required
})

Response structure


resp.approval_rule.approval_rule_id #=> String
resp.approval_rule.approval_rule_name #=> String
resp.approval_rule.approval_rule_content #=> String
resp.approval_rule.rule_content_sha_256 #=> String
resp.approval_rule.last_modified_date #=> Time
resp.approval_rule.creation_date #=> Time
resp.approval_rule.last_modified_user #=> String
resp.approval_rule.origin_approval_rule_template.approval_rule_template_id #=> String
resp.approval_rule.origin_approval_rule_template.approval_rule_template_name #=> String

Options Hash (options):

  • :pull_request_id (required, String)

    The system-generated ID of the pull request.

  • :approval_rule_name (required, String)

    The name of the approval rule you want to update.

  • :existing_rule_content_sha_256 (String)

    The SHA-256 hash signature for the content of the approval rule. You can retrieve this information by using GetPullRequest.

  • :new_rule_content (required, String)

    The updated content for the approval rule.

    When you update the content of the approval rule, you can specify approvers in an approval pool in one of two ways:

    • CodeCommitApprovers: This option only requires an AWS account and a resource. It can be used for both IAM users and federated access users whose name matches the provided resource name. This is a very powerful option that offers a great deal of flexibility. For example, if you specify the AWS account 123456789012 and Mary_Major, all of the following are counted as approvals coming from that user:

    • An IAM user in the account (arn:aws:iam::123456789012:user/Mary_Major)

    • A federated user identified in IAM as Mary_Major (arn:aws:sts::123456789012:federated-user/Mary_Major)

    This option does not recognize an active session of someone assuming the role of CodeCommitReview with a role session name of Mary_Major (arn:aws:sts::123456789012:assumed-role/CodeCommitReview/Mary_Major) unless you include a wildcard (*Mary_Major).

    • Fully qualified ARN: This option allows you to specify the fully qualified Amazon Resource Name (ARN) of the IAM user or role.

    For more information about IAM ARNs, wildcards, and formats, see IAM Identifiers in the IAM User Guide.

Returns:

See Also:

#update_pull_request_approval_state(options = {}) ⇒ Struct

Updates the state of a user's approval on a pull request. The user is derived from the signed-in account when the request is made.

Examples:

Request syntax with placeholder values


resp = client.update_pull_request_approval_state({
  pull_request_id: "PullRequestId", # required
  revision_id: "RevisionId", # required
  approval_state: "APPROVE", # required, accepts APPROVE, REVOKE
})

Options Hash (options):

  • :pull_request_id (required, String)

    The system-generated ID of the pull request.

  • :revision_id (required, String)

    The system-generated ID of the revision.

  • :approval_state (required, String)

    The approval state to associate with the user on the pull request.

Returns:

  • (Struct)

    Returns an empty response.

See Also:

#update_pull_request_description(options = {}) ⇒ Types::UpdatePullRequestDescriptionOutput

Replaces the contents of the description of a pull request.

Examples:

Request syntax with placeholder values


resp = client.update_pull_request_description({
  pull_request_id: "PullRequestId", # required
  description: "Description", # required
})

Response structure


resp.pull_request.pull_request_id #=> String
resp.pull_request.title #=> String
resp.pull_request.description #=> String
resp.pull_request.last_activity_date #=> Time
resp.pull_request.creation_date #=> Time
resp.pull_request.pull_request_status #=> String, one of "OPEN", "CLOSED"
resp.pull_request.author_arn #=> String
resp.pull_request.pull_request_targets #=> Array
resp.pull_request.pull_request_targets[0].repository_name #=> String
resp.pull_request.pull_request_targets[0].source_reference #=> String
resp.pull_request.pull_request_targets[0].destination_reference #=> String
resp.pull_request.pull_request_targets[0].destination_commit #=> String
resp.pull_request.pull_request_targets[0].source_commit #=> String
resp.pull_request.pull_request_targets[0].merge_base #=> String
resp.pull_request.pull_request_targets[0]..is_merged #=> true/false
resp.pull_request.pull_request_targets[0]..merged_by #=> String
resp.pull_request.pull_request_targets[0]..merge_commit_id #=> String
resp.pull_request.pull_request_targets[0]..merge_option #=> String, one of "FAST_FORWARD_MERGE", "SQUASH_MERGE", "THREE_WAY_MERGE"
resp.pull_request.client_request_token #=> String
resp.pull_request.revision_id #=> String
resp.pull_request.approval_rules #=> Array
resp.pull_request.approval_rules[0].approval_rule_id #=> String
resp.pull_request.approval_rules[0].approval_rule_name #=> String
resp.pull_request.approval_rules[0].approval_rule_content #=> String
resp.pull_request.approval_rules[0].rule_content_sha_256 #=> String
resp.pull_request.approval_rules[0].last_modified_date #=> Time
resp.pull_request.approval_rules[0].creation_date #=> Time
resp.pull_request.approval_rules[0].last_modified_user #=> String
resp.pull_request.approval_rules[0].origin_approval_rule_template.approval_rule_template_id #=> String
resp.pull_request.approval_rules[0].origin_approval_rule_template.approval_rule_template_name #=> String

Options Hash (options):

  • :pull_request_id (required, String)

    The system-generated ID of the pull request. To get this ID, use ListPullRequests.

  • :description (required, String)

    The updated content of the description for the pull request. This content replaces the existing description.

Returns:

See Also:

#update_pull_request_status(options = {}) ⇒ Types::UpdatePullRequestStatusOutput

Updates the status of a pull request.

Examples:

Request syntax with placeholder values


resp = client.update_pull_request_status({
  pull_request_id: "PullRequestId", # required
  pull_request_status: "OPEN", # required, accepts OPEN, CLOSED
})

Response structure


resp.pull_request.pull_request_id #=> String
resp.pull_request.title #=> String
resp.pull_request.description #=> String
resp.pull_request.last_activity_date #=> Time
resp.pull_request.creation_date #=> Time
resp.pull_request.pull_request_status #=> String, one of "OPEN", "CLOSED"
resp.pull_request.author_arn #=> String
resp.pull_request.pull_request_targets #=> Array
resp.pull_request.pull_request_targets[0].repository_name #=> String
resp.pull_request.pull_request_targets[0].source_reference #=> String
resp.pull_request.pull_request_targets[0].destination_reference #=> String
resp.pull_request.pull_request_targets[0].destination_commit #=> String
resp.pull_request.pull_request_targets[0].source_commit #=> String
resp.pull_request.pull_request_targets[0].merge_base #=> String
resp.pull_request.pull_request_targets[0]..is_merged #=> true/false
resp.pull_request.pull_request_targets[0]..merged_by #=> String
resp.pull_request.pull_request_targets[0]..merge_commit_id #=> String
resp.pull_request.pull_request_targets[0]..merge_option #=> String, one of "FAST_FORWARD_MERGE", "SQUASH_MERGE", "THREE_WAY_MERGE"
resp.pull_request.client_request_token #=> String
resp.pull_request.revision_id #=> String
resp.pull_request.approval_rules #=> Array
resp.pull_request.approval_rules[0].approval_rule_id #=> String
resp.pull_request.approval_rules[0].approval_rule_name #=> String
resp.pull_request.approval_rules[0].approval_rule_content #=> String
resp.pull_request.approval_rules[0].rule_content_sha_256 #=> String
resp.pull_request.approval_rules[0].last_modified_date #=> Time
resp.pull_request.approval_rules[0].creation_date #=> Time
resp.pull_request.approval_rules[0].last_modified_user #=> String
resp.pull_request.approval_rules[0].origin_approval_rule_template.approval_rule_template_id #=> String
resp.pull_request.approval_rules[0].origin_approval_rule_template.approval_rule_template_name #=> String

Options Hash (options):

  • :pull_request_id (required, String)

    The system-generated ID of the pull request. To get this ID, use ListPullRequests.

  • :pull_request_status (required, String)

    The status of the pull request. The only valid operations are to update the status from OPEN to OPEN, OPEN to CLOSED or from CLOSED to CLOSED.

Returns:

See Also:

#update_pull_request_title(options = {}) ⇒ Types::UpdatePullRequestTitleOutput

Replaces the title of a pull request.

Examples:

Request syntax with placeholder values


resp = client.update_pull_request_title({
  pull_request_id: "PullRequestId", # required
  title: "Title", # required
})

Response structure


resp.pull_request.pull_request_id #=> String
resp.pull_request.title #=> String
resp.pull_request.description #=> String
resp.pull_request.last_activity_date #=> Time
resp.pull_request.creation_date #=> Time
resp.pull_request.pull_request_status #=> String, one of "OPEN", "CLOSED"
resp.pull_request.author_arn #=> String
resp.pull_request.pull_request_targets #=> Array
resp.pull_request.pull_request_targets[0].repository_name #=> String
resp.pull_request.pull_request_targets[0].source_reference #=> String
resp.pull_request.pull_request_targets[0].destination_reference #=> String
resp.pull_request.pull_request_targets[0].destination_commit #=> String
resp.pull_request.pull_request_targets[0].source_commit #=> String
resp.pull_request.pull_request_targets[0].merge_base #=> String
resp.pull_request.pull_request_targets[0]..is_merged #=> true/false
resp.pull_request.pull_request_targets[0]..merged_by #=> String
resp.pull_request.pull_request_targets[0]..merge_commit_id #=> String
resp.pull_request.pull_request_targets[0]..merge_option #=> String, one of "FAST_FORWARD_MERGE", "SQUASH_MERGE", "THREE_WAY_MERGE"
resp.pull_request.client_request_token #=> String
resp.pull_request.revision_id #=> String
resp.pull_request.approval_rules #=> Array
resp.pull_request.approval_rules[0].approval_rule_id #=> String
resp.pull_request.approval_rules[0].approval_rule_name #=> String
resp.pull_request.approval_rules[0].approval_rule_content #=> String
resp.pull_request.approval_rules[0].rule_content_sha_256 #=> String
resp.pull_request.approval_rules[0].last_modified_date #=> Time
resp.pull_request.approval_rules[0].creation_date #=> Time
resp.pull_request.approval_rules[0].last_modified_user #=> String
resp.pull_request.approval_rules[0].origin_approval_rule_template.approval_rule_template_id #=> String
resp.pull_request.approval_rules[0].origin_approval_rule_template.approval_rule_template_name #=> String

Options Hash (options):

  • :pull_request_id (required, String)

    The system-generated ID of the pull request. To get this ID, use ListPullRequests.

  • :title (required, String)

    The updated title of the pull request. This replaces the existing title.

Returns:

See Also:

#update_repository_description(options = {}) ⇒ Struct

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 webpage can 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 webpage.

Examples:

Request syntax with placeholder values


resp = client.update_repository_description({
  repository_name: "RepositoryName", # required
  repository_description: "RepositoryDescription",
})

Options Hash (options):

  • :repository_name (required, String)

    The name of the repository to set or change the comment or description for.

  • :repository_description (String)

    The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.

Returns:

  • (Struct)

    Returns an empty response.

See Also:

#update_repository_name(options = {}) ⇒ Struct

Renames a repository. The repository name must be unique across the calling AWS account. Repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. The suffix .git is prohibited. For more information about the limits on repository names, see Limits in the AWS CodeCommit User Guide.

Examples:

Request syntax with placeholder values


resp = client.update_repository_name({
  old_name: "RepositoryName", # required
  new_name: "RepositoryName", # required
})

Options Hash (options):

  • :old_name (required, String)

    The current name of the repository.

  • :new_name (required, String)

    The new name for the repository.

Returns:

  • (Struct)

    Returns an empty response.

See Also:

#wait_until(waiter_name, params = {}) {|waiter| ... } ⇒ Boolean

Waiters polls an API operation until a resource enters a desired state.

Basic Usage

Waiters will poll until they are succesful, they fail by entering a terminal state, or until a maximum number of attempts are made.

# polls in a loop, sleeping between attempts client.waiter_until(waiter_name, params)

Configuration

You can configure the maximum number of polling attempts, and the delay (in seconds) between each polling attempt. You configure waiters by passing a block to #wait_until:

# poll for ~25 seconds
client.wait_until(...) do |w|
  w.max_attempts = 5
  w.delay = 5
end

Callbacks

You can be notified before each polling attempt and before each delay. If you throw :success or :failure from these callbacks, it will terminate the waiter.

started_at = Time.now
client.wait_until(...) do |w|

  # disable max attempts
  w.max_attempts = nil

  # poll for 1 hour, instead of a number of attempts
  w.before_wait do |attempts, response|
    throw :failure if Time.now - started_at > 3600
  end

end

Handling Errors

When a waiter is successful, it returns true. When a waiter fails, it raises an error. All errors raised extend from Waiters::Errors::WaiterFailed.

begin
  client.wait_until(...)
rescue Aws::Waiters::Errors::WaiterFailed
  # resource did not enter the desired state in time
end

Parameters:

  • waiter_name (Symbol)

    The name of the waiter. See #waiter_names for a full list of supported waiters.

  • params (Hash) (defaults to: {})

    Additional request parameters. See the #waiter_names for a list of supported waiters and what request they call. The called request determines the list of accepted parameters.

Yield Parameters:

Returns:

  • (Boolean)

    Returns true if the waiter was successful.

Raises:

  • (Errors::FailureStateError)

    Raised when the waiter terminates because the waiter has entered a state that it will not transition out of, preventing success.

  • (Errors::TooManyAttemptsError)

    Raised when the configured maximum number of attempts have been made, and the waiter is not yet successful.

  • (Errors::UnexpectedError)

    Raised when an error is encounted while polling for a resource that is not expected.

  • (Errors::NoSuchWaiterError)

    Raised when you request to wait for an unknown state.

#waiter_namesArray<Symbol>

Returns the list of supported waiters. The following table lists the supported waiters and the client method they call:

Waiter NameClient MethodDefault Delay:Default Max Attempts:

Returns:

  • (Array<Symbol>)

    the list of supported waiters.