aws-sdk-core 3.48.3 → 3.48.4

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
  SHA1:
3
- metadata.gz: 58941bbf2b019a67c8e094bd9654bd933cf6d7dc
4
- data.tar.gz: 7ab4b27d12483148d7e99e717d2c2b109b57dab7
3
+ metadata.gz: c7f250afcf1a6ea5a0d304eea62026847a912aae
4
+ data.tar.gz: 94bcb65ad4efaa590c0cba95da2d4391969ec285
5
5
  SHA512:
6
- metadata.gz: c41373cb4df5bcfd45d5e04cbd75309a0c3a3a1fc4ecb2e6fde9129bfe462fcb1ae9adc81f5d6d03dbd92be8fc50a4d5c6865eddd9ae9211687d2f118dd4fbd8
7
- data.tar.gz: ebc4b9fd334aa7d7947553c429c8d9a504d7501ad081ffb4722fa068b243c6ef9aa809c03c51a03ac19d67c97808829b59a095ec781744f7fc656ad22e314756
6
+ metadata.gz: 9f5e35a2dfa688c3ec60aad30b866a9c719aa7f11e7a4c136bb0c58f0059c2967a8a1963a680e3f429f79c7834000c35d353f2f6b4a9876556e06cfde0a5ffd9
7
+ data.tar.gz: 4a1c4d3275caf98b617313ee1f192391efc4242aa51d4ec42667177d5b64ad91a6b6655650998a9b544ba816814e5ab0d506fb25358d1a2955567ba7b057b932
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.48.3
1
+ 3.48.4
@@ -40,6 +40,6 @@ require_relative 'aws-sdk-sts/customizations'
40
40
  # @service
41
41
  module Aws::STS
42
42
 
43
- GEM_VERSION = '3.48.3'
43
+ GEM_VERSION = '3.48.4'
44
44
 
45
45
  end
@@ -199,6 +199,49 @@ module Aws::STS
199
199
  # When `true`, request parameters are validated before
200
200
  # sending the request.
201
201
  #
202
+ # @option options [URI::HTTP,String] :http_proxy A proxy to send
203
+ # requests through. Formatted like 'http://proxy.com:123'.
204
+ #
205
+ # @option options [Float] :http_open_timeout (15) The number of
206
+ # seconds to wait when opening a HTTP session before rasing a
207
+ # `Timeout::Error`.
208
+ #
209
+ # @option options [Integer] :http_read_timeout (60) The default
210
+ # number of seconds to wait for response data. This value can
211
+ # safely be set
212
+ # per-request on the session yeidled by {#session_for}.
213
+ #
214
+ # @option options [Float] :http_idle_timeout (5) The number of
215
+ # seconds a connection is allowed to sit idble before it is
216
+ # considered stale. Stale connections are closed and removed
217
+ # from the pool before making a request.
218
+ #
219
+ # @option options [Float] :http_continue_timeout (1) The number of
220
+ # seconds to wait for a 100-continue response before sending the
221
+ # request body. This option has no effect unless the request has
222
+ # "Expect" header set to "100-continue". Defaults to `nil` which
223
+ # disables this behaviour. This value can safely be set per
224
+ # request on the session yeidled by {#session_for}.
225
+ #
226
+ # @option options [Boolean] :http_wire_trace (false) When `true`,
227
+ # HTTP debug output will be sent to the `:logger`.
228
+ #
229
+ # @option options [Boolean] :ssl_verify_peer (true) When `true`,
230
+ # SSL peer certificates are verified when establishing a
231
+ # connection.
232
+ #
233
+ # @option options [String] :ssl_ca_bundle Full path to the SSL
234
+ # certificate authority bundle file that should be used when
235
+ # verifying peer certificates. If you do not pass
236
+ # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
237
+ # will be used if available.
238
+ #
239
+ # @option options [String] :ssl_ca_directory Full path of the
240
+ # directory that contains the unbundled SSL certificate
241
+ # authority files for verifying peer certificates. If you do
242
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
243
+ # system default will be used if available.
244
+ #
202
245
  def initialize(*args)
203
246
  super
204
247
  end
@@ -1535,7 +1578,7 @@ module Aws::STS
1535
1578
  params: params,
1536
1579
  config: config)
1537
1580
  context[:gem_name] = 'aws-sdk-core'
1538
- context[:gem_version] = '3.48.3'
1581
+ context[:gem_version] = '3.48.4'
1539
1582
  Seahorse::Client::Request.new(handlers, context)
1540
1583
  end
1541
1584
 
@@ -15,9 +15,9 @@ module Seahorse
15
15
  @event = false
16
16
  @eventstream = false
17
17
  @eventpayload = false
18
- @eventpayload_type = ''
18
+ @eventpayload_type = ''.freeze
19
19
  @eventheader = false
20
- @eventheader_type = ''
20
+ @eventheader_type = ''.freeze
21
21
  options.each do |key, value|
22
22
  if key == :metadata
23
23
  value.each do |k,v|
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.48.3
4
+ version: 3.48.4
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: 2019-03-26 00:00:00.000000000 Z
11
+ date: 2019-04-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -256,7 +256,7 @@ files:
256
256
  - lib/seahorse/model/shapes.rb
257
257
  - lib/seahorse/util.rb
258
258
  - lib/seahorse/version.rb
259
- homepage: http://github.com/aws/aws-sdk-ruby
259
+ homepage: https://github.com/aws/aws-sdk-ruby
260
260
  licenses:
261
261
  - Apache-2.0
262
262
  metadata: