aws-sdk-lookoutequipment 1.27.0 → 1.29.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a690c1a7b2dc9448d5651bab7db7b917224d09ea995b7498bdf831bf928562c4
4
- data.tar.gz: 6b00fb9ccbfcdf55fc7a58ca4dc7d7d31b81a88c2b7cd2396be60490b8443188
3
+ metadata.gz: d2a73474985eeaa9fc04164afe2ddbc6524e75ed78d3c46e6b53bc93e6b759fc
4
+ data.tar.gz: b5bfb8c6f5f9e09cac6db7d0137f6d959b3a53ec2dccce88ec01d1610049bc67
5
5
  SHA512:
6
- metadata.gz: 2d3ceee27fb989b88e6794c160b12fba1d77bb18dbe8936c8a038b4358a98f32696ab3e2efa0bb5b75ede0581ffbdfa2741ef03bdbd88f9907e489ed005043dc
7
- data.tar.gz: 5a86da76ca60d96d2b3b894533eecd016d25977e60d22d9cc35206c2c994b449c7f567d511411ce7290ddc44db46f3569a6fb062bf2e3cdd2b79e262ededca94
6
+ metadata.gz: 45a9d14705a7f7e86d1a05e80d279b8a5b48add175cc09f4651732871cc9433b019892f140f9269d3e718e9371dbcb24e5c41c2c466564d82195f51282012c82
7
+ data.tar.gz: 9de1c53fe1176303b6e06ed0486a86411064dfd92eb2f0c9373bb0c10b48ba436f46895dcc317867364d8de654267d89597a6d814cab7d559f9bcbdc32699402
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.29.0 (2024-02-21)
5
+ ------------------
6
+
7
+ * Feature - This release adds a field exposing model quality to read APIs for models. It also adds a model quality field to the API response when creating an inference scheduler.
8
+
9
+ 1.28.0 (2024-02-14)
10
+ ------------------
11
+
12
+ * Feature - This feature allows customers to see pointwise model diagnostics results for their models.
13
+
4
14
  1.27.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.27.0
1
+ 1.29.0
@@ -541,6 +541,7 @@ module Aws::LookoutEquipment
541
541
  # * {Types::CreateInferenceSchedulerResponse#inference_scheduler_arn #inference_scheduler_arn} => String
542
542
  # * {Types::CreateInferenceSchedulerResponse#inference_scheduler_name #inference_scheduler_name} => String
543
543
  # * {Types::CreateInferenceSchedulerResponse#status #status} => String
544
+ # * {Types::CreateInferenceSchedulerResponse#model_quality #model_quality} => String
544
545
  #
545
546
  # @example Request syntax with placeholder values
546
547
  #
@@ -583,6 +584,7 @@ module Aws::LookoutEquipment
583
584
  # resp.inference_scheduler_arn #=> String
584
585
  # resp.inference_scheduler_name #=> String
585
586
  # resp.status #=> String, one of "PENDING", "RUNNING", "STOPPING", "STOPPED"
587
+ # resp.model_quality #=> String, one of "QUALITY_THRESHOLD_MET", "CANNOT_DETERMINE_QUALITY", "POOR_QUALITY_DETECTED"
586
588
  #
587
589
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/CreateInferenceScheduler AWS API Documentation
588
590
  #
@@ -805,6 +807,11 @@ module Aws::LookoutEquipment
805
807
  # off. As long as this condition is met, Lookout for Equipment will not
806
808
  # use data from this asset for training, evaluation, or inference.
807
809
  #
810
+ # @option params [Types::ModelDiagnosticsOutputConfiguration] :model_diagnostics_output_configuration
811
+ # The Amazon S3 location where you want Amazon Lookout for Equipment to
812
+ # save the pointwise model diagnostics. You must also specify the
813
+ # `RoleArn` request parameter.
814
+ #
808
815
  # @return [Types::CreateModelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
809
816
  #
810
817
  # * {Types::CreateModelResponse#model_arn #model_arn} => String
@@ -842,6 +849,13 @@ module Aws::LookoutEquipment
842
849
  # },
843
850
  # ],
844
851
  # off_condition: "OffCondition",
852
+ # model_diagnostics_output_configuration: {
853
+ # s3_output_configuration: { # required
854
+ # bucket: "S3Bucket", # required
855
+ # prefix: "S3Prefix",
856
+ # },
857
+ # kms_key_id: "NameOrArn",
858
+ # },
845
859
  # })
846
860
  #
847
861
  # @example Response structure
@@ -1483,6 +1497,8 @@ module Aws::LookoutEquipment
1483
1497
  # * {Types::DescribeModelResponse#accumulated_inference_data_start_time #accumulated_inference_data_start_time} => Time
1484
1498
  # * {Types::DescribeModelResponse#accumulated_inference_data_end_time #accumulated_inference_data_end_time} => Time
1485
1499
  # * {Types::DescribeModelResponse#retraining_scheduler_status #retraining_scheduler_status} => String
1500
+ # * {Types::DescribeModelResponse#model_diagnostics_output_configuration #model_diagnostics_output_configuration} => Types::ModelDiagnosticsOutputConfiguration
1501
+ # * {Types::DescribeModelResponse#model_quality #model_quality} => String
1486
1502
  #
1487
1503
  # @example Request syntax with placeholder values
1488
1504
  #
@@ -1534,6 +1550,10 @@ module Aws::LookoutEquipment
1534
1550
  # resp.accumulated_inference_data_start_time #=> Time
1535
1551
  # resp.accumulated_inference_data_end_time #=> Time
1536
1552
  # resp.retraining_scheduler_status #=> String, one of "PENDING", "RUNNING", "STOPPING", "STOPPED"
1553
+ # resp.model_diagnostics_output_configuration.s3_output_configuration.bucket #=> String
1554
+ # resp.model_diagnostics_output_configuration.s3_output_configuration.prefix #=> String
1555
+ # resp.model_diagnostics_output_configuration.kms_key_id #=> String
1556
+ # resp.model_quality #=> String, one of "QUALITY_THRESHOLD_MET", "CANNOT_DETERMINE_QUALITY", "POOR_QUALITY_DETECTED"
1537
1557
  #
1538
1558
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/DescribeModel AWS API Documentation
1539
1559
  #
@@ -1586,6 +1606,9 @@ module Aws::LookoutEquipment
1586
1606
  # * {Types::DescribeModelVersionResponse#retraining_available_data_in_days #retraining_available_data_in_days} => Integer
1587
1607
  # * {Types::DescribeModelVersionResponse#auto_promotion_result #auto_promotion_result} => String
1588
1608
  # * {Types::DescribeModelVersionResponse#auto_promotion_result_reason #auto_promotion_result_reason} => String
1609
+ # * {Types::DescribeModelVersionResponse#model_diagnostics_output_configuration #model_diagnostics_output_configuration} => Types::ModelDiagnosticsOutputConfiguration
1610
+ # * {Types::DescribeModelVersionResponse#model_diagnostics_results_object #model_diagnostics_results_object} => Types::S3Object
1611
+ # * {Types::DescribeModelVersionResponse#model_quality #model_quality} => String
1589
1612
  #
1590
1613
  # @example Request syntax with placeholder values
1591
1614
  #
@@ -1630,6 +1653,12 @@ module Aws::LookoutEquipment
1630
1653
  # resp.retraining_available_data_in_days #=> Integer
1631
1654
  # resp.auto_promotion_result #=> String, one of "MODEL_PROMOTED", "MODEL_NOT_PROMOTED", "RETRAINING_INTERNAL_ERROR", "RETRAINING_CUSTOMER_ERROR", "RETRAINING_CANCELLED"
1632
1655
  # resp.auto_promotion_result_reason #=> String
1656
+ # resp.model_diagnostics_output_configuration.s3_output_configuration.bucket #=> String
1657
+ # resp.model_diagnostics_output_configuration.s3_output_configuration.prefix #=> String
1658
+ # resp.model_diagnostics_output_configuration.kms_key_id #=> String
1659
+ # resp.model_diagnostics_results_object.bucket #=> String
1660
+ # resp.model_diagnostics_results_object.key #=> String
1661
+ # resp.model_quality #=> String, one of "QUALITY_THRESHOLD_MET", "CANNOT_DETERMINE_QUALITY", "POOR_QUALITY_DETECTED"
1633
1662
  #
1634
1663
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/DescribeModelVersion AWS API Documentation
1635
1664
  #
@@ -2243,7 +2272,7 @@ module Aws::LookoutEquipment
2243
2272
  # Provides a list of labels.
2244
2273
  #
2245
2274
  # @option params [required, String] :label_group_name
2246
- # Retruns the name of the label group.
2275
+ # Returns the name of the label group.
2247
2276
  #
2248
2277
  # @option params [Time,DateTime,Date,Integer,String] :interval_start_time
2249
2278
  # Returns all the labels with a end time equal to or later than the
@@ -2378,6 +2407,7 @@ module Aws::LookoutEquipment
2378
2407
  # resp.model_version_summaries[0].created_at #=> Time
2379
2408
  # resp.model_version_summaries[0].status #=> String, one of "IN_PROGRESS", "SUCCESS", "FAILED", "IMPORT_IN_PROGRESS", "CANCELED"
2380
2409
  # resp.model_version_summaries[0].source_type #=> String, one of "TRAINING", "RETRAINING", "IMPORT"
2410
+ # resp.model_version_summaries[0].model_quality #=> String, one of "QUALITY_THRESHOLD_MET", "CANNOT_DETERMINE_QUALITY", "POOR_QUALITY_DETECTED"
2381
2411
  #
2382
2412
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ListModelVersions AWS API Documentation
2383
2413
  #
@@ -2442,6 +2472,10 @@ module Aws::LookoutEquipment
2442
2472
  # resp.model_summaries[0].latest_scheduled_retraining_start_time #=> Time
2443
2473
  # resp.model_summaries[0].next_scheduled_retraining_start_date #=> Time
2444
2474
  # resp.model_summaries[0].retraining_scheduler_status #=> String, one of "PENDING", "RUNNING", "STOPPING", "STOPPED"
2475
+ # resp.model_summaries[0].model_diagnostics_output_configuration.s3_output_configuration.bucket #=> String
2476
+ # resp.model_summaries[0].model_diagnostics_output_configuration.s3_output_configuration.prefix #=> String
2477
+ # resp.model_summaries[0].model_diagnostics_output_configuration.kms_key_id #=> String
2478
+ # resp.model_summaries[0].model_quality #=> String, one of "QUALITY_THRESHOLD_MET", "CANNOT_DETERMINE_QUALITY", "POOR_QUALITY_DETECTED"
2445
2479
  #
2446
2480
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ListModels AWS API Documentation
2447
2481
  #
@@ -3139,6 +3173,11 @@ module Aws::LookoutEquipment
3139
3173
  # @option params [String] :role_arn
3140
3174
  # The ARN of the model to update.
3141
3175
  #
3176
+ # @option params [Types::ModelDiagnosticsOutputConfiguration] :model_diagnostics_output_configuration
3177
+ # The Amazon S3 location where you want Amazon Lookout for Equipment to
3178
+ # save the pointwise model diagnostics for the model. You must also
3179
+ # specify the `RoleArn` request parameter.
3180
+ #
3142
3181
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3143
3182
  #
3144
3183
  #
@@ -3163,6 +3202,13 @@ module Aws::LookoutEquipment
3163
3202
  # label_group_name: "LabelGroupName",
3164
3203
  # },
3165
3204
  # role_arn: "IamRoleArn",
3205
+ # model_diagnostics_output_configuration: {
3206
+ # s3_output_configuration: { # required
3207
+ # bucket: "S3Bucket", # required
3208
+ # prefix: "S3Prefix",
3209
+ # },
3210
+ # kms_key_id: "NameOrArn",
3211
+ # },
3166
3212
  # })
3167
3213
  #
3168
3214
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/UpdateModel AWS API Documentation
@@ -3256,7 +3302,7 @@ module Aws::LookoutEquipment
3256
3302
  params: params,
3257
3303
  config: config)
3258
3304
  context[:gem_name] = 'aws-sdk-lookoutequipment'
3259
- context[:gem_version] = '1.27.0'
3305
+ context[:gem_version] = '1.29.0'
3260
3306
  Seahorse::Client::Request.new(handlers, context)
3261
3307
  end
3262
3308
 
@@ -160,9 +160,12 @@ module Aws::LookoutEquipment
160
160
  MissingCompleteSensorData = Shapes::StructureShape.new(name: 'MissingCompleteSensorData')
161
161
  MissingSensorData = Shapes::StructureShape.new(name: 'MissingSensorData')
162
162
  ModelArn = Shapes::StringShape.new(name: 'ModelArn')
163
+ ModelDiagnosticsOutputConfiguration = Shapes::StructureShape.new(name: 'ModelDiagnosticsOutputConfiguration')
164
+ ModelDiagnosticsS3OutputConfiguration = Shapes::StructureShape.new(name: 'ModelDiagnosticsS3OutputConfiguration')
163
165
  ModelMetrics = Shapes::StringShape.new(name: 'ModelMetrics')
164
166
  ModelName = Shapes::StringShape.new(name: 'ModelName')
165
167
  ModelPromoteMode = Shapes::StringShape.new(name: 'ModelPromoteMode')
168
+ ModelQuality = Shapes::StringShape.new(name: 'ModelQuality')
166
169
  ModelStatus = Shapes::StringShape.new(name: 'ModelStatus')
167
170
  ModelSummaries = Shapes::ListShape.new(name: 'ModelSummaries')
168
171
  ModelSummary = Shapes::StructureShape.new(name: 'ModelSummary')
@@ -271,6 +274,7 @@ module Aws::LookoutEquipment
271
274
  CreateInferenceSchedulerResponse.add_member(:inference_scheduler_arn, Shapes::ShapeRef.new(shape: InferenceSchedulerArn, location_name: "InferenceSchedulerArn"))
272
275
  CreateInferenceSchedulerResponse.add_member(:inference_scheduler_name, Shapes::ShapeRef.new(shape: InferenceSchedulerName, location_name: "InferenceSchedulerName"))
273
276
  CreateInferenceSchedulerResponse.add_member(:status, Shapes::ShapeRef.new(shape: InferenceSchedulerStatus, location_name: "Status"))
277
+ CreateInferenceSchedulerResponse.add_member(:model_quality, Shapes::ShapeRef.new(shape: ModelQuality, location_name: "ModelQuality"))
274
278
  CreateInferenceSchedulerResponse.struct_class = Types::CreateInferenceSchedulerResponse
275
279
 
276
280
  CreateLabelGroupRequest.add_member(:label_group_name, Shapes::ShapeRef.new(shape: LabelGroupName, required: true, location_name: "LabelGroupName"))
@@ -310,6 +314,7 @@ module Aws::LookoutEquipment
310
314
  CreateModelRequest.add_member(:server_side_kms_key_id, Shapes::ShapeRef.new(shape: NameOrArn, location_name: "ServerSideKmsKeyId"))
311
315
  CreateModelRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
312
316
  CreateModelRequest.add_member(:off_condition, Shapes::ShapeRef.new(shape: OffCondition, location_name: "OffCondition"))
317
+ CreateModelRequest.add_member(:model_diagnostics_output_configuration, Shapes::ShapeRef.new(shape: ModelDiagnosticsOutputConfiguration, location_name: "ModelDiagnosticsOutputConfiguration"))
313
318
  CreateModelRequest.struct_class = Types::CreateModelRequest
314
319
 
315
320
  CreateModelResponse.add_member(:model_arn, Shapes::ShapeRef.new(shape: ModelArn, location_name: "ModelArn"))
@@ -507,6 +512,8 @@ module Aws::LookoutEquipment
507
512
  DescribeModelResponse.add_member(:accumulated_inference_data_start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "AccumulatedInferenceDataStartTime"))
508
513
  DescribeModelResponse.add_member(:accumulated_inference_data_end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "AccumulatedInferenceDataEndTime"))
509
514
  DescribeModelResponse.add_member(:retraining_scheduler_status, Shapes::ShapeRef.new(shape: RetrainingSchedulerStatus, location_name: "RetrainingSchedulerStatus"))
515
+ DescribeModelResponse.add_member(:model_diagnostics_output_configuration, Shapes::ShapeRef.new(shape: ModelDiagnosticsOutputConfiguration, location_name: "ModelDiagnosticsOutputConfiguration"))
516
+ DescribeModelResponse.add_member(:model_quality, Shapes::ShapeRef.new(shape: ModelQuality, location_name: "ModelQuality"))
510
517
  DescribeModelResponse.struct_class = Types::DescribeModelResponse
511
518
 
512
519
  DescribeModelVersionRequest.add_member(:model_name, Shapes::ShapeRef.new(shape: ModelName, required: true, location_name: "ModelName"))
@@ -545,6 +552,9 @@ module Aws::LookoutEquipment
545
552
  DescribeModelVersionResponse.add_member(:retraining_available_data_in_days, Shapes::ShapeRef.new(shape: Integer, location_name: "RetrainingAvailableDataInDays"))
546
553
  DescribeModelVersionResponse.add_member(:auto_promotion_result, Shapes::ShapeRef.new(shape: AutoPromotionResult, location_name: "AutoPromotionResult"))
547
554
  DescribeModelVersionResponse.add_member(:auto_promotion_result_reason, Shapes::ShapeRef.new(shape: AutoPromotionResultReason, location_name: "AutoPromotionResultReason"))
555
+ DescribeModelVersionResponse.add_member(:model_diagnostics_output_configuration, Shapes::ShapeRef.new(shape: ModelDiagnosticsOutputConfiguration, location_name: "ModelDiagnosticsOutputConfiguration"))
556
+ DescribeModelVersionResponse.add_member(:model_diagnostics_results_object, Shapes::ShapeRef.new(shape: S3Object, location_name: "ModelDiagnosticsResultsObject"))
557
+ DescribeModelVersionResponse.add_member(:model_quality, Shapes::ShapeRef.new(shape: ModelQuality, location_name: "ModelQuality"))
548
558
  DescribeModelVersionResponse.struct_class = Types::DescribeModelVersionResponse
549
559
 
550
560
  DescribeResourcePolicyRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "ResourceArn"))
@@ -861,6 +871,14 @@ module Aws::LookoutEquipment
861
871
  MissingSensorData.add_member(:total_number_of_missing_values, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "TotalNumberOfMissingValues"))
862
872
  MissingSensorData.struct_class = Types::MissingSensorData
863
873
 
874
+ ModelDiagnosticsOutputConfiguration.add_member(:s3_output_configuration, Shapes::ShapeRef.new(shape: ModelDiagnosticsS3OutputConfiguration, required: true, location_name: "S3OutputConfiguration"))
875
+ ModelDiagnosticsOutputConfiguration.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: NameOrArn, location_name: "KmsKeyId"))
876
+ ModelDiagnosticsOutputConfiguration.struct_class = Types::ModelDiagnosticsOutputConfiguration
877
+
878
+ ModelDiagnosticsS3OutputConfiguration.add_member(:bucket, Shapes::ShapeRef.new(shape: S3Bucket, required: true, location_name: "Bucket"))
879
+ ModelDiagnosticsS3OutputConfiguration.add_member(:prefix, Shapes::ShapeRef.new(shape: S3Prefix, location_name: "Prefix"))
880
+ ModelDiagnosticsS3OutputConfiguration.struct_class = Types::ModelDiagnosticsS3OutputConfiguration
881
+
864
882
  ModelSummaries.member = Shapes::ShapeRef.new(shape: ModelSummary)
865
883
 
866
884
  ModelSummary.add_member(:model_name, Shapes::ShapeRef.new(shape: ModelName, location_name: "ModelName"))
@@ -876,6 +894,8 @@ module Aws::LookoutEquipment
876
894
  ModelSummary.add_member(:latest_scheduled_retraining_start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LatestScheduledRetrainingStartTime"))
877
895
  ModelSummary.add_member(:next_scheduled_retraining_start_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "NextScheduledRetrainingStartDate"))
878
896
  ModelSummary.add_member(:retraining_scheduler_status, Shapes::ShapeRef.new(shape: RetrainingSchedulerStatus, location_name: "RetrainingSchedulerStatus"))
897
+ ModelSummary.add_member(:model_diagnostics_output_configuration, Shapes::ShapeRef.new(shape: ModelDiagnosticsOutputConfiguration, location_name: "ModelDiagnosticsOutputConfiguration"))
898
+ ModelSummary.add_member(:model_quality, Shapes::ShapeRef.new(shape: ModelQuality, location_name: "ModelQuality"))
879
899
  ModelSummary.struct_class = Types::ModelSummary
880
900
 
881
901
  ModelVersionSummaries.member = Shapes::ShapeRef.new(shape: ModelVersionSummary)
@@ -887,6 +907,7 @@ module Aws::LookoutEquipment
887
907
  ModelVersionSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAt"))
888
908
  ModelVersionSummary.add_member(:status, Shapes::ShapeRef.new(shape: ModelVersionStatus, location_name: "Status"))
889
909
  ModelVersionSummary.add_member(:source_type, Shapes::ShapeRef.new(shape: ModelVersionSourceType, location_name: "SourceType"))
910
+ ModelVersionSummary.add_member(:model_quality, Shapes::ShapeRef.new(shape: ModelQuality, location_name: "ModelQuality"))
890
911
  ModelVersionSummary.struct_class = Types::ModelVersionSummary
891
912
 
892
913
  MonotonicValues.add_member(:status, Shapes::ShapeRef.new(shape: StatisticalIssueStatus, required: true, location_name: "Status"))
@@ -1045,6 +1066,7 @@ module Aws::LookoutEquipment
1045
1066
  UpdateModelRequest.add_member(:model_name, Shapes::ShapeRef.new(shape: ModelName, required: true, location_name: "ModelName"))
1046
1067
  UpdateModelRequest.add_member(:labels_input_configuration, Shapes::ShapeRef.new(shape: LabelsInputConfiguration, location_name: "LabelsInputConfiguration"))
1047
1068
  UpdateModelRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "RoleArn"))
1069
+ UpdateModelRequest.add_member(:model_diagnostics_output_configuration, Shapes::ShapeRef.new(shape: ModelDiagnosticsOutputConfiguration, location_name: "ModelDiagnosticsOutputConfiguration"))
1048
1070
  UpdateModelRequest.struct_class = Types::UpdateModelRequest
1049
1071
 
1050
1072
  UpdateRetrainingSchedulerRequest.add_member(:model_name, Shapes::ShapeRef.new(shape: ModelName, required: true, location_name: "ModelName"))
@@ -32,7 +32,7 @@ module Aws::LookoutEquipment
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://lookoutequipment-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -242,12 +242,36 @@ module Aws::LookoutEquipment
242
242
  # Indicates the status of the `CreateInferenceScheduler` operation.
243
243
  # @return [String]
244
244
  #
245
+ # @!attribute [rw] model_quality
246
+ # Provides a quality assessment for a model that uses labels. If
247
+ # Lookout for Equipment determines that the model quality is poor
248
+ # based on training metrics, the value is `POOR_QUALITY_DETECTED`.
249
+ # Otherwise, the value is `QUALITY_THRESHOLD_MET`.
250
+ #
251
+ # If the model is unlabeled, the model quality can't be assessed and
252
+ # the value of `ModelQuality` is `CANNOT_DETERMINE_QUALITY`. In this
253
+ # situation, you can get a model quality assessment by adding labels
254
+ # to the input dataset and retraining the model.
255
+ #
256
+ # For information about using labels with your models, see
257
+ # [Understanding labeling][1].
258
+ #
259
+ # For information about improving the quality of a model, see [Best
260
+ # practices with Amazon Lookout for Equipment][2].
261
+ #
262
+ #
263
+ #
264
+ # [1]: https://docs.aws.amazon.com/lookout-for-equipment/latest/ug/understanding-labeling.html
265
+ # [2]: https://docs.aws.amazon.com/lookout-for-equipment/latest/ug/best-practices.html
266
+ # @return [String]
267
+ #
245
268
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/CreateInferenceSchedulerResponse AWS API Documentation
246
269
  #
247
270
  class CreateInferenceSchedulerResponse < Struct.new(
248
271
  :inference_scheduler_arn,
249
272
  :inference_scheduler_name,
250
- :status)
273
+ :status,
274
+ :model_quality)
251
275
  SENSITIVE = []
252
276
  include Aws::Structure
253
277
  end
@@ -470,6 +494,12 @@ module Aws::LookoutEquipment
470
494
  # not use data from this asset for training, evaluation, or inference.
471
495
  # @return [String]
472
496
  #
497
+ # @!attribute [rw] model_diagnostics_output_configuration
498
+ # The Amazon S3 location where you want Amazon Lookout for Equipment
499
+ # to save the pointwise model diagnostics. You must also specify the
500
+ # `RoleArn` request parameter.
501
+ # @return [Types::ModelDiagnosticsOutputConfiguration]
502
+ #
473
503
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/CreateModelRequest AWS API Documentation
474
504
  #
