aws-sdk-sagemaker 1.92.0 → 1.93.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.rb +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +2 -1
- data/lib/aws-sdk-sagemaker/client_api.rb +5 -0
- data/lib/aws-sdk-sagemaker/types.rb +23 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cd4e9473512fad517d8f4a572649fbee7183b77a6bf85057a1ea8a38270e05d2
|
|
4
|
+
data.tar.gz: ea41aa031e529c9f2901fc6809e03801d4cf0194a58fa56c81c385ca13e80176
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 80ad3dd8557aa62e1f33afc3cc15de70d6956d8f14948aa63912e084c20500c56233ea1c7de06fae35c75dae122e69162343dc6241e46f23f6a9b892b1e738a7
|
|
7
|
+
data.tar.gz: a57c7c197c71ca2aa955b37be2efcd5fbccbcd3c319987820da8c347b06c0b0991ecc5f39c7d91d39b5398aef1822cd4e8c66d88e23ee13d03af2dedd6b16079
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.93.0
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
|
@@ -13731,6 +13731,7 @@ module Aws::SageMaker
|
|
|
13731
13731
|
# resp.pipeline_execution_steps[0].metadata.training_job.arn #=> String
|
|
13732
13732
|
# resp.pipeline_execution_steps[0].metadata.processing_job.arn #=> String
|
|
13733
13733
|
# resp.pipeline_execution_steps[0].metadata.transform_job.arn #=> String
|
|
13734
|
+
# resp.pipeline_execution_steps[0].metadata.tuning_job.arn #=> String
|
|
13734
13735
|
# resp.pipeline_execution_steps[0].metadata.model.arn #=> String
|
|
13735
13736
|
# resp.pipeline_execution_steps[0].metadata.register_model.arn #=> String
|
|
13736
13737
|
# resp.pipeline_execution_steps[0].metadata.condition.outcome #=> String, one of "True", "False"
|
|
@@ -17684,7 +17685,7 @@ module Aws::SageMaker
|
|
|
17684
17685
|
params: params,
|
|
17685
17686
|
config: config)
|
|
17686
17687
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
|
17687
|
-
context[:gem_version] = '1.
|
|
17688
|
+
context[:gem_version] = '1.93.0'
|
|
17688
17689
|
Seahorse::Client::Request.new(handlers, context)
|
|
17689
17690
|
end
|
|
17690
17691
|
|
|
@@ -1367,6 +1367,7 @@ module Aws::SageMaker
|
|
|
1367
1367
|
TrialSummaries = Shapes::ListShape.new(name: 'TrialSummaries')
|
|
1368
1368
|
TrialSummary = Shapes::StructureShape.new(name: 'TrialSummary')
|
|
1369
1369
|
TuningJobCompletionCriteria = Shapes::StructureShape.new(name: 'TuningJobCompletionCriteria')
|
|
1370
|
+
TuningJobStepMetaData = Shapes::StructureShape.new(name: 'TuningJobStepMetaData')
|
|
1370
1371
|
USD = Shapes::StructureShape.new(name: 'USD')
|
|
1371
1372
|
UiConfig = Shapes::StructureShape.new(name: 'UiConfig')
|
|
1372
1373
|
UiTemplate = Shapes::StructureShape.new(name: 'UiTemplate')
|
|
@@ -5265,6 +5266,7 @@ module Aws::SageMaker
|
|
|
5265
5266
|
PipelineExecutionStepMetadata.add_member(:training_job, Shapes::ShapeRef.new(shape: TrainingJobStepMetadata, location_name: "TrainingJob"))
|
|
5266
5267
|
PipelineExecutionStepMetadata.add_member(:processing_job, Shapes::ShapeRef.new(shape: ProcessingJobStepMetadata, location_name: "ProcessingJob"))
|
|
5267
5268
|
PipelineExecutionStepMetadata.add_member(:transform_job, Shapes::ShapeRef.new(shape: TransformJobStepMetadata, location_name: "TransformJob"))
|
|
5269
|
+
PipelineExecutionStepMetadata.add_member(:tuning_job, Shapes::ShapeRef.new(shape: TuningJobStepMetaData, location_name: "TuningJob"))
|
|
5268
5270
|
PipelineExecutionStepMetadata.add_member(:model, Shapes::ShapeRef.new(shape: ModelStepMetadata, location_name: "Model"))
|
|
5269
5271
|
PipelineExecutionStepMetadata.add_member(:register_model, Shapes::ShapeRef.new(shape: RegisterModelStepMetadata, location_name: "RegisterModel"))
|
|
5270
5272
|
PipelineExecutionStepMetadata.add_member(:condition, Shapes::ShapeRef.new(shape: ConditionStepMetadata, location_name: "Condition"))
|
|
@@ -6040,6 +6042,9 @@ module Aws::SageMaker
|
|
|
6040
6042
|
TuningJobCompletionCriteria.add_member(:target_objective_metric_value, Shapes::ShapeRef.new(shape: TargetObjectiveMetricValue, required: true, location_name: "TargetObjectiveMetricValue"))
|
|
6041
6043
|
TuningJobCompletionCriteria.struct_class = Types::TuningJobCompletionCriteria
|
|
6042
6044
|
|
|
6045
|
+
TuningJobStepMetaData.add_member(:arn, Shapes::ShapeRef.new(shape: HyperParameterTuningJobArn, location_name: "Arn"))
|
|
6046
|
+
TuningJobStepMetaData.struct_class = Types::TuningJobStepMetaData
|
|
6047
|
+
|
|
6043
6048
|
USD.add_member(:dollars, Shapes::ShapeRef.new(shape: Dollars, location_name: "Dollars"))
|
|
6044
6049
|
USD.add_member(:cents, Shapes::ShapeRef.new(shape: Cents, location_name: "Cents"))
|
|
6045
6050
|
USD.add_member(:tenth_fractions_of_a_cent, Shapes::ShapeRef.new(shape: TenthFractionsOfACent, location_name: "TenthFractionsOfACent"))
|
|
@@ -28309,6 +28309,11 @@ module Aws::SageMaker
|
|
|
28309
28309
|
# this step execution.
|
|
28310
28310
|
# @return [Types::TransformJobStepMetadata]
|
|
28311
28311
|
#
|
|
28312
|
+
# @!attribute [rw] tuning_job
|
|
28313
|
+
# The Amazon Resource Name (ARN) of the tuning job that was run by
|
|
28314
|
+
# this step execution.
|
|
28315
|
+
# @return [Types::TuningJobStepMetaData]
|
|
28316
|
+
#
|
|
28312
28317
|
# @!attribute [rw] model
|
|
28313
28318
|
# Metadata for the Model step.
|
|
28314
28319
|
# @return [Types::ModelStepMetadata]
|
|
@@ -28332,6 +28337,7 @@ module Aws::SageMaker
|
|
|
28332
28337
|
:training_job,
|
|
28333
28338
|
:processing_job,
|
|
28334
28339
|
:transform_job,
|
|
28340
|
+
:tuning_job,
|
|
28335
28341
|
:model,
|
|
28336
28342
|
:register_model,
|
|
28337
28343
|
:condition,
|
|
@@ -30117,8 +30123,8 @@ module Aws::SageMaker
|
|
|
30117
30123
|
# registry where your model image is hosted. Specify a value for this
|
|
30118
30124
|
# property only if you specified `Vpc` as the value for the
|
|
30119
30125
|
# `RepositoryAccessMode` field of the `ImageConfig` object that you
|
|
30120
|
-
# passed to a call to CreateModel and the private Docker registry
|
|
30121
|
-
# the model image is hosted requires authentication.
|
|
30126
|
+
# passed to a call to `CreateModel` and the private Docker registry
|
|
30127
|
+
# where the model image is hosted requires authentication.
|
|
30122
30128
|
#
|
|
30123
30129
|
# @note When making an API call, you may pass RepositoryAuthConfig
|
|
30124
30130
|
# data as a hash:
|
|
@@ -34009,6 +34015,21 @@ module Aws::SageMaker
|
|
|
34009
34015
|
include Aws::Structure
|
|
34010
34016
|
end
|
|
34011
34017
|
|
|
34018
|
+
# Metadata for a tuning step.
|
|
34019
|
+
#
|
|
34020
|
+
# @!attribute [rw] arn
|
|
34021
|
+
# The Amazon Resource Name (ARN) of the tuning job that was run by
|
|
34022
|
+
# this step execution.
|
|
34023
|
+
# @return [String]
|
|
34024
|
+
#
|
|
34025
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TuningJobStepMetaData AWS API Documentation
|
|
34026
|
+
#
|
|
34027
|
+
class TuningJobStepMetaData < Struct.new(
|
|
34028
|
+
:arn)
|
|
34029
|
+
SENSITIVE = []
|
|
34030
|
+
include Aws::Structure
|
|
34031
|
+
end
|
|
34032
|
+
|
|
34012
34033
|
# Represents an amount of money in United States dollars.
|
|
34013
34034
|
#
|
|
34014
34035
|
# @note When making an API call, you may pass USD
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-sagemaker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.93.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-07-
|
|
11
|
+
date: 2021-07-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|