aws-sdk-sagemaker 1.187.0 → 1.189.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +185 -69
- data/lib/aws-sdk-sagemaker/client_api.rb +54 -0
- data/lib/aws-sdk-sagemaker/types.rb +493 -76
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +2 -2
@@ -137,7 +137,10 @@ module Aws::SageMaker
|
|
137
137
|
AutoMLPartialFailureReason = Shapes::StructureShape.new(name: 'AutoMLPartialFailureReason')
|
138
138
|
AutoMLPartialFailureReasons = Shapes::ListShape.new(name: 'AutoMLPartialFailureReasons')
|
139
139
|
AutoMLProblemTypeConfig = Shapes::UnionShape.new(name: 'AutoMLProblemTypeConfig')
|
140
|
+
AutoMLProblemTypeConfigName = Shapes::StringShape.new(name: 'AutoMLProblemTypeConfigName')
|
141
|
+
AutoMLProblemTypeResolvedAttributes = Shapes::UnionShape.new(name: 'AutoMLProblemTypeResolvedAttributes')
|
140
142
|
AutoMLProcessingUnit = Shapes::StringShape.new(name: 'AutoMLProcessingUnit')
|
143
|
+
AutoMLResolvedAttributes = Shapes::StructureShape.new(name: 'AutoMLResolvedAttributes')
|
141
144
|
AutoMLS3DataSource = Shapes::StructureShape.new(name: 'AutoMLS3DataSource')
|
142
145
|
AutoMLS3DataType = Shapes::StringShape.new(name: 'AutoMLS3DataType')
|
143
146
|
AutoMLSecurityConfig = Shapes::StructureShape.new(name: 'AutoMLSecurityConfig')
|
@@ -171,6 +174,7 @@ module Aws::SageMaker
|
|
171
174
|
CallbackToken = Shapes::StringShape.new(name: 'CallbackToken')
|
172
175
|
CandidateArtifactLocations = Shapes::StructureShape.new(name: 'CandidateArtifactLocations')
|
173
176
|
CandidateDefinitionNotebookLocation = Shapes::StringShape.new(name: 'CandidateDefinitionNotebookLocation')
|
177
|
+
CandidateGenerationConfig = Shapes::StructureShape.new(name: 'CandidateGenerationConfig')
|
174
178
|
CandidateName = Shapes::StringShape.new(name: 'CandidateName')
|
175
179
|
CandidateProperties = Shapes::StructureShape.new(name: 'CandidateProperties')
|
176
180
|
CandidateSortBy = Shapes::StringShape.new(name: 'CandidateSortBy')
|
@@ -1242,6 +1246,7 @@ module Aws::SageMaker
|
|
1242
1246
|
ModelCardVersionSummary = Shapes::StructureShape.new(name: 'ModelCardVersionSummary')
|
1243
1247
|
ModelCardVersionSummaryList = Shapes::ListShape.new(name: 'ModelCardVersionSummaryList')
|
1244
1248
|
ModelClientConfig = Shapes::StructureShape.new(name: 'ModelClientConfig')
|
1249
|
+
ModelCompressionType = Shapes::StringShape.new(name: 'ModelCompressionType')
|
1245
1250
|
ModelConfiguration = Shapes::StructureShape.new(name: 'ModelConfiguration')
|
1246
1251
|
ModelDashboardEndpoint = Shapes::StructureShape.new(name: 'ModelDashboardEndpoint')
|
1247
1252
|
ModelDashboardEndpoints = Shapes::ListShape.new(name: 'ModelDashboardEndpoints')
|
@@ -1251,6 +1256,7 @@ module Aws::SageMaker
|
|
1251
1256
|
ModelDashboardMonitoringSchedule = Shapes::StructureShape.new(name: 'ModelDashboardMonitoringSchedule')
|
1252
1257
|
ModelDashboardMonitoringSchedules = Shapes::ListShape.new(name: 'ModelDashboardMonitoringSchedules')
|
1253
1258
|
ModelDataQuality = Shapes::StructureShape.new(name: 'ModelDataQuality')
|
1259
|
+
ModelDataSource = Shapes::StructureShape.new(name: 'ModelDataSource')
|
1254
1260
|
ModelDeployConfig = Shapes::StructureShape.new(name: 'ModelDeployConfig')
|
1255
1261
|
ModelDeployResult = Shapes::StructureShape.new(name: 'ModelDeployResult')
|
1256
1262
|
ModelDigests = Shapes::StructureShape.new(name: 'ModelDigests')
|
@@ -1424,6 +1430,7 @@ module Aws::SageMaker
|
|
1424
1430
|
OptionalInteger = Shapes::IntegerShape.new(name: 'OptionalInteger')
|
1425
1431
|
OptionalVolumeSizeInGB = Shapes::IntegerShape.new(name: 'OptionalVolumeSizeInGB')
|
1426
1432
|
OrderKey = Shapes::StringShape.new(name: 'OrderKey')
|
1433
|
+
OutputCompressionType = Shapes::StringShape.new(name: 'OutputCompressionType')
|
1427
1434
|
OutputConfig = Shapes::StructureShape.new(name: 'OutputConfig')
|
1428
1435
|
OutputDataConfig = Shapes::StructureShape.new(name: 'OutputDataConfig')
|
1429
1436
|
OutputParameter = Shapes::StructureShape.new(name: 'OutputParameter')
|
@@ -1653,6 +1660,9 @@ module Aws::SageMaker
|
|
1653
1660
|
S3DataDistribution = Shapes::StringShape.new(name: 'S3DataDistribution')
|
1654
1661
|
S3DataSource = Shapes::StructureShape.new(name: 'S3DataSource')
|
1655
1662
|
S3DataType = Shapes::StringShape.new(name: 'S3DataType')
|
1663
|
+
S3ModelDataSource = Shapes::StructureShape.new(name: 'S3ModelDataSource')
|
1664
|
+
S3ModelDataType = Shapes::StringShape.new(name: 'S3ModelDataType')
|
1665
|
+
S3ModelUri = Shapes::StringShape.new(name: 'S3ModelUri')
|
1656
1666
|
S3OutputPath = Shapes::StringShape.new(name: 'S3OutputPath')
|
1657
1667
|
S3StorageConfig = Shapes::StructureShape.new(name: 'S3StorageConfig')
|
1658
1668
|
S3Uri = Shapes::StringShape.new(name: 'S3Uri')
|
@@ -1786,6 +1796,8 @@ module Aws::SageMaker
|
|
1786
1796
|
SuggestionQuery = Shapes::StructureShape.new(name: 'SuggestionQuery')
|
1787
1797
|
TableFormat = Shapes::StringShape.new(name: 'TableFormat')
|
1788
1798
|
TableName = Shapes::StringShape.new(name: 'TableName')
|
1799
|
+
TabularJobConfig = Shapes::StructureShape.new(name: 'TabularJobConfig')
|
1800
|
+
TabularResolvedAttributes = Shapes::StructureShape.new(name: 'TabularResolvedAttributes')
|
1789
1801
|
Tag = Shapes::StructureShape.new(name: 'Tag')
|
1790
1802
|
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
1791
1803
|
TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
|
@@ -2327,12 +2339,25 @@ module Aws::SageMaker
|
|
2327
2339
|
|
2328
2340
|
AutoMLProblemTypeConfig.add_member(:image_classification_job_config, Shapes::ShapeRef.new(shape: ImageClassificationJobConfig, location_name: "ImageClassificationJobConfig"))
|
2329
2341
|
AutoMLProblemTypeConfig.add_member(:text_classification_job_config, Shapes::ShapeRef.new(shape: TextClassificationJobConfig, location_name: "TextClassificationJobConfig"))
|
2342
|
+
AutoMLProblemTypeConfig.add_member(:tabular_job_config, Shapes::ShapeRef.new(shape: TabularJobConfig, location_name: "TabularJobConfig"))
|
2330
2343
|
AutoMLProblemTypeConfig.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
2331
2344
|
AutoMLProblemTypeConfig.add_member_subclass(:image_classification_job_config, Types::AutoMLProblemTypeConfig::ImageClassificationJobConfig)
|
2332
2345
|
AutoMLProblemTypeConfig.add_member_subclass(:text_classification_job_config, Types::AutoMLProblemTypeConfig::TextClassificationJobConfig)
|
2346
|
+
AutoMLProblemTypeConfig.add_member_subclass(:tabular_job_config, Types::AutoMLProblemTypeConfig::TabularJobConfig)
|
2333
2347
|
AutoMLProblemTypeConfig.add_member_subclass(:unknown, Types::AutoMLProblemTypeConfig::Unknown)
|
2334
2348
|
AutoMLProblemTypeConfig.struct_class = Types::AutoMLProblemTypeConfig
|
2335
2349
|
|
2350
|
+
AutoMLProblemTypeResolvedAttributes.add_member(:tabular_resolved_attributes, Shapes::ShapeRef.new(shape: TabularResolvedAttributes, location_name: "TabularResolvedAttributes"))
|
2351
|
+
AutoMLProblemTypeResolvedAttributes.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
2352
|
+
AutoMLProblemTypeResolvedAttributes.add_member_subclass(:tabular_resolved_attributes, Types::AutoMLProblemTypeResolvedAttributes::TabularResolvedAttributes)
|
2353
|
+
AutoMLProblemTypeResolvedAttributes.add_member_subclass(:unknown, Types::AutoMLProblemTypeResolvedAttributes::Unknown)
|
2354
|
+
AutoMLProblemTypeResolvedAttributes.struct_class = Types::AutoMLProblemTypeResolvedAttributes
|
2355
|
+
|
2356
|
+
AutoMLResolvedAttributes.add_member(:auto_ml_job_objective, Shapes::ShapeRef.new(shape: AutoMLJobObjective, location_name: "AutoMLJobObjective"))
|
2357
|
+
AutoMLResolvedAttributes.add_member(:completion_criteria, Shapes::ShapeRef.new(shape: AutoMLJobCompletionCriteria, location_name: "CompletionCriteria"))
|
2358
|
+
AutoMLResolvedAttributes.add_member(:auto_ml_problem_type_resolved_attributes, Shapes::ShapeRef.new(shape: AutoMLProblemTypeResolvedAttributes, location_name: "AutoMLProblemTypeResolvedAttributes"))
|
2359
|
+
AutoMLResolvedAttributes.struct_class = Types::AutoMLResolvedAttributes
|
2360
|
+
|
2336
2361
|
AutoMLS3DataSource.add_member(:s3_data_type, Shapes::ShapeRef.new(shape: AutoMLS3DataType, required: true, location_name: "S3DataType"))
|
2337
2362
|
AutoMLS3DataSource.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "S3Uri"))
|
2338
2363
|
AutoMLS3DataSource.struct_class = Types::AutoMLS3DataSource
|
@@ -2421,6 +2446,9 @@ module Aws::SageMaker
|
|
2421
2446
|
CandidateArtifactLocations.add_member(:model_insights, Shapes::ShapeRef.new(shape: ModelInsightsLocation, location_name: "ModelInsights"))
|
2422
2447
|
CandidateArtifactLocations.struct_class = Types::CandidateArtifactLocations
|
2423
2448
|
|
2449
|
+
CandidateGenerationConfig.add_member(:algorithms_config, Shapes::ShapeRef.new(shape: AutoMLAlgorithmsConfig, location_name: "AlgorithmsConfig"))
|
2450
|
+
CandidateGenerationConfig.struct_class = Types::CandidateGenerationConfig
|
2451
|
+
|
2424
2452
|
CandidateProperties.add_member(:candidate_artifact_locations, Shapes::ShapeRef.new(shape: CandidateArtifactLocations, location_name: "CandidateArtifactLocations"))
|
2425
2453
|
CandidateProperties.add_member(:candidate_metrics, Shapes::ShapeRef.new(shape: MetricDataList, location_name: "CandidateMetrics"))
|
2426
2454
|
CandidateProperties.struct_class = Types::CandidateProperties
|
@@ -2602,6 +2630,7 @@ module Aws::SageMaker
|
|
2602
2630
|
ContainerDefinition.add_member(:model_package_name, Shapes::ShapeRef.new(shape: VersionedArnOrName, location_name: "ModelPackageName"))
|
2603
2631
|
ContainerDefinition.add_member(:inference_specification_name, Shapes::ShapeRef.new(shape: InferenceSpecificationName, location_name: "InferenceSpecificationName"))
|
2604
2632
|
ContainerDefinition.add_member(:multi_model_config, Shapes::ShapeRef.new(shape: MultiModelConfig, location_name: "MultiModelConfig"))
|
2633
|
+
ContainerDefinition.add_member(:model_data_source, Shapes::ShapeRef.new(shape: ModelDataSource, location_name: "ModelDataSource"))
|
2605
2634
|
ContainerDefinition.struct_class = Types::ContainerDefinition
|
2606
2635
|
|
2607
2636
|
ContainerDefinitionList.member = Shapes::ShapeRef.new(shape: ContainerDefinition)
|
@@ -3764,6 +3793,9 @@ module Aws::SageMaker
|
|
3764
3793
|
DescribeAutoMLJobV2Response.add_member(:model_deploy_result, Shapes::ShapeRef.new(shape: ModelDeployResult, location_name: "ModelDeployResult"))
|
3765
3794
|
DescribeAutoMLJobV2Response.add_member(:data_split_config, Shapes::ShapeRef.new(shape: AutoMLDataSplitConfig, location_name: "DataSplitConfig"))
|
3766
3795
|
DescribeAutoMLJobV2Response.add_member(:security_config, Shapes::ShapeRef.new(shape: AutoMLSecurityConfig, location_name: "SecurityConfig"))
|
3796
|
+
DescribeAutoMLJobV2Response.add_member(:auto_ml_job_artifacts, Shapes::ShapeRef.new(shape: AutoMLJobArtifacts, location_name: "AutoMLJobArtifacts"))
|
3797
|
+
DescribeAutoMLJobV2Response.add_member(:resolved_attributes, Shapes::ShapeRef.new(shape: AutoMLResolvedAttributes, location_name: "ResolvedAttributes"))
|
3798
|
+
DescribeAutoMLJobV2Response.add_member(:auto_ml_problem_type_config_name, Shapes::ShapeRef.new(shape: AutoMLProblemTypeConfigName, location_name: "AutoMLProblemTypeConfigName"))
|
3767
3799
|
DescribeAutoMLJobV2Response.struct_class = Types::DescribeAutoMLJobV2Response
|
3768
3800
|
|
3769
3801
|
DescribeCodeRepositoryInput.add_member(:code_repository_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "CodeRepositoryName"))
|
@@ -6828,6 +6860,9 @@ module Aws::SageMaker
|
|
6828
6860
|
ModelDataQuality.add_member(:constraints, Shapes::ShapeRef.new(shape: MetricsSource, location_name: "Constraints"))
|
6829
6861
|
ModelDataQuality.struct_class = Types::ModelDataQuality
|
6830
6862
|
|
6863
|
+
ModelDataSource.add_member(:s3_data_source, Shapes::ShapeRef.new(shape: S3ModelDataSource, required: true, location_name: "S3DataSource"))
|
6864
|
+
ModelDataSource.struct_class = Types::ModelDataSource
|
6865
|
+
|
6831
6866
|
ModelDeployConfig.add_member(:auto_generate_endpoint_name, Shapes::ShapeRef.new(shape: AutoGenerateEndpointName, location_name: "AutoGenerateEndpointName"))
|
6832
6867
|
ModelDeployConfig.add_member(:endpoint_name, Shapes::ShapeRef.new(shape: EndpointName, location_name: "EndpointName"))
|
6833
6868
|
ModelDeployConfig.struct_class = Types::ModelDeployConfig
|
@@ -7311,6 +7346,7 @@ module Aws::SageMaker
|
|
7311
7346
|
|
7312
7347
|
OutputDataConfig.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
|
7313
7348
|
OutputDataConfig.add_member(:s3_output_path, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "S3OutputPath"))
|
7349
|
+
OutputDataConfig.add_member(:compression_type, Shapes::ShapeRef.new(shape: OutputCompressionType, location_name: "CompressionType"))
|
7314
7350
|
OutputDataConfig.struct_class = Types::OutputDataConfig
|
7315
7351
|
|
7316
7352
|
OutputParameter.add_member(:name, Shapes::ShapeRef.new(shape: String256, required: true, location_name: "Name"))
|
@@ -7947,6 +7983,11 @@ module Aws::SageMaker
|
|
7947
7983
|
S3DataSource.add_member(:instance_group_names, Shapes::ShapeRef.new(shape: InstanceGroupNames, location_name: "InstanceGroupNames"))
|
7948
7984
|
S3DataSource.struct_class = Types::S3DataSource
|
7949
7985
|
|
7986
|
+
S3ModelDataSource.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3ModelUri, required: true, location_name: "S3Uri"))
|
7987
|
+
S3ModelDataSource.add_member(:s3_data_type, Shapes::ShapeRef.new(shape: S3ModelDataType, required: true, location_name: "S3DataType"))
|
7988
|
+
S3ModelDataSource.add_member(:compression_type, Shapes::ShapeRef.new(shape: ModelCompressionType, required: true, location_name: "CompressionType"))
|
7989
|
+
S3ModelDataSource.struct_class = Types::S3ModelDataSource
|
7990
|
+
|
7950
7991
|
S3StorageConfig.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "S3Uri"))
|
7951
7992
|
S3StorageConfig.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
|
7952
7993
|
S3StorageConfig.add_member(:resolved_output_s3_uri, Shapes::ShapeRef.new(shape: S3Uri, location_name: "ResolvedOutputS3Uri"))
|
@@ -8200,6 +8241,19 @@ module Aws::SageMaker
|
|
8200
8241
|
SuggestionQuery.add_member(:property_name_query, Shapes::ShapeRef.new(shape: PropertyNameQuery, location_name: "PropertyNameQuery"))
|
8201
8242
|
SuggestionQuery.struct_class = Types::SuggestionQuery
|
8202
8243
|
|
8244
|
+
TabularJobConfig.add_member(:candidate_generation_config, Shapes::ShapeRef.new(shape: CandidateGenerationConfig, location_name: "CandidateGenerationConfig"))
|
8245
|
+
TabularJobConfig.add_member(:completion_criteria, Shapes::ShapeRef.new(shape: AutoMLJobCompletionCriteria, location_name: "CompletionCriteria"))
|
8246
|
+
TabularJobConfig.add_member(:feature_specification_s3_uri, Shapes::ShapeRef.new(shape: S3Uri, location_name: "FeatureSpecificationS3Uri"))
|
8247
|
+
TabularJobConfig.add_member(:mode, Shapes::ShapeRef.new(shape: AutoMLMode, location_name: "Mode"))
|
8248
|
+
TabularJobConfig.add_member(:generate_candidate_definitions_only, Shapes::ShapeRef.new(shape: GenerateCandidateDefinitionsOnly, location_name: "GenerateCandidateDefinitionsOnly"))
|
8249
|
+
TabularJobConfig.add_member(:problem_type, Shapes::ShapeRef.new(shape: ProblemType, location_name: "ProblemType"))
|
8250
|
+
TabularJobConfig.add_member(:target_attribute_name, Shapes::ShapeRef.new(shape: TargetAttributeName, required: true, location_name: "TargetAttributeName"))
|
8251
|
+
TabularJobConfig.add_member(:sample_weight_attribute_name, Shapes::ShapeRef.new(shape: SampleWeightAttributeName, location_name: "SampleWeightAttributeName"))
|
8252
|
+
TabularJobConfig.struct_class = Types::TabularJobConfig
|
8253
|
+
|
8254
|
+
TabularResolvedAttributes.add_member(:problem_type, Shapes::ShapeRef.new(shape: ProblemType, location_name: "ProblemType"))
|
8255
|
+
TabularResolvedAttributes.struct_class = Types::TabularResolvedAttributes
|
8256
|
+
|
8203
8257
|
Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "Key"))
|
8204
8258
|
Tag.add_member(:value, Shapes::ShapeRef.new(shape: TagValue, required: true, location_name: "Value"))
|
8205
8259
|
Tag.struct_class = Types::Tag
|