475
505
  class CreateModelRequest < Struct.new(
@@ -486,7 +516,8 @@ module Aws::LookoutEquipment
486
516
  :data_pre_processing_configuration,
487
517
  :server_side_kms_key_id,
488
518
  :tags,
489
- :off_condition)
519
+ :off_condition,
520
+ :model_diagnostics_output_configuration)
490
521
  SENSITIVE = []
491
522
  include Aws::Structure
492
523
  end
@@ -1513,6 +1544,34 @@ module Aws::LookoutEquipment
1513
1544
  # Indicates the status of the retraining scheduler.
1514
1545
  # @return [String]
1515
1546
  #
1547
+ # @!attribute [rw] model_diagnostics_output_configuration
1548
+ # Configuration information for the model's pointwise model
1549
+ # diagnostics.
1550
+ # @return [Types::ModelDiagnosticsOutputConfiguration]
1551
+ #
1552
+ # @!attribute [rw] model_quality
1553
+ # Provides a quality assessment for a model that uses labels. If
1554
+ # Lookout for Equipment determines that the model quality is poor
1555
+ # based on training metrics, the value is `POOR_QUALITY_DETECTED`.
1556
+ # Otherwise, the value is `QUALITY_THRESHOLD_MET`.
1557
+ #
1558
+ # If the model is unlabeled, the model quality can't be assessed and
1559
+ # the value of `ModelQuality` is `CANNOT_DETERMINE_QUALITY`. In this
1560
+ # situation, you can get a model quality assessment by adding labels
1561
+ # to the input dataset and retraining the model.
1562
+ #
1563
+ # For information about using labels with your models, see
1564
+ # [Understanding labeling][1].
1565
+ #
1566
+ # For information about improving the quality of a model, see [Best
1567
+ # practices with Amazon Lookout for Equipment][2].
1568
+ #
1569
+ #
1570
+ #
1571
+ # [1]: https://docs.aws.amazon.com/lookout-for-equipment/latest/ug/understanding-labeling.html
1572
+ # [2]: https://docs.aws.amazon.com/lookout-for-equipment/latest/ug/best-practices.html
1573
+ # @return [String]
1574
+ #
1516
1575
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/DescribeModelResponse AWS API Documentation
1517
1576
  #
1518
1577
  class DescribeModelResponse < Struct.new(
@@ -1555,7 +1614,9 @@ module Aws::LookoutEquipment
1555
1614
  :next_scheduled_retraining_start_date,
1556
1615
  :accumulated_inference_data_start_time,
1557
1616
  :accumulated_inference_data_end_time,
1558
- :retraining_scheduler_status)
1617
+ :retraining_scheduler_status,
1618
+ :model_diagnostics_output_configuration,
1619
+ :model_quality)
1559
1620
  SENSITIVE = []
1560
1621
  include Aws::Structure
1561
1622
  end
@@ -1750,6 +1811,39 @@ module Aws::LookoutEquipment
1750
1811
  # than the previous model.
1751
1812
  # @return [String]
1752
1813
  #
1814
+ # @!attribute [rw] model_diagnostics_output_configuration
1815
+ # The Amazon S3 location where Amazon Lookout for Equipment saves the
1816
+ # pointwise model diagnostics for the model version.
1817
+ # @return [Types::ModelDiagnosticsOutputConfiguration]
1818
+ #
1819
+ # @!attribute [rw] model_diagnostics_results_object
1820
+ # The Amazon S3 output prefix for where Lookout for Equipment saves
1821
+ # the pointwise model diagnostics for the model version.
1822
+ # @return [Types::S3Object]
1823
+ #
1824
+ # @!attribute [rw] model_quality
1825
+ # Provides a quality assessment for a model that uses labels. If
1826
+ # Lookout for Equipment determines that the model quality is poor
1827
+ # based on training metrics, the value is `POOR_QUALITY_DETECTED`.
1828
+ # Otherwise, the value is `QUALITY_THRESHOLD_MET`.
1829
+ #
1830
+ # If the model is unlabeled, the model quality can't be assessed and
1831
+ # the value of `ModelQuality` is `CANNOT_DETERMINE_QUALITY`. In this
1832
+ # situation, you can get a model quality assessment by adding labels
1833
+ # to the input dataset and retraining the model.
1834
+ #
1835
+ # For information about using labels with your models, see
1836
+ # [Understanding labeling][1].
1837
+ #
1838
+ # For information about improving the quality of a model, see [Best
1839
+ # practices with Amazon Lookout for Equipment][2].
1840
+ #
1841
+ #
1842
+ #
1843
+ # [1]: https://docs.aws.amazon.com/lookout-for-equipment/latest/ug/understanding-labeling.html
1844
+ # [2]: https://docs.aws.amazon.com/lookout-for-equipment/latest/ug/best-practices.html
1845
+ # @return [String]
1846
+ #
1753
1847
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/DescribeModelVersionResponse AWS API Documentation
1754
1848
  #
1755
1849
  class DescribeModelVersionResponse < Struct.new(
@@ -1784,7 +1878,10 @@ module Aws::LookoutEquipment
1784
1878
  :prior_model_metrics,
1785
1879
  :retraining_available_data_in_days,
1786
1880
  :auto_promotion_result,
1787
- :auto_promotion_result_reason)
1881
+ :auto_promotion_result_reason,
1882
+ :model_diagnostics_output_configuration,
1883
+ :model_diagnostics_results_object,
1884
+ :model_quality)
1788
1885
  SENSITIVE = []
1789
1886
  include Aws::Structure
1790
1887
  end
@@ -2502,7 +2599,7 @@ module Aws::LookoutEquipment
2502
2599
  #
2503
2600
  # @!attribute [rw] sensors_with_short_date_range
2504
2601
  # Parameter that describes the total number of sensors that have a
2505
- # short date range of less than 90 days of data overall.
2602
+ # short date range of less than 14 days of data overall.
2506
2603
  # @return [Types::SensorsWithShortDateRange]
2507
2604
  #
2508
2605
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/InsufficientSensorData AWS API Documentation
@@ -2898,6 +2995,13 @@ module Aws::LookoutEquipment
2898
2995
  # executions returned from the `ListInferenceExecutions` operation,
2899
2996
  # including model used, inference scheduler, data configuration, and
2900
2997
  # so on.
2998
+ #
2999
+ # <note markdown="1"> If you don't supply the `InferenceSchedulerName` request parameter,
3000
+ # or if you supply the name of an inference scheduler that doesn't
3001
+ # exist, `ListInferenceExecutions` returns an empty array in
3002
+ # `InferenceExecutionSummaries`.
3003
+ #
3004
+ # </note>
2901
3005
  # @return [Array<Types::InferenceExecutionSummary>]
2902
3006
  #
2903
3007
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ListInferenceExecutionsResponse AWS API Documentation
@@ -3004,7 +3108,7 @@ module Aws::LookoutEquipment
3004
3108
  end
3005
3109
 
3006
3110
  # @!attribute [rw] label_group_name
3007
- # Retruns the name of the label group.
3111
+ # Returns the name of the label group.
3008
3112
  # @return [String]
3009
3113
  #
3010
3114
  # @!attribute [rw] interval_start_time
@@ -3055,6 +3159,12 @@ module Aws::LookoutEquipment
3055
3159
  #
3056
3160
  # @!attribute [rw] label_summaries
3057
3161
  # A summary of the items in the label group.
3162
+ #
3163
+ # <note markdown="1"> If you don't supply the `LabelGroupName` request parameter, or if
3164
+ # you supply the name of a label group that doesn't exist,
3165
+ # `ListLabels` returns an empty array in `LabelSummaries`.
3166
+ #
3167
+ # </note>
3058
3168
  # @return [Array<Types::LabelSummary>]
3059
3169
  #
3060
3170
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ListLabelsResponse AWS API Documentation
@@ -3137,6 +3247,12 @@ module Aws::LookoutEquipment
3137
3247
  # @!attribute [rw] model_version_summaries
3138
3248
  # Provides information on the specified model version, including the
3139
3249
  # created time, model and dataset ARNs, and status.
3250
+ #
3251
+ # <note markdown="1"> If you don't supply the `ModelName` request parameter, or if you
3252
+ # supply the name of a model that doesn't exist, `ListModelVersions`
3253
+ # returns an empty array in `ModelVersionSummaries`.
3254
+ #
3255
+ # </note>
3140
3256
  # @return [Array<Types::ModelVersionSummary>]
3141
3257
  #
3142
3258
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ListModelVersionsResponse AWS API Documentation
@@ -3366,6 +3482,60 @@ module Aws::LookoutEquipment
3366
3482
  include Aws::Structure
3367
3483
  end
3368
3484
 
3485
+ # Output configuration information for the pointwise model diagnostics
3486
+ # for an Amazon Lookout for Equipment model.
3487
+ #
3488
+ # @!attribute [rw] s3_output_configuration
3489
+ # The Amazon S3 location for the pointwise model diagnostics.
3490
+ # @return [Types::ModelDiagnosticsS3OutputConfiguration]
3491
+ #
3492
+ # @!attribute [rw] kms_key_id
3493
+ # The Amazon Web Services Key Management Service (KMS) key identifier
3494
+ # to encrypt the pointwise model diagnostics files.
3495
+ # @return [String]
3496
+ #
3497
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ModelDiagnosticsOutputConfiguration AWS API Documentation
3498
+ #
3499
+ class ModelDiagnosticsOutputConfiguration < Struct.new(
3500
+ :s3_output_configuration,
3501
+ :kms_key_id)
3502
+ SENSITIVE = []
3503
+ include Aws::Structure
3504
+ end
3505
+
3506
+ # The Amazon S3 location for the pointwise model diagnostics for an
3507
+ # Amazon Lookout for Equipment model.
3508
+ #
3509
+ # @!attribute [rw] bucket
3510
+ # The name of the Amazon S3 bucket where the pointwise model
3511
+ # diagnostics are located. You must be the owner of the Amazon S3
3512
+ # bucket.
3513
+ # @return [String]
3514
+ #
3515
+ # @!attribute [rw] prefix
3516
+ # The Amazon S3 prefix for the location of the pointwise model
3517
+ # diagnostics. The prefix specifies the folder and evaluation result
3518
+ # file name. (`bucket`).
3519
+ #
3520
+ # When you call `CreateModel` or `UpdateModel`, specify the path
3521
+ # within the bucket that you want Lookout for Equipment to save the
3522
+ # model to. During training, Lookout for Equipment creates the model
3523
+ # evaluation model as a compressed JSON file with the name
3524
+ # `model_diagnostics_results.json.gz`.
3525
+ #
3526
+ # When you call `DescribeModel` or `DescribeModelVersion`, `prefix`
3527
+ # contains the file path and filename of the model evaluation file.
3528
+ # @return [String]
3529
+ #
3530
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ModelDiagnosticsS3OutputConfiguration AWS API Documentation
3531
+ #
3532
+ class ModelDiagnosticsS3OutputConfiguration < Struct.new(
3533
+ :bucket,
3534
+ :prefix)
3535
+ SENSITIVE = []
3536
+ include Aws::Structure
3537
+ end
3538
+
3369
3539
  # Provides information about the specified machine learning model,
3370
3540
  # including dataset and model names and ARNs, as well as status.
3371
3541
  #
@@ -3433,6 +3603,34 @@ module Aws::LookoutEquipment
3433
3603
  # Indicates the status of the retraining scheduler.
3434
3604
  # @return [String]
3435
3605
  #
3606
+ # @!attribute [rw] model_diagnostics_output_configuration
3607
+ # Output configuration information for the pointwise model diagnostics
3608
+ # for an Amazon Lookout for Equipment model.
3609
+ # @return [Types::ModelDiagnosticsOutputConfiguration]
3610
+ #
3611
+ # @!attribute [rw] model_quality
3612
+ # Provides a quality assessment for a model that uses labels. If
3613
+ # Lookout for Equipment determines that the model quality is poor
3614
+ # based on training metrics, the value is `POOR_QUALITY_DETECTED`.
3615
+ # Otherwise, the value is `QUALITY_THRESHOLD_MET`.
3616
+ #
3617
+ # If the model is unlabeled, the model quality can't be assessed and
3618
+ # the value of `ModelQuality` is `CANNOT_DETERMINE_QUALITY`. In this
3619
+ # situation, you can get a model quality assessment by adding labels
3620
+ # to the input dataset and retraining the model.
3621
+ #
3622
+ # For information about using labels with your models, see
3623
+ # [Understanding labeling][1].
3624
+ #
3625
+ # For information about improving the quality of a model, see [Best
3626
+ # practices with Amazon Lookout for Equipment][2].
3627
+ #
3628
+ #
3629
+ #
3630
+ # [1]: https://docs.aws.amazon.com/lookout-for-equipment/latest/ug/understanding-labeling.html
3631
+ # [2]: https://docs.aws.amazon.com/lookout-for-equipment/latest/ug/best-practices.html
3632
+ # @return [String]
3633
+ #
3436
3634
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ModelSummary AWS API Documentation
3437
3635
  #
3438
3636
  class ModelSummary < Struct.new(
@@ -3448,7 +3646,9 @@ module Aws::LookoutEquipment
3448
3646
  :latest_scheduled_retraining_model_version,
3449
3647
  :latest_scheduled_retraining_start_time,
3450
3648
  :next_scheduled_retraining_start_date,
3451
- :retraining_scheduler_status)
3649
+ :retraining_scheduler_status,
3650
+ :model_diagnostics_output_configuration,
3651
+ :model_quality)
3452
3652
  SENSITIVE = []
3453
3653
  include Aws::Structure
3454
3654
  end
@@ -3484,6 +3684,25 @@ module Aws::LookoutEquipment
3484
3684
  # Indicates how this model version was generated.
3485
3685
  # @return [String]
3486
3686
  #
3687
+ # @!attribute [rw] model_quality
3688
+ # Provides a quality assessment for a model that uses labels. If
3689
+ # Lookout for Equipment determines that the model quality is poor
3690
+ # based on training metrics, the value is `POOR_QUALITY_DETECTED`.
3691
+ # Otherwise, the value is `QUALITY_THRESHOLD_MET`.
3692
+ #
3693
+ # If the model is unlabeled, the model quality can't be assessed and
3694
+ # the value of `ModelQuality` is `CANNOT_DETERMINE_QUALITY`. In this
3695
+ # situation, you can get a model quality assessment by adding labels
3696
+ # to the input dataset and retraining the model.
3697
+ #
3698
+ # For information about improving the quality of a model, see [Best
3699
+ # practices with Amazon Lookout for Equipment][1].
3700
+ #
3701
+ #
3702
+ #
3703
+ # [1]: https://docs.aws.amazon.com/lookout-for-equipment/latest/ug/best-practices.html
3704
+ # @return [String]
3705
+ #
3487
3706
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ModelVersionSummary AWS API Documentation
3488
3707
  #
3489
3708
  class ModelVersionSummary < Struct.new(
@@ -3493,7 +3712,8 @@ module Aws::LookoutEquipment
3493
3712
  :model_version_arn,
3494
3713
  :created_at,
3495
3714
  :status,
3496
- :source_type)
3715
+ :source_type,
3716
+ :model_quality)
3497
3717
  SENSITIVE = []
3498
3718
  include Aws::Structure
3499
3719
  end
@@ -3761,7 +3981,7 @@ module Aws::LookoutEquipment
3761
3981
  # range.
3762
3982
  #
3763
3983
  # @!attribute [rw] affected_sensor_count
3764
- # Indicates the number of sensors that have less than 90 days of data.
3984
+ # Indicates the number of sensors that have less than 14 days of data.
3765
3985
  # @return [Integer]
3766
3986
  #
3767
3987
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/SensorsWithShortDateRange AWS API Documentation
@@ -4241,12 +4461,19 @@ module Aws::LookoutEquipment
4241
4461
  # The ARN of the model to update.
4242
4462
  # @return [String]
4243
4463
  #
4464
+ # @!attribute [rw] model_diagnostics_output_configuration
4465
+ # The Amazon S3 location where you want Amazon Lookout for Equipment
4466
+ # to save the pointwise model diagnostics for the model. You must also
4467
+ # specify the `RoleArn` request parameter.
4468
+ # @return [Types::ModelDiagnosticsOutputConfiguration]
4469
+ #
4244
4470
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/UpdateModelRequest AWS API Documentation
4245
4471
  #
4246
4472
  class UpdateModelRequest < Struct.new(
4247
4473
  :model_name,
4248
4474
  :labels_input_configuration,
4249
- :role_arn)
4475
+ :role_arn,
4476
+ :model_diagnostics_output_configuration)
4250
4477
  SENSITIVE = []
4251
4478
  include Aws::Structure
4252
4479
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-lookoutequipment/customizations'
52
52
  # @!group service
53
53
  module Aws::LookoutEquipment
54
54
 
55
- GEM_VERSION = '1.27.0'
55
+ GEM_VERSION = '1.29.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -101,6 +101,7 @@ module Aws
101
101
  def inference_scheduler_arn: () -> ::String
102
102
  def inference_scheduler_name: () -> ::String
103
103
  def status: () -> ("PENDING" | "RUNNING" | "STOPPING" | "STOPPED")
104
+ def model_quality: () -> ("QUALITY_THRESHOLD_MET" | "CANNOT_DETERMINE_QUALITY" | "POOR_QUALITY_DETECTED")
104
105
  end
105
106
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#create_inference_scheduler-instance_method
106
107
  def create_inference_scheduler: (
@@ -209,7 +210,14 @@ module Aws
209
210
  value: ::String
210
211
  },
211
212
  ],
212
- ?off_condition: ::String
213
+ ?off_condition: ::String,
214
+ ?model_diagnostics_output_configuration: {
215
+ s3_output_configuration: {
216
+ bucket: ::String,
217
+ prefix: ::String?
218
+ },
219
+ kms_key_id: ::String?
220
+ }
213
221
  ) -> _CreateModelResponseSuccess
214
222
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateModelResponseSuccess
215
223
 
@@ -418,6 +426,8 @@ module Aws
418
426
  def accumulated_inference_data_start_time: () -> ::Time
419
427
  def accumulated_inference_data_end_time: () -> ::Time
420
428
  def retraining_scheduler_status: () -> ("PENDING" | "RUNNING" | "STOPPING" | "STOPPED")
429
+ def model_diagnostics_output_configuration: () -> Types::ModelDiagnosticsOutputConfiguration
430
+ def model_quality: () -> ("QUALITY_THRESHOLD_MET" | "CANNOT_DETERMINE_QUALITY" | "POOR_QUALITY_DETECTED")
421
431
  end
