aws-sdk-pricing 1.37.0 → 1.40.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: c507d74a367bbdf5095487486615c5ceb6bd895a32d84764e0232ef06fe83fa9
4
- data.tar.gz: ff415e33c1886952d3d2e291bf7be1a5fe11f674cc61f3dbf24f3b497f3021d5
3
+ metadata.gz: 89fae4251e86c4fdd5e6f2e5458415f55730bccee81ad85bb6061ea07be62357
4
+ data.tar.gz: f4af3ae6aec14f914d5643b9dc6db131566493e77b232dad31cc5133de1a73f7
5
5
  SHA512:
6
- metadata.gz: 211158307bdf4091dbe98d0a81db39ad0d23fbcec979e1d9db90386e15804076d9a9b874b6626d1d1c40b07a712ea99a52414b386171a8d192b7bd55dac9ae59
7
- data.tar.gz: 87bcf8760bcbac7be40aa37be4d61c8c2817f83b0ba38461adcc595bd1db5e9e37351ca7ba12e2422b25c54798fee09e7f13f62fe023d12ffb5b8eb0fb18b305
6
+ metadata.gz: 70952c2d9fd7d04f7e7c8e00ca38c5480b4ef54408ac6bbd88cbb749f9639b1803cc66fe8de722967c3602da398e22afb4c743cb7ae5f00649eef381f8b06eb9
7
+ data.tar.gz: 190f288271be2037d6c9d567bba71cf6679e436814b435a26ab6d8a0f7f9d096e3fc51e32c63cc0cc5dad29f648e18a55a723a72d662de6a4e3005cd23e13b7b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.40.0 (2022-06-30)
5
+ ------------------
6
+
7
+ * Feature - Documentation update for GetProducts Response.
8
+
9
+ 1.39.0 (2022-06-22)
10
+ ------------------
11
+
12
+ * Feature - This release introduces 1 update to the GetProducts API. The serviceCode attribute is now required when you use the GetProductsRequest.
13
+
14
+ 1.38.0 (2022-04-26)
15
+ ------------------
16
+
17
+ * Feature - Documentation updates for Price List API
18
+
4
19
  1.37.0 (2022-02-24)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.37.0
1
+ 1.40.0
@@ -451,10 +451,10 @@ module Aws::Pricing
451
451
  req.send_request(options)
452
452
  end
453
453
 
454
- # Returns a list of attribute values. Attibutes are similar to the
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.37.0'
609
+ context[:gem_version] = '1.40.0'
610
610
  Seahorse::Client::Request.new(handlers, context)
611
611
  end
612
612
 
@@ -31,8 +31,8 @@ module Aws::Pricing
31
31
  InvalidNextTokenException = Shapes::StructureShape.new(name: 'InvalidNextTokenException')
32
32
  InvalidParameterException = Shapes::StructureShape.new(name: 'InvalidParameterException')
33
33
  NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
34
- PriceList = Shapes::ListShape.new(name: 'PriceList')
35
- PriceListItemJSON = Shapes::StringShape.new(name: 'PriceListItemJSON')
34
+ PriceListJsonItem = Shapes::StringShape.new(name: 'PriceListJsonItem')
35
+ PriceListJsonItems = Shapes::ListShape.new(name: 'PriceListJsonItems')
36
36
  Service = Shapes::StructureShape.new(name: 'Service')
37
37
  ServiceList = Shapes::ListShape.new(name: 'ServiceList')
38
38
  String = Shapes::StringShape.new(name: 'String')
@@ -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"))
@@ -84,7 +84,7 @@ module Aws::Pricing
84
84
  GetProductsRequest.struct_class = Types::GetProductsRequest
85
85
 
86
86
  GetProductsResponse.add_member(:format_version, Shapes::ShapeRef.new(shape: String, location_name: "FormatVersion"))
87
- GetProductsResponse.add_member(:price_list, Shapes::ShapeRef.new(shape: PriceList, location_name: "PriceList"))
87
+ GetProductsResponse.add_member(:price_list, Shapes::ShapeRef.new(shape: PriceListJsonItems, location_name: "PriceList"))
88
88
  GetProductsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
89
89
  GetProductsResponse.struct_class = Types::GetProductsResponse
90
90
 
@@ -100,9 +100,9 @@ module Aws::Pricing
100
100
  NotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: errorMessage, location_name: "Message"))
101
101
  NotFoundException.struct_class = Types::NotFoundException
102
102
 
103
- PriceList.member = Shapes::ShapeRef.new(shape: PriceListItemJSON, metadata: {"jsonvalue"=>true})
103
+ PriceListJsonItems.member = Shapes::ShapeRef.new(shape: PriceListJsonItem, 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.37.0'
51
+ GEM_VERSION = '1.40.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.37.0
4
+ version: 1.40.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-24 00:00:00.000000000 Z
11
+ date: 2022-06-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core