aws-sdk-machinelearning 1.16.0 → 1.21.1

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
- SHA1:
3
- metadata.gz: 7abf720c65c269b7b7c4cfa91c3f26bfe897f28c
4
- data.tar.gz: 5c650c4c876d8c54a213e869ab4fcafd60cbd529
2
+ SHA256:
3
+ metadata.gz: 1a84808f69becd77084bb52b84af7d318b16d48d857bb83ee2cb8ca150482607
4
+ data.tar.gz: 52a628ca25fda4c8c95b198f958628a762ee351b42805fe3a9a4bbefc9d3f251
5
5
  SHA512:
6
- metadata.gz: 83f0363467f139c611ffa6453db4149f7543c72b11c414999dcd34a80fe71fc92684f1b49df04b8544e321701e6e597eb023a8ac76712fd3a407ebac6b829933
7
- data.tar.gz: ccac15225d8fea9af7f46a2184830a56350e51235d264003c5e0648926d5b664ef125931795d76222c5983cc31197d821344ca63db5b058095670f875ac73d8f
6
+ metadata.gz: 96a076ffc3f3ddb6dee57359d0432106585dc2374b5be34205a603863d72e1df06318b456962b9ac649e446f7199f340dd1e022e2f4c1cc95539d32003f5a399
7
+ data.tar.gz: 36fab3c3044c3282154c040236f2c67cb6e334529ee65c9c324c2b1ffa59fbf2249f894215510f7f6319f994dfc26a1abe229e4c9b434938092d8512de7d6345
@@ -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 all
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 service API errors
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.16.0'
49
+ GEM_VERSION = '1.21.1'
47
50
 
48
51
  end
@@ -24,6 +24,7 @@ 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
26
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
27
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
28
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
29
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
29
30
  require 'aws-sdk-machinelearning/plugins/predict_endpoint.rb'
@@ -31,6 +32,18 @@ require 'aws-sdk-machinelearning/plugins/predict_endpoint.rb'
31
32
  Aws::Plugins::GlobalConfiguration.add_identifier(:machinelearning)
32
33
 
33
34
  module Aws::MachineLearning
35
+ # An API client for MachineLearning. To construct a client, you need to configure a `:region` and `:credentials`.
36
+ #
37
+ # client = Aws::MachineLearning::Client.new(
38
+ # region: region_name,
39
+ # credentials: credentials,
40
+ # # ...
41
+ # )
42
+ #
43
+ # For details on configuring region and credentials see
44
+ # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
45
+ #
46
+ # See {#initialize} for a full list of supported configuration options.
34
47
  class Client < Seahorse::Client::Base
35
48
 
36
49
  include Aws::ClientStubs
@@ -58,6 +71,7 @@ module Aws::MachineLearning
58
71
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
59
72
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
60
73
  add_plugin(Aws::Plugins::TransferEncoding)
74
+ add_plugin(Aws::Plugins::HttpChecksum)
61
75
  add_plugin(Aws::Plugins::SignatureV4)
62
76
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
63
77
  add_plugin(Aws::MachineLearning::Plugins::PredictEndpoint)
@@ -95,7 +109,7 @@ module Aws::MachineLearning
95
109
  # @option options [required, String] :region
96
110
  # The AWS region to connect to. The configured `:region` is
97
111
  # used to determine the service `:endpoint`. When not passed,
98
- # a default `:region` is search for in the following locations:
112
+ # a default `:region` is searched for in the following locations:
99
113
  #
100
114
  # * `Aws.config[:region]`
101
115
  # * `ENV['AWS_REGION']`
@@ -110,6 +124,12 @@ module Aws::MachineLearning
110
124
  # When set to `true`, a thread polling for endpoints will be running in
111
125
  # the background every 60 secs (default). Defaults to `false`.
112
126
  #