422
432
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#describe_model-instance_method
423
433
  def describe_model: (
@@ -459,6 +469,9 @@ module Aws
459
469
  def retraining_available_data_in_days: () -> ::Integer
460
470
  def auto_promotion_result: () -> ("MODEL_PROMOTED" | "MODEL_NOT_PROMOTED" | "RETRAINING_INTERNAL_ERROR" | "RETRAINING_CUSTOMER_ERROR" | "RETRAINING_CANCELLED")
461
471
  def auto_promotion_result_reason: () -> ::String
472
+ def model_diagnostics_output_configuration: () -> Types::ModelDiagnosticsOutputConfiguration
473
+ def model_diagnostics_results_object: () -> Types::S3Object
474
+ def model_quality: () -> ("QUALITY_THRESHOLD_MET" | "CANNOT_DETERMINE_QUALITY" | "POOR_QUALITY_DETECTED")
462
475
  end
463
476
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#describe_model_version-instance_method
464
477
  def describe_model_version: (
@@ -899,7 +912,14 @@ module Aws
899
912
  }?,
900
913
  label_group_name: ::String?
901
914
  },
902
- ?role_arn: ::String
915
+ ?role_arn: ::String,
916
+ ?model_diagnostics_output_configuration: {
917
+ s3_output_configuration: {
918
+ bucket: ::String,
919
+ prefix: ::String?
920
+ },
921
+ kms_key_id: ::String?
922
+ }
903
923
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
904
924
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
905
925
 
data/sig/types.rbs CHANGED
@@ -64,6 +64,7 @@ module Aws::LookoutEquipment
64
64
  attr_accessor inference_scheduler_arn: ::String
65
65
  attr_accessor inference_scheduler_name: ::String
66
66
  attr_accessor status: ("PENDING" | "RUNNING" | "STOPPING" | "STOPPED")
67
+ attr_accessor model_quality: ("QUALITY_THRESHOLD_MET" | "CANNOT_DETERMINE_QUALITY" | "POOR_QUALITY_DETECTED")
67
68
  SENSITIVE: []
68
69
  end
69
70
 
@@ -113,6 +114,7 @@ module Aws::LookoutEquipment
113
114
  attr_accessor server_side_kms_key_id: ::String
114
115
  attr_accessor tags: ::Array[Types::Tag]
115
116
  attr_accessor off_condition: ::String
117
+ attr_accessor model_diagnostics_output_configuration: Types::ModelDiagnosticsOutputConfiguration
116
118
  SENSITIVE: []
117
119
  end
118
120
 
@@ -360,6 +362,8 @@ module Aws::LookoutEquipment
360
362
  attr_accessor accumulated_inference_data_start_time: ::Time
361
363
  attr_accessor accumulated_inference_data_end_time: ::Time
362
364
  attr_accessor retraining_scheduler_status: ("PENDING" | "RUNNING" | "STOPPING" | "STOPPED")
365
+ attr_accessor model_diagnostics_output_configuration: Types::ModelDiagnosticsOutputConfiguration
366
+ attr_accessor model_quality: ("QUALITY_THRESHOLD_MET" | "CANNOT_DETERMINE_QUALITY" | "POOR_QUALITY_DETECTED")
363
367
  SENSITIVE: []
364
368
  end
365
369
 
@@ -402,6 +406,9 @@ module Aws::LookoutEquipment
402
406
  attr_accessor retraining_available_data_in_days: ::Integer
403
407
  attr_accessor auto_promotion_result: ("MODEL_PROMOTED" | "MODEL_NOT_PROMOTED" | "RETRAINING_INTERNAL_ERROR" | "RETRAINING_CUSTOMER_ERROR" | "RETRAINING_CANCELLED")
404
408
  attr_accessor auto_promotion_result_reason: ::String
409
+ attr_accessor model_diagnostics_output_configuration: Types::ModelDiagnosticsOutputConfiguration
410
+ attr_accessor model_diagnostics_results_object: Types::S3Object
411
+ attr_accessor model_quality: ("QUALITY_THRESHOLD_MET" | "CANNOT_DETERMINE_QUALITY" | "POOR_QUALITY_DETECTED")
405
412
  SENSITIVE: []
406
413
  end
407
414
 
@@ -813,6 +820,18 @@ module Aws::LookoutEquipment
813
820
  SENSITIVE: []
814
821
  end
815
822
 
823
+ class ModelDiagnosticsOutputConfiguration
824
+ attr_accessor s3_output_configuration: Types::ModelDiagnosticsS3OutputConfiguration
825
+ attr_accessor kms_key_id: ::String
826
+ SENSITIVE: []
827
+ end
828
+
829
+ class ModelDiagnosticsS3OutputConfiguration
830
+ attr_accessor bucket: ::String
831
+ attr_accessor prefix: ::String
832
+ SENSITIVE: []
833
+ end
834
+
816
835
  class ModelSummary
817
836
  attr_accessor model_name: ::String
818
837
  attr_accessor model_arn: ::String
@@ -827,6 +846,8 @@ module Aws::LookoutEquipment
827
846
  attr_accessor latest_scheduled_retraining_start_time: ::Time
828
847
  attr_accessor next_scheduled_retraining_start_date: ::Time
829
848
  attr_accessor retraining_scheduler_status: ("PENDING" | "RUNNING" | "STOPPING" | "STOPPED")
849
+ attr_accessor model_diagnostics_output_configuration: Types::ModelDiagnosticsOutputConfiguration
850
+ attr_accessor model_quality: ("QUALITY_THRESHOLD_MET" | "CANNOT_DETERMINE_QUALITY" | "POOR_QUALITY_DETECTED")
830
851
  SENSITIVE: []
831
852
  end
832
853
 
@@ -838,6 +859,7 @@ module Aws::LookoutEquipment
838
859
  attr_accessor created_at: ::Time
839
860
  attr_accessor status: ("IN_PROGRESS" | "SUCCESS" | "FAILED" | "IMPORT_IN_PROGRESS" | "CANCELED")
840
861
  attr_accessor source_type: ("TRAINING" | "RETRAINING" | "IMPORT")
862
+ attr_accessor model_quality: ("QUALITY_THRESHOLD_MET" | "CANNOT_DETERMINE_QUALITY" | "POOR_QUALITY_DETECTED")
841
863
  SENSITIVE: []
842
864
  end
843
865
 
@@ -1050,6 +1072,7 @@ module Aws::LookoutEquipment
1050
1072
  attr_accessor model_name: ::String
1051
1073
  attr_accessor labels_input_configuration: Types::LabelsInputConfiguration
1052
1074
  attr_accessor role_arn: ::String
1075
+ attr_accessor model_diagnostics_output_configuration: Types::ModelDiagnosticsOutputConfiguration
1053
1076
  SENSITIVE: []
1054
1077
  end
1055
1078
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lookoutequipment
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.27.0
4
+ version: 1.29.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: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-02-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core