aws-sdk-sagemaker 1.330.0 → 1.331.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-sagemaker/client.rb +1 -1
- data/lib/aws-sdk-sagemaker/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-sagemaker.rb +1 -1
- 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: de7a7c5959ed32df768d9b1829b92dd75a699dc051513482498f4b1bc486a84c
|
|
4
|
+
data.tar.gz: 2778e5274a3f8daec23417ff0205a0f4a5632a6b39d153711e8863c15cf952ea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e8175ca401c373a082d03f4319c56aa87c8334dfab4382505384b17749fb19634c201d05032262fca7552598fe685b378e56b75598230ae06cda0d794970b48f
|
|
7
|
+
data.tar.gz: 4072092966576bfdcef00d1ab5bda663a2d4ad40a5150e313a809d5c9ce6df38dc3a5ee5f1b4c535dd006815a41eb2534debe0bf7f1dd808c740fb04c1c01d95
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.331.0
|
|
@@ -31196,7 +31196,7 @@ module Aws::SageMaker
|
|
|
31196
31196
|
tracer: tracer
|
|
31197
31197
|
)
|
|
31198
31198
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
|
31199
|
-
context[:gem_version] = '1.
|
|
31199
|
+
context[:gem_version] = '1.331.0'
|
|
31200
31200
|
Seahorse::Client::Request.new(handlers, context)
|
|
31201
31201
|
end
|
|
31202
31202
|
|
|
@@ -13,22 +13,22 @@ module Aws::SageMaker
|
|
|
13
13
|
# @!attribute region
|
|
14
14
|
# The AWS region used to dispatch the request.
|
|
15
15
|
#
|
|
16
|
-
# @return [
|
|
16
|
+
# @return [string]
|
|
17
17
|
#
|
|
18
18
|
# @!attribute use_dual_stack
|
|
19
19
|
# When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
|
|
20
20
|
#
|
|
21
|
-
# @return [
|
|
21
|
+
# @return [boolean]
|
|
22
22
|
#
|
|
23
23
|
# @!attribute use_fips
|
|
24
24
|
# When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
|
|
25
25
|
#
|
|
26
|
-
# @return [
|
|
26
|
+
# @return [boolean]
|
|
27
27
|
#
|
|
28
28
|
# @!attribute endpoint
|
|
29
29
|
# Override the endpoint used to send this request
|
|
30
30
|
#
|
|
31
|
-
# @return [
|
|
31
|
+
# @return [string]
|
|
32
32
|
#
|
|
33
33
|
EndpointParameters = Struct.new(
|
|
34
34
|
:region,
|
data/lib/aws-sdk-sagemaker.rb
CHANGED