aws-sdk-sms 1.0.1 → 1.1.0
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.
- checksums.yaml +4 -4
 - data/lib/aws-sdk-sms.rb +1 -1
 - data/lib/aws-sdk-sms/client.rb +12 -1
 - metadata +3 -3
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA1:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 5b362f4e10abf6b1fc3ee393da00e0b9217b04c5
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: d60fe9abc57bd842f855514efff756f21a162526
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 6153d4a6a2b506ffe7e8f566bee9c0b37437effb09459ef7548eccc9ace9b8956d319673c2034d8aa789ac3c2302e98f3ad9f585c8dd815d6ef412fd1437b636
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 13ff981a1ed32c8e2acaf0b7742dbce09549410d2414e43a44d74495a78a928adcc3ed153176b845efe73510d6119efd609d4b455fb8fe224a5841e9baacdc40
         
     | 
    
        data/lib/aws-sdk-sms.rb
    CHANGED
    
    
    
        data/lib/aws-sdk-sms/client.rb
    CHANGED
    
    | 
         @@ -115,6 +115,14 @@ module Aws::SMS 
     | 
|
| 
       115 
115 
     | 
    
         
             
                #   Used when loading credentials from the shared credentials file
         
     | 
| 
       116 
116 
     | 
    
         
             
                #   at HOME/.aws/credentials.  When not specified, 'default' is used.
         
     | 
| 
       117 
117 
     | 
    
         
             
                #
         
     | 
| 
      
 118 
     | 
    
         
            +
                # @option options [Float] :retry_base_delay (0.3)
         
     | 
| 
      
 119 
     | 
    
         
            +
                #   The base delay in seconds used by the default backoff function.
         
     | 
| 
      
 120 
     | 
    
         
            +
                #
         
     | 
| 
      
 121 
     | 
    
         
            +
                # @option options [Symbol] :retry_jitter (:none)
         
     | 
| 
      
 122 
     | 
    
         
            +
                #   A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
         
     | 
| 
      
 123 
     | 
    
         
            +
                #
         
     | 
| 
      
 124 
     | 
    
         
            +
                #   @see https://www.awsarchitectureblog.com/2015/03/backoff.html
         
     | 
| 
      
 125 
     | 
    
         
            +
                #
         
     | 
| 
       118 
126 
     | 
    
         
             
                # @option options [Integer] :retry_limit (3)
         
     | 
| 
       119 
127 
     | 
    
         
             
                #   The maximum number of times to retry failed requests.  Only
         
     | 
| 
       120 
128 
     | 
    
         
             
                #   ~ 500 level server errors and certain ~ 400 level client errors
         
     | 
| 
         @@ -122,6 +130,9 @@ module Aws::SMS 
     | 
|
| 
       122 
130 
     | 
    
         
             
                #   checksum errors, networking errors, timeout errors and auth
         
     | 
| 
       123 
131 
     | 
    
         
             
                #   errors from expired credentials.
         
     | 
| 
       124 
132 
     | 
    
         
             
                #
         
     | 
| 
      
 133 
     | 
    
         
            +
                # @option options [Integer] :retry_max_delay (0)
         
     | 
| 
      
 134 
     | 
    
         
            +
                #   The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
         
     | 
| 
      
 135 
     | 
    
         
            +
                #
         
     | 
| 
       125 
136 
     | 
    
         
             
                # @option options [String] :secret_access_key
         
     | 
| 
       126 
137 
     | 
    
         
             
                #
         
     | 
| 
       127 
138 
     | 
    
         
             
                # @option options [String] :session_token
         
     | 
| 
         @@ -629,7 +640,7 @@ module Aws::SMS 
     | 
|
| 
       629 
640 
     | 
    
         
             
                    params: params,
         
     | 
| 
       630 
641 
     | 
    
         
             
                    config: config)
         
     | 
| 
       631 
642 
     | 
    
         
             
                  context[:gem_name] = 'aws-sdk-sms'
         
     | 
| 
       632 
     | 
    
         
            -
                  context[:gem_version] = '1.0 
     | 
| 
      
 643 
     | 
    
         
            +
                  context[:gem_version] = '1.1.0'
         
     | 
| 
       633 
644 
     | 
    
         
             
                  Seahorse::Client::Request.new(handlers, context)
         
     | 
| 
       634 
645 
     | 
    
         
             
                end
         
     | 
| 
       635 
646 
     | 
    
         | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: aws-sdk-sms
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 1.0 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.1.0
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Amazon Web Services
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2018- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2018-06-26 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: aws-sdk-core
         
     | 
| 
         @@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       75 
75 
     | 
    
         
             
                  version: '0'
         
     | 
| 
       76 
76 
     | 
    
         
             
            requirements: []
         
     | 
| 
       77 
77 
     | 
    
         
             
            rubyforge_project: 
         
     | 
| 
       78 
     | 
    
         
            -
            rubygems_version: 2.5. 
     | 
| 
      
 78 
     | 
    
         
            +
            rubygems_version: 2.5.2.3
         
     | 
| 
       79 
79 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       80 
80 
     | 
    
         
             
            specification_version: 4
         
     | 
| 
       81 
81 
     | 
    
         
             
            summary: AWS SDK for Ruby - SMS
         
     |