aws-sdk-opsworks 1.13.0 → 1.14.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: b0eff5622c1e94370d412e5c9e9ea7f68f79231b
4
- data.tar.gz: e05aeddb126d7488ab031fa5c57ecbff7fc8a03b
3
+ metadata.gz: 27e0ae22e7fa19f7b6d51d89a30fca3ac38b05c7
4
+ data.tar.gz: 3e5f2dc0382c8a5155f6ac4c9273f77675148aec
5
5
  SHA512:
6
- metadata.gz: 21870c936b934516f04af2bf49948870bbce0b4b9c1fa1a12a7026970a2d440c99c438b66a361bdc0b02fb30ce77bb67fa55500f2f818bbb93340fe0ee5f67f1
7
- data.tar.gz: f45274dbd537f101d77b760d62d9644e7a63167594a21993de108ee0a33fa21331c5568eb9af1f783d8dc825fe8cf5271d4802a9b5fdaf6bcbce50181f04819f
6
+ metadata.gz: 84445900697798f280caa845de58b4240fd13f790362f745b8b61e5ab7325edcc92d2542be7d6cd91c7581dd1862a11d0bfade761e13d6bb4f2ec4be3497b1a1
7
+ data.tar.gz: d4e08fcd5601d117fea6460911271a96ee68329c6441e6be48225a21f4a34d9a8fad4b684883f96405be5b0946b793f1fbe3f83ef12d70f71e601d129a13a7cf
@@ -46,6 +46,6 @@ require_relative 'aws-sdk-opsworks/customizations'
46
46
  # @service
47
47
  module Aws::OpsWorks
48
48
 
49
- GEM_VERSION = '1.13.0'
49
+ GEM_VERSION = '1.14.0'
50
50
 
51
51
  end
@@ -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/json_rpc.rb'
28
29
 
@@ -55,6 +56,7 @@ module Aws::OpsWorks
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::JsonRpc)
60
62
 
@@ -209,6 +211,49 @@ module Aws::OpsWorks
209
211
  # When `true`, request parameters are validated before
210
212
  # sending the request.
211
213
  #
214
+ # @option options [URI::HTTP,String] :http_proxy A proxy to send
215
+ # requests through. Formatted like 'http://proxy.com:123'.
216
+ #
217
+ # @option options [Float] :http_open_timeout (15) The number of
218
+ # seconds to wait when opening a HTTP session before rasing a
219
+ # `Timeout::Error`.
220
+ #
221
+ # @option options [Integer] :http_read_timeout (60) The default
222
+ # number of seconds to wait for response data. This value can
223
+ # safely be set
224
+ # per-request on the session yeidled by {#session_for}.
225
+ #
226
+ # @option options [Float] :http_idle_timeout (5) The number of
227
+ # seconds a connection is allowed to sit idble before it is
228
+ # considered stale. Stale connections are closed and removed
229
+ # from the pool before making a request.
230
+ #
231
+ # @option options [Float] :http_continue_timeout (1) The number of
232
+ # seconds to wait for a 100-continue response before sending the
233
+ # request body. This option has no effect unless the request has
234
+ # "Expect" header set to "100-continue". Defaults to `nil` which
235
+ # disables this behaviour. This value can safely be set per
236
+ # request on the session yeidled by {#session_for}.
237
+ #
238
+ # @option options [Boolean] :http_wire_trace (false) When `true`,
239
+ # HTTP debug output will be sent to the `:logger`.
240
+ #
241
+ # @option options [Boolean] :ssl_verify_peer (true) When `true`,
242
+ # SSL peer certificates are verified when establishing a
243
+ # connection.
244
+ #
245
+ # @option options [String] :ssl_ca_bundle Full path to the SSL
246
+ # certificate authority bundle file that should be used when
247
+ # verifying peer certificates. If you do not pass
248
+ # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
249
+ # will be used if available.
250
+ #
251
+ # @option options [String] :ssl_ca_directory Full path of the
252
+ # directory that contains the unbundled SSL certificate
253
+ # authority files for verifying peer certificates. If you do
254
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
255
+ # system default will be used if available.
256
+ #
212
257
  def initialize(*args)
213
258
  super
214
259
  end
@@ -5501,7 +5546,7 @@ module Aws::OpsWorks
5501
5546
  params: params,
5502
5547
  config: config)
5503
5548
  context[:gem_name] = 'aws-sdk-opsworks'
5504
- context[:gem_version] = '1.13.0'
5549
+ context[:gem_version] = '1.14.0'
5505
5550
  Seahorse::Client::Request.new(handlers, context)
5506
5551
  end
5507
5552
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-opsworks
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.0
4
+ version: 1.14.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
@@ -63,7 +63,7 @@ files:
63
63
  - lib/aws-sdk-opsworks/stack_summary.rb
64
64
  - lib/aws-sdk-opsworks/types.rb
65
65
  - lib/aws-sdk-opsworks/waiters.rb
66
- homepage: http://github.com/aws/aws-sdk-ruby
66
+ homepage: https://github.com/aws/aws-sdk-ruby
67
67
  licenses:
68
68
  - Apache-2.0
69
69
  metadata: