aws-sdk-personalize 1.25.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: 29830409ef97cb1b3008a898eea0294db9b39073ebe018b36ad8e456c07375d3
4
- data.tar.gz: 927ace52a6888361455fded2ae51d77934d5250d6042c385a06c9cc7de167ef3
3
+ metadata.gz: ee77331f1a3519458b6668616bf4f9badbf47fd6bf2ca99f7f502eeeaddd2fbd
4
+ data.tar.gz: c5b2a053de73f692f7af2202bf854c50901b5b3c1c5088929ed2636de4c407d7
5
5
  SHA512:
6
- metadata.gz: 3a4a72320a89bd03065ab824d8d9c08ee48b891ba7e0daf112704c584010ef8a7f21cd9cf9c09736590053ee44d73f5ddd3f06c65b1ed53413984d611e966505
7
- data.tar.gz: a5d36268f5a8a5a168941fa6636cf491bb813315c1b15ac03596033822419f4db7a2019eea6372c159a8b54465fb2523464b2a44f4e8e4905819dffdd1eaee7a
6
+ metadata.gz: b3f84a41753e3df572fa33120ff0ee083f12493419bb0d894a8c62195d5fb9476a77c8f8741a710aa0ce1ece97e9f52175d303e1e42dae203136a1a5a075c32e
7
+ data.tar.gz: 60f83784c3675ff201765f499e97df860e7d54bf17e016a7d40209662c642ac120ea3e56bb312731041be68a3ddc064e9f8713fc1310a4f206886b3bb8f08657
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.29.0 (2021-07-28)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.28.0 (2021-07-21)
10
+ ------------------
11
+
12
+ * Feature - My AWS Service (placeholder) - Making minProvisionedTPS an optional parameter when creating a campaign. If not provided, it defaults to 1.
13
+
14
+ 1.27.0 (2021-06-07)
15
+ ------------------
16
+
17
+ * Feature - Update regex validation in kmsKeyArn and s3 path API parameters for AWS Personalize APIs
18
+
19
+ 1.26.0 (2021-05-20)
20
+ ------------------
21
+
22
+ * Feature - Added new API to stop a solution version creation that is pending or in progress for Amazon Personalize
23
+
4
24
  1.25.0 (2021-05-18)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.25.0
1
+ 1.29.0
@@ -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.25.0'
51
+ GEM_VERSION = '1.29.0'
52
52
 
53
53
  end
@@ -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.
@@ -1198,10 +1198,17 @@ module Aws::Personalize
1198
1198
  #
1199
1199
  # A solution version can be in one of the following states:
1200
1200
  #
1201
- # * CREATE PENDING &gt; CREATE IN\_PROGRESS &gt; ACTIVE -or- CREATE
1202
- # FAILED
1201
+ # * CREATE PENDING
1203
1202
  #
1204
- # ^
1203
+ # * CREATE IN\_PROGRESS
1204
+ #
1205
+ # * ACTIVE
1206
+ #
1207
+ # * CREATE FAILED
1208
+ #
1209
+ # * CREATE STOPPING
1210
+ #
1211
+ # * CREATE STOPPED
1205
1212
  #
1206
1213
  # To get the status of the version, call DescribeSolutionVersion. Wait
1207
1214
  # until the status shows as ACTIVE before calling `CreateCampaign`.
@@ -1834,7 +1841,7 @@ module Aws::Personalize
1834
1841
  #
1835
1842
  # @return [Types::DescribeFilterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1836
1843
  #
1837
- # * {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)
1838
1845
  #
1839
1846
  # @example Request syntax with placeholder values
1840
1847
  #
@@ -1844,14 +1851,14 @@ module Aws::Personalize
1844
1851
  #
1845
1852
  # @example Response structure
1846
1853
  #
1847
- # resp.filter.name #=> String
1848
- # resp.filter.filter_arn #=> String
1849
- # resp.filter.creation_date_time #=> Time
1850
- # resp.filter.last_updated_date_time #=> Time
1851
- # resp.filter.dataset_group_arn #=> String
1852
- # resp.filter.failure_reason #=> String
1853
- # resp.filter.filter_expression #=> String
1854
- # 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
1855
1862
  #
1856
1863
  # @see http://docs.aws.amazon.com/goto/WebAPI/personalize-2018-05-22/DescribeFilter AWS API Documentation
1857
1864
  #
@@ -2716,6 +2723,43 @@ module Aws::Personalize
2716
2723
  req.send_request(options)
2717
2724
  end
2718
2725
 
2726
+ # Stops creating a solution version that is in a state of
2727
+ # CREATE\_PENDING or CREATE IN\_PROGRESS.
2728
+ #
2729
+ # Depending on the current state of the solution version, the solution
2730
+ # version state changes as follows:
2731
+ #
2732
+ # * CREATE\_PENDING &gt; CREATE\_STOPPED
2733
+ #
2734
+ # or
2735
+ #
2736
+ # * CREATE\_IN\_PROGRESS &gt; CREATE\_STOPPING &gt; CREATE\_STOPPED
2737
+ #
2738
+ # You are billed for all of the training completed up until you stop the
2739
+ # solution version creation. You cannot resume creating a solution
2740
+ # version once it has been stopped.
2741
+ #
2742
+ # @option params [required, String] :solution_version_arn
2743
+ # The Amazon Resource Name (ARN) of the solution version you want to
2744
+ # stop creating.
2745
+ #
2746
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2747
+ #
2748
+ # @example Request syntax with placeholder values
2749
+ #
2750
+ # resp = client.stop_solution_version_creation({
2751
+ # solution_version_arn: "Arn", # required
2752
+ # })
2753
+ #
2754
+ # @see http://docs.aws.amazon.com/goto/WebAPI/personalize-2018-05-22/StopSolutionVersionCreation AWS API Documentation
2755
+ #
2756
+ # @overload stop_solution_version_creation(params = {})
2757
+ # @param [Hash] params ({})
2758
+ def stop_solution_version_creation(params = {}, options = {})
2759
+ req = build_request(:stop_solution_version_creation, params)
2760
+ req.send_request(options)
2761
+ end
2762
+
2719
2763
  # Updates a campaign by either deploying a new solution or changing the
