aws-sdk-sagemakerruntime 1.47.0 → 1.49.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
2
  SHA256:
3
- metadata.gz: 62a1d3e87f50574f04a01a34d05f176d716262efee3c34bfdc464859940baafe
4
- data.tar.gz: 387e4a420252ccab7ea523dfda3f63f5448b862a41046aaface36b7df7ddef14
3
+ metadata.gz: c6c3e4f8c2fa50885fa314d4ce22dd3d89cae7cc5def27a02d8c02c54cd04a9f
4
+ data.tar.gz: e7e656236de0df45df38046cd103ed900e509520b612e476210180c5f36b0f69
5
5
  SHA512:
6
- metadata.gz: 907f648fcff7cce391834de68055ff0b8ee12ab93b15ad13c4a32d42d47f565e4907084e455a39d85ad67a9ca557d00b41617a41e1f5595060a0bd21d3e01b09
7
- data.tar.gz: 0e1deb00bc4813528ec6adfc93665545e95c5b38f890e4140ea73a369b4483a5d09029d0fe9ee46c23150bc5cb7611007bc14b6a0cb0ff8b82c5bb6f233452c7
6
+ metadata.gz: 59b2a9db22a0aceeaf9ec3985146b23e46f193f3a1b6b8acaa7f925d279c76c6747ae28d7b4930f7d6883415b24bbc2df495d4724e26e3c0ea1cc488a86d82d0
7
+ data.tar.gz: 1ebaac1970698a5bdc0c9e18d185de831d65de463171fa2d7dd52d2779ccfd4340d486ed7c2cd7b116dc7e68a3a81213da491656be7dc11248f0040f87fa647d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.49.0 (2023-04-04)
5
+ ------------------
6
+
7
+ * Feature - Amazon SageMaker Asynchronous Inference now provides customers a FailureLocation as a response parameter in InvokeEndpointAsync API to capture the model failure responses.
8
+
9
+ 1.48.0 (2023-04-04)
10
+ ------------------
11
+
12
+ * Feature - Amazon SageMaker Asynchronous Inference now provides customers a FailureLocation as a response parameter in InvokeEndpointAsync API to capture the model failure responses.
13
+
4
14
  1.47.0 (2023-03-16)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.47.0
1
+ 1.49.0
@@ -611,6 +611,7 @@ module Aws::SageMakerRuntime
611
611
  #
612
612
  # * {Types::InvokeEndpointAsyncOutput#inference_id #inference_id} => String
613
613
  # * {Types::InvokeEndpointAsyncOutput#output_location #output_location} => String
614
+ # * {Types::InvokeEndpointAsyncOutput#failure_location #failure_location} => String
614
615
  #
615
616
  # @example Request syntax with placeholder values
616
617
  #
@@ -629,6 +630,7 @@ module Aws::SageMakerRuntime
629
630
  #
630
631
  # resp.inference_id #=> String
631
632
  # resp.output_location #=> String
633
+ # resp.failure_location #=> String
632
634
  #
633
635
  # @see http://docs.aws.amazon.com/goto/WebAPI/runtime.sagemaker-2017-05-13/InvokeEndpointAsync AWS API Documentation
634
636
  #
@@ -652,7 +654,7 @@ module Aws::SageMakerRuntime
652
654
  params: params,
653
655
  config: config)
654
656
  context[:gem_name] = 'aws-sdk-sagemakerruntime'
655
- context[:gem_version] = '1.47.0'
657
+ context[:gem_version] = '1.49.0'
656
658
  Seahorse::Client::Request.new(handlers, context)
657
659
  end
658
660
 
@@ -57,6 +57,7 @@ module Aws::SageMakerRuntime
57
57
 
58
58
  InvokeEndpointAsyncOutput.add_member(:inference_id, Shapes::ShapeRef.new(shape: Header, location_name: "InferenceId"))
59
59
  InvokeEndpointAsyncOutput.add_member(:output_location, Shapes::ShapeRef.new(shape: Header, location: "header", location_name: "X-Amzn-SageMaker-OutputLocation"))
60
+ InvokeEndpointAsyncOutput.add_member(:failure_location, Shapes::ShapeRef.new(shape: Header, location: "header", location_name: "X-Amzn-SageMaker-FailureLocation"))
60
61
  InvokeEndpointAsyncOutput.struct_class = Types::InvokeEndpointAsyncOutput
61
62
 
62
63
  InvokeEndpointInput.add_member(:endpoint_name, Shapes::ShapeRef.new(shape: EndpointName, required: true, location: "uri", location_name: "EndpointName"))
@@ -123,11 +123,17 @@ module Aws::SageMakerRuntime
123
123
  # The Amazon S3 URI where the inference response payload is stored.
124
124
  # @return [String]
125
125
  #
126
+ # @!attribute [rw] failure_location
127
+ # The Amazon S3 URI where the inference failure response payload is
128
+ # stored.
129
+ # @return [String]
130
+ #
126
131
  # @see http://docs.aws.amazon.com/goto/WebAPI/runtime.sagemaker-2017-05-13/InvokeEndpointAsyncOutput AWS API Documentation
127
132
  #
128
133
  class InvokeEndpointAsyncOutput < Struct.new(
129
134
  :inference_id,
130
- :output_location)
135
+ :output_location,
136
+ :failure_location)
131
137
  SENSITIVE = []
132
138
  include Aws::Structure
133
139
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-sagemakerruntime/customizations'
52
52
  # @!group service
53
53
  module Aws::SageMakerRuntime
54
54
 
55
- GEM_VERSION = '1.47.0'
55
+ GEM_VERSION = '1.49.0'
56
56
 
57
57
  end
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.47.0
4
+ version: 1.49.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: 2023-03-16 00:00:00.000000000 Z
11
+ date: 2023-04-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core