aws-sdk-core 3.104.2 → 3.104.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7ea4e87ee4bcc585dd68a7d3f84a7541377201010884757c328d5fd2e8e54df3
4
- data.tar.gz: d46b0b471b52085428779e04efd7f408cc7a13783e95e13c119ba9432c748d1e
3
+ metadata.gz: 7357ce5a3cd95241ed7e567a86b6f3e9edbfd324124b0cab96116b20f41197a6
4
+ data.tar.gz: 8b255e4d03b48ff6cdf80167e3a115085b09aac23323f891daf305c93d3f7fb6
5
5
  SHA512:
6
- metadata.gz: cc2c0df6b4d9ae1ae6674ca1c2b47b27296bf60d407cced97f49026c0945e958e3e558818544e043b08bfebac1410f288245c21b02a43b621500f1b761b6afc9
7
- data.tar.gz: d845d824b9a0a6647582e094a11de8510b4a7a31de78bb09cf74ec55061a78bf788789b08e72a3b41b15eee4ecb84a1f00fe94d59ef6edc04d1b156bb4ee7937
6
+ metadata.gz: 57822a88212cd847c75ed5d0bd958962a3559ec92330e46eea7ab2b7a13fcf2d8fbeea3e0dc87f4beffa6ecdf5f2e17b15985781d720caf5eff803decf53284c
7
+ data.tar.gz: 674a1b2b308b44f32ea037878292c9ea621c8734559acdcfde7b7008bb48bd1be183c4c29899cbed0d9355555e2801fdaffd5d52bf3a18c7d32c83c7f6785f72
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.104.2
1
+ 3.104.3
@@ -23,7 +23,7 @@ When provided, `x-api-key` header will be injected with the value provided.
23
23
  class OptionHandler < Seahorse::Client::Handler
24
24
  def call(context)
25
25
  if context.operation.require_apikey
26
- if context.params.is_a?(Hash)
26
+ if context.params.is_a?(Hash) && context.params[:api_key]
27
27
  api_key = context.params.delete(:api_key)
28
28
  end
29
29
  api_key = context.config.api_key if api_key.nil?
@@ -45,6 +45,6 @@ require_relative 'aws-sdk-sts/customizations'
45
45
  # @service
46
46
  module Aws::STS
47
47
 
48
- GEM_VERSION = '3.104.2'
48
+ GEM_VERSION = '3.104.3'
49
49
 
50
50
  end
@@ -2189,7 +2189,7 @@ module Aws::STS
2189
2189
  params: params,
2190
2190
  config: config)
2191
2191
  context[:gem_name] = 'aws-sdk-core'
2192
- context[:gem_version] = '3.104.2'
2192
+ context[:gem_version] = '3.104.3'
2193
2193
  Seahorse::Client::Request.new(handlers, context)
2194
2194
  end
2195
2195
 
@@ -63,7 +63,7 @@ bytes in the body.
63
63
  # @api private
64
64
  class OptionHandler < Client::Handler
65
65
  def call(context)
66
- if context.params.is_a?(Hash)
66
+ if context.params.is_a?(Hash) && context.params[:on_chunk_sent]
67
67
  on_chunk_sent = context.params.delete(:on_chunk_sent)
68
68
  end
69
69
  on_chunk_sent = context.config.on_chunk_sent if on_chunk_sent.nil?
@@ -19,7 +19,7 @@ module Seahorse
19
19
  @operation = options[:operation]
20
20
  @authorizer = options[:authorizer]
21
21
  @client = options[:client]
22
- @params = options[:params] ? options[:params].dup : {}
22
+ @params = options[:params] || {}
23
23
  @config = options[:config]
24
24
  @http_request = options[:http_request] || Http::Request.new
25
25
  @http_response = options[:http_response] || Http::Response.new
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.104.2
4
+ version: 3.104.3
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: 2020-07-22 00:00:00.000000000 Z
11
+ date: 2020-07-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath