aws-sdk 1.5.4 → 1.5.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ca-bundle.crt +54 -444
- data/lib/aws/api_config/EC2-2012-06-01.yml +52 -13
- data/lib/aws/api_config/SimpleEmailService-2010-12-01.yml +53 -0
- data/lib/aws/auto_scaling/request.rb +7 -1
- data/lib/aws/cloud_formation/stack_options.rb +3 -3
- data/lib/aws/core.rb +30 -9
- data/lib/aws/core/client.rb +7 -2
- data/lib/aws/core/configuration.rb +65 -36
- data/lib/aws/core/http/httparty_handler.rb +5 -4
- data/lib/aws/core/http/net_http_handler.rb +30 -14
- data/lib/aws/core/http/request.rb +10 -2
- data/lib/aws/core/inflection.rb +15 -12
- data/lib/aws/core/log_formatter.rb +6 -0
- data/lib/aws/core/resource.rb +7 -3
- data/lib/aws/core/service_interface.rb +3 -3
- data/lib/aws/ec2.rb +7 -0
- data/lib/aws/ec2/client.rb +80 -1
- data/lib/aws/ec2/export_task.rb +120 -0
- data/lib/aws/ec2/export_task_collection.rb +67 -0
- data/lib/aws/ec2/instance.rb +81 -0
- data/lib/aws/ec2/region.rb +1 -0
- data/lib/aws/record/model.rb +1 -1
- data/lib/aws/s3.rb +1 -0
- data/lib/aws/s3/access_control_list.rb +12 -5
- data/lib/aws/s3/acl_options.rb +204 -0
- data/lib/aws/s3/bucket.rb +6 -11
- data/lib/aws/s3/bucket_collection.rb +21 -4
- data/lib/aws/s3/client.rb +280 -96
- data/lib/aws/s3/request.rb +0 -8
- data/lib/aws/s3/s3_object.rb +23 -13
- data/lib/aws/simple_email_service/client.rb +76 -11
- data/lib/aws/simple_email_service/identity.rb +81 -4
- data/lib/net/http/connection_pool.rb +45 -23
- data/lib/net/http/connection_pool/connection.rb +3 -0
- data/lib/net/http/connection_pool/session.rb +2 -2
- metadata +6 -3
| @@ -112,6 +112,9 @@ class Net::HTTP::ConnectionPool | |
| 112 112 | 
             
                  !!proxy_address
         | 
| 113 113 | 
             
                end
         | 
| 114 114 |  | 
| 115 | 
            +
                # Makes a HTTP request.  See Net::HTTPSession#request documentation
         | 
| 116 | 
            +
                # from the Ruby standard library for information about argments.
         | 
| 117 | 
            +
                # @return [Net::HTTPResponse]
         | 
| 115 118 | 
             
                def request *args, &block
         | 
| 116 119 | 
             
                  pool.request(self, *args, &block)
         | 
| 117 120 | 
             
                end
         | 
| @@ -52,7 +52,7 @@ class Net::HTTP::ConnectionPool | |
| 52 52 |  | 
| 53 53 | 
             
                class << self
         | 
| 54 54 |  | 
| 55 | 
            -
                  def for connection, open_timeout
         | 
| 55 | 
            +
                  def for connection, open_timeout, debug_logger = nil
         | 
| 56 56 |  | 
| 57 57 | 
             
                    http_args = []
         | 
| 58 58 | 
             
                    http_args << connection.host
         | 
| @@ -65,7 +65,7 @@ class Net::HTTP::ConnectionPool | |
| 65 65 | 
             
                    end
         | 
| 66 66 |  | 
| 67 67 | 
             
                    http = Net::HTTP.new(*http_args)
         | 
| 68 | 
            -
                     | 
| 68 | 
            +
                    http.set_debug_output(debug_logger)
         | 
| 69 69 | 
             
                    http.open_timeout = open_timeout
         | 
| 70 70 |  | 
| 71 71 | 
             
                    if connection.ssl?
         | 
    
        metadata
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: aws-sdk
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 1.5. | 
| 4 | 
            +
              version: 1.5.5
         | 
| 5 5 | 
             
              prerelease: 
         | 
| 6 6 | 
             
            platform: ruby
         | 
| 7 7 | 
             
            authors:
         | 
| @@ -9,7 +9,7 @@ authors: | |
| 9 9 | 
             
            autorequire: 
         | 
| 10 10 | 
             
            bindir: bin
         | 
| 11 11 | 
             
            cert_chain: []
         | 
| 12 | 
            -
            date: 2012-06- | 
| 12 | 
            +
            date: 2012-06-26 00:00:00.000000000 Z
         | 
| 13 13 | 
             
            dependencies:
         | 
| 14 14 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 15 15 | 
             
              name: uuidtools
         | 
| @@ -205,6 +205,8 @@ files: | |
| 205 205 | 
             
            - lib/aws/ec2/elastic_ip.rb
         | 
| 206 206 | 
             
            - lib/aws/ec2/elastic_ip_collection.rb
         | 
| 207 207 | 
             
            - lib/aws/ec2/errors.rb
         | 
| 208 | 
            +
            - lib/aws/ec2/export_task.rb
         | 
| 209 | 
            +
            - lib/aws/ec2/export_task_collection.rb
         | 
| 208 210 | 
             
            - lib/aws/ec2/filtered_collection.rb
         | 
| 209 211 | 
             
            - lib/aws/ec2/has_permissions.rb
         | 
| 210 212 | 
             
            - lib/aws/ec2/image.rb
         | 
| @@ -340,6 +342,7 @@ files: | |
| 340 342 | 
             
            - lib/aws/record.rb
         | 
| 341 343 | 
             
            - lib/aws/s3/access_control_list.rb
         | 
| 342 344 | 
             
            - lib/aws/s3/acl_object.rb
         | 
| 345 | 
            +
            - lib/aws/s3/acl_options.rb
         | 
| 343 346 | 
             
            - lib/aws/s3/bucket.rb
         | 
| 344 347 | 
             
            - lib/aws/s3/bucket_collection.rb
         | 
| 345 348 | 
             
            - lib/aws/s3/bucket_lifecycle_configuration.rb
         | 
| @@ -490,7 +493,7 @@ required_ruby_version: !ruby/object:Gem::Requirement | |
| 490 493 | 
             
                  version: '0'
         | 
| 491 494 | 
             
                  segments:
         | 
| 492 495 | 
             
                  - 0
         | 
| 493 | 
            -
                  hash:  | 
| 496 | 
            +
                  hash: 487354542114207849
         | 
| 494 497 | 
             
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 495 498 | 
             
              none: false
         | 
| 496 499 | 
             
              requirements:
         |