aws-sdk-machinelearning 1.5.0 → 1.6.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 +28 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4eb62cc7abd89b6cd4672df4ccdc7fbaa238bffd
|
4
|
+
data.tar.gz: d16eb9e2dd2512a8dba5fb4a63c93819d2f711e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8b06f7511046c8d083038509c2e407c650aa9acf2bdbcde6b94ef016338b350eb7c6ec0f82c7834f1129fcf47d93b334426eca4edc2bc92a50600f7ca36b3d6b
|
7
|
+
data.tar.gz: 8dc1d3537722275362a884ccacf491320472f6478fd48c32ae78afbb3753828d4840d8eda3019f3f7973e5c7ff9a17c4c00b4303f634675e5be68d0d0293516a
|
@@ -15,6 +15,8 @@ require 'aws-sdk-core/plugins/helpful_socket_errors.rb'
|
|
15
15
|
require 'aws-sdk-core/plugins/retry_errors.rb'
|
16
16
|
require 'aws-sdk-core/plugins/global_configuration.rb'
|
17
17
|
require 'aws-sdk-core/plugins/regional_endpoint.rb'
|
18
|
+
require 'aws-sdk-core/plugins/endpoint_discovery.rb'
|
19
|
+
require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
18
20
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
19
21
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
20
22
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
@@ -46,6 +48,8 @@ module Aws::MachineLearning
|
|
46
48
|
add_plugin(Aws::Plugins::RetryErrors)
|
47
49
|
add_plugin(Aws::Plugins::GlobalConfiguration)
|
48
50
|
add_plugin(Aws::Plugins::RegionalEndpoint)
|
51
|
+
add_plugin(Aws::Plugins::EndpointDiscovery)
|
52
|
+
add_plugin(Aws::Plugins::EndpointPattern)
|
49
53
|
add_plugin(Aws::Plugins::ResponsePaging)
|
50
54
|
add_plugin(Aws::Plugins::StubResponses)
|
51
55
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
@@ -100,6 +104,10 @@ module Aws::MachineLearning
|
|
100
104
|
#
|
101
105
|
# @option options [String] :access_key_id
|
102
106
|
#
|
107
|
+
# @option options [Boolean] :active_endpoint_cache (false)
|
108
|
+
# When set to `true`, a thread polling for endpoints will be running in
|
109
|
+
# the background every 60 secs (default). Defaults to `false`.
|
110
|
+
#
|
103
111
|
# @option options [Boolean] :client_side_monitoring (false)
|
104
112
|
# When `true`, client-side metrics will be collected for all API requests from
|
105
113
|
# this client.
|
@@ -120,11 +128,30 @@ module Aws::MachineLearning
|
|
120
128
|
# When `true`, an attempt is made to coerce request parameters into
|
121
129
|
# the required types.
|
122
130
|
#
|
131
|
+
# @option options [Boolean] :disable_host_prefix_injection (false)
|
132
|
+
# Set to true to disable SDK automatically adding host prefix
|
133
|
+
# to default service endpoint when available.
|
134
|
+
#
|
123
135
|
# @option options [String] :endpoint
|
124
136
|
# The client endpoint is normally constructed from the `:region`
|
125
137
|
# option. You should only configure an `:endpoint` when connecting
|
126
138
|
# to test endpoints. This should be avalid HTTP(S) URI.
|
127
139
|
#
|
140
|
+
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
141
|
+
# Used for the maximum size limit of the LRU cache storing endpoints data
|
142
|
+
# for endpoint discovery enabled operations. Defaults to 1000.
|
143
|
+
#
|
144
|
+
# @option options [Integer] :endpoint_cache_max_threads (10)
|
145
|
+
# Used for the maximum threads in use for polling endpoints to be cached, defaults to 10.
|
146
|
+
#
|
147
|
+
# @option options [Integer] :endpoint_cache_poll_interval (60)
|
148
|
+
# When :endpoint_discovery and :active_endpoint_cache is enabled,
|
149
|
+
# Use this option to config the time interval in seconds for making
|
150
|
+
# requests fetching endpoints information. Defaults to 60 sec.
|
151
|
+
#
|
152
|
+
# @option options [Boolean] :endpoint_discovery (false)
|
153
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
|
154
|
+
#
|
128
155
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
129
156
|
# The log formatter.
|
130
157
|
#
|
@@ -2159,7 +2186,7 @@ module Aws::MachineLearning
|
|
2159
2186
|
params: params,
|
2160
2187
|
config: config)
|
2161
2188
|
context[:gem_name] = 'aws-sdk-machinelearning'
|
2162
|
-
context[:gem_version] = '1.
|
2189
|
+
context[:gem_version] = '1.6.0'
|
2163
2190
|
Seahorse::Client::Request.new(handlers, context)
|
2164
2191
|
end
|
2165
2192
|
|
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.6.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: 2018-
|
11
|
+
date: 2018-11-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.39.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.39.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|