aws-sdk-lookoutequipment 1.28.0 → 1.30.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: 07136557c56a64449fa9a611448d6223e7437cc1fd5ab5b7db95dc3fdf7af94c
4
- data.tar.gz: 1e36bcd691569476b278d922c6c58c8b38ebc79d05e36b58ff8b88766b64a6e0
3
+ metadata.gz: 0be3a6161b692aec0507673eddaeaef9f5d7846353e1d817d9e1ae88e6b9f879
4
+ data.tar.gz: 237c4cee069b1736ebd14fa253e30e9f404da3f1d7c8ad36c486abe97c11dfb4
5
5
  SHA512:
6
- metadata.gz: 065fd1171ec2da96a65be0a998c680ff9bf8fed18c40731406165249a3d2534d29dd2df069af169756a1f7788370869d05a63dd2d3270ac24dad8d4595dc490d
7
- data.tar.gz: 216ef4023b1d6b35b3c786bcaba0975fc7975d8df7d5d28debfb1b9f1d4dd1ac4eb996dd530c3f59e73291f947662f129f83be13d342a50b6929753d210bd7cc
6
+ metadata.gz: 4a12d8df26e29eca10b7ef9f9f6da37b70584a4105634f0d4cfa78f9ab1a710c46c68162de58b40268d00e1793e91d2c4681c96b2282fef5c5d31f824caef7f1
7
+ data.tar.gz: 6d4ed3ff63549254638df1ebd94c2e50786ab9071594e9b48844328b0f907a941abc5e7401418f98d3fd63942f092edc1fc1e99f0181aa062c6a94326095802e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.30.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.29.0 (2024-02-21)
10
+ ------------------
11
+
12
+ * 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.
13
+
4
14
  1.28.0 (2024-02-14)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.28.0
1
+ 1.30.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::LookoutEquipment
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::LookoutEquipment
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -347,50 +356,65 @@ module Aws::LookoutEquipment
347
356
  # @option options [Aws::LookoutEquipment::EndpointProvider] :endpoint_provider
