aws-sdk-sagemakerruntime 1.94.0 → 1.95.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemakerruntime/client.rb +12 -1
- data/lib/aws-sdk-sagemakerruntime/client_api.rb +4 -0
- data/lib/aws-sdk-sagemakerruntime/types.rb +13 -0
- data/lib/aws-sdk-sagemakerruntime.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/types.rbs +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fd0f7988c77d7a6319f48b66f2a4fef65095cfc413dec79963f7c770efd0a90b
|
|
4
|
+
data.tar.gz: 94711ba0884aa88f98388f4c5e13242c9a3145c4bcc79c9df453a763855fbf2d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7b44bb9ef4169ae5f1f6ad19ed1d0eb407de799a65df63dcda9d004f639d46e735364b04330bf2bd0ee9167a73f6ce8c12f208bea01a0cfab54d897646e45aa0
|
|
7
|
+
data.tar.gz: a70c5ea354f09e1bfba827d556a4155028964a7fcd88c7d85574f84a21dff4cfafaeed58b5c4c9299da8ec86a1143ac0c7a73910dd7ba21dce5c8027bf29e1d2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.95.0 (2026-02-20)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added support for S3OutputPathExtension and Filename parameters to the InvokeEndpointAsync API to allow users to customize the S3 output path and file name for async inference response payloads.
|
|
8
|
+
|
|
4
9
|
1.94.0 (2026-01-16)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.95.0
|
|
@@ -747,6 +747,15 @@ module Aws::SageMakerRuntime
|
|
|
747
747
|
# @option params [required, String] :input_location
|
|
748
748
|
# The Amazon S3 URI where the inference request payload is stored.
|
|
749
749
|
#
|
|
750
|
+
# @option params [String] :s3_output_path_extension
|
|
751
|
+
# The path extension that is appended to the Amazon S3 output path where
|
|
752
|
+
# the inference response payload is stored.
|
|
753
|
+
#
|
|
754
|
+
# @option params [String] :filename
|
|
755
|
+
# The filename for the inference response payload stored in Amazon S3.
|
|
756
|
+
# If not specified, Amazon SageMaker AI generates a filename based on
|
|
757
|
+
# the inference ID.
|
|
758
|
+
#
|
|
750
759
|
# @option params [Integer] :request_ttl_seconds
|
|
751
760
|
# Maximum age in seconds a request can be in the queue before it is
|
|
752
761
|
# marked as expired. The default is 6 hours, or 21,600 seconds.
|
|
@@ -770,6 +779,8 @@ module Aws::SageMakerRuntime
|
|
|
770
779
|
# custom_attributes: "CustomAttributesHeader",
|
|
771
780
|
# inference_id: "InferenceId",
|
|
772
781
|
# input_location: "InputLocationHeader", # required
|
|
782
|
+
# s3_output_path_extension: "S3OutputPathExtensionHeader",
|
|
783
|
+
# filename: "FilenameHeader",
|
|
773
784
|
# request_ttl_seconds: 1,
|
|
774
785
|
# invocation_timeout_seconds: 1,
|
|
775
786
|
# })
|
|
@@ -1108,7 +1119,7 @@ module Aws::SageMakerRuntime
|
|
|
1108
1119
|
tracer: tracer
|
|
1109
1120
|
)
|
|
1110
1121
|
context[:gem_name] = 'aws-sdk-sagemakerruntime'
|
|
1111
|
-
context[:gem_version] = '1.
|
|
1122
|
+
context[:gem_version] = '1.95.0'
|
|
1112
1123
|
Seahorse::Client::Request.new(handlers, context)
|
|
1113
1124
|
end
|
|
1114
1125
|
|
|
@@ -19,6 +19,7 @@ module Aws::SageMakerRuntime
|
|
|
19
19
|
EnableExplanationsHeader = Shapes::StringShape.new(name: 'EnableExplanationsHeader')
|
|
20
20
|
EndpointName = Shapes::StringShape.new(name: 'EndpointName')
|
|
21
21
|
ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
|
|
22
|
+
FilenameHeader = Shapes::StringShape.new(name: 'FilenameHeader')
|
|
22
23
|
Header = Shapes::StringShape.new(name: 'Header')
|
|
23
24
|
InferenceComponentHeader = Shapes::StringShape.new(name: 'InferenceComponentHeader')
|
|
24
25
|
InferenceId = Shapes::StringShape.new(name: 'InferenceId')
|
|
@@ -43,6 +44,7 @@ module Aws::SageMakerRuntime
|
|
|
43
44
|
PayloadPart = Shapes::StructureShape.new(name: 'PayloadPart')
|
|
44
45
|
RequestTTLSecondsHeader = Shapes::IntegerShape.new(name: 'RequestTTLSecondsHeader')
|
|
45
46
|
ResponseStream = Shapes::StructureShape.new(name: 'ResponseStream')
|
|
47
|
+
S3OutputPathExtensionHeader = Shapes::StringShape.new(name: 'S3OutputPathExtensionHeader')
|
|
46
48
|
ServiceUnavailable = Shapes::StructureShape.new(name: 'ServiceUnavailable')
|
|
47
49
|
SessionIdHeader = Shapes::StringShape.new(name: 'SessionIdHeader')
|
|
48
50
|
SessionIdOrNewSessionConstantHeader = Shapes::StringShape.new(name: 'SessionIdOrNewSessionConstantHeader')
|
|
@@ -67,6 +69,8 @@ module Aws::SageMakerRuntime
|
|
|
67
69
|
InvokeEndpointAsyncInput.add_member(:custom_attributes, Shapes::ShapeRef.new(shape: CustomAttributesHeader, location: "header", location_name: "X-Amzn-SageMaker-Custom-Attributes"))
|
|
68
70
|
InvokeEndpointAsyncInput.add_member(:inference_id, Shapes::ShapeRef.new(shape: InferenceId, location: "header", location_name: "X-Amzn-SageMaker-Inference-Id"))
|
|
69
71
|
InvokeEndpointAsyncInput.add_member(:input_location, Shapes::ShapeRef.new(shape: InputLocationHeader, required: true, location: "header", location_name: "X-Amzn-SageMaker-InputLocation"))
|
|
72
|
+
InvokeEndpointAsyncInput.add_member(:s3_output_path_extension, Shapes::ShapeRef.new(shape: S3OutputPathExtensionHeader, location: "header", location_name: "X-Amzn-SageMaker-S3OutputPathExtension"))
|
|
73
|
+
InvokeEndpointAsyncInput.add_member(:filename, Shapes::ShapeRef.new(shape: FilenameHeader, location: "header", location_name: "X-Amzn-SageMaker-Filename"))
|
|
70
74
|
InvokeEndpointAsyncInput.add_member(:request_ttl_seconds, Shapes::ShapeRef.new(shape: RequestTTLSecondsHeader, location: "header", location_name: "X-Amzn-SageMaker-RequestTTLSeconds"))
|
|
71
75
|
InvokeEndpointAsyncInput.add_member(:invocation_timeout_seconds, Shapes::ShapeRef.new(shape: InvocationTimeoutSecondsHeader, location: "header", location_name: "X-Amzn-SageMaker-InvocationTimeoutSeconds"))
|
|
72
76
|
InvokeEndpointAsyncInput.struct_class = Types::InvokeEndpointAsyncInput
|
|
@@ -104,6 +104,17 @@ module Aws::SageMakerRuntime
|
|
|
104
104
|
# The Amazon S3 URI where the inference request payload is stored.
|
|
105
105
|
# @return [String]
|
|
106
106
|
#
|
|
107
|
+
# @!attribute [rw] s3_output_path_extension
|
|
108
|
+
# The path extension that is appended to the Amazon S3 output path
|
|
109
|
+
# where the inference response payload is stored.
|
|
110
|
+
# @return [String]
|
|
111
|
+
#
|
|
112
|
+
# @!attribute [rw] filename
|
|
113
|
+
# The filename for the inference response payload stored in Amazon S3.
|
|
114
|
+
# If not specified, Amazon SageMaker AI generates a filename based on
|
|
115
|
+
# the inference ID.
|
|
116
|
+
# @return [String]
|
|
117
|
+
#
|
|
107
118
|
# @!attribute [rw] request_ttl_seconds
|
|
108
119
|
# Maximum age in seconds a request can be in the queue before it is
|
|
109
120
|
# marked as expired. The default is 6 hours, or 21,600 seconds.
|
|
@@ -123,6 +134,8 @@ module Aws::SageMakerRuntime
|
|
|
123
134
|
:custom_attributes,
|
|
124
135
|
:inference_id,
|
|
125
136
|
:input_location,
|
|
137
|
+
:s3_output_path_extension,
|
|
138
|
+
:filename,
|
|
126
139
|
:request_ttl_seconds,
|
|
127
140
|
:invocation_timeout_seconds)
|
|
128
141
|
SENSITIVE = [:custom_attributes]
|
data/sig/client.rbs
CHANGED
|
@@ -121,6 +121,8 @@ module Aws
|
|
|
121
121
|
?custom_attributes: ::String,
|
|
122
122
|
?inference_id: ::String,
|
|
123
123
|
input_location: ::String,
|
|
124
|
+
?s3_output_path_extension: ::String,
|
|
125
|
+
?filename: ::String,
|
|
124
126
|
?request_ttl_seconds: ::Integer,
|
|
125
127
|
?invocation_timeout_seconds: ::Integer
|
|
126
128
|
) -> _InvokeEndpointAsyncResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -31,6 +31,8 @@ module Aws::SageMakerRuntime
|
|
|
31
31
|
attr_accessor custom_attributes: ::String
|
|
32
32
|
attr_accessor inference_id: ::String
|
|
33
33
|
attr_accessor input_location: ::String
|
|
34
|
+
attr_accessor s3_output_path_extension: ::String
|
|
35
|
+
attr_accessor filename: ::String
|
|
34
36
|
attr_accessor request_ttl_seconds: ::Integer
|
|
35
37
|
attr_accessor invocation_timeout_seconds: ::Integer
|
|
36
38
|
SENSITIVE: [:custom_attributes]
|