aws-sdk-core 3.104.2 → 3.104.3
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7357ce5a3cd95241ed7e567a86b6f3e9edbfd324124b0cab96116b20f41197a6
|
4
|
+
data.tar.gz: 8b255e4d03b48ff6cdf80167e3a115085b09aac23323f891daf305c93d3f7fb6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 57822a88212cd847c75ed5d0bd958962a3559ec92330e46eea7ab2b7a13fcf2d8fbeea3e0dc87f4beffa6ecdf5f2e17b15985781d720caf5eff803decf53284c
|
7
|
+
data.tar.gz: 674a1b2b308b44f32ea037878292c9ea621c8734559acdcfde7b7008bb48bd1be183c4c29899cbed0d9355555e2801fdaffd5d52bf3a18c7d32c83c7f6785f72
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.104.
|
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?
|
data/lib/aws-sdk-sts.rb
CHANGED
data/lib/aws-sdk-sts/client.rb
CHANGED
@@ -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.
|
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]
|
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.
|
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-
|
11
|
+
date: 2020-07-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jmespath
|