aws-sdk-pricing 1.36.0 → 1.39.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 +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-pricing/client.rb +8 -6
- data/lib/aws-sdk-pricing/client_api.rb +2 -2
- data/lib/aws-sdk-pricing/types.rb +2 -2
- data/lib/aws-sdk-pricing.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 91e0fa94741e878b32fe3c7b64d3234ef7a9ecaf8751f875b4a15d6f6dce8bb4
|
4
|
+
data.tar.gz: 1a84c5557b58b1d872b5a16b1c44e6dda6788fea655366724bab9d40c566bb7d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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.
|
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 [
|
455
|
-
#
|
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.
|
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
|
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
|
data/lib/aws-sdk-pricing.rb
CHANGED
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.
|
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-
|
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.
|
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.
|
32
|
+
version: 3.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|