aws-sdk-pricing 1.77.0 → 1.79.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-pricing/client.rb +20 -10
- data/lib/aws-sdk-pricing/types.rb +21 -2
- data/lib/aws-sdk-pricing.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b2ba27f8c6059b40209dbe1e3db3b2fcb121a6679261752f25e407ebc969485
|
4
|
+
data.tar.gz: 1c7aa859bf7ac15cf9730fd40151c99ceca7b83afb2c091c319a3d1ae227e490
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18f11be125d0e686e06d4603e94533a9377606e009484d8ce5b353a75107d7996f41267e3b3ea92d1d526d6cb81f20da8e502f7bd9ba24bd7ea0da43978f7889
|
7
|
+
data.tar.gz: 8a965bb529c6fe624678dda5972d808f8658d5e1fd2c33962fe9348377578e1f7d7e2f8b889338517b9cdc90920458ce46342ee53eb66f8f40b0b6e5715e4beb
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.79.0 (2025-07-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.78.0 (2025-07-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for new filter types in GetProducts API, including EQUALS, CONTAINS, ANY_OF, and NONE_OF.
|
13
|
+
|
4
14
|
1.77.0 (2025-06-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.79.0
|
@@ -95,7 +95,7 @@ module Aws::Pricing
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::Pricing
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::Pricing
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::Pricing
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -374,7 +384,7 @@ module Aws::Pricing
|
|
374
384
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
375
385
|
#
|
376
386
|
# @option options [Aws::TokenProvider] :token_provider
|
377
|
-
#
|
387
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
378
388
|
# following classes:
|
379
389
|
#
|
380
390
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -737,7 +747,7 @@ module Aws::Pricing
|
|
737
747
|
# service_code: "String", # required
|
738
748
|
# filters: [
|
739
749
|
# {
|
740
|
-
# type: "TERM_MATCH", # required, accepts TERM_MATCH
|
750
|
+
# type: "TERM_MATCH", # required, accepts TERM_MATCH, EQUALS, CONTAINS, ANY_OF, NONE_OF
|
741
751
|
# field: "Field", # required
|
742
752
|
# value: "Value", # required
|
743
753
|
# },
|
@@ -879,7 +889,7 @@ module Aws::Pricing
|
|
879
889
|
tracer: tracer
|
880
890
|
)
|
881
891
|
context[:gem_name] = 'aws-sdk-pricing'
|
882
|
-
context[:gem_version] = '1.
|
892
|
+
context[:gem_version] = '1.79.0'
|
883
893
|
Seahorse::Client::Request.new(handlers, context)
|
884
894
|
end
|
885
895
|
|
@@ -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
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -129,7 +130,7 @@ module Aws
|
|
129
130
|
service_code: ::String,
|
130
131
|
?filters: Array[
|
131
132
|
{
|
132
|
-
type: ("TERM_MATCH"),
|
133
|
+
type: ("TERM_MATCH" | "EQUALS" | "CONTAINS" | "ANY_OF" | "NONE_OF"),
|
133
134
|
field: ::String,
|
134
135
|
value: ::String
|
135
136
|
},
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
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.
|
4
|
+
version: 1.79.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|