aws-sdk-cloudtrail 1.11.0 → 1.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 42395d99f8c5818b949a22045ec1486423a3b88f
4
- data.tar.gz: bdb9dc716e86e3cc8dc294dd8e4c1278c37f2e55
3
+ metadata.gz: 2f5c530570a2f7969c0bd73494dd3c18e2c37e01
4
+ data.tar.gz: fbf74256fc9e607b2eb6cc1e4404d9e0107ca294
5
5
  SHA512:
6
- metadata.gz: ba002dc2e03240f9a2d2091030b772b08b833092e7caad6284b7c67d9eba56dfb9269482772af2bb3cc91d50839a42927697da231cb54350c4a0b3a70e40e47d
7
- data.tar.gz: 6394ee622539043ecb47ef7b18db23a671c028353c74555eba99c23fe21a537396912368029706f1bf4c94493845d0a6ed22947584faab6b39e932a413216457
6
+ metadata.gz: d440d2a150ed230dc61ef9d295160dd1e20595bf5e6ec15f0099e189cf89b115d41e45e4e9c4537078643e995a6ebdc384edb774058507d5dfc2c3c9e3d81827
7
+ data.tar.gz: 6fabb7d768add1247a8b9a3948dc20f47ccbb4cbad5ffca3b70f22e29ab10661f3c7f189dd3c8c9e5d820a7e10c564b06825d4b79c8e43c753d8d6459d928c53
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-cloudtrail/customizations'
42
42
  # @service
43
43
  module Aws::CloudTrail
44
44
 
45
- GEM_VERSION = '1.11.0'
45
+ GEM_VERSION = '1.12.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/json_rpc.rb'
28
29
 
@@ -55,6 +56,7 @@ module Aws::CloudTrail
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::CloudTrail
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
@@ -1244,7 +1289,7 @@ module Aws::CloudTrail
1244
1289
  params: params,
1245
1290
  config: config)
1246
1291
  context[:gem_name] = 'aws-sdk-cloudtrail'
1247
- context[:gem_version] = '1.11.0'
1292
+ context[:gem_version] = '1.12.0'
1248
1293
  Seahorse::Client::Request.new(handlers, context)
1249
1294
  end
1250
1295
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudtrail
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-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-cloudtrail/errors.rb
60
60
  - lib/aws-sdk-cloudtrail/resource.rb
61
61
  - lib/aws-sdk-cloudtrail/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: