aws-sdk-machinelearning 1.10.0 → 1.11.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 +4 -4
- data/lib/aws-sdk-machinelearning.rb +1 -1
- data/lib/aws-sdk-machinelearning/client.rb +46 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b0b12967238ce64589474b533d40b4e937fdcf83
|
4
|
+
data.tar.gz: 139f871a851781a0fa6892676262555591218b9f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 323602b5f1e337656a1a0367d9710d82e275f597c4707e39c8299c0d2e8b8f8eb7111d1ef5ee2f2c6d0c826555dc15e16be47f5d1f2d039753d7770685257b8a
|
7
|
+
data.tar.gz: 2197b857311268df22549bd4522f3effc11a0a45a39db7f54975f4f03466f8ddcaeca1d6d86e55d7bd6401d901ca27c2b4d377d93d75860e35e0c550ffdb30fc
|
@@ -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
|
require 'aws-sdk-machinelearning/plugins/predict_endpoint.rb'
|
@@ -56,6 +57,7 @@ module Aws::MachineLearning
|
|
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::JsonRpc)
|
61
63
|
add_plugin(Aws::MachineLearning::Plugins::PredictEndpoint)
|
@@ -211,6 +213,49 @@ module Aws::MachineLearning
|
|
211
213
|
# When `true`, request parameters are validated before
|
212
214
|
# sending the request.
|
213
215
|
#
|
216
|
+
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
217
|
+
# requests through. Formatted like 'http://proxy.com:123'.
|
218
|
+
#
|
219
|
+
# @option options [Float] :http_open_timeout (15) The number of
|
220
|
+
# seconds to wait when opening a HTTP session before rasing a
|
221
|
+
# `Timeout::Error`.
|
222
|
+
#
|
223
|
+
# @option options [Integer] :http_read_timeout (60) The default
|
224
|
+
# number of seconds to wait for response data. This value can
|
225
|
+
# safely be set
|
226
|
+
# per-request on the session yeidled by {#session_for}.
|
227
|
+
#
|
228
|
+
# @option options [Float] :http_idle_timeout (5) The number of
|
229
|
+
# seconds a connection is allowed to sit idble before it is
|
230
|
+
# considered stale. Stale connections are closed and removed
|
231
|
+
# from the pool before making a request.
|
232
|
+
#
|
233
|
+
# @option options [Float] :http_continue_timeout (1) The number of
|
234
|
+
# seconds to wait for a 100-continue response before sending the
|
235
|
+
# request body. This option has no effect unless the request has
|
236
|
+
# "Expect" header set to "100-continue". Defaults to `nil` which
|
237
|
+
# disables this behaviour. This value can safely be set per
|
238
|
+
# request on the session yeidled by {#session_for}.
|
239
|
+
#
|
240
|
+
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
241
|
+
# HTTP debug output will be sent to the `:logger`.
|
242
|
+
#
|
243
|
+
# @option options [Boolean] :ssl_verify_peer (true) When `true`,
|
244
|
+
# SSL peer certificates are verified when establishing a
|
245
|
+
# connection.
|
246
|
+
#
|
247
|
+
# @option options [String] :ssl_ca_bundle Full path to the SSL
|
248
|
+
# certificate authority bundle file that should be used when
|
249
|
+
# verifying peer certificates. If you do not pass
|
250
|
+
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
251
|
+
# will be used if available.
|
252
|
+
#
|
253
|
+
# @option options [String] :ssl_ca_directory Full path of the
|
254
|
+
# directory that contains the unbundled SSL certificate
|
255
|
+
# authority files for verifying peer certificates. If you do
|
256
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
257
|
+
# system default will be used if available.
|
258
|
+
#
|
214
259
|
def initialize(*args)
|
215
260
|
super
|
216
261
|
end
|
@@ -2186,7 +2231,7 @@ module Aws::MachineLearning
|
|
2186
2231
|
params: params,
|
2187
2232
|
config: config)
|
2188
2233
|
context[:gem_name] = 'aws-sdk-machinelearning'
|
2189
|
-
context[:gem_version] = '1.
|
2234
|
+
context[:gem_version] = '1.11.0'
|
2190
2235
|
Seahorse::Client::Request.new(handlers, context)
|
2191
2236
|
end
|
2192
2237
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-machinelearning
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.11.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-
|
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
|
@@ -61,7 +61,7 @@ files:
|
|
61
61
|
- lib/aws-sdk-machinelearning/resource.rb
|
62
62
|
- lib/aws-sdk-machinelearning/types.rb
|
63
63
|
- lib/aws-sdk-machinelearning/waiters.rb
|
64
|
-
homepage:
|
64
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
65
65
|
licenses:
|
66
66
|
- Apache-2.0
|
67
67
|
metadata:
|