127
+ # @option options [Boolean] :adaptive_retry_wait_to_fill (true)
128
+ # Used only in `adaptive` retry mode. When true, the request will sleep
129
+ # until there is sufficent client side capacity to retry the request.
130
+ # When false, the request will raise a `RetryCapacityNotAvailableError` and will
131
+ # not retry instead of sleeping.
132
+ #
113
133
  # @option options [Boolean] :client_side_monitoring (false)
114
134
  # When `true`, client-side metrics will be collected for all API requests from
115
135
  # this client.
@@ -134,6 +154,10 @@ module Aws::MachineLearning
134
154
  # When `true`, an attempt is made to coerce request parameters into
135
155
  # the required types.
136
156
  #
157
+ # @option options [Boolean] :correct_clock_skew (true)
158
+ # Used only in `standard` and adaptive retry modes. Specifies whether to apply
159
+ # a clock skew correction and retry requests with skewed client clocks.
160
+ #
137
161
  # @option options [Boolean] :disable_host_prefix_injection (false)
138
162
  # Set to true to disable SDK automatically adding host prefix
139
163
  # to default service endpoint when available.
@@ -141,7 +165,7 @@ module Aws::MachineLearning
141
165
  # @option options [String] :endpoint
142
166
  # The client endpoint is normally constructed from the `:region`
143
167
  # option. You should only configure an `:endpoint` when connecting
144
- # to test endpoints. This should be avalid HTTP(S) URI.
168
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
145
169
  #
146
170
  # @option options [Integer] :endpoint_cache_max_entries (1000)
147
171
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -156,7 +180,7 @@ module Aws::MachineLearning
156
180
  # requests fetching endpoints information. Defaults to 60 sec.
157
181
  #
158
182
  # @option options [Boolean] :endpoint_discovery (false)
159
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
183
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
160
184
  #
161
185
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
162
186
  # The log formatter.
@@ -168,15 +192,29 @@ module Aws::MachineLearning
168
192
  # The Logger instance to send log messages to. If this option
169
193
  # is not set, logging will be disabled.
170
194
  #
195
+ # @option options [Integer] :max_attempts (3)
196
+ # An integer representing the maximum number attempts that will be made for
197
+ # a single request, including the initial attempt. For example,
198
+ # setting this value to 5 will result in a request being retried up to
199
+ # 4 times. Used in `standard` and `adaptive` retry modes.
200
+ #
171
201
  # @option options [String] :profile ("default")
172
202
  # Used when loading credentials from the shared credentials file
173
203
  # at HOME/.aws/credentials. When not specified, 'default' is used.
174
204
  #
205
+ # @option options [Proc] :retry_backoff
206
+ # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
207
+ # This option is only used in the `legacy` retry mode.
208
+ #
175
209
  # @option options [Float] :retry_base_delay (0.3)
176
- # The base delay in seconds used by the default backoff function.
210
+ # The base delay in seconds used by the default backoff function. This option
211
+ # is only used in the `legacy` retry mode.
177
212
  #
178
213
  # @option options [Symbol] :retry_jitter (:none)
179
- # A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
214
+ # A delay randomiser function used by the default backoff function.
215
+ # Some predefined functions can be referenced by name - :none, :equal, :full,
216
+ # otherwise a Proc that takes and returns a number. This option is only used
217
+ # in the `legacy` retry mode.
180
218
  #
181
219
  # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
182
220
  #
@@ -184,11 +222,30 @@ module Aws::MachineLearning
184
222
  # The maximum number of times to retry failed requests. Only
185
223
  # ~ 500 level server errors and certain ~ 400 level client errors
186
224
  # are retried. Generally, these are throttling errors, data
187
- # checksum errors, networking errors, timeout errors and auth
188
- # errors from expired credentials.
225
+ # checksum errors, networking errors, timeout errors, auth errors,
226
+ # endpoint discovery, and errors from expired credentials.
227
+ # This option is only used in the `legacy` retry mode.
189
228
  #
190
229
  # @option options [Integer] :retry_max_delay (0)
