aws-sdk-personalize 1.27.0 → 1.31.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: 1b9bf1983c2caf05d03bf27910e127dbf08ef2c57729bd945f1342ef9fc91e46
4
- data.tar.gz: e667272e15bbbd36286c6bc4170979d107eb8d9f8c11369afa88893468fa260c
3
+ metadata.gz: f38072f2786d989a9e2b26550c6a2a1f64c94acd6b039bede79ecbf337c80636
4
+ data.tar.gz: 1ba32671fbcd3ab411b3b2b31672d06944cf161d1f7399a3d850e0d2a92d5259
5
5
  SHA512:
6
- metadata.gz: 9b3aaa180e5deb69bbdc185bbfc0fa55d01aeb671fa1b6c7ff1dee1d44503f005036807584839fdc7d00597c5686ce1d0a82827f0d0687b76f732fd808505993
7
- data.tar.gz: e77af966cbc01a03dc68781edb8a6c0f80c49140e7b2ee38ad88c97505c125b2439a78dc03384618641a7f73ef565d63e0b8238e5897a0cdb65cddcbbb7eaf35
6
+ metadata.gz: 5f71c01a54c63ed9b8d9cf21d5e57940f26967d35cdcce556a3a84af209a9515d1e3bd75a7059030f45ffb151e045978aa1ed4a8e2f17db8bcafb21485394b0a
7
+ data.tar.gz: 75f10e66eee2d9d68c356c506dfd44d2564965c4a46c1c4cad3e4c82207a4528b50526d075d646cd76b9305ce7c3fb1c879e9bce418f3526005675f612f0c508
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.31.0 (2021-09-01)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.30.0 (2021-07-30)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.29.0 (2021-07-28)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.28.0 (2021-07-21)
20
+ ------------------
21
+
22
+ * Feature - My AWS Service (placeholder) - Making minProvisionedTPS an optional parameter when creating a campaign. If not provided, it defaults to 1.
23
+
4
24
  1.27.0 (2021-06-07)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.27.0
1
+ 1.31.0
@@ -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 [required, Integer] :min_provisioned_tps
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, # required
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 AWS Identity and Access Management
607
- # (IAM) role that gives Amazon Personalize `PutObject` permissions for
608
- # your Amazon S3 bucket. For information, see [Exporting a dataset][1]
609
- # in the Amazon Personalize developer guide.
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 AWS Identity and Access
646
- # Management service role that has permissions to add data to your
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 AWS Key Management Service (KMS) key to encrypt the
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 AWS Identity and Access Management (IAM) role that has permission
717
- # to access the key.
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 permissions to access the KMS key.
740
- # Supplying an IAM role is only valid when also specifying a KMS key.
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 KMS key used to encrypt the
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 AWS
774
- # Identity and Access Management (IAM) service role that has permission
775
- # to read from the data source, as Amazon Personalize makes a copy of
776
- # your data and processes it in an internal AWS system. For information
777
- # on granting access to your Amazon S3 bucket, see [Giving Amazon
778
- # Personalize Access to Amazon S3 Resources][1].
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.27.0'
2832
+ context[:gem_version] = '1.31.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, required: true, location_name: "minProvisionedTPS"))
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, # required
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 AWS Identity and Access
821
- # Management service role that has permissions to add data to your
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 permissions to access the KMS key.
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 KMS key used to encrypt the
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 AWS Identity and Access
1456
- # Management service role that has permissions to add data to your
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 AWS Key Management Service (KMS) key to encrypt the
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 KMS key used to encrypt 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 AWS Identity and Access Management (IAM) role that
1725
- # has permissions to read from the Amazon S3 data source.
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 AWS account that owns the event tracker.
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 Amazon Key Management Service
3967
- # (KMS) key that Amazon Personalize uses to encrypt or decrypt the
3968
- # input and output files of a batch inference job.
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
@@ -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.27.0'
51
+ GEM_VERSION = '1.31.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.27.0
4
+ version: 1.31.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-06-07 00:00:00.000000000 Z
11
+ date: 2021-09-01 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.112.0
22
+ version: 3.120.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.112.0
32
+ version: 3.120.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
76
76
  requirements:
77
77
  - - ">="
78
78
  - !ruby/object:Gem::Version
79
- version: '0'
79
+ version: '2.3'
80
80
  required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - ">="