aws-sdk-personalize 1.41.0 → 1.42.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3dc407b97dfd715c2a50bb1ba07c79332cc359940e83ddf7f6dabfb786c579fa
4
- data.tar.gz: ed92e673a1bed28e1721875e1efe8f0ae11d6d656b5aec306e7d9b1fbdd66714
3
+ metadata.gz: a053164e6a8cd6d9a1228c0a3546ed5c0a10d8dd82bcc205a976c1bc1410e385
4
+ data.tar.gz: bb3009ede7c94c464e53fb901890233054c51f779c08a0e60746b7bee1ddc4f0
5
5
  SHA512:
6
- metadata.gz: fe27bfcb1c7e081e3aa3c242d089218a372ac2d730570641a0ebb3728dcce22fda82c0143981fccb14c5fd86d72c5f4397e825c372f8586fa66a688fb415be77
7
- data.tar.gz: 4d281bb6c08bcc87eadbb8f463c3e4edab7f5b25892cbfbdfdc8bfc05c5e92c43257dee03b9414c9dcaded5be1685d47167c32734b1c30543670d8ce267b0529
6
+ metadata.gz: c91d120040907df7f153185af96f7f5f187aca39cb4d113fa195ac5fc6b37ad391d45be93f75babac7c337974c888715582de470fd1321945469baa7ca8f35e4
7
+ data.tar.gz: 666a6dd7a770baae5e714dda97f4bb59fed8b067ce0f83ee7359aae60da6327887a3c3f01898488076f6d40f3317ee96e0f4f19fcf6fc5f5e831a1d80e1bf0c1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.42.0 (2022-05-23)
5
+ ------------------
6
+
7
+ * Feature - Adding modelMetrics as part of DescribeRecommender API response for Personalize.
8
+
4
9
  1.41.0 (2022-04-19)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.41.0
1
+ 1.42.0
@@ -1282,6 +1282,9 @@ module Aws::Personalize
1282
1282
  # * CREATE PENDING > CREATE IN\_PROGRESS > ACTIVE -or- CREATE
1283
1283
  # FAILED
1284
1284
  #
1285
+ # * STOP PENDING > STOP IN\_PROGRESS > INACTIVE > START PENDING
1286
+ # > START IN\_PROGRESS > ACTIVE
1287
+ #
1285
1288
  # * DELETE PENDING > DELETE IN\_PROGRESS
1286
1289
  #
1287
1290
  # To get the recommender status, call [DescribeRecommender][2].
@@ -2515,11 +2518,17 @@ module Aws::Personalize
2515
2518
  # * CREATE PENDING > CREATE IN\_PROGRESS > ACTIVE -or- CREATE
2516
2519
  # FAILED
2517
2520
  #
2521
+ # * STOP PENDING > STOP IN\_PROGRESS > INACTIVE > START PENDING
2522
+ # > START IN\_PROGRESS > ACTIVE
2523
+ #
2518
2524
  # * DELETE PENDING > DELETE IN\_PROGRESS
2519
2525
  #
2520
2526
  # When the `status` is `CREATE FAILED`, the response includes the
2521
2527
  # `failureReason` key, which describes why.
2522
2528
  #
2529
+ # The `modelMetrics` key is null when the recommender is being created
2530
+ # or deleted.
2531
+ #
2523
2532
  # For more information on recommenders, see [CreateRecommender][1].
2524
2533
  #
2525
2534
  #
@@ -2559,6 +2568,8 @@ module Aws::Personalize
2559
2568
  # resp.recommender.latest_recommender_update.last_updated_date_time #=> Time
2560
2569
  # resp.recommender.latest_recommender_update.status #=> String
2561
2570
  # resp.recommender.latest_recommender_update.failure_reason #=> String
2571
+ # resp.recommender.model_metrics #=> Hash
2572
+ # resp.recommender.model_metrics["MetricName"] #=> Float
2562
2573
  #
2563
2574
  # @see http://docs.aws.amazon.com/goto/WebAPI/personalize-2018-05-22/DescribeRecommender AWS API Documentation
2564
2575
  #
@@ -3851,7 +3862,7 @@ module Aws::Personalize
3851
3862
  params: params,
3852
3863
  config: config)
3853
3864
  context[:gem_name] = 'aws-sdk-personalize'
3854
- context[:gem_version] = '1.41.0'
3865
+ context[:gem_version] = '1.42.0'
3855
3866
  Seahorse::Client::Request.new(handlers, context)
3856
3867
  end
3857
3868
 
@@ -1069,6 +1069,7 @@ module Aws::Personalize
1069
1069
  Recommender.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
1070
1070
  Recommender.add_member(:failure_reason, Shapes::ShapeRef.new(shape: FailureReason, location_name: "failureReason"))
1071
1071
  Recommender.add_member(:latest_recommender_update, Shapes::ShapeRef.new(shape: RecommenderUpdateSummary, location_name: "latestRecommenderUpdate"))
1072
+ Recommender.add_member(:model_metrics, Shapes::ShapeRef.new(shape: Metrics, location_name: "modelMetrics"))
1072
1073
  Recommender.struct_class = Types::Recommender
1073
1074
 
1074
1075
  RecommenderConfig.add_member(:item_exploration_config, Shapes::ShapeRef.new(shape: HyperParameters, location_name: "itemExplorationConfig"))
@@ -1382,6 +1383,7 @@ module Aws::Personalize
1382
1383
  o.errors << Shapes::ShapeRef.new(shape: ResourceAlreadyExistsException)
1383
1384
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1384
1385
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
1386
+ o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
1385
1387
  o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
1386
1388
  end)
1387
1389
 
@@ -3644,7 +3644,12 @@ module Aws::Personalize
3644
3644
  # @return [String]
3645
3645
  #
3646
3646
  # @!attribute [rw] metrics
3647
- # The metrics for the solution version.
3647
+ # The metrics for the solution version. For more information, see [
3648
+ # Evaluating a solution version with metrics ][1].
3649
+ #
3650
+ #
3651
+ #
3652
+ # [1]: https://docs.aws.amazon.com/personalize/latest/dg/working-with-training-metrics.html
3648
3653
  # @return [Hash<String,Float>]
3649
3654
  #
3650
3655
  # @see http://docs.aws.amazon.com/goto/WebAPI/personalize-2018-05-22/GetSolutionMetricsResponse AWS API Documentation
@@ -4844,6 +4849,9 @@ module Aws::Personalize
4844
4849
  # * CREATE PENDING &gt; CREATE IN\_PROGRESS &gt; ACTIVE -or- CREATE
4845
4850
  # FAILED
4846
4851
  #
4852
+ # * STOP PENDING &gt; STOP IN\_PROGRESS &gt; INACTIVE &gt; START
4853
+ # PENDING &gt; START IN\_PROGRESS &gt; ACTIVE
4854
+ #
4847
4855
  # * DELETE PENDING &gt; DELETE IN\_PROGRESS
4848
4856
  # @return [String]
4849
4857
  #
@@ -4855,6 +4863,16 @@ module Aws::Personalize
4855
4863
  # Provides a summary of the latest updates to the recommender.
4856
4864
  # @return [Types::RecommenderUpdateSummary]
4857
4865
  #
4866
+ # @!attribute [rw] model_metrics
4867
+ # Provides evaluation metrics that help you determine the performance
4868
+ # of a recommender. For more information, see [ Evaluating a
4869
+ # recommender][1].
4870
+ #
4871
+ #
4872
+ #
4873
+ # [1]: https://docs.aws.amazon.com/personalize/latest/dg/evaluating-recommenders.html
4874
+ # @return [Hash<String,Float>]
4875
+ #
4858
4876
  # @see http://docs.aws.amazon.com/goto/WebAPI/personalize-2018-05-22/Recommender AWS API Documentation
4859
4877
  #
4860
4878
  class Recommender < Struct.new(
@@ -4867,7 +4885,8 @@ module Aws::Personalize
4867
4885
  :last_updated_date_time,
4868
4886
  :status,
4869
4887
  :failure_reason,
4870
- :latest_recommender_update)
4888
+ :latest_recommender_update,
4889
+ :model_metrics)
4871
4890
  SENSITIVE = []
4872
4891
  include Aws::Structure
4873
4892
  end
@@ -4938,6 +4957,9 @@ module Aws::Personalize
4938
4957
  # * CREATE PENDING &gt; CREATE IN\_PROGRESS &gt; ACTIVE -or- CREATE
4939
4958
  # FAILED
4940
4959
  #
4960
+ # * STOP PENDING &gt; STOP IN\_PROGRESS &gt; INACTIVE &gt; START
4961
+ # PENDING &gt; START IN\_PROGRESS &gt; ACTIVE
4962
+ #
4941
4963
  # * DELETE PENDING &gt; DELETE IN\_PROGRESS
4942
4964
  # @return [String]
4943
4965
  #
@@ -4994,6 +5016,9 @@ module Aws::Personalize
4994
5016
  # * CREATE PENDING &gt; CREATE IN\_PROGRESS &gt; ACTIVE -or- CREATE
4995
5017
  # FAILED
4996
5018
  #
5019
+ # * STOP PENDING &gt; STOP IN\_PROGRESS &gt; INACTIVE &gt; START
5020
+ # PENDING &gt; START IN\_PROGRESS &gt; ACTIVE
5021
+ #
4997
5022
  # * DELETE PENDING &gt; DELETE IN\_PROGRESS
4998
5023
  # @return [String]
4999
5024
  #
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-personalize/customizations'
48
48
  # @!group service
49
49
  module Aws::Personalize
50
50
 
51
- GEM_VERSION = '1.41.0'
51
+ GEM_VERSION = '1.42.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-personalize
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.41.0
4
+ version: 1.42.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: 2022-04-19 00:00:00.000000000 Z
11
+ date: 2022-05-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core