lib/aws-sdk-codecommit/client.rb in aws-sdk-codecommit-1.37.0 vs lib/aws-sdk-codecommit/client.rb in aws-sdk-codecommit-1.38.0

- old
+ new

@@ -83,30 +83,45 @@ # following classes: # # * `Aws::Credentials` - Used for configuring static, non-refreshing # credentials. # + # * `Aws::SharedCredentials` - Used for loading static credentials from a + # shared file, such as `~/.aws/config`. + # + # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role. + # + # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to + # assume a role after providing credentials via the web. + # + # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an + # access token generated from `aws login`. + # + # * `Aws::ProcessCredentials` - Used for loading credentials from a + # process that outputs to stdout. + # # * `Aws::InstanceProfileCredentials` - Used for loading credentials # from an EC2 IMDS on an EC2 instance. # - # * `Aws::SharedCredentials` - Used for loading credentials from a - # shared file, such as `~/.aws/config`. + # * `Aws::ECSCredentials` - Used for loading credentials from + # instances running in ECS. # - # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role. + # * `Aws::CognitoIdentityCredentials` - Used for loading credentials + # from the Cognito Identity service. # # When `:credentials` are not configured directly, the following # locations will be searched for credentials: # # * `Aws.config[:credentials]` # * The `:access_key_id`, `:secret_access_key`, and `:session_token` options. # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'] # * `~/.aws/credentials` # * `~/.aws/config` - # * EC2 IMDS instance profile - When used by default, the timeouts are - # very aggressive. Construct and pass an instance of - # `Aws::InstanceProfileCredentails` to enable retries and extended - # timeouts. + # * EC2/ECS IMDS instance profile - When used by default, the timeouts + # are very aggressive. Construct and pass an instance of + # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to + # enable retries and extended timeouts. # # @option options [required, String] :region # The AWS region to connect to. The configured `:region` is # used to determine the service `:endpoint`. When not passed, # a default `:region` is searched for in the following locations: @@ -4069,11 +4084,11 @@ # # @option params [required, String] :branch_name # The name of the branch where you want to add or update the file. If # this is an empty repository, this branch is created. # - # @option params [required, String, IO] :file_content + # @option params [required, String, StringIO, File] :file_content # The content of the file, in binary object format. # # @option params [required, String] :file_path # The name of the file you want to add or update, including the relative # path to the file in the repository. @@ -4895,10 +4910,10 @@ operation: config.api.operation(operation_name), client: self, params: params, config: config) context[:gem_name] = 'aws-sdk-codecommit' - context[:gem_version] = '1.37.0' + context[:gem_version] = '1.38.0' Seahorse::Client::Request.new(handlers, context) end # @api private # @deprecated