348
357
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::LookoutEquipment::EndpointParameters`
349
358
  #
350
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
351
- # requests through. Formatted like 'http://proxy.com:123'.
352
- #
353
- # @option options [Float] :http_open_timeout (15) The number of
354
- # seconds to wait when opening a HTTP session before raising a
355
- # `Timeout::Error`.
356
- #
357
- # @option options [Float] :http_read_timeout (60) The default
358
- # number of seconds to wait for response data. This value can
359
- # safely be set per-request on the session.
360
- #
361
- # @option options [Float] :http_idle_timeout (5) The number of
362
- # seconds a connection is allowed to sit idle before it is
363
- # considered stale. Stale connections are closed and removed
364
- # from the pool before making a request.
365
- #
366
- # @option options [Float] :http_continue_timeout (1) The number of
367
- # seconds to wait for a 100-continue response before sending the
368
- # request body. This option has no effect unless the request has
369
- # "Expect" header set to "100-continue". Defaults to `nil` which
370
- # disables this behaviour. This value can safely be set per
371
- # request on the session.
372
- #
373
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
374
- # in seconds.
359
+ # @option options [Float] :http_continue_timeout (1)
360
+ # The number of seconds to wait for a 100-continue response before sending the
361
+ # request body. This option has no effect unless the request has "Expect"
362
+ # header set to "100-continue". Defaults to `nil` which disables this
363
+ # behaviour. This value can safely be set per request on the session.
364
+ #
365
+ # @option options [Float] :http_idle_timeout (5)
366
+ # The number of seconds a connection is allowed to sit idle before it
367
+ # is considered stale. Stale connections are closed and removed from the
368
+ # pool before making a request.
369
+ #
370
+ # @option options [Float] :http_open_timeout (15)
371
+ # The default number of seconds to wait for response data.
372
+ # This value can safely be set per-request on the session.
373
+ #
374
+ # @option options [URI::HTTP,String] :http_proxy
375
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
376
+ #
377
+ # @option options [Float] :http_read_timeout (60)
378
+ # The default number of seconds to wait for response data.
379
+ # This value can safely be set per-request on the session.
380
+ #
381
+ # @option options [Boolean] :http_wire_trace (false)
382
+ # When `true`, HTTP debug output will be sent to the `:logger`.
383
+ #
384
+ # @option options [Proc] :on_chunk_received
385
+ # When a Proc object is provided, it will be used as callback when each chunk
386
+ # of the response body is received. It provides three arguments: the chunk,
387
+ # the number of bytes received, and the total number of
388
+ # bytes in the response (or nil if the server did not send a `content-length`).
389
+ #
390
+ # @option options [Proc] :on_chunk_sent
391
+ # When a Proc object is provided, it will be used as callback when each chunk
392
+ # of the request body is sent. It provides three arguments: the chunk,
393
+ # the number of bytes read from the body, and the total number of
394
+ # bytes in the body.
395
+ #
396
+ # @option options [Boolean] :raise_response_errors (true)
397
+ # When `true`, response errors are raised.
398
+ #
399
+ # @option options [String] :ssl_ca_bundle
400
+ # Full path to the SSL certificate authority bundle file that should be used when
401
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
402
+ # `:ssl_ca_directory` the the system default will be used if available.
403
+ #
404
+ # @option options [String] :ssl_ca_directory
405
+ # Full path of the directory that contains the unbundled SSL certificate
406
+ # authority files for verifying peer certificates. If you do
407
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
408
+ # default will be used if available.
375
409
  #
376
- # @option options [Boolean] :http_wire_trace (false) When `true`,
377
- # HTTP debug output will be sent to the `:logger`.
410
+ # @option options [String] :ssl_ca_store
411
+ # Sets the X509::Store to verify peer certificate.
378
412
  #
379
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
380
- # SSL peer certificates are verified when establishing a
381
- # connection.
413
+ # @option options [Float] :ssl_timeout
414
+ # Sets the SSL timeout in seconds
382
415
  #
383
- # @option options [String] :ssl_ca_bundle Full path to the SSL
384
- # certificate authority bundle file that should be used when
385
- # verifying peer certificates. If you do not pass
386
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
387
- # will be used if available.
388
- #
389
- # @option options [String] :ssl_ca_directory Full path of the
390
- # directory that contains the unbundled SSL certificate
391
- # authority files for verifying peer certificates. If you do
392
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
393
- # system default will be used if available.
416
+ # @option options [Boolean] :ssl_verify_peer (true)
417
+ # When `true`, SSL peer certificates are verified when establishing a connection.
394
418
  #
395
419
  def initialize(*args)
396
420
  super
@@ -541,6 +565,7 @@ module Aws::LookoutEquipment
541
565
  # * {Types::CreateInferenceSchedulerResponse#inference_scheduler_arn #inference_scheduler_arn} => String
542
566
  # * {Types::CreateInferenceSchedulerResponse#inference_scheduler_name #inference_scheduler_name} => String
543
567
  # * {Types::CreateInferenceSchedulerResponse#status #status} => String
568
+ # * {Types::CreateInferenceSchedulerResponse#model_quality #model_quality} => String
544
569
  #
545
570
  # @example Request syntax with placeholder values
546
571
  #
@@ -583,6 +608,7 @@ module Aws::LookoutEquipment
583
608
  # resp.inference_scheduler_arn #=> String
584
609
  # resp.inference_scheduler_name #=> String
585
610
  # resp.status #=> String, one of "PENDING", "RUNNING", "STOPPING", "STOPPED"
611
+ # resp.model_quality #=> String, one of "QUALITY_THRESHOLD_MET", "CANNOT_DETERMINE_QUALITY", "POOR_QUALITY_DETECTED"
586
612
  #
587
613
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/CreateInferenceScheduler AWS API Documentation
588
614
  #
@@ -1496,6 +1522,7 @@ module Aws::LookoutEquipment
1496
1522
  # * {Types::DescribeModelResponse#accumulated_inference_data_end_time #accumulated_inference_data_end_time} => Time
1497
1523
  # * {Types::DescribeModelResponse#retraining_scheduler_status #retraining_scheduler_status} => String
1498
1524
  # * {Types::DescribeModelResponse#model_diagnostics_output_configuration #model_diagnostics_output_configuration} => Types::ModelDiagnosticsOutputConfiguration
1525
+ # * {Types::DescribeModelResponse#model_quality #model_quality} => String
1499
1526
  #
1500
1527
  # @example Request syntax with placeholder values
1501
1528
  #
@@ -1550,6 +1577,7 @@ module Aws::LookoutEquipment
1550
1577
  # resp.model_diagnostics_output_configuration.s3_output_configuration.bucket #=> String
1551
1578
  # resp.model_diagnostics_output_configuration.s3_output_configuration.prefix #=> String
1552
1579
  # resp.model_diagnostics_output_configuration.kms_key_id #=> String
1580
+ # resp.model_quality #=> String, one of "QUALITY_THRESHOLD_MET", "CANNOT_DETERMINE_QUALITY", "POOR_QUALITY_DETECTED"
1553
1581
  #
1554
1582
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/DescribeModel AWS API Documentation
1555
1583
  #
@@ -1604,6 +1632,7 @@ module Aws::LookoutEquipment
1604
1632
  # * {Types::DescribeModelVersionResponse#auto_promotion_result_reason #auto_promotion_result_reason} => String
1605
1633
  # * {Types::DescribeModelVersionResponse#model_diagnostics_output_configuration #model_diagnostics_output_configuration} => Types::ModelDiagnosticsOutputConfiguration
1606
1634
  # * {Types::DescribeModelVersionResponse#model_diagnostics_results_object #model_diagnostics_results_object} => Types::S3Object
1635
+ # * {Types::DescribeModelVersionResponse#model_quality #model_quality} => String
1607
1636
  #
1608
1637
  # @example Request syntax with placeholder values
1609
1638
  #
@@ -1653,6 +1682,7 @@ module Aws::LookoutEquipment
1653
1682
  # resp.model_diagnostics_output_configuration.kms_key_id #=> String
1654
1683
  # resp.model_diagnostics_results_object.bucket #=> String
1655
1684
  # resp.model_diagnostics_results_object.key #=> String
1685
+ # resp.model_quality #=> String, one of "QUALITY_THRESHOLD_MET", "CANNOT_DETERMINE_QUALITY", "POOR_QUALITY_DETECTED"
1656
1686
  #
1657
1687
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/DescribeModelVersion AWS API Documentation
1658
1688
  #
@@ -2401,6 +2431,7 @@ module Aws::LookoutEquipment
2401
2431
  # resp.model_version_summaries[0].created_at #=> Time
2402
2432
  # resp.model_version_summaries[0].status #=> String, one of "IN_PROGRESS", "SUCCESS", "FAILED", "IMPORT_IN_PROGRESS", "CANCELED"
2403
2433
  # resp.model_version_summaries[0].source_type #=> String, one of "TRAINING", "RETRAINING", "IMPORT"
2434
+ # resp.model_version_summaries[0].model_quality #=> String, one of "QUALITY_THRESHOLD_MET", "CANNOT_DETERMINE_QUALITY", "POOR_QUALITY_DETECTED"
2404
2435
  #
2405
2436
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ListModelVersions AWS API Documentation
2406
2437
  #
@@ -2468,6 +2499,7 @@ module Aws::LookoutEquipment
2468
2499
  # resp.model_summaries[0].model_diagnostics_output_configuration.s3_output_configuration.bucket #=> String
2469
2500
  # resp.model_summaries[0].model_diagnostics_output_configuration.s3_output_configuration.prefix #=> String
2470
2501
  # resp.model_summaries[0].model_diagnostics_output_configuration.kms_key_id #=> String
2502
+ # resp.model_summaries[0].model_quality #=> String, one of "QUALITY_THRESHOLD_MET", "CANNOT_DETERMINE_QUALITY", "POOR_QUALITY_DETECTED"
2471
2503
  #
2472
2504
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ListModels AWS API Documentation
2473
2505
  #
@@ -3294,7 +3326,7 @@ module Aws::LookoutEquipment
3294
3326
  params: params,
3295
3327
  config: config)
3296
3328
  context[:gem_name] = 'aws-sdk-lookoutequipment'
3297
- context[:gem_version] = '1.28.0'
3329
+ context[:gem_version] = '1.30.0'
3298
3330
  Seahorse::Client::Request.new(handlers, context)
3299
3331
  end
3300
3332
 
@@ -165,6 +165,7 @@ module Aws::LookoutEquipment
165
165
  ModelMetrics = Shapes::StringShape.new(name: 'ModelMetrics')
166
166
  ModelName = Shapes::StringShape.new(name: 'ModelName')
167
167
  ModelPromoteMode = Shapes::StringShape.new(name: 'ModelPromoteMode')
168
+ ModelQuality = Shapes::StringShape.new(name: 'ModelQuality')
168
169
  ModelStatus = Shapes::StringShape.new(name: 'ModelStatus')
169
170
  ModelSummaries = Shapes::ListShape.new(name: 'ModelSummaries')
170
171
  ModelSummary = Shapes::StructureShape.new(name: 'ModelSummary')
@@ -273,6 +274,7 @@ module Aws::LookoutEquipment
273
274
  CreateInferenceSchedulerResponse.add_member(:inference_scheduler_arn, Shapes::ShapeRef.new(shape: InferenceSchedulerArn, location_name: "InferenceSchedulerArn"))
274
275
  CreateInferenceSchedulerResponse.add_member(:inference_scheduler_name, Shapes::ShapeRef.new(shape: InferenceSchedulerName, location_name: "InferenceSchedulerName"))
275
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"))
276
278
  CreateInferenceSchedulerResponse.struct_class = Types::CreateInferenceSchedulerResponse
277
279
 
278
280
  CreateLabelGroupRequest.add_member(:label_group_name, Shapes::ShapeRef.new(shape: LabelGroupName, required: true, location_name: "LabelGroupName"))
@@ -511,6 +513,7 @@ module Aws::LookoutEquipment
511
513
  DescribeModelResponse.add_member(:accumulated_inference_data_end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "AccumulatedInferenceDataEndTime"))
512
514
  DescribeModelResponse.add_member(:retraining_scheduler_status, Shapes::ShapeRef.new(shape: RetrainingSchedulerStatus, location_name: "RetrainingSchedulerStatus"))
513
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"))
514
517
  DescribeModelResponse.struct_class = Types::DescribeModelResponse
515
518
 
516
519
  DescribeModelVersionRequest.add_member(:model_name, Shapes::ShapeRef.new(shape: ModelName, required: true, location_name: "ModelName"))
@@ -551,6 +554,7 @@ module Aws::LookoutEquipment
551
554
  DescribeModelVersionResponse.add_member(:auto_promotion_result_reason, Shapes::ShapeRef.new(shape: AutoPromotionResultReason, location_name: "AutoPromotionResultReason"))
552
555
  DescribeModelVersionResponse.add_member(:model_diagnostics_output_configuration, Shapes::ShapeRef.new(shape: ModelDiagnosticsOutputConfiguration, location_name: "ModelDiagnosticsOutputConfiguration"))
553
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"))
554
558
  DescribeModelVersionResponse.struct_class = Types::DescribeModelVersionResponse
555
559
 
556
560
  DescribeResourcePolicyRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "ResourceArn"))
@@ -891,6 +895,7 @@ module Aws::LookoutEquipment
891
895
  ModelSummary.add_member(:next_scheduled_retraining_start_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "NextScheduledRetrainingStartDate"))
892
896
  ModelSummary.add_member(:retraining_scheduler_status, Shapes::ShapeRef.new(shape: RetrainingSchedulerStatus, location_name: "RetrainingSchedulerStatus"))
893
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"))
894
899
  ModelSummary.struct_class = Types::ModelSummary
895
900
 
896
901
  ModelVersionSummaries.member = Shapes::ShapeRef.new(shape: ModelVersionSummary)
@@ -902,6 +907,7 @@ module Aws::LookoutEquipment
902
907
  ModelVersionSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAt"))
903
908
  ModelVersionSummary.add_member(:status, Shapes::ShapeRef.new(shape: ModelVersionStatus, location_name: "Status"))
904
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"))
905
911
  ModelVersionSummary.struct_class = Types::ModelVersionSummary
906
912
 
907
913
  MonotonicValues.add_member(:status, Shapes::ShapeRef.new(shape: StatisticalIssueStatus, required: true, location_name: "Status"))
@@ -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
@@ -1525,6 +1549,29 @@ module Aws::LookoutEquipment
1525
1549
  # diagnostics.
1526
1550
  # @return [Types::ModelDiagnosticsOutputConfiguration]
1527
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
+ #
1528
1575
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/DescribeModelResponse AWS API Documentation
1529
1576
  #
1530
1577
  class DescribeModelResponse < Struct.new(
@@ -1568,7 +1615,8 @@ module Aws::LookoutEquipment
1568
1615
  :accumulated_inference_data_start_time,
1569
1616
  :accumulated_inference_data_end_time,
1570
1617
  :retraining_scheduler_status,
1571
- :model_diagnostics_output_configuration)
1618
+ :model_diagnostics_output_configuration,
1619
+ :model_quality)
1572
1620
  SENSITIVE = []
1573
1621
  include Aws::Structure
1574
1622
  end
@@ -1773,6 +1821,29 @@ module Aws::LookoutEquipment
1773
1821
  # the pointwise model diagnostics for the model version.
1774
1822
  # @return [Types::S3Object]
1775
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
+ #
1776
1847
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/DescribeModelVersionResponse AWS API Documentation
1777
1848
  #
1778
1849
  class DescribeModelVersionResponse < Struct.new(
@@ -1809,7 +1880,8 @@ module Aws::LookoutEquipment
1809
1880
  :auto_promotion_result,
1810
1881
  :auto_promotion_result_reason,
1811
1882
  :model_diagnostics_output_configuration,
1812
- :model_diagnostics_results_object)
1883
+ :model_diagnostics_results_object,
1884
+ :model_quality)
1813
1885
  SENSITIVE = []
1814
1886
  include Aws::Structure
1815
1887
  end
@@ -3536,6 +3608,29 @@ module Aws::LookoutEquipment
3536
3608
  # for an Amazon Lookout for Equipment model.
3537
3609
  # @return [Types::ModelDiagnosticsOutputConfiguration]
3538
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
+ #
3539
3634
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ModelSummary AWS API Documentation
3540
3635
  #
3541
3636
  class ModelSummary < Struct.new(
@@ -3552,7 +3647,8 @@ module Aws::LookoutEquipment
3552
3647
  :latest_scheduled_retraining_start_time,
3553
3648
  :next_scheduled_retraining_start_date,
3554
3649
  :retraining_scheduler_status,
3555
- :model_diagnostics_output_configuration)
3650
+ :model_diagnostics_output_configuration,
3651
+ :model_quality)
3556
3652
  SENSITIVE = []
3557
3653
  include Aws::Structure
3558
3654
  end
@@ -3588,6 +3684,25 @@ module Aws::LookoutEquipment
3588
3684
  # Indicates how this model version was generated.
3589
3685
  # @return [String]
3590
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
+ #
3591
3706
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutequipment-2020-12-15/ModelVersionSummary AWS API Documentation
3592
3707
  #
3593
3708
  class ModelVersionSummary < Struct.new(
@@ -3597,7 +3712,8 @@ module Aws::LookoutEquipment
3597
3712
  :model_version_arn,
3598
3713
  :created_at,
3599
3714
  :status,
3600
- :source_type)
3715
+ :source_type,
3716
+ :model_quality)
3601
3717
  SENSITIVE = []
3602
3718
  include Aws::Structure
3603
3719
  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.28.0'
55
+ GEM_VERSION = '1.30.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: (
@@ -426,6 +427,7 @@ module Aws
426
427
  def accumulated_inference_data_end_time: () -> ::Time
427
428
  def retraining_scheduler_status: () -> ("PENDING" | "RUNNING" | "STOPPING" | "STOPPED")
428
429
  def model_diagnostics_output_configuration: () -> Types::ModelDiagnosticsOutputConfiguration
430
+ def model_quality: () -> ("QUALITY_THRESHOLD_MET" | "CANNOT_DETERMINE_QUALITY" | "POOR_QUALITY_DETECTED")
429
431
  end
430
432
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#describe_model-instance_method
431
433
  def describe_model: (
@@ -469,6 +471,7 @@ module Aws
469
471
  def auto_promotion_result_reason: () -> ::String
470
472
  def model_diagnostics_output_configuration: () -> Types::ModelDiagnosticsOutputConfiguration
471
473
  def model_diagnostics_results_object: () -> Types::S3Object
474
+ def model_quality: () -> ("QUALITY_THRESHOLD_MET" | "CANNOT_DETERMINE_QUALITY" | "POOR_QUALITY_DETECTED")
472
475
  end
473
476
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#describe_model_version-instance_method
474
477
  def describe_model_version: (
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
 
@@ -362,6 +363,7 @@ module Aws::LookoutEquipment
362
363
  attr_accessor accumulated_inference_data_end_time: ::Time
363
364
  attr_accessor retraining_scheduler_status: ("PENDING" | "RUNNING" | "STOPPING" | "STOPPED")
364
365
  attr_accessor model_diagnostics_output_configuration: Types::ModelDiagnosticsOutputConfiguration
366
+ attr_accessor model_quality: ("QUALITY_THRESHOLD_MET" | "CANNOT_DETERMINE_QUALITY" | "POOR_QUALITY_DETECTED")
365
367
  SENSITIVE: []
366
368
  end
367
369
 
@@ -406,6 +408,7 @@ module Aws::LookoutEquipment
406
408
  attr_accessor auto_promotion_result_reason: ::String
407
409
  attr_accessor model_diagnostics_output_configuration: Types::ModelDiagnosticsOutputConfiguration
408
410
  attr_accessor model_diagnostics_results_object: Types::S3Object
411
+ attr_accessor model_quality: ("QUALITY_THRESHOLD_MET" | "CANNOT_DETERMINE_QUALITY" | "POOR_QUALITY_DETECTED")
409
412
  SENSITIVE: []
410
413
  end
411
414
 
@@ -844,6 +847,7 @@ module Aws::LookoutEquipment
844
847
  attr_accessor next_scheduled_retraining_start_date: ::Time
845
848
  attr_accessor retraining_scheduler_status: ("PENDING" | "RUNNING" | "STOPPING" | "STOPPED")
846
849
  attr_accessor model_diagnostics_output_configuration: Types::ModelDiagnosticsOutputConfiguration
850
+ attr_accessor model_quality: ("QUALITY_THRESHOLD_MET" | "CANNOT_DETERMINE_QUALITY" | "POOR_QUALITY_DETECTED")
847
851
  SENSITIVE: []
848
852
  end
849
853
 
@@ -855,6 +859,7 @@ module Aws::LookoutEquipment
855
859
  attr_accessor created_at: ::Time
856
860
  attr_accessor status: ("IN_PROGRESS" | "SUCCESS" | "FAILED" | "IMPORT_IN_PROGRESS" | "CANCELED")
857
861
  attr_accessor source_type: ("TRAINING" | "RETRAINING" | "IMPORT")
862
+ attr_accessor model_quality: ("QUALITY_THRESHOLD_MET" | "CANNOT_DETERMINE_QUALITY" | "POOR_QUALITY_DETECTED")
858
863
  SENSITIVE: []
859
864
  end
860
865
 
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.28.0
4
+ version: 1.30.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-02-14 00:00:00.000000000 Z
11
+ date: 2024-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.191.0
22
+ version: 3.193.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement