aws-sdk-machinelearning 1.49.0 → 1.51.0

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
2
  SHA256:
3
- metadata.gz: f51e89abeb5da6712b0aaa75ff2037f62538cda9630cced8db604ef531ad8e67
4
- data.tar.gz: 0e28e56e78e2b2365b02cf2dd191a7c5419e1a9a6fba0f8e024a98f6933b22a8
3
+ metadata.gz: 5f6c998b77756f6ed3361219808da2c18a10fa3a4913ce9cd733d95341e4d012
4
+ data.tar.gz: 15cae278796755dbecfb0ad55d00a539f99be067a621ab5768aab870959cf8f7
5
5
  SHA512:
6
- metadata.gz: 7cfe59f6036aa6d9b4b8a3da95bfa613dcb0848c8aced5d9c67e0394958e03bb25121192673e8862cf43b277137ff31f6a56eecb4252a44b63de9c458217ba1a
7
- data.tar.gz: 1d8befcfcf34c6866ebda408b61a8098b0d217dd2a75da2c81a21046e180658caf945c2b59987866430b692867800a8d4544604fdd06aeb8455a223cd690aae4
6
+ metadata.gz: ce94276514b5af3b176c5381fb0c8053755bc39a9b1c21460ab83f553c0448da1d695e0a6bc02d450ba70d991d1149628a70e7c2b779284e9f6e2822ce84e474
7
+ data.tar.gz: af0d227408ae827b36756b27c6eee93919ef1d66cce0aae8cc57ebc02d12a23c9280d3e8b5c57c9ebd4cef1db85ca95864097d624475b4196e766df45f553a67
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.51.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.50.0 (2024-01-26)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.49.0 (2023-11-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.49.0
1
+ 1.51.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -73,6 +74,7 @@ module Aws::MachineLearning
73
74
  add_plugin(Aws::Plugins::ResponsePaging)
74
75
  add_plugin(Aws::Plugins::StubResponses)
75
76
  add_plugin(Aws::Plugins::IdempotencyToken)
77
+ add_plugin(Aws::Plugins::InvocationId)
76
78
  add_plugin(Aws::Plugins::JsonvalueConverter)
77
79
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
78
80
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -198,10 +200,17 @@ module Aws::MachineLearning
198
200
  # When set to 'true' the request body will not be compressed
199
201
  # for supported operations.
200
202
  #
201
- # @option options [String] :endpoint
202
- # The client endpoint is normally constructed from the `:region`
203
- # option. You should only configure an `:endpoint` when connecting
204
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
203
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
204
+ # Normally you should not configure the `:endpoint` option
205
+ # directly. This is normally constructed from the `:region`
206
+ # option. Configuring `:endpoint` is normally reserved for
207
+ # connecting to test or custom endpoints. The endpoint should
208
+ # be a URI formatted like:
209
+ #
210
+ # 'http://example.com'
211
+ # 'https://example.com'
212
+ # 'http://example.com:123'
213
+ #
205
214
  #
206
215
  # @option options [Integer] :endpoint_cache_max_entries (1000)
207
216
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -349,50 +358,65 @@ module Aws::MachineLearning
349
358
  # @option options [Aws::MachineLearning::EndpointProvider] :endpoint_provider
350
359
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::MachineLearning::EndpointParameters`
351
360
  #
352
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
353
- # requests through. Formatted like 'http://proxy.com:123'.
354
- #
355
- # @option options [Float] :http_open_timeout (15) The number of
356
- # seconds to wait when opening a HTTP session before raising a
357
- # `Timeout::Error`.
358
- #
359
- # @option options [Float] :http_read_timeout (60) The default
360
- # number of seconds to wait for response data. This value can
361
- # safely be set per-request on the session.
362
- #
363
- # @option options [Float] :http_idle_timeout (5) The number of
364
- # seconds a connection is allowed to sit idle before it is
365
- # considered stale. Stale connections are closed and removed
366
- # from the pool before making a request.
367
- #
368
- # @option options [Float] :http_continue_timeout (1) The number of
369
- # seconds to wait for a 100-continue response before sending the
370
- # request body. This option has no effect unless the request has
371
- # "Expect" header set to "100-continue". Defaults to `nil` which
372
- # disables this behaviour. This value can safely be set per
373
- # request on the session.
374
- #
375
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
376
- # in seconds.
361
+ # @option options [Float] :http_continue_timeout (1)
362
+ # The number of seconds to wait for a 100-continue response before sending the
363
+ # request body. This option has no effect unless the request has "Expect"
364
+ # header set to "100-continue". Defaults to `nil` which disables this
365
+ # behaviour. This value can safely be set per request on the session.
366
+ #
367
+ # @option options [Float] :http_idle_timeout (5)
368
+ # The number of seconds a connection is allowed to sit idle before it
369
+ # is considered stale. Stale connections are closed and removed from the
370
+ # pool before making a request.
371
+ #
372
+ # @option options [Float] :http_open_timeout (15)
373
+ # The default number of seconds to wait for response data.
374
+ # This value can safely be set per-request on the session.
375
+ #
376
+ # @option options [URI::HTTP,String] :http_proxy
377
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
378
+ #
379
+ # @option options [Float] :http_read_timeout (60)
380
+ # The default number of seconds to wait for response data.
381
+ # This value can safely be set per-request on the session.
382
+ #
383
+ # @option options [Boolean] :http_wire_trace (false)
384
+ # When `true`, HTTP debug output will be sent to the `:logger`.
385
+ #
386
+ # @option options [Proc] :on_chunk_received
387
+ # When a Proc object is provided, it will be used as callback when each chunk
388
+ # of the response body is received. It provides three arguments: the chunk,
389
+ # the number of bytes received, and the total number of
390
+ # bytes in the response (or nil if the server did not send a `content-length`).
391
+ #
392
+ # @option options [Proc] :on_chunk_sent
393
+ # When a Proc object is provided, it will be used as callback when each chunk
394
+ # of the request body is sent. It provides three arguments: the chunk,
395
+ # the number of bytes read from the body, and the total number of
396
+ # bytes in the body.
397
+ #
398
+ # @option options [Boolean] :raise_response_errors (true)
399
+ # When `true`, response errors are raised.
400
+ #
401
+ # @option options [String] :ssl_ca_bundle
402
+ # Full path to the SSL certificate authority bundle file that should be used when
403
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
404
+ # `:ssl_ca_directory` the the system default will be used if available.
405
+ #
406
+ # @option options [String] :ssl_ca_directory
407
+ # Full path of the directory that contains the unbundled SSL certificate
408
+ # authority files for verifying peer certificates. If you do
409
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
410
+ # default will be used if available.
377
411
  #
378
- # @option options [Boolean] :http_wire_trace (false) When `true`,
379
- # HTTP debug output will be sent to the `:logger`.
412
+ # @option options [String] :ssl_ca_store
413
+ # Sets the X509::Store to verify peer certificate.
380
414
  #
381
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
382
- # SSL peer certificates are verified when establishing a
383
- # connection.
415
+ # @option options [Float] :ssl_timeout
416
+ # Sets the SSL timeout in seconds
384
417
  #
385
- # @option options [String] :ssl_ca_bundle Full path to the SSL
386
- # certificate authority bundle file that should be used when
387
- # verifying peer certificates. If you do not pass
388
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
389
- # will be used if available.
390
- #
391
- # @option options [String] :ssl_ca_directory Full path of the
392
- # directory that contains the unbundled SSL certificate
393
- # authority files for verifying peer certificates. If you do
394
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
395
- # system default will be used if available.
418
+ # @option options [Boolean] :ssl_verify_peer (true)
419
+ # When `true`, SSL peer certificates are verified when establishing a connection.
396
420
  #
397
421
  def initialize(*args)
398
422
  super
@@ -2427,7 +2451,7 @@ module Aws::MachineLearning
2427
2451
  params: params,
2428
2452
  config: config)
2429
2453
  context[:gem_name] = 'aws-sdk-machinelearning'
2430
- context[:gem_version] = '1.49.0'
2454
+ context[:gem_version] = '1.51.0'
2431
2455
  Seahorse::Client::Request.new(handlers, context)
2432
2456
  end
2433
2457
 
@@ -14,6 +14,7 @@ module Aws::MachineLearning
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::MachineLearning::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-machinelearning/customizations'
53
53
  # @!group service
54
54
  module Aws::MachineLearning
55
55
 
56
- GEM_VERSION = '1.49.0'
56
+ GEM_VERSION = '1.51.0'
57
57
 
58
58
  end