aws-sdk-billing 1.24.0 → 1.25.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: 1aa2a25aeb05ac8f83af1094c5d3a35c241c91f0cf0849c86f937a70beba08b9
4
- data.tar.gz: f687d01c95c1023b9f0d6a23b75597bd05a90b9bd7898a0d88c120df0593732e
3
+ metadata.gz: 247e595fa3ffebf7f263309ac7325c76ed03c9dbb4e4d51fdd4e828d57b346b8
4
+ data.tar.gz: 61ae6cc2c5cabe165fda18a65f6a59c26aee936352c79abef753ab9cc38aa7ae
5
5
  SHA512:
6
- metadata.gz: 62c7306d8ae79150465a09f026ff77e55f66b497502ce686d4f13863408e35528d93f439547a0f8611b9ccbf4c912afdb42435e75ac782d0fadadeb053ce8730
7
- data.tar.gz: 2d18b5ec06f914e539b620c9b52044dea7064128242575ce13d22362d6b36bc16654be5c34a1af4dfb61ab4d6c613411bdaea4dcd26cbdcd6e82e794faa05073
6
+ metadata.gz: 0a2307d9edb25b0fc0c95be05cb85edfe536ef5240cbea7bbe482f936a0fcc31a6bdda3919f692388d4007352eaae68f1bd9c83a77cb24913d8d98893147b7d4
7
+ data.tar.gz: f6b3846ab5575f2d93f17b3fb593857d9a04bdd2327db726aa78c1e1c3c35f068b4df510d61b58e8846b48369add4626533a29b934fe5916afa28c45f14f44f4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.25.0 (2026-05-19)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.24.0 (2026-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.24.0
1
+ 1.25.0
@@ -1290,7 +1290,7 @@ module Aws::Billing
1290
1290
  tracer: tracer
1291
1291
  )
1292
1292
  context[:gem_name] = 'aws-sdk-billing'
1293
- context[:gem_version] = '1.24.0'
1293
+ context[:gem_version] = '1.25.0'
1294
1294
  Seahorse::Client::Request.new(handlers, context)
1295
1295
  end
1296
1296
 
@@ -55,7 +55,7 @@ module Aws::Billing
55
55
  autoload :EndpointProvider, 'aws-sdk-billing/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-billing/endpoints'
57
57
 
58
- GEM_VERSION = '1.24.0'
58
+ GEM_VERSION = '1.25.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -100,30 +100,13 @@ module Aws
100
100
  name: ::String,
101
101
  ?description: ::String,
102
102
  source_views: Array[::String],
103
- ?data_filter_expression: {
104
- dimensions: {
105
- key: ("LINKED_ACCOUNT"),
106
- values: Array[::String]
107
- }?,
108
- tags: {
109
- key: ::String,
110
- values: Array[::String]
111
- }?,
112
- cost_categories: {
113
- key: ::String,
114
- values: Array[::String]
115
- }?,
116
- time_range: {
117
- begin_date_inclusive: ::Time?,
118
- end_date_inclusive: ::Time?
119
- }?
120
- },
103
+ ?data_filter_expression: Params::expression,
121
104
  ?client_token: ::String,
122
105
  ?resource_tags: Array[
123
106
  {
124
107
  key: ::String,
125
108
  value: ::String?
126
- },
109
+ }
127
110
  ]
128
111
  ) -> _CreateBillingViewResponseSuccess
129
112
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBillingViewResponseSuccess
@@ -188,7 +171,7 @@ module Aws
188
171
  {
189
172
  search_option: ("STARTS_WITH"),
190
173
  search_value: ::String
191
- },
174
+ }
192
175
  ],
193
176
  ?owner_account_id: ::String,
194
177
  ?source_account_id: ::String,
@@ -230,7 +213,7 @@ module Aws
230
213
  {
231
214
  key: ::String,
232
215
  value: ::String?
233
- },
216
+ }
234
217
  ]
235
218
  ) -> _TagResourceResponseSuccess
236
219
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
@@ -255,24 +238,7 @@ module Aws
255
238
  arn: ::String,
256
239
  ?name: ::String,
257
240
  ?description: ::String,
258
- ?data_filter_expression: {
259
- dimensions: {
260
- key: ("LINKED_ACCOUNT"),
261
- values: Array[::String]
262
- }?,
263
- tags: {
264
- key: ::String,
265
- values: Array[::String]
266
- }?,
267
- cost_categories: {
268
- key: ::String,
269
- values: Array[::String]
270
- }?,
271
- time_range: {
272
- begin_date_inclusive: ::Time?,
273
- end_date_inclusive: ::Time?
274
- }?
275
- }
241
+ ?data_filter_expression: Params::expression
276
242
  ) -> _UpdateBillingViewResponseSuccess
277
243
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBillingViewResponseSuccess
278
244
  end
data/sig/params.rbs ADDED
@@ -0,0 +1,32 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module Billing
10
+ module Params
11
+ type expression = {
12
+ dimensions: {
13
+ key: ("LINKED_ACCOUNT"),
14
+ values: Array[::String]
15
+ }?,
16
+ tags: {
17
+ key: ::String,
18
+ values: Array[::String]
19
+ }?,
20
+ cost_categories: {
21
+ key: ::String,
22
+ values: Array[::String]
23
+ }?,
24
+ time_range: {
25
+ begin_date_inclusive: ::Time?,
26
+ end_date_inclusive: ::Time?
27
+ }?
28
+ }
29
+
30
+ end
31
+ end
32
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-billing
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.24.0
4
+ version: 1.25.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -68,6 +68,7 @@ files:
68
68
  - lib/aws-sdk-billing/waiters.rb
69
69
  - sig/client.rbs
70
70
  - sig/errors.rbs
71
+ - sig/params.rbs
71
72
  - sig/resource.rbs
72
73
  - sig/types.rbs
73
74
  - sig/waiters.rbs