aws-sdk-personalize 1.27.0 → 1.28.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-personalize.rb +1 -1
- data/lib/aws-sdk-personalize/client.rb +32 -32
- data/lib/aws-sdk-personalize/client_api.rb +1 -1
- data/lib/aws-sdk-personalize/types.rb +18 -19
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 57a383694a16ae01f97412337513cc45ff6f8665a623ef621a1d903c6246f665
|
4
|
+
data.tar.gz: b42efa722a78b920622e0d8e5522cb9850ce8ef79c7db0417d06d74a367af937
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: afaeb1205cf34e975f8622b4de1da25bdf01328325f85fd0a81c347cb6d0257f7bcc9e5e5cd9d0982032f0a55b74fa59234d1d83d76dd995099f4a4db0cafe04
|
7
|
+
data.tar.gz: c1b98937f631c0d63c66ab34b0ebe26c7d6f1be048ae4c49d5e808a492ffce27dae41846a7c6dd079b0739a36cb3445fbcf00ee986784fcd34221aa8f0b46943
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.28.0 (2021-07-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - My AWS Service (placeholder) - Making minProvisionedTPS an optional parameter when creating a campaign. If not provided, it defaults to 1.
|
8
|
+
|
4
9
|
1.27.0 (2021-06-07)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.28.0
|
data/lib/aws-sdk-personalize.rb
CHANGED
@@ -482,7 +482,7 @@ module Aws::Personalize
|
|
482
482
|
# @option params [required, String] :solution_version_arn
|
483
483
|
# The Amazon Resource Name (ARN) of the solution version to deploy.
|
484
484
|
#
|
485
|
-
# @option params [
|
485
|
+
# @option params [Integer] :min_provisioned_tps
|
486
486
|
# Specifies the requested minimum provisioned transactions
|
487
487
|
# (recommendations) per second that Amazon Personalize will support.
|
488
488
|
#
|
@@ -498,7 +498,7 @@ module Aws::Personalize
|
|
498
498
|
# resp = client.create_campaign({
|
499
499
|
# name: "Name", # required
|
500
500
|
# solution_version_arn: "Arn", # required
|
501
|
-
# min_provisioned_tps: 1,
|
501
|
+
# min_provisioned_tps: 1,
|
502
502
|
# campaign_config: {
|
503
503
|
# item_exploration_config: {
|
504
504
|
# "ParameterName" => "ParameterValue",
|
@@ -603,10 +603,10 @@ module Aws::Personalize
|
|
603
603
|
|
604
604
|
# Creates a job that exports data from your dataset to an Amazon S3
|
605
605
|
# bucket. To allow Amazon Personalize to export the training data, you
|
606
|
-
# must specify an service-linked
|
607
|
-
#
|
608
|
-
#
|
609
|
-
#
|
606
|
+
# must specify an service-linked IAM role that gives Amazon Personalize
|
607
|
+
# `PutObject` permissions for your Amazon S3 bucket. For information,
|
608
|
+
# see [Exporting a dataset][1] in the Amazon Personalize developer
|
609
|
+
# guide.
|
610
610
|
#
|
611
611
|
# **Status**
|
612
612
|
#
|
@@ -642,9 +642,8 @@ module Aws::Personalize
|
|
642
642
|
# both types. The default value is `PUT`.
|
643
643
|
#
|
644
644
|
# @option params [required, String] :role_arn
|
645
|
-
# The Amazon Resource Name (ARN) of the
|
646
|
-
#
|
647
|
-
# output Amazon S3 bucket.
|
645
|
+
# The Amazon Resource Name (ARN) of the IAM service role that has
|
646
|
+
# permissions to add data to your output Amazon S3 bucket.
|
648
647
|
#
|
649
648
|
# @option params [required, Types::DatasetExportJobOutput] :job_output
|
650
649
|
# The path to the Amazon S3 bucket where the job's output is stored.
|
@@ -711,10 +710,10 @@ module Aws::Personalize
|
|
711
710
|
#
|
712
711
|
# </note>
|
713
712
|
#
|
714
|
-
# You can specify an
|
713
|
+
# You can specify an Key Management Service (KMS) key to encrypt the
|
715
714
|
# datasets in the group. If you specify a KMS key, you must also include
|
716
|
-
# an
|
717
|
-
#
|
715
|
+
# an Identity and Access Management (IAM) role that has permission to
|
716
|
+
# access the key.
|
718
717
|
#
|
719
718
|
# **APIs that require a dataset group ARN in the request**
|
720
719
|
#
|
@@ -736,12 +735,13 @@ module Aws::Personalize
|
|
736
735
|
# The name for the new dataset group.
|
737
736
|
#
|
738
737
|
# @option params [String] :role_arn
|
739
|
-
# The ARN of the IAM role that has
|
740
|
-
#
|
738
|
+
# The ARN of the Identity and Access Management (IAM) role that has
|
739
|
+
# permissions to access the Key Management Service (KMS) key. Supplying
|
740
|
+
# an IAM role is only valid when also specifying a KMS key.
|
741
741
|
#
|
742
742
|
# @option params [String] :kms_key_arn
|
743
|
-
# The Amazon Resource Name (ARN) of a
|
744
|
-
# datasets.
|
743
|
+
# The Amazon Resource Name (ARN) of a Key Management Service (KMS) key
|
744
|
+
# used to encrypt the datasets.
|
745
745
|
#
|
746
746
|
# @return [Types::CreateDatasetGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
747
747
|
#
|
@@ -770,12 +770,12 @@ module Aws::Personalize
|
|
770
770
|
|
771
771
|
# Creates a job that imports training data from your data source (an
|
772
772
|
# Amazon S3 bucket) to an Amazon Personalize dataset. To allow Amazon
|
773
|
-
# Personalize to import the training data, you must specify an
|
774
|
-
#
|
775
|
-
#
|
776
|
-
#
|
777
|
-
#
|
778
|
-
#
|
773
|
+
# Personalize to import the training data, you must specify an IAM
|
774
|
+
# service role that has permission to read from the data source, as
|
775
|
+
# Amazon Personalize makes a copy of your data and processes it
|
776
|
+
# internally. For information on granting access to your Amazon S3
|
777
|
+
# bucket, see [Giving Amazon Personalize Access to Amazon S3
|
778
|
+
# Resources][1].
|
779
779
|
#
|
780
780
|
# The dataset import job replaces any existing data in the dataset that
|
781
781
|
# you imported in bulk.
|
@@ -1841,7 +1841,7 @@ module Aws::Personalize
|
|
1841
1841
|
#
|
1842
1842
|
# @return [Types::DescribeFilterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1843
1843
|
#
|
1844
|
-
# * {Types::DescribeFilterResponse#filter #filter} => Types::Filter
|
1844
|
+
# * {Types::DescribeFilterResponse#filter #data.filter} => Types::Filter (This method conflicts with a method on Response, call it through the data member)
|
1845
1845
|
#
|
1846
1846
|
# @example Request syntax with placeholder values
|
1847
1847
|
#
|
@@ -1851,14 +1851,14 @@ module Aws::Personalize
|
|
1851
1851
|
#
|
1852
1852
|
# @example Response structure
|
1853
1853
|
#
|
1854
|
-
# resp.filter.name #=> String
|
1855
|
-
# resp.filter.filter_arn #=> String
|
1856
|
-
# resp.filter.creation_date_time #=> Time
|
1857
|
-
# resp.filter.last_updated_date_time #=> Time
|
1858
|
-
# resp.filter.dataset_group_arn #=> String
|
1859
|
-
# resp.filter.failure_reason #=> String
|
1860
|
-
# resp.filter.filter_expression #=> String
|
1861
|
-
# resp.filter.status #=> String
|
1854
|
+
# resp.data.filter.name #=> String
|
1855
|
+
# resp.data.filter.filter_arn #=> String
|
1856
|
+
# resp.data.filter.creation_date_time #=> Time
|
1857
|
+
# resp.data.filter.last_updated_date_time #=> Time
|
1858
|
+
# resp.data.filter.dataset_group_arn #=> String
|
1859
|
+
# resp.data.filter.failure_reason #=> String
|
1860
|
+
# resp.data.filter.filter_expression #=> String
|
1861
|
+
# resp.data.filter.status #=> String
|
1862
1862
|
#
|
1863
1863
|
# @see http://docs.aws.amazon.com/goto/WebAPI/personalize-2018-05-22/DescribeFilter AWS API Documentation
|
1864
1864
|
#
|
@@ -2829,7 +2829,7 @@ module Aws::Personalize
|
|
2829
2829
|
params: params,
|
2830
2830
|
config: config)
|
2831
2831
|
context[:gem_name] = 'aws-sdk-personalize'
|
2832
|
-
context[:gem_version] = '1.
|
2832
|
+
context[:gem_version] = '1.28.0'
|
2833
2833
|
Seahorse::Client::Request.new(handlers, context)
|
2834
2834
|
end
|
2835
2835
|
|
@@ -352,7 +352,7 @@ module Aws::Personalize
|
|
352
352
|
|
353
353
|
CreateCampaignRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
|
354
354
|
CreateCampaignRequest.add_member(:solution_version_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "solutionVersionArn"))
|
355
|
-
CreateCampaignRequest.add_member(:min_provisioned_tps, Shapes::ShapeRef.new(shape: TransactionsPerSecond,
|
355
|
+
CreateCampaignRequest.add_member(:min_provisioned_tps, Shapes::ShapeRef.new(shape: TransactionsPerSecond, location_name: "minProvisionedTPS"))
|
356
356
|
CreateCampaignRequest.add_member(:campaign_config, Shapes::ShapeRef.new(shape: CampaignConfig, location_name: "campaignConfig"))
|
357
357
|
CreateCampaignRequest.struct_class = Types::CreateCampaignRequest
|
358
358
|
|
@@ -734,7 +734,7 @@ module Aws::Personalize
|
|
734
734
|
# {
|
735
735
|
# name: "Name", # required
|
736
736
|
# solution_version_arn: "Arn", # required
|
737
|
-
# min_provisioned_tps: 1,
|
737
|
+
# min_provisioned_tps: 1,
|
738
738
|
# campaign_config: {
|
739
739
|
# item_exploration_config: {
|
740
740
|
# "ParameterName" => "ParameterValue",
|
@@ -817,9 +817,8 @@ module Aws::Personalize
|
|
817
817
|
# @return [String]
|
818
818
|
#
|
819
819
|
# @!attribute [rw] role_arn
|
820
|
-
# The Amazon Resource Name (ARN) of the
|
821
|
-
#
|
822
|
-
# output Amazon S3 bucket.
|
820
|
+
# The Amazon Resource Name (ARN) of the IAM service role that has
|
821
|
+
# permissions to add data to your output Amazon S3 bucket.
|
823
822
|
# @return [String]
|
824
823
|
#
|
825
824
|
# @!attribute [rw] job_output
|
@@ -864,13 +863,14 @@ module Aws::Personalize
|
|
864
863
|
# @return [String]
|
865
864
|
#
|
866
865
|
# @!attribute [rw] role_arn
|
867
|
-
# The ARN of the IAM role that has
|
866
|
+
# The ARN of the Identity and Access Management (IAM) role that has
|
867
|
+
# permissions to access the Key Management Service (KMS) key.
|
868
868
|
# Supplying an IAM role is only valid when also specifying a KMS key.
|
869
869
|
# @return [String]
|
870
870
|
#
|
871
871
|
# @!attribute [rw] kms_key_arn
|
872
|
-
# The Amazon Resource Name (ARN) of a
|
873
|
-
# datasets.
|
872
|
+
# The Amazon Resource Name (ARN) of a Key Management Service (KMS) key
|
873
|
+
# used to encrypt the datasets.
|
874
874
|
# @return [String]
|
875
875
|
#
|
876
876
|
# @see http://docs.aws.amazon.com/goto/WebAPI/personalize-2018-05-22/CreateDatasetGroupRequest AWS API Documentation
|
@@ -1452,9 +1452,8 @@ module Aws::Personalize
|
|
1452
1452
|
# @return [String]
|
1453
1453
|
#
|
1454
1454
|
# @!attribute [rw] role_arn
|
1455
|
-
# The Amazon Resource Name (ARN) of the
|
1456
|
-
#
|
1457
|
-
# output Amazon S3 bucket.
|
1455
|
+
# The Amazon Resource Name (ARN) of the IAM service role that has
|
1456
|
+
# permissions to add data to your output Amazon S3 bucket.
|
1458
1457
|
# @return [String]
|
1459
1458
|
#
|
1460
1459
|
# @!attribute [rw] status
|
@@ -1585,7 +1584,7 @@ module Aws::Personalize
|
|
1585
1584
|
# and train a solution by calling CreateSolution. A dataset group can
|
1586
1585
|
# contain only one of each type of dataset.
|
1587
1586
|
#
|
1588
|
-
# You can specify an
|
1587
|
+
# You can specify an Key Management Service (KMS) key to encrypt the
|
1589
1588
|
# datasets in the group.
|
1590
1589
|
#
|
1591
1590
|
# @!attribute [rw] name
|
@@ -1613,8 +1612,8 @@ module Aws::Personalize
|
|
1613
1612
|
# @return [String]
|
1614
1613
|
#
|
1615
1614
|
# @!attribute [rw] kms_key_arn
|
1616
|
-
# The Amazon Resource Name (ARN) of the
|
1617
|
-
# datasets.
|
1615
|
+
# The Amazon Resource Name (ARN) of the Key Management Service (KMS)
|
1616
|
+
# key used to encrypt the datasets.
|
1618
1617
|
# @return [String]
|
1619
1618
|
#
|
1620
1619
|
# @!attribute [rw] creation_date_time
|
@@ -1721,8 +1720,8 @@ module Aws::Personalize
|
|
1721
1720
|
# @return [Types::DataSource]
|
1722
1721
|
#
|
1723
1722
|
# @!attribute [rw] role_arn
|
1724
|
-
# The ARN of the
|
1725
|
-
#
|
1723
|
+
# The ARN of the IAM role that has permissions to read from the Amazon
|
1724
|
+
# S3 data source.
|
1726
1725
|
# @return [String]
|
1727
1726
|
#
|
1728
1727
|
# @!attribute [rw] status
|
@@ -2649,7 +2648,7 @@ module Aws::Personalize
|
|
2649
2648
|
# @return [String]
|
2650
2649
|
#
|
2651
2650
|
# @!attribute [rw] account_id
|
2652
|
-
# The Amazon
|
2651
|
+
# The Amazon Web Services account that owns the event tracker.
|
2653
2652
|
# @return [String]
|
2654
2653
|
#
|
2655
2654
|
# @!attribute [rw] tracking_id
|
@@ -3963,9 +3962,9 @@ module Aws::Personalize
|
|
3963
3962
|
# @return [String]
|
3964
3963
|
#
|
3965
3964
|
# @!attribute [rw] kms_key_arn
|
3966
|
-
# The Amazon Resource Name (ARN) of the
|
3967
|
-
#
|
3968
|
-
#
|
3965
|
+
# The Amazon Resource Name (ARN) of the Key Management Service (KMS)
|
3966
|
+
# key that Amazon Personalize uses to encrypt or decrypt the input and
|
3967
|
+
# output files of a batch inference job.
|
3969
3968
|
# @return [String]
|
3970
3969
|
#
|
3971
3970
|
# @see http://docs.aws.amazon.com/goto/WebAPI/personalize-2018-05-22/S3DataConfig AWS API Documentation
|
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.
|
4
|
+
version: 1.28.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: 2021-
|
11
|
+
date: 2021-07-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|