aws-sdk-sagemaker 1.173.0 → 1.175.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +402 -186
- data/lib/aws-sdk-sagemaker/client_api.rb +6 -0
- data/lib/aws-sdk-sagemaker/types.rb +742 -282
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +2 -2
@@ -1294,6 +1294,7 @@ module Aws::SageMaker
|
|
1294
1294
|
ModelQualityAppSpecification = Shapes::StructureShape.new(name: 'ModelQualityAppSpecification')
|
1295
1295
|
ModelQualityBaselineConfig = Shapes::StructureShape.new(name: 'ModelQualityBaselineConfig')
|
1296
1296
|
ModelQualityJobInput = Shapes::StructureShape.new(name: 'ModelQualityJobInput')
|
1297
|
+
ModelRegisterSettings = Shapes::StructureShape.new(name: 'ModelRegisterSettings')
|
1297
1298
|
ModelSortKey = Shapes::StringShape.new(name: 'ModelSortKey')
|
1298
1299
|
ModelStepMetadata = Shapes::StructureShape.new(name: 'ModelStepMetadata')
|
1299
1300
|
ModelSummary = Shapes::StructureShape.new(name: 'ModelSummary')
|
@@ -2400,6 +2401,7 @@ module Aws::SageMaker
|
|
2400
2401
|
CandidateSteps.member = Shapes::ShapeRef.new(shape: AutoMLCandidateStep)
|
2401
2402
|
|
2402
2403
|
CanvasAppSettings.add_member(:time_series_forecasting_settings, Shapes::ShapeRef.new(shape: TimeSeriesForecastingSettings, location_name: "TimeSeriesForecastingSettings"))
|
2404
|
+
CanvasAppSettings.add_member(:model_register_settings, Shapes::ShapeRef.new(shape: ModelRegisterSettings, location_name: "ModelRegisterSettings"))
|
2403
2405
|
CanvasAppSettings.struct_class = Types::CanvasAppSettings
|
2404
2406
|
|
2405
2407
|
CapacitySize.add_member(:type, Shapes::ShapeRef.new(shape: CapacitySizeType, required: true, location_name: "Type"))
|
@@ -6962,6 +6964,10 @@ module Aws::SageMaker
|
|
6962
6964
|
ModelQualityJobInput.add_member(:ground_truth_s3_input, Shapes::ShapeRef.new(shape: MonitoringGroundTruthS3Input, required: true, location_name: "GroundTruthS3Input"))
|
6963
6965
|
ModelQualityJobInput.struct_class = Types::ModelQualityJobInput
|
6964
6966
|
|
6967
|
+
ModelRegisterSettings.add_member(:status, Shapes::ShapeRef.new(shape: FeatureStatus, location_name: "Status"))
|
6968
|
+
ModelRegisterSettings.add_member(:cross_account_model_register_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "CrossAccountModelRegisterRoleArn"))
|
6969
|
+
ModelRegisterSettings.struct_class = Types::ModelRegisterSettings
|
6970
|
+
|
6965
6971
|
ModelStepMetadata.add_member(:arn, Shapes::ShapeRef.new(shape: String256, location_name: "Arn"))
|
6966
6972
|
ModelStepMetadata.struct_class = Types::ModelStepMetadata
|
6967
6973
|
|