aws-sdk-apigateway 1.26.0 → 1.27.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: b3a4c3fd6cd501cd2e4eded9a820022f31bb703b
4
- data.tar.gz: 1170a33e35d9d0871e08c8f50873426eee3b5e54
3
+ metadata.gz: 20d4449fe4e3e2aee90fe32afec8876c220af9af
4
+ data.tar.gz: 5ea324e9e073ab56719b5a1400f8cd2b8e879cf6
5
5
  SHA512:
6
- metadata.gz: ec2c7bddf73f999a93236d6057aee8d6ead026f9f7e9e5e30f20e0861622f1c793d02bf4ee261ca77da98b3dc71ba0dcd47a92790b9de01ef6766eae0d9457d6
7
- data.tar.gz: 1ebe15996a616314ae540c8f6f1eaaeff6219ccc7195b6d7f2f5e37aee0f08e378e72a488b7055b3ff5268caf1366411683af4ea89b05adbac8b1fd705ae4f77
6
+ metadata.gz: e10cd5fa40eb961aeba4c7756b4c7a768cb6ce2e40715d810da9181e0f66b4d0b552543b55b8f43ab671729ece6ab6a8d130bf69d468a8ab2af87684086ed860
7
+ data.tar.gz: 65d13a9232a0c732e7a0093e25607e32aa0d0d2ac97b8639b19c6c0b2db6728005c9135f3adfb3c1b71d6c005bde6a0c49f4af5de8acf2864d3c28626efa4fbe
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-apigateway/customizations'
42
42
  # @service
43
43
  module Aws::APIGateway
44
44
 
45
- GEM_VERSION = '1.26.0'
45
+ GEM_VERSION = '1.27.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
  require 'aws-sdk-apigateway/plugins/apply_content_type_header.rb'
@@ -56,6 +57,7 @@ module Aws::APIGateway
56
57
  add_plugin(Aws::Plugins::JsonvalueConverter)
57
58
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
58
59
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
60
+ add_plugin(Aws::Plugins::TransferEncoding)
59
61
  add_plugin(Aws::Plugins::SignatureV4)
60
62
  add_plugin(Aws::Plugins::Protocols::RestJson)
61
63
  add_plugin(Aws::APIGateway::Plugins::ApplyContentTypeHeader)
@@ -201,6 +203,49 @@ module Aws::APIGateway
201
203
  # When `true`, request parameters are validated before
202
204
  # sending the request.
203
205
  #
206
+ # @option options [URI::HTTP,String] :http_proxy A proxy to send
207
+ # requests through. Formatted like 'http://proxy.com:123'.
208
+ #
209
+ # @option options [Float] :http_open_timeout (15) The number of
210
+ # seconds to wait when opening a HTTP session before rasing a
211
+ # `Timeout::Error`.
212
+ #
213
+ # @option options [Integer] :http_read_timeout (60) The default
214
+ # number of seconds to wait for response data. This value can
215
+ # safely be set
216
+ # per-request on the session yeidled by {#session_for}.
217
+ #
218
+ # @option options [Float] :http_idle_timeout (5) The number of
219
+ # seconds a connection is allowed to sit idble before it is
220
+ # considered stale. Stale connections are closed and removed
221
+ # from the pool before making a request.
222
+ #
223
+ # @option options [Float] :http_continue_timeout (1) The number of
224
+ # seconds to wait for a 100-continue response before sending the
225
+ # request body. This option has no effect unless the request has
226
+ # "Expect" header set to "100-continue". Defaults to `nil` which
227
+ # disables this behaviour. This value can safely be set per
228
+ # request on the session yeidled by {#session_for}.
229
+ #
230
+ # @option options [Boolean] :http_wire_trace (false) When `true`,
231
+ # HTTP debug output will be sent to the `:logger`.
232
+ #
233
+ # @option options [Boolean] :ssl_verify_peer (true) When `true`,
234
+ # SSL peer certificates are verified when establishing a
235
+ # connection.
236
+ #
237
+ # @option options [String] :ssl_ca_bundle Full path to the SSL
238
+ # certificate authority bundle file that should be used when
239
+ # verifying peer certificates. If you do not pass
240
+ # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
241
+ # will be used if available.
242
+ #
243
+ # @option options [String] :ssl_ca_directory Full path of the
244
+ # directory that contains the unbundled SSL certificate
245
+ # authority files for verifying peer certificates. If you do
246
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
247
+ # system default will be used if available.
248
+ #
204
249
  def initialize(*args)
205
250
  super
206
251
  end
@@ -6696,7 +6741,7 @@ module Aws::APIGateway
6696
6741
  params: params,
6697
6742
  config: config)
6698
6743
  context[:gem_name] = 'aws-sdk-apigateway'
6699
- context[:gem_version] = '1.26.0'
6744
+ context[:gem_version] = '1.27.0'
6700
6745
  Seahorse::Client::Request.new(handlers, context)
6701
6746
  end
6702
6747
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-apigateway
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.26.0
4
+ version: 1.27.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
@@ -60,7 +60,7 @@ files:
60
60
  - lib/aws-sdk-apigateway/plugins/apply_content_type_header.rb
61
61
  - lib/aws-sdk-apigateway/resource.rb
62
62
  - lib/aws-sdk-apigateway/types.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: