aws-sdk-sagemakerruntime 1.29.0 → 1.30.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2597f4295a90f8536ef35ff25ebfdc9f028f553eeb2561c6a77cfda19714ed04
|
|
4
|
+
data.tar.gz: a3c8d1b0ccf7d6332d72c6460119cc6ca3f8bcb476024b37c9113dded785fb03
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 19e3cfa618d814f1cc54d7cd4b13c65c27f9d08780f4c9d30a25466f68e4f3a45df783e697478f3dfb2c293d1f0ed4ed27309707e6921e5d93bc941b03040de4
|
|
7
|
+
data.tar.gz: 65347b213ff37cf98a0558c19b153c2a8e169721e25c0f9fb5a5ac09d6c287ae954fb05062847d63a17c23b3e28e7e8df5fd49661f7a5025d464d6a480cb8931
|
|
@@ -426,6 +426,11 @@ module Aws::SageMakerRuntime
|
|
|
426
426
|
#
|
|
427
427
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-ab-testing.html
|
|
428
428
|
#
|
|
429
|
+
# @option params [String] :target_container_hostname
|
|
430
|
+
# If the endpoint hosts multiple containers and is configured to use
|
|
431
|
+
# direct invocation, this parameter specifies the host name of the
|
|
432
|
+
# container to invoke.
|
|
433
|
+
#
|
|
429
434
|
# @option params [String] :inference_id
|
|
430
435
|
# If you provide a value, it is added to the captured data when you
|
|
431
436
|
# enable data capture on the endpoint. For information about data
|
|
@@ -452,6 +457,7 @@ module Aws::SageMakerRuntime
|
|
|
452
457
|
# custom_attributes: "CustomAttributesHeader",
|
|
453
458
|
# target_model: "TargetModelHeader",
|
|
454
459
|
# target_variant: "TargetVariantHeader",
|
|
460
|
+
# target_container_hostname: "TargetContainerHostnameHeader",
|
|
455
461
|
# inference_id: "InferenceId",
|
|
456
462
|
# })
|
|
457
463
|
#
|
|
@@ -484,7 +490,7 @@ module Aws::SageMakerRuntime
|
|
|
484
490
|
params: params,
|
|
485
491
|
config: config)
|
|
486
492
|
context[:gem_name] = 'aws-sdk-sagemakerruntime'
|
|
487
|
-
context[:gem_version] = '1.
|
|
493
|
+
context[:gem_version] = '1.30.0'
|
|
488
494
|
Seahorse::Client::Request.new(handlers, context)
|
|
489
495
|
end
|
|
490
496
|
|
|
@@ -26,6 +26,7 @@ module Aws::SageMakerRuntime
|
|
|
26
26
|
ModelError = Shapes::StructureShape.new(name: 'ModelError')
|
|
27
27
|
ServiceUnavailable = Shapes::StructureShape.new(name: 'ServiceUnavailable')
|
|
28
28
|
StatusCode = Shapes::IntegerShape.new(name: 'StatusCode')
|
|
29
|
+
TargetContainerHostnameHeader = Shapes::StringShape.new(name: 'TargetContainerHostnameHeader')
|
|
29
30
|
TargetModelHeader = Shapes::StringShape.new(name: 'TargetModelHeader')
|
|
30
31
|
TargetVariantHeader = Shapes::StringShape.new(name: 'TargetVariantHeader')
|
|
31
32
|
ValidationError = Shapes::StructureShape.new(name: 'ValidationError')
|
|
@@ -40,6 +41,7 @@ module Aws::SageMakerRuntime
|
|
|
40
41
|
InvokeEndpointInput.add_member(:custom_attributes, Shapes::ShapeRef.new(shape: CustomAttributesHeader, location: "header", location_name: "X-Amzn-SageMaker-Custom-Attributes"))
|
|
41
42
|
InvokeEndpointInput.add_member(:target_model, Shapes::ShapeRef.new(shape: TargetModelHeader, location: "header", location_name: "X-Amzn-SageMaker-Target-Model"))
|
|
42
43
|
InvokeEndpointInput.add_member(:target_variant, Shapes::ShapeRef.new(shape: TargetVariantHeader, location: "header", location_name: "X-Amzn-SageMaker-Target-Variant"))
|
|
44
|
+
InvokeEndpointInput.add_member(:target_container_hostname, Shapes::ShapeRef.new(shape: TargetContainerHostnameHeader, location: "header", location_name: "X-Amzn-SageMaker-Target-Container-Hostname"))
|
|
43
45
|
InvokeEndpointInput.add_member(:inference_id, Shapes::ShapeRef.new(shape: InferenceId, location: "header", location_name: "X-Amzn-SageMaker-Inference-Id"))
|
|
44
46
|
InvokeEndpointInput.struct_class = Types::InvokeEndpointInput
|
|
45
47
|
InvokeEndpointInput[:payload] = :body
|
|
@@ -34,6 +34,7 @@ module Aws::SageMakerRuntime
|
|
|
34
34
|
# custom_attributes: "CustomAttributesHeader",
|
|
35
35
|
# target_model: "TargetModelHeader",
|
|
36
36
|
# target_variant: "TargetVariantHeader",
|
|
37
|
+
# target_container_hostname: "TargetContainerHostnameHeader",
|
|
37
38
|
# inference_id: "InferenceId",
|
|
38
39
|
# }
|
|
39
40
|
#
|
|
@@ -112,6 +113,12 @@ module Aws::SageMakerRuntime
|
|
|
112
113
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-ab-testing.html
|
|
113
114
|
# @return [String]
|
|
114
115
|
#
|
|
116
|
+
# @!attribute [rw] target_container_hostname
|
|
117
|
+
# If the endpoint hosts multiple containers and is configured to use
|
|
118
|
+
# direct invocation, this parameter specifies the host name of the
|
|
119
|
+
# container to invoke.
|
|
120
|
+
# @return [String]
|
|
121
|
+
#
|
|
115
122
|
# @!attribute [rw] inference_id
|
|
116
123
|
# If you provide a value, it is added to the captured data when you
|
|
117
124
|
# enable data capture on the endpoint. For information about data
|
|
@@ -132,6 +139,7 @@ module Aws::SageMakerRuntime
|
|
|
132
139
|
:custom_attributes,
|
|
133
140
|
:target_model,
|
|
134
141
|
:target_variant,
|
|
142
|
+
:target_container_hostname,
|
|
135
143
|
:inference_id)
|
|
136
144
|
SENSITIVE = [:body, :custom_attributes]
|
|
137
145
|
include Aws::Structure
|
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.30.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: 2021-02-
|
|
11
|
+
date: 2021-02-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|