aws-sdk-budgets 1.27.0 → 1.32.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-budgets.rb +9 -4
- data/lib/aws-sdk-budgets/client.rb +72 -14
- data/lib/aws-sdk-budgets/client_api.rb +2 -0
- data/lib/aws-sdk-budgets/customizations.rb +1 -0
- data/lib/aws-sdk-budgets/errors.rb +32 -8
- data/lib/aws-sdk-budgets/resource.rb +3 -0
- data/lib/aws-sdk-budgets/types.rb +39 -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: 7d23c2dab82404112afaa3a4f6355a6c9ff8502b8b8dfe0567b9822a39e21948
|
4
|
+
data.tar.gz: 97fd4bdffdbc7f439dae059cb248c553e90741c7d1f61aece74a26d2d698ffea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b86c7a71f12a029875bf8af78555765e796a80fbe80609caa031a2ba2eef9e61a37ae54c12526b4da0b0d5dbf380190fee7db65877d52f1e66bef4cd0debe3e8
|
7
|
+
data.tar.gz: e1e17a6132e5568f8ec51ebe87d0d8bd1462dbad5785f2272ca8c570d2e1029cd0505d64a5a83a2c2412f1b63bb7e50eed7a7a659189d706e715f36a08ca1092
|
data/lib/aws-sdk-budgets.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-budgets/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# budgets = Aws::Budgets::Client.new
|
30
|
+
# resp = budgets.create_budget(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from AWS Budgets
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from AWS Budgets 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::Budgets::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all AWS Budgets API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-budgets/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::Budgets
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.32.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/json_rpc.rb'
|
29
32
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:budgets)
|
31
34
|
|
32
35
|
module Aws::Budgets
|
36
|
+
# An API client for Budgets. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::Budgets::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::Budgets
|
|
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::JsonRpc)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::Budgets
|
|
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::Budgets
|
|
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::Budgets
|
|
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::Budgets
|
|
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::Budgets
|
|
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::Budgets
|
|
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::Budgets
|
|
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
|
#
|
@@ -219,16 +278,15 @@ module Aws::Budgets
|
|
219
278
|
# requests through. Formatted like 'http://proxy.com:123'.
|
220
279
|
#
|
221
280
|
# @option options [Float] :http_open_timeout (15) The number of
|
222
|
-
# seconds to wait when opening a HTTP session before
|
281
|
+
# seconds to wait when opening a HTTP session before raising a
|
223
282
|
# `Timeout::Error`.
|
224
283
|
#
|
225
284
|
# @option options [Integer] :http_read_timeout (60) The default
|
226
285
|
# number of seconds to wait for response data. This value can
|
227
|
-
# safely be set
|
228
|
-
# per-request on the session yeidled by {#session_for}.
|
286
|
+
# safely be set per-request on the session.
|
229
287
|
#
|
230
288
|
# @option options [Float] :http_idle_timeout (5) The number of
|
231
|
-
# seconds a connection is allowed to sit
|
289
|
+
# seconds a connection is allowed to sit idle before it is
|
232
290
|
# considered stale. Stale connections are closed and removed
|
233
291
|
# from the pool before making a request.
|
234
292
|
#
|
@@ -237,7 +295,7 @@ module Aws::Budgets
|
|
237
295
|
# request body. This option has no effect unless the request has
|
238
296
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
239
297
|
# disables this behaviour. This value can safely be set per
|
240
|
-
# request on the session
|
298
|
+
# request on the session.
|
241
299
|
#
|
242
300
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
243
301
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -1076,7 +1134,7 @@ module Aws::Budgets
|
|
1076
1134
|
params: params,
|
1077
1135
|
config: config)
|
1078
1136
|
context[:gem_name] = 'aws-sdk-budgets'
|
1079
|
-
context[:gem_version] = '1.
|
1137
|
+
context[:gem_version] = '1.32.0'
|
1080
1138
|
Seahorse::Client::Request.new(handlers, context)
|
1081
1139
|
end
|
1082
1140
|
|
@@ -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,36 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::Budgets
|
11
|
+
|
12
|
+
# When Budgets returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::Budgets::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all Budgets errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::Budgets::Errors::ServiceError
|
20
|
+
# # rescues all Budgets 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
|
+
# * {AccessDeniedException}
|
31
|
+
# * {CreationLimitExceededException}
|
32
|
+
# * {DuplicateRecordException}
|
33
|
+
# * {ExpiredNextTokenException}
|
34
|
+
# * {InternalErrorException}
|
35
|
+
# * {InvalidNextTokenException}
|
36
|
+
# * {InvalidParameterException}
|
37
|
+
# * {NotFoundException}
|
38
|
+
#
|
39
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
40
|
+
# if they are not defined above.
|
9
41
|
module Errors
|
10
42
|
|
11
43
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +55,6 @@ module Aws::Budgets
|
|
23
55
|
def message
|
24
56
|
@message || @data[:message]
|
25
57
|
end
|
26
|
-
|
27
58
|
end
|
28
59
|
|
29
60
|
class CreationLimitExceededException < ServiceError
|
@@ -39,7 +70,6 @@ module Aws::Budgets
|
|
39
70
|
def message
|
40
71
|
@message || @data[:message]
|
41
72
|
end
|
42
|
-
|
43
73
|
end
|
44
74
|
|
45
75
|
class DuplicateRecordException < ServiceError
|
@@ -55,7 +85,6 @@ module Aws::Budgets
|
|
55
85
|
def message
|
56
86
|
@message || @data[:message]
|
57
87
|
end
|
58
|
-
|
59
88
|
end
|
60
89
|
|
61
90
|
class ExpiredNextTokenException < ServiceError
|
@@ -71,7 +100,6 @@ module Aws::Budgets
|
|
71
100
|
def message
|
72
101
|
@message || @data[:message]
|
73
102
|
end
|
74
|
-
|
75
103
|
end
|
76
104
|
|
77
105
|
class InternalErrorException < ServiceError
|
@@ -87,7 +115,6 @@ module Aws::Budgets
|
|
87
115
|
def message
|
88
116
|
@message || @data[:message]
|
89
117
|
end
|
90
|
-
|
91
118
|
end
|
92
119
|
|
93
120
|
class InvalidNextTokenException < ServiceError
|
@@ -103,7 +130,6 @@ module Aws::Budgets
|
|
103
130
|
def message
|
104
131
|
@message || @data[:message]
|
105
132
|
end
|
106
|
-
|
107
133
|
end
|
108
134
|
|
109
135
|
class InvalidParameterException < ServiceError
|
@@ -119,7 +145,6 @@ module Aws::Budgets
|
|
119
145
|
def message
|
120
146
|
@message || @data[:message]
|
121
147
|
end
|
122
|
-
|
123
148
|
end
|
124
149
|
|
125
150
|
class NotFoundException < ServiceError
|
@@ -135,7 +160,6 @@ module Aws::Budgets
|
|
135
160
|
def message
|
136
161
|
@message || @data[:message]
|
137
162
|
end
|
138
|
-
|
139
163
|
end
|
140
164
|
|
141
165
|
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::Budgets
|
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:
|
@@ -17,6 +19,7 @@ module Aws::Budgets
|
|
17
19
|
#
|
18
20
|
class AccessDeniedException < Struct.new(
|
19
21
|
:message)
|
22
|
+
SENSITIVE = []
|
20
23
|
include Aws::Structure
|
21
24
|
end
|
22
25
|
|
@@ -211,6 +214,7 @@ module Aws::Budgets
|
|
211
214
|
:calculated_spend,
|
212
215
|
:budget_type,
|
213
216
|
:last_updated_time)
|
217
|
+
SENSITIVE = []
|
214
218
|
include Aws::Structure
|
215
219
|
end
|
216
220
|
|
@@ -254,6 +258,7 @@ module Aws::Budgets
|
|
254
258
|
:cost_types,
|
255
259
|
:time_unit,
|
256
260
|
:budgeted_and_actual_amounts_list)
|
261
|
+
SENSITIVE = []
|
257
262
|
include Aws::Structure
|
258
263
|
end
|
259
264
|
|
@@ -276,6 +281,7 @@ module Aws::Budgets
|
|
276
281
|
:budgeted_amount,
|
277
282
|
:actual_amount,
|
278
283
|
:time_period)
|
284
|
+
SENSITIVE = []
|
279
285
|
include Aws::Structure
|
280
286
|
end
|
281
287
|
|
@@ -314,6 +320,7 @@ module Aws::Budgets
|
|
314
320
|
class CalculatedSpend < Struct.new(
|
315
321
|
:actual_spend,
|
316
322
|
:forecasted_spend)
|
323
|
+
SENSITIVE = []
|
317
324
|
include Aws::Structure
|
318
325
|
end
|
319
326
|
|
@@ -419,6 +426,7 @@ module Aws::Budgets
|
|
419
426
|
:include_support,
|
420
427
|
:include_discount,
|
421
428
|
:use_amortized)
|
429
|
+
SENSITIVE = []
|
422
430
|
include Aws::Structure
|
423
431
|
end
|
424
432
|
|
@@ -514,6 +522,7 @@ module Aws::Budgets
|
|
514
522
|
:account_id,
|
515
523
|
:budget,
|
516
524
|
:notifications_with_subscribers)
|
525
|
+
SENSITIVE = []
|
517
526
|
include Aws::Structure
|
518
527
|
end
|
519
528
|
|
@@ -569,6 +578,7 @@ module Aws::Budgets
|
|
569
578
|
:budget_name,
|
570
579
|
:notification,
|
571
580
|
:subscribers)
|
581
|
+
SENSITIVE = []
|
572
582
|
include Aws::Structure
|
573
583
|
end
|
574
584
|
|
@@ -621,6 +631,7 @@ module Aws::Budgets
|
|
621
631
|
:budget_name,
|
622
632
|
:notification,
|
623
633
|
:subscriber)
|
634
|
+
SENSITIVE = []
|
624
635
|
include Aws::Structure
|
625
636
|
end
|
626
637
|
|
@@ -636,6 +647,7 @@ module Aws::Budgets
|
|
636
647
|
#
|
637
648
|
class CreationLimitExceededException < Struct.new(
|
638
649
|
:message)
|
650
|
+
SENSITIVE = []
|
639
651
|
include Aws::Structure
|
640
652
|
end
|
641
653
|
|
@@ -661,6 +673,7 @@ module Aws::Budgets
|
|
661
673
|
class DeleteBudgetRequest < Struct.new(
|
662
674
|
:account_id,
|
663
675
|
:budget_name)
|
676
|
+
SENSITIVE = []
|
664
677
|
include Aws::Structure
|
665
678
|
end
|
666
679
|
|
@@ -702,6 +715,7 @@ module Aws::Budgets
|
|
702
715
|
:account_id,
|
703
716
|
:budget_name,
|
704
717
|
:notification)
|
718
|
+
SENSITIVE = []
|
705
719
|
include Aws::Structure
|
706
720
|
end
|
707
721
|
|
@@ -752,6 +766,7 @@ module Aws::Budgets
|
|
752
766
|
:budget_name,
|
753
767
|
:notification,
|
754
768
|
:subscriber)
|
769
|
+
SENSITIVE = []
|
755
770
|
include Aws::Structure
|
756
771
|
end
|
757
772
|
|
@@ -802,6 +817,7 @@ module Aws::Budgets
|
|
802
817
|
:time_period,
|
803
818
|
:max_results,
|
804
819
|
:next_token)
|
820
|
+
SENSITIVE = []
|
805
821
|
include Aws::Structure
|
806
822
|
end
|
807
823
|
|
@@ -822,6 +838,7 @@ module Aws::Budgets
|
|
822
838
|
class DescribeBudgetPerformanceHistoryResponse < Struct.new(
|
823
839
|
:budget_performance_history,
|
824
840
|
:next_token)
|
841
|
+
SENSITIVE = []
|
825
842
|
include Aws::Structure
|
826
843
|
end
|
827
844
|
|
@@ -847,6 +864,7 @@ module Aws::Budgets
|
|
847
864
|
class DescribeBudgetRequest < Struct.new(
|
848
865
|
:account_id,
|
849
866
|
:budget_name)
|
867
|
+
SENSITIVE = []
|
850
868
|
include Aws::Structure
|
851
869
|
end
|
852
870
|
|
@@ -858,6 +876,7 @@ module Aws::Budgets
|
|
858
876
|
#
|
859
877
|
class DescribeBudgetResponse < Struct.new(
|
860
878
|
:budget)
|
879
|
+
SENSITIVE = []
|
861
880
|
include Aws::Structure
|
862
881
|
end
|
863
882
|
|
@@ -891,6 +910,7 @@ module Aws::Budgets
|
|
891
910
|
:account_id,
|
892
911
|
:max_results,
|
893
912
|
:next_token)
|
913
|
+
SENSITIVE = []
|
894
914
|
include Aws::Structure
|
895
915
|
end
|
896
916
|
|
@@ -908,6 +928,7 @@ module Aws::Budgets
|
|
908
928
|
class DescribeBudgetsResponse < Struct.new(
|
909
929
|
:budgets,
|
910
930
|
:next_token)
|
931
|
+
SENSITIVE = []
|
911
932
|
include Aws::Structure
|
912
933
|
end
|
913
934
|
|
@@ -947,6 +968,7 @@ module Aws::Budgets
|
|
947
968
|
:budget_name,
|
948
969
|
:max_results,
|
949
970
|
:next_token)
|
971
|
+
SENSITIVE = []
|
950
972
|
include Aws::Structure
|
951
973
|
end
|
952
974
|
|
@@ -964,6 +986,7 @@ module Aws::Budgets
|
|
964
986
|
class DescribeNotificationsForBudgetResponse < Struct.new(
|
965
987
|
:notifications,
|
966
988
|
:next_token)
|
989
|
+
SENSITIVE = []
|
967
990
|
include Aws::Structure
|
968
991
|
end
|
969
992
|
|
@@ -1015,6 +1038,7 @@ module Aws::Budgets
|
|
1015
1038
|
:notification,
|
1016
1039
|
:max_results,
|
1017
1040
|
:next_token)
|
1041
|
+
SENSITIVE = []
|
1018
1042
|
include Aws::Structure
|
1019
1043
|
end
|
1020
1044
|
|
@@ -1032,6 +1056,7 @@ module Aws::Budgets
|
|
1032
1056
|
class DescribeSubscribersForNotificationResponse < Struct.new(
|
1033
1057
|
:subscribers,
|
1034
1058
|
:next_token)
|
1059
|
+
SENSITIVE = []
|
1035
1060
|
include Aws::Structure
|
1036
1061
|
end
|
1037
1062
|
|
@@ -1044,6 +1069,7 @@ module Aws::Budgets
|
|
1044
1069
|
#
|
1045
1070
|
class DuplicateRecordException < Struct.new(
|
1046
1071
|
:message)
|
1072
|
+
SENSITIVE = []
|
1047
1073
|
include Aws::Structure
|
1048
1074
|
end
|
1049
1075
|
|
@@ -1055,6 +1081,7 @@ module Aws::Budgets
|
|
1055
1081
|
#
|
1056
1082
|
class ExpiredNextTokenException < Struct.new(
|
1057
1083
|
:message)
|
1084
|
+
SENSITIVE = []
|
1058
1085
|
include Aws::Structure
|
1059
1086
|
end
|
1060
1087
|
|
@@ -1067,6 +1094,7 @@ module Aws::Budgets
|
|
1067
1094
|
#
|
1068
1095
|
class InternalErrorException < Struct.new(
|
1069
1096
|
:message)
|
1097
|
+
SENSITIVE = []
|
1070
1098
|
include Aws::Structure
|
1071
1099
|
end
|
1072
1100
|
|
@@ -1078,6 +1106,7 @@ module Aws::Budgets
|
|
1078
1106
|
#
|
1079
1107
|
class InvalidNextTokenException < Struct.new(
|
1080
1108
|
:message)
|
1109
|
+
SENSITIVE = []
|
1081
1110
|
include Aws::Structure
|
1082
1111
|
end
|
1083
1112
|
|
@@ -1090,6 +1119,7 @@ module Aws::Budgets
|
|
1090
1119
|
#
|
1091
1120
|
class InvalidParameterException < Struct.new(
|
1092
1121
|
:message)
|
1122
|
+
SENSITIVE = []
|
1093
1123
|
include Aws::Structure
|
1094
1124
|
end
|
1095
1125
|
|
@@ -1101,6 +1131,7 @@ module Aws::Budgets
|
|
1101
1131
|
#
|
1102
1132
|
class NotFoundException < Struct.new(
|
1103
1133
|
:message)
|
1134
|
+
SENSITIVE = []
|
1104
1135
|
include Aws::Structure
|
1105
1136
|
end
|
1106
1137
|
|
@@ -1170,6 +1201,7 @@ module Aws::Budgets
|
|
1170
1201
|
:threshold,
|
1171
1202
|
:threshold_type,
|
1172
1203
|
:notification_state)
|
1204
|
+
SENSITIVE = []
|
1173
1205
|
include Aws::Structure
|
1174
1206
|
end
|
1175
1207
|
|
@@ -1207,6 +1239,7 @@ module Aws::Budgets
|
|
1207
1239
|
class NotificationWithSubscribers < Struct.new(
|
1208
1240
|
:notification,
|
1209
1241
|
:subscribers)
|
1242
|
+
SENSITIVE = []
|
1210
1243
|
include Aws::Structure
|
1211
1244
|
end
|
1212
1245
|
|
@@ -1240,6 +1273,7 @@ module Aws::Budgets
|
|
1240
1273
|
class Spend < Struct.new(
|
1241
1274
|
:amount,
|
1242
1275
|
:unit)
|
1276
|
+
SENSITIVE = []
|
1243
1277
|
include Aws::Structure
|
1244
1278
|
end
|
1245
1279
|
|
@@ -1275,6 +1309,7 @@ module Aws::Budgets
|
|
1275
1309
|
class Subscriber < Struct.new(
|
1276
1310
|
:subscription_type,
|
1277
1311
|
:address)
|
1312
|
+
SENSITIVE = [:address]
|
1278
1313
|
include Aws::Structure
|
1279
1314
|
end
|
1280
1315
|
|
@@ -1316,6 +1351,7 @@ module Aws::Budgets
|
|
1316
1351
|
class TimePeriod < Struct.new(
|
1317
1352
|
:start,
|
1318
1353
|
:end)
|
1354
|
+
SENSITIVE = []
|
1319
1355
|
include Aws::Structure
|
1320
1356
|
end
|
1321
1357
|
|
@@ -1386,6 +1422,7 @@ module Aws::Budgets
|
|
1386
1422
|
class UpdateBudgetRequest < Struct.new(
|
1387
1423
|
:account_id,
|
1388
1424
|
:new_budget)
|
1425
|
+
SENSITIVE = []
|
1389
1426
|
include Aws::Structure
|
1390
1427
|
end
|
1391
1428
|
|
@@ -1439,6 +1476,7 @@ module Aws::Budgets
|
|
1439
1476
|
:budget_name,
|
1440
1477
|
:old_notification,
|
1441
1478
|
:new_notification)
|
1479
|
+
SENSITIVE = []
|
1442
1480
|
include Aws::Structure
|
1443
1481
|
end
|
1444
1482
|
|
@@ -1500,6 +1538,7 @@ module Aws::Budgets
|
|
1500
1538
|
:notification,
|
1501
1539
|
:old_subscriber,
|
1502
1540
|
:new_subscriber)
|
1541
|
+
SENSITIVE = []
|
1503
1542
|
include Aws::Structure
|
1504
1543
|
end
|
1505
1544
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-budgets
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.32.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:
|
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 - AWSBudgets
|