aws-sdk-machinelearning 1.15.0 → 1.20.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
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 4ed3ca8eeb18521706c6bce4d1050f42509ffc8dccbcb8e6f2ab6e8a2b211772
|
|
4
|
+
data.tar.gz: 5631340664339e52a0864943408dadd7ce8defeaa14c69b4cee3622799e9d70f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: adc1bc95c769129d3187f87f3804febc6e6daa825a2aa3eb6be62532bc3882accbab89e9e0fd88a34ce1d89c03daa08f59ff20762e00daaeb625b02551f12798
|
|
7
|
+
data.tar.gz: b5bfe764344a8c3353bb063551dffbc4103f8c7f77b69930dcf28c131b77c236e0fc2cb15f54884e7f743ff60e076ecc454730e4bb04f3407ce1a0678a988c60
|
|
@@ -25,17 +25,20 @@ require_relative 'aws-sdk-machinelearning/customizations'
|
|
|
25
25
|
# methods each accept a hash of request parameters and return a response
|
|
26
26
|
# structure.
|
|
27
27
|
#
|
|
28
|
+
# machine_learning = Aws::MachineLearning::Client.new
|
|
29
|
+
# resp = machine_learning.add_tags(params)
|
|
30
|
+
#
|
|
28
31
|
# See {Client} for more information.
|
|
29
32
|
#
|
|
30
33
|
# # Errors
|
|
31
34
|
#
|
|
32
|
-
# Errors returned from Amazon Machine Learning
|
|
33
|
-
# extend {Errors::ServiceError}.
|
|
35
|
+
# Errors returned from Amazon Machine Learning are defined in the
|
|
36
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
|
34
37
|
#
|
|
35
38
|
# begin
|
|
36
39
|
# # do stuff
|
|
37
40
|
# rescue Aws::MachineLearning::Errors::ServiceError
|
|
38
|
-
# # rescues all
|
|
41
|
+
# # rescues all Amazon Machine Learning API errors
|
|
39
42
|
# end
|
|
40
43
|
#
|
|
41
44
|
# See {Errors} for more information.
|
|
@@ -43,6 +46,6 @@ require_relative 'aws-sdk-machinelearning/customizations'
|
|
|
43
46
|
# @service
|
|
44
47
|
module Aws::MachineLearning
|
|
45
48
|
|
|
46
|
-
GEM_VERSION = '1.
|
|
49
|
+
GEM_VERSION = '1.20.0'
|
|
47
50
|
|
|
48
51
|
end
|
|
@@ -31,6 +31,18 @@ require 'aws-sdk-machinelearning/plugins/predict_endpoint.rb'
|
|
|
31
31
|
Aws::Plugins::GlobalConfiguration.add_identifier(:machinelearning)
|
|
32
32
|
|
|
33
33
|
module Aws::MachineLearning
|
|
34
|
+
# An API client for MachineLearning. To construct a client, you need to configure a `:region` and `:credentials`.
|
|
35
|
+
#
|
|
36
|
+
# client = Aws::MachineLearning::Client.new(
|
|
37
|
+
# region: region_name,
|
|
38
|
+
# credentials: credentials,
|
|
39
|
+
# # ...
|
|
40
|
+
# )
|
|
41
|
+
#
|
|
42
|
+
# For details on configuring region and credentials see
|
|
43
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
|
44
|
+
#
|
|
45
|
+
# See {#initialize} for a full list of supported configuration options.
|
|
34
46
|
class Client < Seahorse::Client::Base
|
|
35
47
|
|
|
36
48
|
include Aws::ClientStubs
|
|
@@ -95,7 +107,7 @@ module Aws::MachineLearning
|
|
|
95
107
|
# @option options [required, String] :region
|
|
96
108
|
# The AWS region to connect to. The configured `:region` is
|
|
97
109
|
# used to determine the service `:endpoint`. When not passed,
|
|
98
|
-
# a default `:region` is
|
|
110
|
+
# a default `:region` is searched for in the following locations:
|
|
99
111
|
#
|
|
100
112
|
# * `Aws.config[:region]`
|
|
101
113
|
# * `ENV['AWS_REGION']`
|
|
@@ -110,6 +122,12 @@ module Aws::MachineLearning
|
|
|
110
122
|
# When set to `true`, a thread polling for endpoints will be running in
|
|
111
123
|
# the background every 60 secs (default). Defaults to `false`.
|
|
112
124
|
#
|
|
125
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
|
126
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
|
127
|
+
# until there is sufficent client side capacity to retry the request.
|
|
128
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
|
129
|
+
# not retry instead of sleeping.
|
|
130
|
+
#
|
|
113
131
|
# @option options [Boolean] :client_side_monitoring (false)
|
|
114
132
|
# When `true`, client-side metrics will be collected for all API requests from
|
|
115
133
|
# this client.
|
|
@@ -134,6 +152,10 @@ module Aws::MachineLearning
|
|
|
134
152
|
# When `true`, an attempt is made to coerce request parameters into
|
|
135
153
|
# the required types.
|
|
136
154
|
#
|
|
155
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
|
156
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
157
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
|
158
|
+
#
|
|
137
159
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
|
138
160
|
# Set to true to disable SDK automatically adding host prefix
|
|
139
161
|
# to default service endpoint when available.
|
|
@@ -141,7 +163,7 @@ module Aws::MachineLearning
|
|
|
141
163
|
# @option options [String] :endpoint
|
|
142
164
|
# The client endpoint is normally constructed from the `:region`
|
|
143
165
|
# option. You should only configure an `:endpoint` when connecting
|
|
144
|
-
# to test endpoints. This should be
|
|
166
|
+
# to test endpoints. This should be a valid HTTP(S) URI.
|
|
145
167
|
#
|
|
146
168
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
|
147
169
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
|
@@ -156,7 +178,7 @@ module Aws::MachineLearning
|
|
|
156
178
|
# requests fetching endpoints information. Defaults to 60 sec.
|
|
157
179
|
#
|
|
158
180
|
# @option options [Boolean] :endpoint_discovery (false)
|
|
159
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
|
181
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
|
160
182
|
#
|
|
161
183
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
|
162
184
|
# The log formatter.
|
|
@@ -168,15 +190,29 @@ module Aws::MachineLearning
|
|
|
168
190
|
# The Logger instance to send log messages to. If this option
|
|
169
191
|
# is not set, logging will be disabled.
|
|
170
192
|
#
|
|
193
|
+
# @option options [Integer] :max_attempts (3)
|
|
194
|
+
# An integer representing the maximum number attempts that will be made for
|
|
195
|
+
# a single request, including the initial attempt. For example,
|
|
196
|
+
# setting this value to 5 will result in a request being retried up to
|
|
197
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
|
198
|
+
#
|
|
171
199
|
# @option options [String] :profile ("default")
|
|
172
200
|
# Used when loading credentials from the shared credentials file
|
|
173
201
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
|
174
202
|
#
|
|
203
|
+
# @option options [Proc] :retry_backoff
|
|
204
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
|
205
|
+
# This option is only used in the `legacy` retry mode.
|
|
206
|
+
#
|
|
175
207
|
# @option options [Float] :retry_base_delay (0.3)
|
|
176
|
-
# The base delay in seconds used by the default backoff function.
|
|
208
|
+
# The base delay in seconds used by the default backoff function. This option
|
|
209
|
+
# is only used in the `legacy` retry mode.
|
|
177
210
|
#
|
|
178
211
|
# @option options [Symbol] :retry_jitter (:none)
|
|
179
|
-
# A delay randomiser function used by the default backoff function.
|
|
212
|
+
# A delay randomiser function used by the default backoff function.
|
|
213
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
|
214
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
|
215
|
+
# in the `legacy` retry mode.
|
|
180
216
|
#
|
|
181
217
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
|
182
218
|
#
|
|
@@ -184,11 +220,30 @@ module Aws::MachineLearning
|
|
|
184
220
|
# The maximum number of times to retry failed requests. Only
|
|
185
221
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
|
186
222
|
# are retried. Generally, these are throttling errors, data
|
|
187
|
-
# checksum errors, networking errors, timeout errors
|
|
188
|
-
# errors from expired credentials.
|
|
223
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
|
224
|
+
# endpoint discovery, and errors from expired credentials.
|
|
225
|
+
# This option is only used in the `legacy` retry mode.
|
|
189
226
|
#
|
|
190
227
|
# @option options [Integer] :retry_max_delay (0)
|
|
191
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
|
228
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
|
229
|
+
# used by the default backoff function. This option is only used in the
|
|
230
|
+
# `legacy` retry mode.
|
|
231
|
+
#
|
|
232
|
+
# @option options [String] :retry_mode ("legacy")
|
|
233
|
+
# Specifies which retry algorithm to use. Values are:
|
|
234
|
+
#
|
|
235
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
|
236
|
+
# no retry mode is provided.
|
|
237
|
+
#
|
|
238
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
239
|
+
# This includes support for retry quotas, which limit the number of
|
|
240
|
+
# unsuccessful retries a client can make.
|
|
241
|
+
#
|
|
242
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
|
243
|
+
# functionality of `standard` mode along with automatic client side
|
|
244
|
+
# throttling. This is a provisional mode that may change behavior
|
|
245
|
+
# in the future.
|
|
246
|
+
#
|
|
192
247
|
#
|
|
193
248
|
# @option options [String] :secret_access_key
|
|
194
249
|
#
|
|
@@ -221,16 +276,15 @@ module Aws::MachineLearning
|
|
|
221
276
|
# requests through. Formatted like 'http://proxy.com:123'.
|
|
222
277
|
#
|
|
223
278
|
# @option options [Float] :http_open_timeout (15) The number of
|
|
224
|
-
# seconds to wait when opening a HTTP session before
|
|
279
|
+
# seconds to wait when opening a HTTP session before raising a
|
|
225
280
|
# `Timeout::Error`.
|
|
226
281
|
#
|
|
227
282
|
# @option options [Integer] :http_read_timeout (60) The default
|
|
228
283
|
# number of seconds to wait for response data. This value can
|
|
229
|
-
# safely be set
|
|
230
|
-
# per-request on the session yeidled by {#session_for}.
|
|
284
|
+
# safely be set per-request on the session.
|
|
231
285
|
#
|
|
232
286
|
# @option options [Float] :http_idle_timeout (5) The number of
|
|
233
|
-
# seconds a connection is allowed to sit
|
|
287
|
+
# seconds a connection is allowed to sit idle before it is
|
|
234
288
|
# considered stale. Stale connections are closed and removed
|
|
235
289
|
# from the pool before making a request.
|
|
236
290
|
#
|
|
@@ -239,7 +293,7 @@ module Aws::MachineLearning
|
|
|
239
293
|
# request body. This option has no effect unless the request has
|
|
240
294
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
|
241
295
|
# disables this behaviour. This value can safely be set per
|
|
242
|
-
# request on the session
|
|
296
|
+
# request on the session.
|
|
243
297
|
#
|
|
244
298
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
|
245
299
|
# HTTP debug output will be sent to the `:logger`.
|
|
@@ -1261,6 +1315,8 @@ module Aws::MachineLearning
|
|
|
1261
1315
|
# * {Types::DescribeBatchPredictionsOutput#results #results} => Array<Types::BatchPrediction>
|
|
1262
1316
|
# * {Types::DescribeBatchPredictionsOutput#next_token #next_token} => String
|
|
1263
1317
|
#
|
|
1318
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
1319
|
+
#
|
|
1264
1320
|
# @example Request syntax with placeholder values
|
|
1265
1321
|
#
|
|
1266
1322
|
# resp = client.describe_batch_predictions({
|
|
@@ -1298,6 +1354,11 @@ module Aws::MachineLearning
|
|
|
1298
1354
|
# resp.results[0].invalid_record_count #=> Integer
|
|
1299
1355
|
# resp.next_token #=> String
|
|
1300
1356
|
#
|
|
1357
|
+
#
|
|
1358
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
1359
|
+
#
|
|
1360
|
+
# * batch_prediction_available
|
|
1361
|
+
#
|
|
1301
1362
|
# @overload describe_batch_predictions(params = {})
|
|
1302
1363
|
# @param [Hash] params ({})
|
|
1303
1364
|
def describe_batch_predictions(params = {}, options = {})
|
|
@@ -1386,6 +1447,8 @@ module Aws::MachineLearning
|
|
|
1386
1447
|
# * {Types::DescribeDataSourcesOutput#results #results} => Array<Types::DataSource>
|
|
1387
1448
|
# * {Types::DescribeDataSourcesOutput#next_token #next_token} => String
|
|
1388
1449
|
#
|
|
1450
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
1451
|
+
#
|
|
1389
1452
|
# @example Request syntax with placeholder values
|
|
1390
1453
|
#
|
|
1391
1454
|
# resp = client.describe_data_sources({
|
|
@@ -1434,6 +1497,11 @@ module Aws::MachineLearning
|
|
|
1434
1497
|
# resp.results[0].started_at #=> Time
|
|
1435
1498
|
# resp.next_token #=> String
|
|
1436
1499
|
#
|
|
1500
|
+
#
|
|
1501
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
1502
|
+
#
|
|
1503
|
+
# * data_source_available
|
|
1504
|
+
#
|
|
1437
1505
|
# @overload describe_data_sources(params = {})
|
|
1438
1506
|
# @param [Hash] params ({})
|
|
1439
1507
|
def describe_data_sources(params = {}, options = {})
|
|
@@ -1527,6 +1595,8 @@ module Aws::MachineLearning
|
|
|
1527
1595
|
# * {Types::DescribeEvaluationsOutput#results #results} => Array<Types::Evaluation>
|
|
1528
1596
|
# * {Types::DescribeEvaluationsOutput#next_token #next_token} => String
|
|
1529
1597
|
#
|
|
1598
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
1599
|
+
#
|
|
1530
1600
|
# @example Request syntax with placeholder values
|
|
1531
1601
|
#
|
|
1532
1602
|
# resp = client.describe_evaluations({
|
|
@@ -1563,6 +1633,11 @@ module Aws::MachineLearning
|
|
|
1563
1633
|
# resp.results[0].started_at #=> Time
|
|
1564
1634
|
# resp.next_token #=> String
|
|
1565
1635
|
#
|
|
1636
|
+
#
|
|
1637
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
1638
|
+
#
|
|
1639
|
+
# * evaluation_available
|
|
1640
|
+
#
|
|
1566
1641
|
# @overload describe_evaluations(params = {})
|
|
1567
1642
|
# @param [Hash] params ({})
|
|
1568
1643
|
def describe_evaluations(params = {}, options = {})
|
|
@@ -1659,6 +1734,8 @@ module Aws::MachineLearning
|
|
|
1659
1734
|
# * {Types::DescribeMLModelsOutput#results #results} => Array<Types::MLModel>
|
|
1660
1735
|
# * {Types::DescribeMLModelsOutput#next_token #next_token} => String
|
|
1661
1736
|
#
|
|
1737
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
1738
|
+
#
|
|
1662
1739
|
# @example Request syntax with placeholder values
|
|
1663
1740
|
#
|
|
1664
1741
|
# resp = client.describe_ml_models({
|
|
@@ -1703,6 +1780,11 @@ module Aws::MachineLearning
|
|
|
1703
1780
|
# resp.results[0].started_at #=> Time
|
|
1704
1781
|
# resp.next_token #=> String
|
|
1705
1782
|
#
|
|
1783
|
+
#
|
|
1784
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
1785
|
+
#
|
|
1786
|
+
# * ml_model_available
|
|
1787
|
+
#
|
|
1706
1788
|
# @overload describe_ml_models(params = {})
|
|
1707
1789
|
# @param [Hash] params ({})
|
|
1708
1790
|
def describe_ml_models(params = {}, options = {})
|
|
@@ -2235,7 +2317,7 @@ module Aws::MachineLearning
|
|
|
2235
2317
|
params: params,
|
|
2236
2318
|
config: config)
|
|
2237
2319
|
context[:gem_name] = 'aws-sdk-machinelearning'
|
|
2238
|
-
context[:gem_version] = '1.
|
|
2320
|
+
context[:gem_version] = '1.20.0'
|
|
2239
2321
|
Seahorse::Client::Request.new(handlers, context)
|
|
2240
2322
|
end
|
|
2241
2323
|
|
|
@@ -2301,12 +2383,12 @@ module Aws::MachineLearning
|
|
|
2301
2383
|
# The following table lists the valid waiter names, the operations they call,
|
|
2302
2384
|
# and the default `:delay` and `:max_attempts` values.
|
|
2303
2385
|
#
|
|
2304
|
-
# | waiter_name | params
|
|
2305
|
-
# | -------------------------- |
|
|
2306
|
-
# | batch_prediction_available | {#describe_batch_predictions} | 30 | 60 |
|
|
2307
|
-
# | data_source_available | {#describe_data_sources} | 30 | 60 |
|
|
2308
|
-
# | evaluation_available | {#describe_evaluations} | 30 | 60 |
|
|
2309
|
-
# | ml_model_available | {#describe_ml_models} | 30 | 60 |
|
|
2386
|
+
# | waiter_name | params | :delay | :max_attempts |
|
|
2387
|
+
# | -------------------------- | ----------------------------------- | -------- | ------------- |
|
|
2388
|
+
# | batch_prediction_available | {Client#describe_batch_predictions} | 30 | 60 |
|
|
2389
|
+
# | data_source_available | {Client#describe_data_sources} | 30 | 60 |
|
|
2390
|
+
# | evaluation_available | {Client#describe_evaluations} | 30 | 60 |
|
|
2391
|
+
# | ml_model_available | {Client#describe_ml_models} | 30 | 60 |
|
|
2310
2392
|
#
|
|
2311
2393
|
# @raise [Errors::FailureStateError] Raised when the waiter terminates
|
|
2312
2394
|
# because the waiter has entered a state that it will not transition
|
|
@@ -6,6 +6,36 @@
|
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
|
7
7
|
|
|
8
8
|
module Aws::MachineLearning
|
|
9
|
+
|
|
10
|
+
# When MachineLearning returns an error response, the Ruby SDK constructs and raises an error.
|
|
11
|
+
# These errors all extend Aws::MachineLearning::Errors::ServiceError < {Aws::Errors::ServiceError}
|
|
12
|
+
#
|
|
13
|
+
# You can rescue all MachineLearning errors using ServiceError:
|
|
14
|
+
#
|
|
15
|
+
# begin
|
|
16
|
+
# # do stuff
|
|
17
|
+
# rescue Aws::MachineLearning::Errors::ServiceError
|
|
18
|
+
# # rescues all MachineLearning API errors
|
|
19
|
+
# end
|
|
20
|
+
#
|
|
21
|
+
#
|
|
22
|
+
# ## Request Context
|
|
23
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
|
24
|
+
# information about the request that generated the error.
|
|
25
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
|
26
|
+
#
|
|
27
|
+
# ## Error Classes
|
|
28
|
+
# * {IdempotentParameterMismatchException}
|
|
29
|
+
# * {InternalServerException}
|
|
30
|
+
# * {InvalidInputException}
|
|
31
|
+
# * {InvalidTagException}
|
|
32
|
+
# * {LimitExceededException}
|
|
33
|
+
# * {PredictorNotMountedException}
|
|
34
|
+
# * {ResourceNotFoundException}
|
|
35
|
+
# * {TagLimitExceededException}
|
|
36
|
+
#
|
|
37
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
|
38
|
+
# if they are not defined above.
|
|
9
39
|
module Errors
|
|
10
40
|
|
|
11
41
|
extend Aws::Errors::DynamicErrors
|
|
@@ -28,7 +58,6 @@ module Aws::MachineLearning
|
|
|
28
58
|
def code
|
|
29
59
|
@code || @data[:code]
|
|
30
60
|
end
|
|
31
|
-
|
|
32
61
|
end
|
|
33
62
|
|
|
34
63
|
class InternalServerException < ServiceError
|
|
@@ -49,7 +78,6 @@ module Aws::MachineLearning
|
|
|
49
78
|
def code
|
|
50
79
|
@code || @data[:code]
|
|
51
80
|
end
|
|
52
|
-
|
|
53
81
|
end
|
|
54
82
|
|
|
55
83
|
class InvalidInputException < ServiceError
|
|
@@ -70,7 +98,6 @@ module Aws::MachineLearning
|
|
|
70
98
|
def code
|
|
71
99
|
@code || @data[:code]
|
|
72
100
|
end
|
|
73
|
-
|
|
74
101
|
end
|
|
75
102
|
|
|
76
103
|
class InvalidTagException < ServiceError
|
|
@@ -86,7 +113,6 @@ module Aws::MachineLearning
|
|
|
86
113
|
def message
|
|
87
114
|
@message || @data[:message]
|
|
88
115
|
end
|
|
89
|
-
|
|
90
116
|
end
|
|
91
117
|
|
|
92
118
|
class LimitExceededException < ServiceError
|
|
@@ -107,7 +133,6 @@ module Aws::MachineLearning
|
|
|
107
133
|
def code
|
|
108
134
|
@code || @data[:code]
|
|
109
135
|
end
|
|
110
|
-
|
|
111
136
|
end
|
|
112
137
|
|
|
113
138
|
class PredictorNotMountedException < ServiceError
|
|
@@ -123,7 +148,6 @@ module Aws::MachineLearning
|
|
|
123
148
|
def message
|
|
124
149
|
@message || @data[:message]
|
|
125
150
|
end
|
|
126
|
-
|
|
127
151
|
end
|
|
128
152
|
|
|
129
153
|
class ResourceNotFoundException < ServiceError
|
|
@@ -144,7 +168,6 @@ module Aws::MachineLearning
|
|
|
144
168
|
def code
|
|
145
169
|
@code || @data[:code]
|
|
146
170
|
end
|
|
147
|
-
|
|
148
171
|
end
|
|
149
172
|
|
|
150
173
|
class TagLimitExceededException < ServiceError
|
|
@@ -160,7 +183,6 @@ module Aws::MachineLearning
|
|
|
160
183
|
def message
|
|
161
184
|
@message || @data[:message]
|
|
162
185
|
end
|
|
163
|
-
|
|
164
186
|
end
|
|
165
187
|
|
|
166
188
|
end
|
|
@@ -8,6 +8,70 @@
|
|
|
8
8
|
require 'aws-sdk-core/waiters'
|
|
9
9
|
|
|
10
10
|
module Aws::MachineLearning
|
|
11
|
+
# Waiters are utility methods that poll for a particular state to occur
|
|
12
|
+
# on a client. Waiters can fail after a number of attempts at a polling
|
|
13
|
+
# interval defined for the service client.
|
|
14
|
+
#
|
|
15
|
+
# For a list of operations that can be waited for and the
|
|
16
|
+
# client methods called for each operation, see the table below or the
|
|
17
|
+
# {Client#wait_until} field documentation for the {Client}.
|
|
18
|
+
#
|
|
19
|
+
# # Invoking a Waiter
|
|
20
|
+
# To invoke a waiter, call #wait_until on a {Client}. The first parameter
|
|
21
|
+
# is the waiter name, which is specific to the service client and indicates
|
|
22
|
+
# which operation is being waited for. The second parameter is a hash of
|
|
23
|
+
# parameters that are passed to the client method called by the waiter,
|
|
24
|
+
# which varies according to the waiter name.
|
|
25
|
+
#
|
|
26
|
+
# # Wait Failures
|
|
27
|
+
# To catch errors in a waiter, use WaiterFailed,
|
|
28
|
+
# as shown in the following example.
|
|
29
|
+
#
|
|
30
|
+
# rescue rescue Aws::Waiters::Errors::WaiterFailed => error
|
|
31
|
+
# puts "failed waiting for instance running: #{error.message}
|
|
32
|
+
# end
|
|
33
|
+
#
|
|
34
|
+
# # Configuring a Waiter
|
|
35
|
+
# Each waiter has a default polling interval and a maximum number of
|
|
36
|
+
# attempts it will make before returning control to your program.
|
|
37
|
+
# To set these values, use the `max_attempts` and `delay` parameters
|
|
38
|
+
# in your `#wait_until` call.
|
|
39
|
+
# The following example waits for up to 25 seconds, polling every five seconds.
|
|
40
|
+
#
|
|
41
|
+
# client.wait_until(...) do |w|
|
|
42
|
+
# w.max_attempts = 5
|
|
43
|
+
# w.delay = 5
|
|
44
|
+
# end
|
|
45
|
+
#
|
|
46
|
+
# To disable wait failures, set the value of either of these parameters
|
|
47
|
+
# to `nil`.
|
|
48
|
+
#
|
|
49
|
+
# # Extending a Waiter
|
|
50
|
+
# To modify the behavior of waiters, you can register callbacks that are
|
|
51
|
+
# triggered before each polling attempt and before waiting.
|
|
52
|
+
#
|
|
53
|
+
# The following example implements an exponential backoff in a waiter
|
|
54
|
+
# by doubling the amount of time to wait on every attempt.
|
|
55
|
+
#
|
|
56
|
+
# client.wait_until(...) do |w|
|
|
57
|
+
# w.interval = 0 # disable normal sleep
|
|
58
|
+
# w.before_wait do |n, resp|
|
|
59
|
+
# sleep(n ** 2)
|
|
60
|
+
# end
|
|
61
|
+
# end
|
|
62
|
+
#
|
|
63
|
+
# # Available Waiters
|
|
64
|
+
#
|
|
65
|
+
# The following table lists the valid waiter names, the operations they call,
|
|
66
|
+
# and the default `:delay` and `:max_attempts` values.
|
|
67
|
+
#
|
|
68
|
+
# | waiter_name | params | :delay | :max_attempts |
|
|
69
|
+
# | -------------------------- | ----------------------------------- | -------- | ------------- |
|
|
70
|
+
# | batch_prediction_available | {Client#describe_batch_predictions} | 30 | 60 |
|
|
71
|
+
# | data_source_available | {Client#describe_data_sources} | 30 | 60 |
|
|
72
|
+
# | evaluation_available | {Client#describe_evaluations} | 30 | 60 |
|
|
73
|
+
# | ml_model_available | {Client#describe_ml_models} | 30 | 60 |
|
|
74
|
+
#
|
|
11
75
|
module Waiters
|
|
12
76
|
|
|
13
77
|
class BatchPredictionAvailable
|
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.20.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:
|
|
11
|
+
date: 2020-05-28 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.71.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.71.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -83,7 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
83
83
|
version: '0'
|
|
84
84
|
requirements: []
|
|
85
85
|
rubyforge_project:
|
|
86
|
-
rubygems_version: 2.
|
|
86
|
+
rubygems_version: 2.7.6.2
|
|
87
87
|
signing_key:
|
|
88
88
|
specification_version: 4
|
|
89
89
|
summary: AWS SDK for Ruby - Amazon Machine Learning
|