aws-sdk-elasticache 1.14.0 → 1.15.0

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
  SHA1:
3
- metadata.gz: e236cd1026491e13459085bf853e501756cdb0a9
4
- data.tar.gz: 6f583dfa22a5059de0e74acc930875e9af67dc02
3
+ metadata.gz: 8eb8b79ce157cf504730beeac387a3f6244f6283
4
+ data.tar.gz: d475b2e548b23d0b89c7da8f08af9e76f85eb17f
5
5
  SHA512:
6
- metadata.gz: a764681bede0e9dc6ebe1e6dfaf020b38bcf308bc291ad98e43133caa49897ed6a4a3c5931ca57553b9a6731fe93c1d77e95bc48961fae341e8ed2fa27c0da42
7
- data.tar.gz: f308980ace77bbdb019e20b597ffecc45e95ad1e9e855fe7fe478ef5fd02d24188e75b91891cca39b471849d9091577d0c71ad90ba5721b1d15447d4e247ce0d
6
+ metadata.gz: cc3b717fc8541971ab4c4ccb954c5876f31dd7fb692e023d14d3d99ae84be97c788a21652225cfc10ffbad79d91ddde31c737cb74cd3b5fbdc3c4c0dd35c694a
7
+ data.tar.gz: 9d4b5925eeb80bce0ac1a3168728de40d5379e492b3d8179eb53a02e80681eadedb60fb4d766b8d87ea24ed9b36fb272be91af2615445d4b7814f93732bed1c1
@@ -23,6 +23,7 @@ require 'aws-sdk-core/plugins/idempotency_token.rb'
23
23
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
24
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
25
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
+ require 'aws-sdk-core/plugins/transfer_encoding.rb'
26
27
  require 'aws-sdk-core/plugins/signature_v4.rb'
27
28
  require 'aws-sdk-core/plugins/protocols/query.rb'
28
29
 
@@ -55,6 +56,7 @@ module Aws::ElastiCache
55
56
  add_plugin(Aws::Plugins::JsonvalueConverter)
56
57
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
57
58
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
59
+ add_plugin(Aws::Plugins::TransferEncoding)
58
60
  add_plugin(Aws::Plugins::SignatureV4)
59
61
  add_plugin(Aws::Plugins::Protocols::Query)
60
62
 
@@ -199,6 +201,49 @@ module Aws::ElastiCache
199
201
  # When `true`, request parameters are validated before
200
202
  # sending the request.
201
203
  #
204
+ # @option options [URI::HTTP,String] :http_proxy A proxy to send
205
+ # requests through. Formatted like 'http://proxy.com:123'.
206
+ #
207
+ # @option options [Float] :http_open_timeout (15) The number of
208
+ # seconds to wait when opening a HTTP session before rasing a
209
+ # `Timeout::Error`.
210
+ #
211
+ # @option options [Integer] :http_read_timeout (60) The default
212
+ # number of seconds to wait for response data. This value can
213
+ # safely be set
214
+ # per-request on the session yeidled by {#session_for}.
215
+ #
216
+ # @option options [Float] :http_idle_timeout (5) The number of
217
+ # seconds a connection is allowed to sit idble before it is
218
+ # considered stale. Stale connections are closed and removed
219
+ # from the pool before making a request.
220
+ #
221
+ # @option options [Float] :http_continue_timeout (1) The number of
222
+ # seconds to wait for a 100-continue response before sending the
223
+ # request body. This option has no effect unless the request has
224
+ # "Expect" header set to "100-continue". Defaults to `nil` which
225
+ # disables this behaviour. This value can safely be set per
226
+ # request on the session yeidled by {#session_for}.
227
+ #
228
+ # @option options [Boolean] :http_wire_trace (false) When `true`,
229
+ # HTTP debug output will be sent to the `:logger`.
230
+ #
231
+ # @option options [Boolean] :ssl_verify_peer (true) When `true`,
232
+ # SSL peer certificates are verified when establishing a
233
+ # connection.
234
+ #
235
+ # @option options [String] :ssl_ca_bundle Full path to the SSL
236
+ # certificate authority bundle file that should be used when
237
+ # verifying peer certificates. If you do not pass
238
+ # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
239
+ # will be used if available.
240
+ #
241
+ # @option options [String] :ssl_ca_directory Full path of the
242
+ # directory that contains the unbundled SSL certificate
243
+ # authority files for verifying peer certificates. If you do
244
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
245
+ # system default will be used if available.
246
+ #
202
247
  def initialize(*args)
203
248
  super
204
249
  end
@@ -7569,7 +7614,7 @@ module Aws::ElastiCache
7569
7614
  params: params,
7570
7615
  config: config)
7571
7616
  context[:gem_name] = 'aws-sdk-elasticache'
7572
- context[:gem_version] = '1.14.0'
7617
+ context[:gem_version] = '1.15.0'
7573
7618
  Seahorse::Client::Request.new(handlers, context)
7574
7619
  end
7575
7620
 
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-elasticache/customizations'
43
43
  # @service
44
44
  module Aws::ElastiCache
45
45
 
46
- GEM_VERSION = '1.14.0'
46
+ GEM_VERSION = '1.15.0'
47
47
 
48
48
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elasticache
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.0
4
+ version: 1.15.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: 2019-03-22 00:00:00.000000000 Z
11
+ date: 2019-05-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -60,7 +60,7 @@ files:
60
60
  - lib/aws-sdk-elasticache/resource.rb
61
61
  - lib/aws-sdk-elasticache/types.rb
62
62
  - lib/aws-sdk-elasticache/waiters.rb
63
- homepage: http://github.com/aws/aws-sdk-ruby
63
+ homepage: https://github.com/aws/aws-sdk-ruby
64
64
  licenses:
65
65
  - Apache-2.0
66
66
  metadata: