aws-sdk-apigatewayv2 1.4.0 → 1.5.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: 6a34cc38cc056d56f4135e05f0d1d39b44fdc285
4
- data.tar.gz: 7c8ee406468cbfb97d5de2823bf34db61f84c2f7
3
+ metadata.gz: befd113daa4349df1dac006df4ca1c447ae3b634
4
+ data.tar.gz: ff63d84e390f09d0bda2f273c9f7e37e3fad2a02
5
5
  SHA512:
6
- metadata.gz: 841012568533ecf12afaa6f70e330e4444576f0ba2b31f50578b3d8e9f3952d2345ab4fff66b53b51d201bfc2c02bd1a5b14963758757d41fdf318b816855b66
7
- data.tar.gz: 69e4249f724bf10ea4e00abc1944eca9d5b344fbd507a53824b0cf880b80bf7c9d40623fc86afe775a5df789290c90a4356a60ad8c1dee97e5bcb1545bddbcbd
6
+ metadata.gz: 8fda4417eb67f2d80e99794ac9795f2ebb9b251c95497ab8a0e9b89f0c7ba70ec6cad44ae7da9964745445280cc1a05a5237f38829e437ace0d258f9bf5b52da
7
+ data.tar.gz: a5b7fc254eb4e10613f69fb86cfc7b6b98462d9c9e3a0376212c4c8a3ca32013aaaceec5974c080e683cea1de887a89381a5687f611df27a720e401b74dac867
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-apigatewayv2/customizations'
42
42
  # @service
43
43
  module Aws::ApiGatewayV2
44
44
 
45
- GEM_VERSION = '1.4.0'
45
+ GEM_VERSION = '1.5.0'
46
46
 
47
47
  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::ApiGatewayV2
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::ApiGatewayV2
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
@@ -3222,7 +3267,7 @@ module Aws::ApiGatewayV2
3222
3267
  params: params,
3223
3268
  config: config)
3224
3269
  context[:gem_name] = 'aws-sdk-apigatewayv2'
3225
- context[:gem_version] = '1.4.0'
3270
+ context[:gem_version] = '1.5.0'
3226
3271
  Seahorse::Client::Request.new(handlers, context)
3227
3272
  end
3228
3273
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-apigatewayv2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.5.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-21 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
@@ -59,7 +59,7 @@ files:
59
59
  - lib/aws-sdk-apigatewayv2/errors.rb
60
60
  - lib/aws-sdk-apigatewayv2/resource.rb
61
61
  - lib/aws-sdk-apigatewayv2/types.rb
62
- homepage: http://github.com/aws/aws-sdk-ruby
62
+ homepage: https://github.com/aws/aws-sdk-ruby
63
63
  licenses:
64
64
  - Apache-2.0
65
65
  metadata: