aws-sdk-sagemakerruntime 1.61.0 → 1.63.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/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemakerruntime/client.rb +88 -64
- data/lib/aws-sdk-sagemakerruntime.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a4d6bc789ec74b31e0673a45c685d195f32215083f20757da7319baed3361379
|
4
|
+
data.tar.gz: e5746327036a5893f9a485becd7ebebea2b9285283bcc388bb5e8e2c6facc183
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e96dfa25ecffe8252ca611d8493eee437146c3a5da80023764e80e19acf2837fdf7a1f1469d0d1a0e74a725f3ecf4e3acb9dd153b71b578cc5c465404725ff81
|
7
|
+
data.tar.gz: 4992560f592b59422e081242d5d6c0c0b34fab8d1f380457036ccf361ffd691b4b9c67b693f9b8f4ef3861fe47036c7d13dc654fe3d797a9c6a2ea556d42e588
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.63.0 (2024-05-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.62.0 (2024-04-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.61.0 (2024-01-26)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.63.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::SageMakerRuntime
|
|
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::SageMakerRuntime
|
|
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
|
-
#
|
203
|
-
#
|
204
|
-
#
|
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
|
@@ -303,8 +312,9 @@ module Aws::SageMakerRuntime
|
|
303
312
|
#
|
304
313
|
# @option options [String] :sdk_ua_app_id
|
305
314
|
# A unique and opaque application ID that is appended to the
|
306
|
-
# User-Agent header as app
|
307
|
-
# maximum length of 50.
|
315
|
+
# User-Agent header as app/sdk_ua_app_id. It should have a
|
316
|
+
# maximum length of 50. This variable is sourced from environment
|
317
|
+
# variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
|
308
318
|
#
|
309
319
|
# @option options [String] :secret_access_key
|
310
320
|
#
|
@@ -348,50 +358,65 @@ module Aws::SageMakerRuntime
|
|
348
358
|
# @option options [Aws::SageMakerRuntime::EndpointProvider] :endpoint_provider
|
349
359
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::SageMakerRuntime::EndpointParameters`
|
350
360
|
#
|
351
|
-
# @option options [
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
#
|
362
|
-
# @option options [Float] :
|
363
|
-
#
|
364
|
-
#
|
365
|
-
#
|
366
|
-
#
|
367
|
-
#
|
368
|
-
#
|
369
|
-
#
|
370
|
-
#
|
371
|
-
#
|
372
|
-
#
|
373
|
-
#
|
374
|
-
#
|
375
|
-
#
|
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.
|
376
411
|
#
|
377
|
-
# @option options [
|
378
|
-
#
|
412
|
+
# @option options [String] :ssl_ca_store
|
413
|
+
# Sets the X509::Store to verify peer certificate.
|
379
414
|
#
|
380
|
-
# @option options [
|
381
|
-
#
|
382
|
-
# connection.
|
415
|
+
# @option options [Float] :ssl_timeout
|
416
|
+
# Sets the SSL timeout in seconds
|
383
417
|
#
|
384
|
-
# @option options [
|
385
|
-
#
|
386
|
-
# verifying peer certificates. If you do not pass
|
387
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
388
|
-
# will be used if available.
|
389
|
-
#
|
390
|
-
# @option options [String] :ssl_ca_directory Full path of the
|
391
|
-
# directory that contains the unbundled SSL certificate
|
392
|
-
# authority files for verifying peer certificates. If you do
|
393
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
394
|
-
# 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.
|
395
420
|
#
|
396
421
|
def initialize(*args)
|
397
422
|
super
|
@@ -803,22 +828,22 @@ module Aws::SageMakerRuntime
|
|
803
828
|
#
|
804
829
|
# @example EventStream Operation Example
|
805
830
|
#
|
806
|
-
# You can process event once it arrives immediately, or wait until
|
807
|
-
# full response complete and iterate through eventstream enumerator.
|
831
|
+
# You can process the event once it arrives immediately, or wait until the
|
832
|
+
# full response is complete and iterate through the eventstream enumerator.
|
808
833
|
#
|
809
834
|
# To interact with event immediately, you need to register #invoke_endpoint_with_response_stream
|
810
|
-
# with callbacks
|
811
|
-
#
|
835
|
+
# with callbacks. Callbacks can be registered for specific events or for all
|
836
|
+
# events, including error events.
|
812
837
|
#
|
813
|
-
# Callbacks can be passed
|
814
|
-
# statement attached to #invoke_endpoint_with_response_stream call directly. Hybrid
|
815
|
-
# is also supported.
|
838
|
+
# Callbacks can be passed into the `:event_stream_handler` option or within a
|
839
|
+
# block statement attached to the #invoke_endpoint_with_response_stream call directly. Hybrid
|
840
|
+
# pattern of both is also supported.
|
816
841
|
#
|
817
|
-
# `:event_stream_handler` option takes in either Proc object or
|
842
|
+
# `:event_stream_handler` option takes in either a Proc object or
|
818
843
|
# Aws::SageMakerRuntime::EventStreams::ResponseStream object.
|
819
844
|
#
|
820
|
-
# Usage pattern a):
|
821
|
-
# Example for registering callbacks for all event types and error event
|
845
|
+
# Usage pattern a): Callbacks with a block attached to #invoke_endpoint_with_response_stream
|
846
|
+
# Example for registering callbacks for all event types and an error event
|
822
847
|
#
|
823
848
|
# client.invoke_endpoint_with_response_stream( # params input# ) do |stream|
|
824
849
|
# stream.on_error_event do |event|
|
@@ -838,9 +863,9 @@ module Aws::SageMakerRuntime
|
|
838
863
|
#
|
839
864
|
# end
|
840
865
|
#
|
841
|
-
# Usage pattern b):
|
866
|
+
# Usage pattern b): Pass in `:event_stream_handler` for #invoke_endpoint_with_response_stream
|
842
867
|
#
|
843
|
-
# 1)
|
868
|
+
# 1) Create a Aws::SageMakerRuntime::EventStreams::ResponseStream object
|
844
869
|
# Example for registering callbacks with specific events
|
845
870
|
#
|
846
871
|
# handler = Aws::SageMakerRuntime::EventStreams::ResponseStream.new
|
@@ -856,7 +881,7 @@ module Aws::SageMakerRuntime
|
|
856
881
|
#
|
857
882
|
# client.invoke_endpoint_with_response_stream( # params input #, event_stream_handler: handler)
|
858
883
|
#
|
859
|
-
# 2)
|
884
|
+
# 2) Use a Ruby Proc object
|
860
885
|
# Example for registering callbacks with specific events
|
861
886
|
#
|
862
887
|
# handler = Proc.new do |stream|
|
@@ -873,7 +898,7 @@ module Aws::SageMakerRuntime
|
|
873
898
|
#
|
874
899
|
# client.invoke_endpoint_with_response_stream( # params input #, event_stream_handler: handler)
|
875
900
|
#
|
876
|
-
# Usage pattern c):
|
901
|
+
# Usage pattern c): Hybrid pattern of a) and b)
|
877
902
|
#
|
878
903
|
# handler = Aws::SageMakerRuntime::EventStreams::ResponseStream.new
|
879
904
|
# handler.on_payload_part_event do |event|
|
@@ -897,8 +922,7 @@ module Aws::SageMakerRuntime
|
|
897
922
|
# end
|
898
923
|
# end
|
899
924
|
#
|
900
|
-
#
|
901
|
-
# iterate through events after response complete.
|
925
|
+
# You can also iterate through events after the response complete.
|
902
926
|
#
|
903
927
|
# Events are available at resp.body # => Enumerator
|
904
928
|
# For parameter input example, please refer to following request syntax
|
@@ -977,7 +1001,7 @@ module Aws::SageMakerRuntime
|
|
977
1001
|
params: params,
|
978
1002
|
config: config)
|
979
1003
|
context[:gem_name] = 'aws-sdk-sagemakerruntime'
|
980
|
-
context[:gem_version] = '1.
|
1004
|
+
context[:gem_version] = '1.63.0'
|
981
1005
|
Seahorse::Client::Request.new(handlers, context)
|
982
1006
|
end
|
983
1007
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-sagemakerruntime
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.63.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: 2024-
|
11
|
+
date: 2024-05-13 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.193.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.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|