aws-sdk-pricing 1.77.0 → 1.78.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-pricing/client.rb +2 -2
- data/lib/aws-sdk-pricing/types.rb +21 -2
- data/lib/aws-sdk-pricing.rb +1 -1
- data/sig/client.rbs +1 -1
- data/sig/types.rbs +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1079c93b810348686a7b7f88ccd35f0d9387443a2178f127d3f697cb417d5960
|
4
|
+
data.tar.gz: 818e86098d029be13abf5fce336ce71a36d78c95da77b4736adb709adf662625
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c5bdb96efb7af31af1e3d05a92601bd761b29c05eb3cfc2d2c0520ad6ba6159d68115bdd52f38252c9c0384cede93b0e6591e8db080b102fd939ff94a3eadbf
|
7
|
+
data.tar.gz: ad229acee2180d1b966a9838c07bb255819c0c5ddec0846d8f388262d414c366e3671253d9343fa7d8b7e948b9aa015e9e7236afe4bb259d846236b6d2fe1374
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.78.0 (2025-07-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for new filter types in GetProducts API, including EQUALS, CONTAINS, ANY_OF, and NONE_OF.
|
8
|
+
|
4
9
|
1.77.0 (2025-06-02)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.78.0
|
@@ -737,7 +737,7 @@ module Aws::Pricing
|
|
737
737
|
# service_code: "String", # required
|
738
738
|
# filters: [
|
739
739
|
# {
|
740
|
-
# type: "TERM_MATCH", # required, accepts TERM_MATCH
|
740
|
+
# type: "TERM_MATCH", # required, accepts TERM_MATCH, EQUALS, CONTAINS, ANY_OF, NONE_OF
|
741
741
|
# field: "Field", # required
|
742
742
|
# value: "Value", # required
|
743
743
|
# },
|
@@ -879,7 +879,7 @@ module Aws::Pricing
|
|
879
879
|
tracer: tracer
|
880
880
|
)
|
881
881
|
context[:gem_name] = 'aws-sdk-pricing'
|
882
|
-
context[:gem_version] = '1.
|
882
|
+
context[:gem_version] = '1.78.0'
|
883
883
|
Seahorse::Client::Request.new(handlers, context)
|
884
884
|
end
|
885
885
|
|
@@ -112,8 +112,22 @@ module Aws::Pricing
|
|
112
112
|
# @!attribute [rw] type
|
113
113
|
# The type of filter that you want to use.
|
114
114
|
#
|
115
|
-
# Valid values are:
|
116
|
-
#
|
115
|
+
# Valid values are:
|
116
|
+
#
|
117
|
+
# * `TERM_MATCH`: Returns only products that match both the given
|
118
|
+
# filter field and the given value.
|
119
|
+
#
|
120
|
+
# * `EQUALS`: Returns products that have a field value exactly
|
121
|
+
# matching the provided value.
|
122
|
+
#
|
123
|
+
# * `CONTAINS`: Returns products where the field value contains the
|
124
|
+
# provided value as a substring.
|
125
|
+
#
|
126
|
+
# * `ANY_OF`: Returns products where the field value is any of the
|
127
|
+
# provided values.
|
128
|
+
#
|
129
|
+
# * `NONE_OF`: Returns products where the field value is not any of
|
130
|
+
# the provided values.
|
117
131
|
# @return [String]
|
118
132
|
#
|
119
133
|
# @!attribute [rw] field
|
@@ -136,6 +150,11 @@ module Aws::Pricing
|
|
136
150
|
# such as `AmazonEC2`. If you're filtering by attribute name, this is
|
137
151
|
# the attribute value that you want the returned products to match,
|
138
152
|
# such as a `Provisioned IOPS` volume.
|
153
|
+
#
|
154
|
+
# For `ANY_OF` and `NONE_OF` filter types, you can provide multiple
|
155
|
+
# values as a comma-separated string. For example,
|
156
|
+
# `t2.micro,t2.small,t2.medium` or `Compute optimized, GPU instance,
|
157
|
+
# Micro instances`.
|
139
158
|
# @return [String]
|
140
159
|
#
|
141
160
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pricing-2017-10-15/Filter AWS API Documentation
|
data/lib/aws-sdk-pricing.rb
CHANGED
data/sig/client.rbs
CHANGED
data/sig/types.rbs
CHANGED