aws-sdk-sagemaker 1.361.0 → 1.362.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/types.rb +10 -5
- 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: 12e31a52276bc4e2448e0bf763bc68fdf79cbd1d6aae00b3358e56848595237b
|
|
4
|
+
data.tar.gz: 1f50e95c0b1a04eb18e04fe1ab5ba46d2b65bdde111aed651706d8e365e6490f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 79991415873c552805d50141b0196f3a9f596324c382f0518a9ba527f2fe2508c57c33ed1c853c6804727283d545de9a581c0ec5ec5c6efd2c4e94327ddb0433
|
|
7
|
+
data.tar.gz: 3c8147bafe1de6210895c511a4777bc22d9e1a0bee37e8448f0c0ad01bc989d9c17a39a06396375d1291864ea23cf751243dde116f83aa312b5b08f5241dbbfa
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.362.0 (2026-04-27)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Updated API documentation for endpoint MetricsConfig. Added details on supported metric publish frequencies and clarified how EnableEnhancedMetrics controls utilization and invocation metric behavior.
|
|
8
|
+
|
|
4
9
|
1.361.0 (2026-04-21)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.362.0
|
|
@@ -33579,7 +33579,7 @@ module Aws::SageMaker
|
|
|
33579
33579
|
tracer: tracer
|
|
33580
33580
|
)
|
|
33581
33581
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
|
33582
|
-
context[:gem_version] = '1.
|
|
33582
|
+
context[:gem_version] = '1.362.0'
|
|
33583
33583
|
Seahorse::Client::Request.new(handlers, context)
|
|
33584
33584
|
end
|
|
33585
33585
|
|
|
@@ -39138,14 +39138,19 @@ module Aws::SageMaker
|
|
|
39138
39138
|
#
|
|
39139
39139
|
# @!attribute [rw] enable_enhanced_metrics
|
|
39140
39140
|
# Specifies whether to enable enhanced metrics for the endpoint.
|
|
39141
|
-
# Enhanced metrics provide utilization data at instance
|
|
39142
|
-
# granularity. Container granularity is supported for
|
|
39143
|
-
# Components. The default is `False`.
|
|
39141
|
+
# Enhanced metrics provide utilization and invocation data at instance
|
|
39142
|
+
# and container granularity. Container granularity is supported for
|
|
39143
|
+
# Inference Components. The default is `False`.
|
|
39144
39144
|
# @return [Boolean]
|
|
39145
39145
|
#
|
|
39146
39146
|
# @!attribute [rw] metric_publish_frequency_in_seconds
|
|
39147
|
-
# The
|
|
39148
|
-
#
|
|
39147
|
+
# The interval, in seconds, at which metrics are published to Amazon
|
|
39148
|
+
# CloudWatch. Defaults to `60`. Valid values: `10`, `30`, `60`, `120`,
|
|
39149
|
+
# `180`, `240`, `300`. When `EnableEnhancedMetrics` is set to `False`,
|
|
39150
|
+
# this interval applies to utilization metrics only; invocation
|
|
39151
|
+
# metrics continue to be published at the default 60-second interval.
|
|
39152
|
+
# When `EnableEnhancedMetrics` is set to `True`, this interval applies
|
|
39153
|
+
# to both utilization and invocation metrics.
|
|
39149
39154
|
# @return [Integer]
|
|
39150
39155
|
#
|
|
39151
39156
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MetricsConfig AWS API Documentation
|
data/lib/aws-sdk-sagemaker.rb
CHANGED