191
- # The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
230
+ # The maximum number of seconds to delay between retries (0 for no limit)
231
+ # used by the default backoff function. This option is only used in the
232
+ # `legacy` retry mode.
233
+ #
234
+ # @option options [String] :retry_mode ("legacy")
235
+ # Specifies which retry algorithm to use. Values are:
236
+ #
237
+ # * `legacy` - The pre-existing retry behavior. This is default value if
238
+ # no retry mode is provided.
239
+ #
240
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
241
+ # This includes support for retry quotas, which limit the number of
242
+ # unsuccessful retries a client can make.
243
+ #
244
+ # * `adaptive` - An experimental retry mode that includes all the
245
+ # functionality of `standard` mode along with automatic client side
246
+ # throttling. This is a provisional mode that may change behavior
247
+ # in the future.
248
+ #
192
249
  #
193
250
  # @option options [String] :secret_access_key
194
251
  #
@@ -221,16 +278,15 @@ module Aws::MachineLearning
221
278
  # requests through. Formatted like 'http://proxy.com:123'.
222
279
  #
223
280
  # @option options [Float] :http_open_timeout (15) The number of
224
- # seconds to wait when opening a HTTP session before rasing a
281
+ # seconds to wait when opening a HTTP session before raising a
225
282
  # `Timeout::Error`.
226
283
  #
227
284
  # @option options [Integer] :http_read_timeout (60) The default
228
285
  # 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}.
286
+ # safely be set per-request on the session.
231
287
  #
232
288
  # @option options [Float] :http_idle_timeout (5) The number of
233
- # seconds a connection is allowed to sit idble before it is
289
+ # seconds a connection is allowed to sit idle before it is
234
290
  # considered stale. Stale connections are closed and removed
235
291
  # from the pool before making a request.
236
292
  #
@@ -239,7 +295,7 @@ module Aws::MachineLearning
239
295
  # request body. This option has no effect unless the request has
240
296
  # "Expect" header set to "100-continue". Defaults to `nil` which
241
297
  # disables this behaviour. This value can safely be set per
242
- # request on the session yeidled by {#session_for}.
298
+ # request on the session.
243
299
  #
244
300
  # @option options [Boolean] :http_wire_trace (false) When `true`,
245
301
  # HTTP debug output will be sent to the `:logger`.
@@ -1261,6 +1317,8 @@ module Aws::MachineLearning
1261
1317
  # * {Types::DescribeBatchPredictionsOutput#results #results} => Array&lt;Types::BatchPrediction&gt;
1262
1318
  # * {Types::DescribeBatchPredictionsOutput#next_token #next_token} => String
1263
1319
  #
1320
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1321
+ #
1264
1322
  # @example Request syntax with placeholder values
1265
1323
  #
1266
1324
  # resp = client.describe_batch_predictions({
@@ -1298,6 +1356,11 @@ module Aws::MachineLearning
1298
1356
  # resp.results[0].invalid_record_count #=> Integer
1299
1357
  # resp.next_token #=> String
1300
1358
  #
1359
+ #
1360
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
1361
+ #
1362
+ # * batch_prediction_available
1363
+ #
1301
1364
  # @overload describe_batch_predictions(params = {})
1302
1365
  # @param [Hash] params ({})
1303
1366
  def describe_batch_predictions(params = {}, options = {})
@@ -1386,6 +1449,8 @@ module Aws::MachineLearning
1386
1449
  # * {Types::DescribeDataSourcesOutput#results #results} => Array&lt;Types::DataSource&gt;
1387
1450
  # * {Types::DescribeDataSourcesOutput#next_token #next_token} => String
1388
1451
  #
1452
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1453
+ #
1389
1454
  # @example Request syntax with placeholder values
1390
1455
  #
1391
1456
  # resp = client.describe_data_sources({
@@ -1434,6 +1499,11 @@ module Aws::MachineLearning
1434
1499
  # resp.results[0].started_at #=> Time
1435
1500
  # resp.next_token #=> String
1436
1501
  #
1502
+ #
1503
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
1504
+ #
1505
+ # * data_source_available
1506
+ #
1437
1507
  # @overload describe_data_sources(params = {})
1438
1508
  # @param [Hash] params ({})
1439
1509
  def describe_data_sources(params = {}, options = {})
@@ -1527,6 +1597,8 @@ module Aws::MachineLearning
1527
1597
  # * {Types::DescribeEvaluationsOutput#results #results} => Array&lt;Types::Evaluation&gt;
1528
1598
  # * {Types::DescribeEvaluationsOutput#next_token #next_token} => String
1529
1599
  #
1600
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1601
+ #
1530
1602
  # @example Request syntax with placeholder values
1531
1603
  #
1532
1604
  # resp = client.describe_evaluations({
@@ -1563,6 +1635,11 @@ module Aws::MachineLearning
1563
1635
  # resp.results[0].started_at #=> Time
1564
1636
  # resp.next_token #=> String
1565
1637
  #
1638
+ #
1639
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
1640
+ #
1641
+ # * evaluation_available
1642
+ #
1566
1643
  # @overload describe_evaluations(params = {})
1567
1644
  # @param [Hash] params ({})
1568
1645
  def describe_evaluations(params = {}, options = {})
@@ -1659,6 +1736,8 @@ module Aws::MachineLearning
1659
1736
  # * {Types::DescribeMLModelsOutput#results #results} => Array&lt;Types::MLModel&gt;
1660
1737
  # * {Types::DescribeMLModelsOutput#next_token #next_token} => String
1661
1738
  #
1739
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1740
+ #
1662
1741
  # @example Request syntax with placeholder values
1663
1742
  #
1664
1743
  # resp = client.describe_ml_models({
@@ -1703,6 +1782,11 @@ module Aws::MachineLearning
1703
1782
  # resp.results[0].started_at #=> Time
1704
1783
  # resp.next_token #=> String
1705
1784
  #
1785
+ #
1786
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
1787
+ #
1788
+ # * ml_model_available
1789
+ #
1706
1790
  # @overload describe_ml_models(params = {})
1707
1791
  # @param [Hash] params ({})
1708
1792
  def describe_ml_models(params = {}, options = {})
@@ -2235,7 +2319,7 @@ module Aws::MachineLearning
2235
2319
  params: params,
2236
2320
  config: config)
2237
2321
  context[:gem_name] = 'aws-sdk-machinelearning'
2238
- context[:gem_version] = '1.16.0'
2322
+ context[:gem_version] = '1.21.1'
2239
2323
  Seahorse::Client::Request.new(handlers, context)
2240
2324
  end
2241
2325
 
@@ -2301,12 +2385,12 @@ module Aws::MachineLearning
2301
2385
  # The following table lists the valid waiter names, the operations they call,
2302
2386
  # and the default `:delay` and `:max_attempts` values.
2303
2387
  #
2304
- # | waiter_name | params | :delay | :max_attempts |
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 |
2388
+ # | waiter_name | params | :delay | :max_attempts |
2389
+ # | -------------------------- | ----------------------------------- | -------- | ------------- |
2390
+ # | batch_prediction_available | {Client#describe_batch_predictions} | 30 | 60 |
2391
+ # | data_source_available | {Client#describe_data_sources} | 30 | 60 |
2392
+ # | evaluation_available | {Client#describe_evaluations} | 30 | 60 |
2393
+ # | ml_model_available | {Client#describe_ml_models} | 30 | 60 |
2310
2394
  #
2311
2395
  # @raise [Errors::FailureStateError] Raised when the waiter terminates
2312
2396
  # 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
@@ -6,6 +6,7 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::MachineLearning
9
+
9
10
  class Resource
10
11
 
11
12
  # @param options ({})
@@ -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.16.0
4
+ version: 1.21.1
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-07-25 00:00:00.000000000 Z
11
+ date: 2020-06-11 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.61.1
22
+ version: 3.99.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.61.1
32
+ version: 3.99.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.5.2.3
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