aws-sdk-pricing 1.18.0 → 1.23.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/lib/aws-sdk-pricing.rb +5 -2
- data/lib/aws-sdk-pricing/client.rb +29 -10
- data/lib/aws-sdk-pricing/client_api.rb +2 -0
- data/lib/aws-sdk-pricing/errors.rb +2 -0
- data/lib/aws-sdk-pricing/resource.rb +2 -0
- data/lib/aws-sdk-pricing/types.rb +16 -0
- 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: 881f1ee19932d4b40a577fcffd9bd22b1da8c4db5113d9709bb5b78a222ae3cd
|
|
4
|
+
data.tar.gz: cb8be5d8e85fd0de6014b1c544e5cb2d6051849a2b3e2dda675fb0838e565c8e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 16b630f746ef521d9c91101f357f79fa37ca0a9ab66304027c5141ad3db3b3b7802fd9dbdb960ac7e7fd64db0e01f1252af7a315d2ef166962c0b3466b3cf3c4
|
|
7
|
+
data.tar.gz: 5893c518f9eb9a8735fbe43f6b6422956c13d896ab2fb30add44563d253f32dbc73362b5aa01f089270e99f0f26a17441393f54a672b7e8cb0daa0dab5e8fa98
|
data/lib/aws-sdk-pricing.rb
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -5,6 +7,7 @@
|
|
|
5
7
|
#
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
|
7
9
|
|
|
10
|
+
|
|
8
11
|
require 'aws-sdk-core'
|
|
9
12
|
require 'aws-sigv4'
|
|
10
13
|
|
|
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-pricing/customizations'
|
|
|
42
45
|
#
|
|
43
46
|
# See {Errors} for more information.
|
|
44
47
|
#
|
|
45
|
-
#
|
|
48
|
+
# @!group service
|
|
46
49
|
module Aws::Pricing
|
|
47
50
|
|
|
48
|
-
GEM_VERSION = '1.
|
|
51
|
+
GEM_VERSION = '1.23.0'
|
|
49
52
|
|
|
50
53
|
end
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
|
29
32
|
|
|
@@ -69,6 +72,7 @@ module Aws::Pricing
|
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
|
74
78
|
|
|
@@ -81,13 +85,28 @@ module Aws::Pricing
|
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
|
82
86
|
# credentials.
|
|
83
87
|
#
|
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
|
89
|
+
# shared file, such as `~/.aws/config`.
|
|
90
|
+
#
|
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
|
92
|
+
#
|
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
|
94
|
+
# assume a role after providing credentials via the web.
|
|
95
|
+
#
|
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
|
97
|
+
# access token generated from `aws login`.
|
|
98
|
+
#
|
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
|
100
|
+
# process that outputs to stdout.
|
|
101
|
+
#
|
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
|
86
104
|
#
|
|
87
|
-
# * `Aws::
|
|
88
|
-
#
|
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
|
106
|
+
# instances running in ECS.
|
|
89
107
|
#
|
|
90
|
-
# * `Aws::
|
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
|
109
|
+
# from the Cognito Identity service.
|
|
91
110
|
#
|
|
92
111
|
# When `:credentials` are not configured directly, the following
|
|
93
112
|
# locations will be searched for credentials:
|
|
@@ -97,10 +116,10 @@ module Aws::Pricing
|
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
|
98
117
|
# * `~/.aws/credentials`
|
|
99
118
|
# * `~/.aws/config`
|
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
|
101
|
-
# very aggressive. Construct and pass an instance of
|
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
|
103
|
-
# timeouts.
|
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
|
122
|
+
# enable retries and extended timeouts.
|
|
104
123
|
#
|
|
105
124
|
# @option options [required, String] :region
|
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
|
@@ -161,7 +180,7 @@ module Aws::Pricing
|
|
|
161
180
|
# @option options [String] :endpoint
|
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
|
165
184
|
#
|
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
|
@@ -176,7 +195,7 @@ module Aws::Pricing
|
|
|
176
195
|
# requests fetching endpoints information. Defaults to 60 sec.
|
|
177
196
|
#
|
|
178
197
|
# @option options [Boolean] :endpoint_discovery (false)
|
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
|
198
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
|
180
199
|
#
|
|
181
200
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
|
182
201
|
# The log formatter.
|
|
@@ -592,7 +611,7 @@ module Aws::Pricing
|
|
|
592
611
|
params: params,
|
|
593
612
|
config: config)
|
|
594
613
|
context[:gem_name] = 'aws-sdk-pricing'
|
|
595
|
-
context[:gem_version] = '1.
|
|
614
|
+
context[:gem_version] = '1.23.0'
|
|
596
615
|
Seahorse::Client::Request.new(handlers, context)
|
|
597
616
|
end
|
|
598
617
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -19,6 +21,7 @@ module Aws::Pricing
|
|
|
19
21
|
#
|
|
20
22
|
class AttributeValue < Struct.new(
|
|
21
23
|
:value)
|
|
24
|
+
SENSITIVE = []
|
|
22
25
|
include Aws::Structure
|
|
23
26
|
end
|
|
24
27
|
|
|
@@ -62,6 +65,7 @@ module Aws::Pricing
|
|
|
62
65
|
:format_version,
|
|
63
66
|
:next_token,
|
|
64
67
|
:max_results)
|
|
68
|
+
SENSITIVE = []
|
|
65
69
|
include Aws::Structure
|
|
66
70
|
end
|
|
67
71
|
|
|
@@ -83,6 +87,7 @@ module Aws::Pricing
|
|
|
83
87
|
:services,
|
|
84
88
|
:format_version,
|
|
85
89
|
:next_token)
|
|
90
|
+
SENSITIVE = []
|
|
86
91
|
include Aws::Structure
|
|
87
92
|
end
|
|
88
93
|
|
|
@@ -95,6 +100,7 @@ module Aws::Pricing
|
|
|
95
100
|
#
|
|
96
101
|
class ExpiredNextTokenException < Struct.new(
|
|
97
102
|
:message)
|
|
103
|
+
SENSITIVE = []
|
|
98
104
|
include Aws::Structure
|
|
99
105
|
end
|
|
100
106
|
|
|
@@ -144,6 +150,7 @@ module Aws::Pricing
|
|
|
144
150
|
:type,
|
|
145
151
|
:field,
|
|
146
152
|
:value)
|
|
153
|
+
SENSITIVE = []
|
|
147
154
|
include Aws::Structure
|
|
148
155
|
end
|
|
149
156
|
|
|
@@ -184,6 +191,7 @@ module Aws::Pricing
|
|
|
184
191
|
:attribute_name,
|
|
185
192
|
:next_token,
|
|
186
193
|
:max_results)
|
|
194
|
+
SENSITIVE = []
|
|
187
195
|
include Aws::Structure
|
|
188
196
|
end
|
|
189
197
|
|
|
@@ -203,6 +211,7 @@ module Aws::Pricing
|
|
|
203
211
|
class GetAttributeValuesResponse < Struct.new(
|
|
204
212
|
:attribute_values,
|
|
205
213
|
:next_token)
|
|
214
|
+
SENSITIVE = []
|
|
206
215
|
include Aws::Structure
|
|
207
216
|
end
|
|
208
217
|
|
|
@@ -255,6 +264,7 @@ module Aws::Pricing
|
|
|
255
264
|
:format_version,
|
|
256
265
|
:next_token,
|
|
257
266
|
:max_results)
|
|
267
|
+
SENSITIVE = []
|
|
258
268
|
include Aws::Structure
|
|
259
269
|
end
|
|
260
270
|
|
|
@@ -278,6 +288,7 @@ module Aws::Pricing
|
|
|
278
288
|
:format_version,
|
|
279
289
|
:price_list,
|
|
280
290
|
:next_token)
|
|
291
|
+
SENSITIVE = []
|
|
281
292
|
include Aws::Structure
|
|
282
293
|
end
|
|
283
294
|
|
|
@@ -291,6 +302,7 @@ module Aws::Pricing
|
|
|
291
302
|
#
|
|
292
303
|
class InternalErrorException < Struct.new(
|
|
293
304
|
:message)
|
|
305
|
+
SENSITIVE = []
|
|
294
306
|
include Aws::Structure
|
|
295
307
|
end
|
|
296
308
|
|
|
@@ -303,6 +315,7 @@ module Aws::Pricing
|
|
|
303
315
|
#
|
|
304
316
|
class InvalidNextTokenException < Struct.new(
|
|
305
317
|
:message)
|
|
318
|
+
SENSITIVE = []
|
|
306
319
|
include Aws::Structure
|
|
307
320
|
end
|
|
308
321
|
|
|
@@ -315,6 +328,7 @@ module Aws::Pricing
|
|
|
315
328
|
#
|
|
316
329
|
class InvalidParameterException < Struct.new(
|
|
317
330
|
:message)
|
|
331
|
+
SENSITIVE = []
|
|
318
332
|
include Aws::Structure
|
|
319
333
|
end
|
|
320
334
|
|
|
@@ -327,6 +341,7 @@ module Aws::Pricing
|
|
|
327
341
|
#
|
|
328
342
|
class NotFoundException < Struct.new(
|
|
329
343
|
:message)
|
|
344
|
+
SENSITIVE = []
|
|
330
345
|
include Aws::Structure
|
|
331
346
|
end
|
|
332
347
|
|
|
@@ -346,6 +361,7 @@ module Aws::Pricing
|
|
|
346
361
|
class Service < Struct.new(
|
|
347
362
|
:service_code,
|
|
348
363
|
:attribute_names)
|
|
364
|
+
SENSITIVE = []
|
|
349
365
|
include Aws::Structure
|
|
350
366
|
end
|
|
351
367
|
|
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.23.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: 2020-
|
|
11
|
+
date: 2020-09-15 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.99.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.99.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|