aws-sdk-pricing 1.38.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: f1caf58ef9f9b4e1500fe09a8d7da1185b847732cdf9baea2b7179de84637006
4
- data.tar.gz: 1e2e26a72f3d5d1bd96b3151a61980978b0160c773e9f7efc93f5b2375d7a5f3
3
+ metadata.gz: 91e0fa94741e878b32fe3c7b64d3234ef7a9ecaf8751f875b4a15d6f6dce8bb4
4
+ data.tar.gz: 1a84c5557b58b1d872b5a16b1c44e6dda6788fea655366724bab9d40c566bb7d
5
5
  SHA512:
6
- metadata.gz: 583ecadeed231147f4259a993cd1e0089c0016f07b78de8961408c7f1a310ac838bdaa34e6c47c46ef5aa99537545294750d7a4a88ff116fd5b7a8f342d4621f
7
- data.tar.gz: 3b23e7e315d34bfe97516aea37f722543fa02c0bffdda85f4df91a6c9bd421c5f5a115e3da8556087bbe2f1f94fe9226e957a08293ae949c090314e8708126b4
6
+ metadata.gz: 8ef365314aaf1613fd5fa472d6bdbdc4455c0022d0072ecbcc1966278e681d72b58460147d6b4d595a6869237637db1f5f5aa337c44ec04ba0531cd2f50f1797
7
+ data.tar.gz: a06b83dfa4631d66952f248e3764a789fbe831625bea4cc244d7f938462c616ff3365173d627c1d1e4735405c0857a5076406104d5f67d6110f779779977c1f7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.38.0 (2022-04-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.38.0
1
+ 1.39.0
@@ -453,8 +453,8 @@ module Aws::Pricing
453
453
 
454
454
  # Returns a list of attribute values. Attributes are similar to the
455
455
  # details in a Price List API offer file. For a list of available
456
- # attributes, see [Offer File Definitions][1] in the [Amazon Web
457
- # 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].
458
458
  #
459
459
  #
460
460
  #
@@ -534,7 +534,7 @@ module Aws::Pricing
534
534
 
535
535
  # Returns a list of all products that match the filter criteria.
536
536
  #
537
- # @option params [String] :service_code
537
+ # @option params [required, String] :service_code
538
538
  # The code for the service whose products you want to retrieve.
539
539
  #
540
540
  # @option params [Array<Types::Filter>] :filters
@@ -564,7 +564,7 @@ module Aws::Pricing
564
564
  # @example Request syntax with placeholder values
565
565
  #
566
566
  # resp = client.get_products({
567
- # service_code: "String",
567
+ # service_code: "String", # required
568
568
  # filters: [
569
569
  # {
570
570
  # type: "TERM_MATCH", # required, accepts TERM_MATCH
@@ -606,7 +606,7 @@ module Aws::Pricing
606
606
  params: params,
607
607
  config: config)
608
608
  context[:gem_name] = 'aws-sdk-pricing'
609
- context[:gem_version] = '1.38.0'
609
+ context[:gem_version] = '1.39.0'
610
610
  Seahorse::Client::Request.new(handlers, context)
611
611
  end
612
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
 
@@ -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.38.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.38.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-04-26 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