2720
2764
  # value of the campaign's `minProvisionedTPS` parameter.
2721
2765
  #
@@ -2785,7 +2829,7 @@ module Aws::Personalize
2785
2829
  params: params,
2786
2830
  config: config)
2787
2831
  context[:gem_name] = 'aws-sdk-personalize'
2788
- context[:gem_version] = '1.25.0'
2832
+ context[:gem_version] = '1.29.0'
2789
2833
  Seahorse::Client::Request.new(handlers, context)
2790
2834
  end
2791
2835
 
@@ -217,6 +217,7 @@ module Aws::Personalize
217
217
  SolutionVersions = Shapes::ListShape.new(name: 'SolutionVersions')
218
218
  Solutions = Shapes::ListShape.new(name: 'Solutions')
219
219
  Status = Shapes::StringShape.new(name: 'Status')
220
+ StopSolutionVersionCreationRequest = Shapes::StructureShape.new(name: 'StopSolutionVersionCreationRequest')
220
221
  TrackingId = Shapes::StringShape.new(name: 'TrackingId')
221
222
  TrainingHours = Shapes::FloatShape.new(name: 'TrainingHours')
222
223
  TrainingInputMode = Shapes::StringShape.new(name: 'TrainingInputMode')
@@ -351,7 +352,7 @@ module Aws::Personalize
351
352
 
352
353
  CreateCampaignRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
353
354
  CreateCampaignRequest.add_member(:solution_version_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "solutionVersionArn"))
354
- 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"))
355
356
  CreateCampaignRequest.add_member(:campaign_config, Shapes::ShapeRef.new(shape: CampaignConfig, location_name: "campaignConfig"))
356
357
  CreateCampaignRequest.struct_class = Types::CreateCampaignRequest
357
358
 
@@ -979,6 +980,9 @@ module Aws::Personalize
979
980
 
980
981
  Solutions.member = Shapes::ShapeRef.new(shape: SolutionSummary)
981
982
 
983
+ StopSolutionVersionCreationRequest.add_member(:solution_version_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "solutionVersionArn"))
984
+ StopSolutionVersionCreationRequest.struct_class = Types::StopSolutionVersionCreationRequest
985
+
982
986
  TunedHPOParams.add_member(:algorithm_hyper_parameters, Shapes::ShapeRef.new(shape: HyperParameters, location_name: "algorithmHyperParameters"))
983
987
  TunedHPOParams.struct_class = Types::TunedHPOParams
984
988
 
@@ -1565,6 +1569,17 @@ module Aws::Personalize
1565
1569
  )
1566
1570
  end)
1567
1571
 
1572
+ api.add_operation(:stop_solution_version_creation, Seahorse::Model::Operation.new.tap do |o|
1573
+ o.name = "StopSolutionVersionCreation"
1574
+ o.http_method = "POST"
1575
+ o.http_request_uri = "/"
1576
+ o.input = Shapes::ShapeRef.new(shape: StopSolutionVersionCreationRequest)
1577
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
1578
+ o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
1579
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1580
+ o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
1581
+ end)
1582
+
1568
1583
  api.add_operation(:update_campaign, Seahorse::Model::Operation.new.tap do |o|
1569
1584
  o.name = "UpdateCampaign"
1570
1585
  o.http_method = "POST"
@@ -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
@@ -4294,6 +4293,10 @@ module Aws::Personalize
4294
4293
  # * ACTIVE
4295
4294
  #
4296
4295
  # * CREATE FAILED
4296
+ #
4297
+ # * CREATE STOPPING
4298
+ #
4299
+ # * CREATE STOPPED
4297
4300
  # @return [String]
4298
4301
  #
4299
4302
  # @!attribute [rw] failure_reason
@@ -4375,6 +4378,26 @@ module Aws::Personalize
4375
4378
  include Aws::Structure
4376
4379
  end
4377
4380
 
4381
+ # @note When making an API call, you may pass StopSolutionVersionCreationRequest
4382
+ # data as a hash:
4383
+ #
4384
+ # {
4385
+ # solution_version_arn: "Arn", # required
4386
+ # }
4387
+ #
4388
+ # @!attribute [rw] solution_version_arn
4389
+ # The Amazon Resource Name (ARN) of the solution version you want to
4390
+ # stop creating.
4391
+ # @return [String]
4392
+ #
4393
+ # @see http://docs.aws.amazon.com/goto/WebAPI/personalize-2018-05-22/StopSolutionVersionCreationRequest AWS API Documentation
4394
+ #
4395
+ class StopSolutionVersionCreationRequest < Struct.new(
4396
+ :solution_version_arn)
4397
+ SENSITIVE = []
4398
+ include Aws::Structure
4399
+ end
4400
+
4378
4401
  # If hyperparameter optimization (HPO) was performed, contains the
4379
4402
  # hyperparameter values of the best performing model.
4380
4403
  #
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.25.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: 2021-05-18 00:00:00.000000000 Z
11
+ date: 2021-07-28 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.118.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.118.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement