aws-sdk-machinelearning 1.17.0 → 1.18.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
- SHA1:
3
- metadata.gz: 2f675aa06628853f21f117d5ccee33aacb177979
4
- data.tar.gz: c9d5112f3dc7570beaaf0f4b0a3cd20466d17dcf
2
+ SHA256:
3
+ metadata.gz: 38396999391af51e3a75da99661b2d6994407e967314ed061693b5669da2158d
4
+ data.tar.gz: 78295e22f992294b1a09dd298c697649719b32dc10d72d756d493bbb2a96fc5c
5
5
  SHA512:
6
- metadata.gz: e764a94263cf637191c000f239d9edac8c7c7a61a9c228deb8c2018c68f7b26754fc0cce02f9dfaf66428232fd453f5fcd16cd6039f36b9214eccd22e0911491
7
- data.tar.gz: 8abc38264e25f09b666cb8ca31ebded893911b8f7c79673026732561486958447c62b8b12d46f1a4051fcd29baf11eacf92ef5310fa40faadb0cb2016228efae
6
+ metadata.gz: 1ea8124aec1dfd3f33d66c3c3ca6e5ff3b79767e221a20302d0ec80070499012343ace1a21602d6a6f4f2c29323caabe2f9cbb64f38a8a969ef15adf456de514
7
+ data.tar.gz: 91d2c9bc138318b2d1f4571c591464a385fba7aae950667d4b01c63623937000289bf477a5276e78cfe66c68528f5aa31546a64e71d9daab449a1e98c675b5d0
@@ -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.17.0'
49
+ GEM_VERSION = '1.18.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
@@ -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.
@@ -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. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
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 and auth
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) used by the default backoff function.
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,16 @@ 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 rasing a
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
284
  # safely be set
230
- # per-request on the session yeidled by {#session_for}.
285
+ # per-request on the session yielded by {#session_for}.
231
286
  #
232
287
  # @option options [Float] :http_idle_timeout (5) The number of
233
- # seconds a connection is allowed to sit idble before it is
288
+ # seconds a connection is allowed to sit idle before it is
234
289
  # considered stale. Stale connections are closed and removed
235
290
  # from the pool before making a request.
236
291
  #
@@ -239,7 +294,7 @@ module Aws::MachineLearning
239
294
  # request body. This option has no effect unless the request has
240
295
  # "Expect" header set to "100-continue". Defaults to `nil` which
241
296
  # disables this behaviour. This value can safely be set per
242
- # request on the session yeidled by {#session_for}.
297
+ # request on the session yielded by {#session_for}.
243
298
  #
244
299
  # @option options [Boolean] :http_wire_trace (false) When `true`,
245
300
  # HTTP debug output will be sent to the `:logger`.
@@ -2235,7 +2290,7 @@ module Aws::MachineLearning
2235
2290
  params: params,
2236
2291
  config: config)
2237
2292
  context[:gem_name] = 'aws-sdk-machinelearning'
2238
- context[:gem_version] = '1.17.0'
2293
+ context[:gem_version] = '1.18.0'
2239
2294
  Seahorse::Client::Request.new(handlers, context)
2240
2295
  end
2241
2296
 
@@ -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,13 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::MachineLearning
9
+ # This class provides a resource oriented interface for MachineLearning.
10
+ # To create a resource object:
11
+ # resource = Aws::MachineLearning::Resource.new(region: 'us-west-2')
12
+ # You can supply a client object with custom configuration that will be used for all resource operations.
13
+ # If you do not pass +:client+, a default client will be constructed.
14
+ # client = Aws::MachineLearning::Client.new(region: 'us-west-2')
15
+ # resource = Aws::MachineLearning::Resource.new(client: client)
9
16
  class Resource
10
17
 
11
18
  # @param options ({})
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.17.0
4
+ version: 1.18.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-10-23 00:00:00.000000000 Z
11
+ date: 2020-03-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -82,8 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
82
82
  - !ruby/object:Gem::Version
83
83
  version: '0'
84
84
  requirements: []
85
- rubyforge_project:
86
- rubygems_version: 2.5.2.3
85
+ rubygems_version: 3.0.3
87
86
  signing_key:
88
87
  specification_version: 4
89
88
  summary: AWS SDK for Ruby - Amazon Machine Learning