aws-sdk-elastictranscoder 1.11.0 → 1.12.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: 0d6391338d3f378d3daede7c9ce0c55d6b230359
4
- data.tar.gz: 761c915902e45dbb2800bfec046439bdb5155b7a
3
+ metadata.gz: 5c1e80e6a45fe4ceb45a74a8a03a00dfde4a72e2
4
+ data.tar.gz: c4b34dea3379fae473865c916dbc81ced24313c6
5
5
  SHA512:
6
- metadata.gz: 53bc49b39b743eeaf49615bf932bfe58b21803c00a09970110b56547fc58d413428bc25b4272992b2c3b7033592b99b3f692c3ba76dde9b905a259d3ed236800
7
- data.tar.gz: ab3c46f4cb3f20a2713549ddf0c0c2811bc2c15e7cad878e443d07b2244e330b4a12e5976e4e996e3a72b266897cf0a1470021811ec4a129fb52d2eee7e18cc7
6
+ metadata.gz: ce215d368333d039df8b74b66f5fe051822b6f989c8cdc1b3f8044898263c1560d963d7cd6ac5ba51dddf6de42d0ef22d859d06d5481a937fadf2529941a1f53
7
+ data.tar.gz: 97242f12a9ea731e5bebf65ad034ceca801e5fd61d5bf90858e958754374263fe17e932326057949d6280df4a80115d5c83a6bf65d9bc86a099166ff5689bd8d
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-elastictranscoder/customizations'
43
43
  # @service
44
44
  module Aws::ElasticTranscoder
45
45
 
46
- GEM_VERSION = '1.11.0'
46
+ GEM_VERSION = '1.12.0'
47
47
 
48
48
  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/rest_json.rb'
28
29
 
@@ -55,6 +56,7 @@ module Aws::ElasticTranscoder
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::RestJson)
60
62
 
@@ -199,6 +201,49 @@ module Aws::ElasticTranscoder
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
@@ -2856,7 +2901,7 @@ module Aws::ElasticTranscoder
2856
2901
  params: params,
2857
2902
  config: config)
2858
2903
  context[:gem_name] = 'aws-sdk-elastictranscoder'
2859
- context[:gem_version] = '1.11.0'
2904
+ context[:gem_version] = '1.12.0'
2860
2905
  Seahorse::Client::Request.new(handlers, context)
2861
2906
  end
2862
2907
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elastictranscoder
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.0
4
+ version: 1.12.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-elastictranscoder/resource.rb
61
61
  - lib/aws-sdk-elastictranscoder/types.rb
62
62
  - lib/aws-sdk-elastictranscoder/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: