aws-sdk-savingsplans 1.2.0 → 1.7.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 +5 -5
- data/lib/aws-sdk-savingsplans.rb +9 -4
- data/lib/aws-sdk-savingsplans/client.rb +72 -14
- data/lib/aws-sdk-savingsplans/client_api.rb +2 -0
- data/lib/aws-sdk-savingsplans/errors.rb +28 -4
- data/lib/aws-sdk-savingsplans/resource.rb +3 -0
- data/lib/aws-sdk-savingsplans/types.rb +32 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 637936bc0dee9956c2197bb0946e215dc96a7cfd16f2447d212e1d081299611e
|
4
|
+
data.tar.gz: 326ad5caf826adb212b076cae4880529107eb428f8fb4fb6deca125928263601
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1272c2a1a6765276e293afd70caeca490cf2ffd2027d63b761b1011d69c5430a23adb57dbbc0282432acab1d5abfea0f8f919eecf42295908324e243f25fb66c
|
7
|
+
data.tar.gz: 55de7811a2023da230005d39082fc25edb8cc473f8a9eff87feb69c3be6d1e06d6d79698313c14789b2b297b2c5d0d2d8928a80a0ee480bb46e82ad2a091675e
|
data/lib/aws-sdk-savingsplans.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:
|
@@ -24,17 +26,20 @@ require_relative 'aws-sdk-savingsplans/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# savings_plans = Aws::SavingsPlans::Client.new
|
30
|
+
# resp = savings_plans.create_savings_plan(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from AWS Savings Plans
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from AWS Savings Plans are defined in the
|
37
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
38
|
#
|
34
39
|
# begin
|
35
40
|
# # do stuff
|
36
41
|
# rescue Aws::SavingsPlans::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all AWS Savings Plans API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-savingsplans/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::SavingsPlans
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.7.0'
|
46
51
|
|
47
52
|
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,12 +26,25 @@ 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/rest_json.rb'
|
29
32
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:savingsplans)
|
31
34
|
|
32
35
|
module Aws::SavingsPlans
|
36
|
+
# An API client for SavingsPlans. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::SavingsPlans::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
43
|
+
#
|
44
|
+
# For details on configuring region and credentials see
|
45
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
46
|
+
#
|
47
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
48
|
class Client < Seahorse::Client::Base
|
34
49
|
|
35
50
|
include Aws::ClientStubs
|
@@ -57,6 +72,7 @@ module Aws::SavingsPlans
|
|
57
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::SavingsPlans
|
|
93
109
|
# @option options [required, String] :region
|
94
110
|
# The AWS region to connect to. The configured `:region` is
|
95
111
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
97
113
|
#
|
98
114
|
# * `Aws.config[:region]`
|
99
115
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +124,12 @@ module Aws::SavingsPlans
|
|
108
124
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
125
|
# the background every 60 secs (default). Defaults to `false`.
|
110
126
|
#
|
127
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
128
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
129
|
+
# until there is sufficent client side capacity to retry the request.
|
130
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
131
|
+
# not retry instead of sleeping.
|
132
|
+
#
|
111
133
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
134
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
135
|
# this client.
|
@@ -132,6 +154,10 @@ module Aws::SavingsPlans
|
|
132
154
|
# When `true`, an attempt is made to coerce request parameters into
|
133
155
|
# the required types.
|
134
156
|
#
|
157
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
158
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
159
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
160
|
+
#
|
135
161
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
162
|
# Set to true to disable SDK automatically adding host prefix
|
137
163
|
# to default service endpoint when available.
|
@@ -139,7 +165,7 @@ module Aws::SavingsPlans
|
|
139
165
|
# @option options [String] :endpoint
|
140
166
|
# The client endpoint is normally constructed from the `:region`
|
141
167
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
169
|
#
|
144
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +180,7 @@ module Aws::SavingsPlans
|
|
154
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
181
|
#
|
156
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
184
|
#
|
159
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
186
|
# The log formatter.
|
@@ -166,15 +192,29 @@ module Aws::SavingsPlans
|
|
166
192
|
# The Logger instance to send log messages to. If this option
|
167
193
|
# is not set, logging will be disabled.
|
168
194
|
#
|
195
|
+
# @option options [Integer] :max_attempts (3)
|
196
|
+
# An integer representing the maximum number attempts that will be made for
|
197
|
+
# a single request, including the initial attempt. For example,
|
198
|
+
# setting this value to 5 will result in a request being retried up to
|
199
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
200
|
+
#
|
169
201
|
# @option options [String] :profile ("default")
|
170
202
|
# Used when loading credentials from the shared credentials file
|
171
203
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
204
|
#
|
205
|
+
# @option options [Proc] :retry_backoff
|
206
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
207
|
+
# This option is only used in the `legacy` retry mode.
|
208
|
+
#
|
173
209
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
210
|
+
# The base delay in seconds used by the default backoff function. This option
|
211
|
+
# is only used in the `legacy` retry mode.
|
175
212
|
#
|
176
213
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
214
|
+
# A delay randomiser function used by the default backoff function.
|
215
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
216
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
217
|
+
# in the `legacy` retry mode.
|
178
218
|
#
|
179
219
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
220
|
#
|
@@ -182,11 +222,30 @@ module Aws::SavingsPlans
|
|
182
222
|
# The maximum number of times to retry failed requests. Only
|
183
223
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
224
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
225
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
226
|
+
# endpoint discovery, and errors from expired credentials.
|
227
|
+
# This option is only used in the `legacy` retry mode.
|
187
228
|
#
|
188
229
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
230
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
231
|
+
# used by the default backoff function. This option is only used in the
|
232
|
+
# `legacy` retry mode.
|
233
|
+
#
|
234
|
+
# @option options [String] :retry_mode ("legacy")
|
235
|
+
# Specifies which retry algorithm to use. Values are:
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
190
249
|
#
|
191
250
|
# @option options [String] :secret_access_key
|
192
251
|
#
|
@@ -209,16 +268,15 @@ module Aws::SavingsPlans
|
|
209
268
|
# requests through. Formatted like 'http://proxy.com:123'.
|
210
269
|
#
|
211
270
|
# @option options [Float] :http_open_timeout (15) The number of
|
212
|
-
# seconds to wait when opening a HTTP session before
|
271
|
+
# seconds to wait when opening a HTTP session before raising a
|
213
272
|
# `Timeout::Error`.
|
214
273
|
#
|
215
274
|
# @option options [Integer] :http_read_timeout (60) The default
|
216
275
|
# number of seconds to wait for response data. This value can
|
217
|
-
# safely be set
|
218
|
-
# per-request on the session yeidled by {#session_for}.
|
276
|
+
# safely be set per-request on the session.
|
219
277
|
#
|
220
278
|
# @option options [Float] :http_idle_timeout (5) The number of
|
221
|
-
# seconds a connection is allowed to sit
|
279
|
+
# seconds a connection is allowed to sit idle before it is
|
222
280
|
# considered stale. Stale connections are closed and removed
|
223
281
|
# from the pool before making a request.
|
224
282
|
#
|
@@ -227,7 +285,7 @@ module Aws::SavingsPlans
|
|
227
285
|
# request body. This option has no effect unless the request has
|
228
286
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
229
287
|
# disables this behaviour. This value can safely be set per
|
230
|
-
# request on the session
|
288
|
+
# request on the session.
|
231
289
|
#
|
232
290
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
233
291
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -730,7 +788,7 @@ module Aws::SavingsPlans
|
|
730
788
|
params: params,
|
731
789
|
config: config)
|
732
790
|
context[:gem_name] = 'aws-sdk-savingsplans'
|
733
|
-
context[:gem_version] = '1.
|
791
|
+
context[:gem_version] = '1.7.0'
|
734
792
|
Seahorse::Client::Request.new(handlers, context)
|
735
793
|
end
|
736
794
|
|
@@ -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:
|
@@ -6,6 +8,32 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::SavingsPlans
|
11
|
+
|
12
|
+
# When SavingsPlans returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::SavingsPlans::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all SavingsPlans errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::SavingsPlans::Errors::ServiceError
|
20
|
+
# # rescues all SavingsPlans API errors
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
#
|
24
|
+
# ## Request Context
|
25
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
26
|
+
# information about the request that generated the error.
|
27
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
28
|
+
#
|
29
|
+
# ## Error Classes
|
30
|
+
# * {InternalServerException}
|
31
|
+
# * {ResourceNotFoundException}
|
32
|
+
# * {ServiceQuotaExceededException}
|
33
|
+
# * {ValidationException}
|
34
|
+
#
|
35
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
36
|
+
# if they are not defined above.
|
9
37
|
module Errors
|
10
38
|
|
11
39
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +51,6 @@ module Aws::SavingsPlans
|
|
23
51
|
def message
|
24
52
|
@message || @data[:message]
|
25
53
|
end
|
26
|
-
|
27
54
|
end
|
28
55
|
|
29
56
|
class ResourceNotFoundException < ServiceError
|
@@ -39,7 +66,6 @@ module Aws::SavingsPlans
|
|
39
66
|
def message
|
40
67
|
@message || @data[:message]
|
41
68
|
end
|
42
|
-
|
43
69
|
end
|
44
70
|
|
45
71
|
class ServiceQuotaExceededException < ServiceError
|
@@ -55,7 +81,6 @@ module Aws::SavingsPlans
|
|
55
81
|
def message
|
56
82
|
@message || @data[:message]
|
57
83
|
end
|
58
|
-
|
59
84
|
end
|
60
85
|
|
61
86
|
class ValidationException < ServiceError
|
@@ -71,7 +96,6 @@ module Aws::SavingsPlans
|
|
71
96
|
def message
|
72
97
|
@message || @data[:message]
|
73
98
|
end
|
74
|
-
|
75
99
|
end
|
76
100
|
|
77
101
|
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:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::SavingsPlans
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
14
|
# @param options ({})
|
@@ -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:
|
@@ -57,6 +59,7 @@ module Aws::SavingsPlans
|
|
57
59
|
:upfront_payment_amount,
|
58
60
|
:client_token,
|
59
61
|
:tags)
|
62
|
+
SENSITIVE = []
|
60
63
|
include Aws::Structure
|
61
64
|
end
|
62
65
|
|
@@ -68,6 +71,7 @@ module Aws::SavingsPlans
|
|
68
71
|
#
|
69
72
|
class CreateSavingsPlanResponse < Struct.new(
|
70
73
|
:savings_plan_id)
|
74
|
+
SENSITIVE = []
|
71
75
|
include Aws::Structure
|
72
76
|
end
|
73
77
|
|
@@ -111,6 +115,7 @@ module Aws::SavingsPlans
|
|
111
115
|
:filters,
|
112
116
|
:next_token,
|
113
117
|
:max_results)
|
118
|
+
SENSITIVE = []
|
114
119
|
include Aws::Structure
|
115
120
|
end
|
116
121
|
|
@@ -133,6 +138,7 @@ module Aws::SavingsPlans
|
|
133
138
|
:savings_plan_id,
|
134
139
|
:search_results,
|
135
140
|
:next_token)
|
141
|
+
SENSITIVE = []
|
136
142
|
include Aws::Structure
|
137
143
|
end
|
138
144
|
|
@@ -212,6 +218,7 @@ module Aws::SavingsPlans
|
|
212
218
|
:filters,
|
213
219
|
:next_token,
|
214
220
|
:max_results)
|
221
|
+
SENSITIVE = []
|
215
222
|
include Aws::Structure
|
216
223
|
end
|
217
224
|
|
@@ -229,6 +236,7 @@ module Aws::SavingsPlans
|
|
229
236
|
class DescribeSavingsPlansOfferingRatesResponse < Struct.new(
|
230
237
|
:search_results,
|
231
238
|
:next_token)
|
239
|
+
SENSITIVE = []
|
232
240
|
include Aws::Structure
|
233
241
|
end
|
234
242
|
|
@@ -326,6 +334,7 @@ module Aws::SavingsPlans
|
|
326
334
|
:filters,
|
327
335
|
:next_token,
|
328
336
|
:max_results)
|
337
|
+
SENSITIVE = []
|
329
338
|
include Aws::Structure
|
330
339
|
end
|
331
340
|
|
@@ -343,6 +352,7 @@ module Aws::SavingsPlans
|
|
343
352
|
class DescribeSavingsPlansOfferingsResponse < Struct.new(
|
344
353
|
:search_results,
|
345
354
|
:next_token)
|
355
|
+
SENSITIVE = []
|
346
356
|
include Aws::Structure
|
347
357
|
end
|
348
358
|
|
@@ -398,6 +408,7 @@ module Aws::SavingsPlans
|
|
398
408
|
:max_results,
|
399
409
|
:states,
|
400
410
|
:filters)
|
411
|
+
SENSITIVE = []
|
401
412
|
include Aws::Structure
|
402
413
|
end
|
403
414
|
|
@@ -415,6 +426,7 @@ module Aws::SavingsPlans
|
|
415
426
|
class DescribeSavingsPlansResponse < Struct.new(
|
416
427
|
:savings_plans,
|
417
428
|
:next_token)
|
429
|
+
SENSITIVE = []
|
418
430
|
include Aws::Structure
|
419
431
|
end
|
420
432
|
|
@@ -427,6 +439,7 @@ module Aws::SavingsPlans
|
|
427
439
|
#
|
428
440
|
class InternalServerException < Struct.new(
|
429
441
|
:message)
|
442
|
+
SENSITIVE = []
|
430
443
|
include Aws::Structure
|
431
444
|
end
|
432
445
|
|
@@ -445,6 +458,7 @@ module Aws::SavingsPlans
|
|
445
458
|
#
|
446
459
|
class ListTagsForResourceRequest < Struct.new(
|
447
460
|
:resource_arn)
|
461
|
+
SENSITIVE = []
|
448
462
|
include Aws::Structure
|
449
463
|
end
|
450
464
|
|
@@ -456,6 +470,7 @@ module Aws::SavingsPlans
|
|
456
470
|
#
|
457
471
|
class ListTagsForResourceResponse < Struct.new(
|
458
472
|
:tags)
|
473
|
+
SENSITIVE = []
|
459
474
|
include Aws::Structure
|
460
475
|
end
|
461
476
|
|
@@ -494,6 +509,7 @@ module Aws::SavingsPlans
|
|
494
509
|
:duration_seconds,
|
495
510
|
:currency,
|
496
511
|
:plan_description)
|
512
|
+
SENSITIVE = []
|
497
513
|
include Aws::Structure
|
498
514
|
end
|
499
515
|
|
@@ -506,6 +522,7 @@ module Aws::SavingsPlans
|
|
506
522
|
#
|
507
523
|
class ResourceNotFoundException < Struct.new(
|
508
524
|
:message)
|
525
|
+
SENSITIVE = []
|
509
526
|
include Aws::Structure
|
510
527
|
end
|
511
528
|
|
@@ -604,6 +621,7 @@ module Aws::SavingsPlans
|
|
604
621
|
:recurring_payment_amount,
|
605
622
|
:term_duration_in_seconds,
|
606
623
|
:tags)
|
624
|
+
SENSITIVE = []
|
607
625
|
include Aws::Structure
|
608
626
|
end
|
609
627
|
|
@@ -630,6 +648,7 @@ module Aws::SavingsPlans
|
|
630
648
|
class SavingsPlanFilter < Struct.new(
|
631
649
|
:name,
|
632
650
|
:values)
|
651
|
+
SENSITIVE = []
|
633
652
|
include Aws::Structure
|
634
653
|
end
|
635
654
|
|
@@ -693,6 +712,7 @@ module Aws::SavingsPlans
|
|
693
712
|
:usage_type,
|
694
713
|
:operation,
|
695
714
|
:properties)
|
715
|
+
SENSITIVE = []
|
696
716
|
include Aws::Structure
|
697
717
|
end
|
698
718
|
|
@@ -719,6 +739,7 @@ module Aws::SavingsPlans
|
|
719
739
|
class SavingsPlanOfferingFilterElement < Struct.new(
|
720
740
|
:name,
|
721
741
|
:values)
|
742
|
+
SENSITIVE = []
|
722
743
|
include Aws::Structure
|
723
744
|
end
|
724
745
|
|
@@ -737,6 +758,7 @@ module Aws::SavingsPlans
|
|
737
758
|
class SavingsPlanOfferingProperty < Struct.new(
|
738
759
|
:name,
|
739
760
|
:value)
|
761
|
+
SENSITIVE = []
|
740
762
|
include Aws::Structure
|
741
763
|
end
|
742
764
|
|
@@ -785,6 +807,7 @@ module Aws::SavingsPlans
|
|
785
807
|
:usage_type,
|
786
808
|
:operation,
|
787
809
|
:properties)
|
810
|
+
SENSITIVE = []
|
788
811
|
include Aws::Structure
|
789
812
|
end
|
790
813
|
|
@@ -811,6 +834,7 @@ module Aws::SavingsPlans
|
|
811
834
|
class SavingsPlanOfferingRateFilterElement < Struct.new(
|
812
835
|
:name,
|
813
836
|
:values)
|
837
|
+
SENSITIVE = []
|
814
838
|
include Aws::Structure
|
815
839
|
end
|
816
840
|
|
@@ -829,6 +853,7 @@ module Aws::SavingsPlans
|
|
829
853
|
class SavingsPlanOfferingRateProperty < Struct.new(
|
830
854
|
:name,
|
831
855
|
:value)
|
856
|
+
SENSITIVE = []
|
832
857
|
include Aws::Structure
|
833
858
|
end
|
834
859
|
|
@@ -877,6 +902,7 @@ module Aws::SavingsPlans
|
|
877
902
|
:usage_type,
|
878
903
|
:operation,
|
879
904
|
:properties)
|
905
|
+
SENSITIVE = []
|
880
906
|
include Aws::Structure
|
881
907
|
end
|
882
908
|
|
@@ -903,6 +929,7 @@ module Aws::SavingsPlans
|
|
903
929
|
class SavingsPlanRateFilter < Struct.new(
|
904
930
|
:name,
|
905
931
|
:values)
|
932
|
+
SENSITIVE = []
|
906
933
|
include Aws::Structure
|
907
934
|
end
|
908
935
|
|
@@ -921,6 +948,7 @@ module Aws::SavingsPlans
|
|
921
948
|
class SavingsPlanRateProperty < Struct.new(
|
922
949
|
:name,
|
923
950
|
:value)
|
951
|
+
SENSITIVE = []
|
924
952
|
include Aws::Structure
|
925
953
|
end
|
926
954
|
|
@@ -933,6 +961,7 @@ module Aws::SavingsPlans
|
|
933
961
|
#
|
934
962
|
class ServiceQuotaExceededException < Struct.new(
|
935
963
|
:message)
|
964
|
+
SENSITIVE = []
|
936
965
|
include Aws::Structure
|
937
966
|
end
|
938
967
|
|
@@ -960,6 +989,7 @@ module Aws::SavingsPlans
|
|
960
989
|
class TagResourceRequest < Struct.new(
|
961
990
|
:resource_arn,
|
962
991
|
:tags)
|
992
|
+
SENSITIVE = []
|
963
993
|
include Aws::Structure
|
964
994
|
end
|
965
995
|
|
@@ -988,6 +1018,7 @@ module Aws::SavingsPlans
|
|
988
1018
|
class UntagResourceRequest < Struct.new(
|
989
1019
|
:resource_arn,
|
990
1020
|
:tag_keys)
|
1021
|
+
SENSITIVE = []
|
991
1022
|
include Aws::Structure
|
992
1023
|
end
|
993
1024
|
|
@@ -1004,6 +1035,7 @@ module Aws::SavingsPlans
|
|
1004
1035
|
#
|
1005
1036
|
class ValidationException < Struct.new(
|
1006
1037
|
:message)
|
1038
|
+
SENSITIVE = []
|
1007
1039
|
include Aws::Structure
|
1008
1040
|
end
|
1009
1041
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-savingsplans
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.7.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-06-23 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
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - AWSSavingsPlans
|