aws-sdk-savingsplans 1.14.0 → 1.15.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: 86c291bc3cc37343737baafef4cd9f8ab535cff96155d78fc850e17acc61e841
4
- data.tar.gz: 24f181c9ad8ba62096dafdb3d0410f4db82f2006a862e22953948c62519ea1f9
3
+ metadata.gz: 8c1fab0fdd46e7782d16d399b8fe413b0aeae2cdc0fdbcd9cb5627376a63486e
4
+ data.tar.gz: f04c34cab6829875acd6a5f1e9c1735c5766822d599d13dea4d79b3c22722fc1
5
5
  SHA512:
6
- metadata.gz: 9f08d4af3f98f75dc950285a1f80e7a8b3fb500a770b9e6b2dc1e4fd8ff29217aecb291a6bbd84f185400dca5c0fc87dfdd8dcb89c41b063cbb81db0bc801dbf
7
- data.tar.gz: 0de88fec062e9733b432eda99d43b6a413dd4ee056a5f19ec570416793deceba7bef643431324ef5cc266ba538d0edb4b0661a602532d791dae02b80094a8db3
6
+ metadata.gz: 9673698eea6cee4fd34849b5a850692bcdf670041d86f9eaa23133b0bc292f962143685c0870a7c742345c960756077978f28daf3aee024d851223dbf3237409
7
+ data.tar.gz: 9963278e3702d44b6fbf26b9ef7957bae325dfed4fe57cdf9dc73cd7ea64d59434ee9c1e6b0a312ae3232804f4182cb31b9088fcf3f17273cc4b506bad49ab98
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.15.0 (2021-04-19)
5
+ ------------------
6
+
7
+ * Feature - Added support for Amazon SageMaker in Machine Learning Savings Plans
8
+
4
9
  1.14.0 (2021-03-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.14.0
1
+ 1.15.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-savingsplans/customizations'
48
48
  # @!group service
49
49
  module Aws::SavingsPlans
50
50
 
51
- GEM_VERSION = '1.14.0'
51
+ GEM_VERSION = '1.15.0'
52
52
 
53
53
  end
@@ -451,8 +451,8 @@ module Aws::SavingsPlans
451
451
  # resp.search_results[0].rate #=> String
452
452
  # resp.search_results[0].currency #=> String, one of "CNY", "USD"
453
453
  # resp.search_results[0].unit #=> String, one of "Hrs", "Lambda-GB-Second", "Request"
454
- # resp.search_results[0].product_type #=> String, one of "EC2", "Fargate", "Lambda"
455
- # resp.search_results[0].service_code #=> String, one of "AmazonEC2", "AmazonECS", "AWSLambda"
454
+ # resp.search_results[0].product_type #=> String, one of "EC2", "Fargate", "Lambda", "SageMaker"
455
+ # resp.search_results[0].service_code #=> String, one of "AmazonEC2", "AmazonECS", "AmazonEKS", "AWSLambda", "AmazonSageMaker"
456
456
  # resp.search_results[0].usage_type #=> String
457
457
  # resp.search_results[0].operation #=> String
458
458
  # resp.search_results[0].properties #=> Array
@@ -524,10 +524,10 @@ module Aws::SavingsPlans
524
524
  # resp.savings_plans[0].state #=> String, one of "payment-pending", "payment-failed", "active", "retired", "queued", "queued-deleted"
525
525
  # resp.savings_plans[0].region #=> String
526
526
  # resp.savings_plans[0].ec2_instance_family #=> String
527
- # resp.savings_plans[0].savings_plan_type #=> String, one of "Compute", "EC2Instance"
527
+ # resp.savings_plans[0].savings_plan_type #=> String, one of "Compute", "EC2Instance", "SageMaker"
528
528
  # resp.savings_plans[0].payment_option #=> String, one of "All Upfront", "Partial Upfront", "No Upfront"
529
529
  # resp.savings_plans[0].product_types #=> Array
530
- # resp.savings_plans[0].product_types[0] #=> String, one of "EC2", "Fargate", "Lambda"
530
+ # resp.savings_plans[0].product_types[0] #=> String, one of "EC2", "Fargate", "Lambda", "SageMaker"
531
531
  # resp.savings_plans[0].currency #=> String, one of "CNY", "USD"
532
532
  # resp.savings_plans[0].commitment #=> String
533
533
  # resp.savings_plans[0].upfront_payment_amount #=> String
@@ -590,9 +590,9 @@ module Aws::SavingsPlans
590
590
  # resp = client.describe_savings_plans_offering_rates({
591
591
  # savings_plan_offering_ids: ["UUID"],
592
592
  # savings_plan_payment_options: ["All Upfront"], # accepts All Upfront, Partial Upfront, No Upfront
593
- # savings_plan_types: ["Compute"], # accepts Compute, EC2Instance
594
- # products: ["EC2"], # accepts EC2, Fargate, Lambda
595
- # service_codes: ["AmazonEC2"], # accepts AmazonEC2, AmazonECS, AWSLambda
593
+ # savings_plan_types: ["Compute"], # accepts Compute, EC2Instance, SageMaker
594
+ # products: ["EC2"], # accepts EC2, Fargate, Lambda, SageMaker
595
+ # service_codes: ["AmazonEC2"], # accepts AmazonEC2, AmazonECS, AmazonEKS, AWSLambda, AmazonSageMaker
596
596
  # usage_types: ["SavingsPlanRateUsageType"],
597
597
  # operations: ["SavingsPlanRateOperation"],
598
598
  # filters: [
@@ -610,14 +610,14 @@ module Aws::SavingsPlans
610
610
  # resp.search_results #=> Array
611
611
  # resp.search_results[0].savings_plan_offering.offering_id #=> String
612
612
  # resp.search_results[0].savings_plan_offering.payment_option #=> String, one of "All Upfront", "Partial Upfront", "No Upfront"
613
- # resp.search_results[0].savings_plan_offering.plan_type #=> String, one of "Compute", "EC2Instance"
613
+ # resp.search_results[0].savings_plan_offering.plan_type #=> String, one of "Compute", "EC2Instance", "SageMaker"
614
614
  # resp.search_results[0].savings_plan_offering.duration_seconds #=> Integer
615
615
  # resp.search_results[0].savings_plan_offering.currency #=> String, one of "CNY", "USD"
616
616
  # resp.search_results[0].savings_plan_offering.plan_description #=> String
617
617
  # resp.search_results[0].rate #=> String
618
618
  # resp.search_results[0].unit #=> String, one of "Hrs", "Lambda-GB-Second", "Request"
619
- # resp.search_results[0].product_type #=> String, one of "EC2", "Fargate", "Lambda"
620
- # resp.search_results[0].service_code #=> String, one of "AmazonEC2", "AmazonECS", "AWSLambda"
619
+ # resp.search_results[0].product_type #=> String, one of "EC2", "Fargate", "Lambda", "SageMaker"
620
+ # resp.search_results[0].service_code #=> String, one of "AmazonEC2", "AmazonECS", "AmazonEKS", "AWSLambda", "AmazonSageMaker"
621
621
  # resp.search_results[0].usage_type #=> String
622
622
  # resp.search_results[0].operation #=> String
623
623
  # resp.search_results[0].properties #=> Array
@@ -687,8 +687,8 @@ module Aws::SavingsPlans
687
687
  # resp = client.describe_savings_plans_offerings({
688
688
  # offering_ids: ["UUID"],
689
689
  # payment_options: ["All Upfront"], # accepts All Upfront, Partial Upfront, No Upfront
690
- # product_type: "EC2", # accepts EC2, Fargate, Lambda
691
- # plan_types: ["Compute"], # accepts Compute, EC2Instance
690
+ # product_type: "EC2", # accepts EC2, Fargate, Lambda, SageMaker
691
+ # plan_types: ["Compute"], # accepts Compute, EC2Instance, SageMaker
692
692
  # durations: [1],
693
693
  # currencies: ["CNY"], # accepts CNY, USD
694
694
  # descriptions: ["SavingsPlanDescription"],
@@ -710,8 +710,8 @@ module Aws::SavingsPlans
710
710
  # resp.search_results #=> Array
711
711
  # resp.search_results[0].offering_id #=> String
712
712
  # resp.search_results[0].product_types #=> Array
713
- # resp.search_results[0].product_types[0] #=> String, one of "EC2", "Fargate", "Lambda"
714
- # resp.search_results[0].plan_type #=> String, one of "Compute", "EC2Instance"
713
+ # resp.search_results[0].product_types[0] #=> String, one of "EC2", "Fargate", "Lambda", "SageMaker"
714
+ # resp.search_results[0].plan_type #=> String, one of "Compute", "EC2Instance", "SageMaker"
715
715
  # resp.search_results[0].description #=> String
716
716
  # resp.search_results[0].payment_option #=> String, one of "All Upfront", "Partial Upfront", "No Upfront"
717
717
  # resp.search_results[0].duration_seconds #=> Integer
@@ -830,7 +830,7 @@ module Aws::SavingsPlans
830
830
  params: params,
831
831
  config: config)
832
832
  context[:gem_name] = 'aws-sdk-savingsplans'
833
- context[:gem_version] = '1.14.0'
833
+ context[:gem_version] = '1.15.0'
834
834
  Seahorse::Client::Request.new(handlers, context)
835
835
  end
836
836
 
@@ -178,9 +178,9 @@ module Aws::SavingsPlans
178
178
  # {
179
179
  # savings_plan_offering_ids: ["UUID"],
180
180
  # savings_plan_payment_options: ["All Upfront"], # accepts All Upfront, Partial Upfront, No Upfront
181
- # savings_plan_types: ["Compute"], # accepts Compute, EC2Instance
182
- # products: ["EC2"], # accepts EC2, Fargate, Lambda
183
- # service_codes: ["AmazonEC2"], # accepts AmazonEC2, AmazonECS, AWSLambda
181
+ # savings_plan_types: ["Compute"], # accepts Compute, EC2Instance, SageMaker
182
+ # products: ["EC2"], # accepts EC2, Fargate, Lambda, SageMaker
183
+ # service_codes: ["AmazonEC2"], # accepts AmazonEC2, AmazonECS, AmazonEKS, AWSLambda, AmazonSageMaker
184
184
  # usage_types: ["SavingsPlanRateUsageType"],
185
185
  # operations: ["SavingsPlanRateOperation"],
186
186
  # filters: [
@@ -276,8 +276,8 @@ module Aws::SavingsPlans
276
276
  # {
277
277
  # offering_ids: ["UUID"],
278
278
  # payment_options: ["All Upfront"], # accepts All Upfront, Partial Upfront, No Upfront
279
- # product_type: "EC2", # accepts EC2, Fargate, Lambda
280
- # plan_types: ["Compute"], # accepts Compute, EC2Instance
279
+ # product_type: "EC2", # accepts EC2, Fargate, Lambda, SageMaker
280
+ # plan_types: ["Compute"], # accepts Compute, EC2Instance, SageMaker
281
281
  # durations: [1],
282
282
  # currencies: ["CNY"], # accepts CNY, USD
283
283
  # descriptions: ["SavingsPlanDescription"],
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-savingsplans
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.0
4
+ version: 1.15.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-03-10 00:00:00.000000000 Z
11
+ date: 2021-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -66,8 +66,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
66
66
  licenses:
67
67
  - Apache-2.0
68
68
  metadata:
69
- source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-savingsplans
70
- changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-savingsplans/CHANGELOG.md
69
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-savingsplans
70
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-savingsplans/CHANGELOG.md
71
71
  post_install_message:
72
72
  rdoc_options: []
73
73
  require_paths:
@@ -84,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
84
84
  version: '0'
85
85
  requirements: []
86
86
  rubyforge_project:
87
- rubygems_version: 2.7.6.2
87
+ rubygems_version: 2.7.6.3
88
88
  signing_key:
89
89
  specification_version: 4
90
90
  summary: AWS SDK for Ruby - AWSSavingsPlans