aws-sdk-pricing 1.36.0 → 1.39.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: e3c8cc547a997c8ec963e9834f20ce93e2cbaac72239e83a4621cf3995dfdc1f
4
- data.tar.gz: bc1599b5c14844813289f6db049e9c517212820eb2af6a1c9222076aec18c533
3
+ metadata.gz: 91e0fa94741e878b32fe3c7b64d3234ef7a9ecaf8751f875b4a15d6f6dce8bb4
4
+ data.tar.gz: 1a84c5557b58b1d872b5a16b1c44e6dda6788fea655366724bab9d40c566bb7d
5
5
  SHA512:
6
- metadata.gz: af78f1bd119b5be6ded48f882c2ab5b10d34f419e0eb90b5a5e9452d170a464f88260fe8046a79c9ea3f6db95f58a82569643f9a1f8ec1279608818e96a7d60e
7
- data.tar.gz: 60fa44abfab21ff0cf77ca6023898fb5deec4c8d9b49c287e3cbfe070798f1aba1c6f30086dd067872bcd7aff381f2bfb3018ccc194bd58531fdaca5d6948de7
6
+ metadata.gz: 8ef365314aaf1613fd5fa472d6bdbdc4455c0022d0072ecbcc1966278e681d72b58460147d6b4d595a6869237637db1f5f5aa337c44ec04ba0531cd2f50f1797
7
+ data.tar.gz: a06b83dfa4631d66952f248e3764a789fbe831625bea4cc244d7f938462c616ff3365173d627c1d1e4735405c0857a5076406104d5f67d6110f779779977c1f7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.39.0 (2022-06-22)
5
+ ------------------
6
+
7
+ * Feature - This release introduces 1 update to the GetProducts API. The serviceCode attribute is now required when you use the GetProductsRequest.
8
+
9
+ 1.38.0 (2022-04-26)
10
+ ------------------
11
+
12
+ * Feature - Documentation updates for Price List API
13
+
14
+ 1.37.0 (2022-02-24)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
4
19
  1.36.0 (2022-02-03)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.36.0
1
+ 1.39.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
31
32
  require 'aws-sdk-core/plugins/recursion_detection.rb'
32
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
@@ -75,6 +76,7 @@ module Aws::Pricing
75
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
76
77
  add_plugin(Aws::Plugins::TransferEncoding)
77
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
78
80
  add_plugin(Aws::Plugins::DefaultsMode)
79
81
  add_plugin(Aws::Plugins::RecursionDetection)
80
82
  add_plugin(Aws::Plugins::SignatureV4)
@@ -449,10 +451,10 @@ module Aws::Pricing
449
451
  req.send_request(options)
450
452
  end
451
453
 
452
- # Returns a list of attribute values. Attibutes are similar to the
454
+ # Returns a list of attribute values. Attributes are similar to the
453
455
  # details in a Price List API offer file. For a list of available
454
- # attributes, see [Offer File Definitions][1] in the [Amazon Web
455
- # Services Billing and Cost Management User Guide][2].
456
+ # attributes, see [Offer File Definitions][1] in the [Billing and Cost
457
+ # Management User Guide][2].
456
458
  #
457
459
  #
458
460
  #
@@ -532,7 +534,7 @@ module Aws::Pricing
532
534
 
533
535
  # Returns a list of all products that match the filter criteria.
534
536
  #
535
- # @option params [String] :service_code
537
+ # @option params [required, String] :service_code
536
538
  # The code for the service whose products you want to retrieve.
537
539
  #
538
540
  # @option params [Array<Types::Filter>] :filters
@@ -562,7 +564,7 @@ module Aws::Pricing
562
564
  # @example Request syntax with placeholder values
563
565
  #
564
566
  # resp = client.get_products({
565
- # service_code: "String",
567
+ # service_code: "String", # required
566
568
  # filters: [
567
569
  # {
568
570
  # type: "TERM_MATCH", # required, accepts TERM_MATCH
@@ -604,7 +606,7 @@ module Aws::Pricing
604
606
  params: params,
605
607
  config: config)
606
608
  context[:gem_name] = 'aws-sdk-pricing'
607
- context[:gem_version] = '1.36.0'
609
+ context[:gem_version] = '1.39.0'
608
610
  Seahorse::Client::Request.new(handlers, context)
609
611
  end
610
612
 
@@ -76,7 +76,7 @@ module Aws::Pricing
76
76
  GetAttributeValuesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
77
77
  GetAttributeValuesResponse.struct_class = Types::GetAttributeValuesResponse
78
78
 
79
- GetProductsRequest.add_member(:service_code, Shapes::ShapeRef.new(shape: String, location_name: "ServiceCode"))
79
+ GetProductsRequest.add_member(:service_code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ServiceCode"))
80
80
  GetProductsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: Filters, location_name: "Filters"))
81
81
  GetProductsRequest.add_member(:format_version, Shapes::ShapeRef.new(shape: String, location_name: "FormatVersion"))
82
82
  GetProductsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
@@ -102,7 +102,7 @@ module Aws::Pricing
102
102
 
103
103
  PriceList.member = Shapes::ShapeRef.new(shape: PriceListItemJSON, metadata: {"jsonvalue"=>true})
104
104
 
105
- Service.add_member(:service_code, Shapes::ShapeRef.new(shape: String, location_name: "ServiceCode"))
105
+ Service.add_member(:service_code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ServiceCode"))
106
106
  Service.add_member(:attribute_names, Shapes::ShapeRef.new(shape: AttributeNameList, location_name: "AttributeNames"))
107
107
  Service.struct_class = Types::Service
108
108
 
@@ -78,7 +78,7 @@ module Aws::Pricing
78
78
  # @return [String]
79
79
  #
80
80
  # @!attribute [rw] next_token
81
- # The pagination token for the next set of retreivable results.
81
+ # The pagination token for the next set of retrievable results.
82
82
  # @return [String]
83
83
  #
84
84
  # @see http://docs.aws.amazon.com/goto/WebAPI/pricing-2017-10-15/DescribeServicesResponse AWS API Documentation
@@ -219,7 +219,7 @@ module Aws::Pricing
219
219
  # data as a hash:
220
220
  #
221
221
  # {
222
- # service_code: "String",
222
+ # service_code: "String", # required
223
223
  # filters: [
224
224
  # {
225
225
  # type: "TERM_MATCH", # required, accepts TERM_MATCH
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-pricing/customizations'
48
48
  # @!group service
49
49
  module Aws::Pricing
50
50
 
51
- GEM_VERSION = '1.36.0'
51
+ GEM_VERSION = '1.39.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-pricing
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.36.0
4
+ version: 1.39.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-02-03 00:00:00.000000000 Z
11
+ date: 2022-06-22 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.126.0
22
+ version: 3.127.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.126.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement