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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1818c48285ed3d93c101d132b47ec2b9a30a5b76c1f8ae1619995dc0ccdbb313
4
- data.tar.gz: 82e6991d532db57d510fae8028ad2f9423bdefba0a07ca45d7b2656db5426fc5
3
+ metadata.gz: 1079c93b810348686a7b7f88ccd35f0d9387443a2178f127d3f697cb417d5960
4
+ data.tar.gz: 818e86098d029be13abf5fce336ce71a36d78c95da77b4736adb709adf662625
5
5
  SHA512:
6
- metadata.gz: f6bd099023a62be0a32b81a719b880e30a0ec3e18fd92f92d127ea5969e4dfbb76c31ab7c63fc259c4b54e4b1eccf77b15fb030a8b51595423fc30f37f408117
7
- data.tar.gz: 676a5ecfafb254f5115bcc20ae18dd5bff9c581fca5c0fc900937fbefd341520a1707a7ffc07ca8dc9a92530eefb7ac73dfcc32c11843853426a549ed65de899
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.77.0
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.77.0'
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: `TERM_MATCH`. `TERM_MATCH` returns only products
116
- # that match both the given filter field and the given value.
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
@@ -55,7 +55,7 @@ module Aws::Pricing
55
55
  autoload :EndpointProvider, 'aws-sdk-pricing/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-pricing/endpoints'
57
57
 
58
- GEM_VERSION = '1.77.0'
58
+ GEM_VERSION = '1.78.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -129,7 +129,7 @@ module Aws
129
129
  service_code: ::String,
130
130
  ?filters: Array[
131
131
  {
132
- type: ("TERM_MATCH"),
132
+ type: ("TERM_MATCH" | "EQUALS" | "CONTAINS" | "ANY_OF" | "NONE_OF"),
133
133
  field: ::String,
134
134
  value: ::String
135
135
  },
data/sig/types.rbs CHANGED
@@ -39,7 +39,7 @@ module Aws::Pricing
39
39
  end
40
40
 
41
41
  class Filter
42
- attr_accessor type: ("TERM_MATCH")
42
+ attr_accessor type: ("TERM_MATCH" | "EQUALS" | "CONTAINS" | "ANY_OF" | "NONE_OF")
43
43
  attr_accessor field: ::String
44
44
  attr_accessor value: ::String
45
45
  SENSITIVE: []
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-pricing
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.77.0
4
+ version: 1.78.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services