aws-sdk-costexplorer 1.145.0 → 1.146.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-costexplorer/client.rb +2 -2
- data/lib/aws-sdk-costexplorer/types.rb +2 -1
- data/lib/aws-sdk-costexplorer.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c7aa9fb82a10cf57d08688b2698b0c0e42fc89c96ef7220e960a15b108d9025d
|
|
4
|
+
data.tar.gz: 2677708b4c37b9f1fd50849b986de3ca0c04acbbc111ffded592b40999dd4a65
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73d19ab584e5c1b697226d4c5934855da7b8c842ff3db4425a8c075f02888cbf6692fa9e16b6072fb49afc9e6dc96d3fb81082fece58de2bd2a2112a78b412df
|
|
7
|
+
data.tar.gz: a5412113a0629b84d0868dc5343d76e7fa4e18cf6625ff03898ebdd7f591ea01479300d8de21caedc1c895af748215bccf7749e735e0d4b7f0b59cec8af9ca75
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.146.0 (2026-01-14)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Cost Categories added support to BillingView data filter expressions through the new costCategories parameter, enabling users to filter billing views by AWS Cost Categories for more granular cost management and allocation.
|
|
8
|
+
|
|
4
9
|
1.145.0 (2026-01-08)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.146.0
|
|
@@ -5393,7 +5393,7 @@ module Aws::CostExplorer
|
|
|
5393
5393
|
# types based on the latest version. If the filter is present, the
|
|
5394
5394
|
# result only includes Cost Categories that supports input resource
|
|
5395
5395
|
# type. If the filter isn't provided, no filtering is applied. The
|
|
5396
|
-
# valid values are `billing:rispgroupsharing`.
|
|
5396
|
+
# valid values are `billing:rispgroupsharing` and `billing:billingview`.
|
|
5397
5397
|
#
|
|
5398
5398
|
# @return [Types::ListCostCategoryDefinitionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5399
5399
|
#
|
|
@@ -6185,7 +6185,7 @@ module Aws::CostExplorer
|
|
|
6185
6185
|
tracer: tracer
|
|
6186
6186
|
)
|
|
6187
6187
|
context[:gem_name] = 'aws-sdk-costexplorer'
|
|
6188
|
-
context[:gem_version] = '1.
|
|
6188
|
+
context[:gem_version] = '1.146.0'
|
|
6189
6189
|
Seahorse::Client::Request.new(handlers, context)
|
|
6190
6190
|
end
|
|
6191
6191
|
|
|
@@ -5843,7 +5843,8 @@ module Aws::CostExplorer
|
|
|
5843
5843
|
# resource types based on the latest version. If the filter is
|
|
5844
5844
|
# present, the result only includes Cost Categories that supports
|
|
5845
5845
|
# input resource type. If the filter isn't provided, no filtering is
|
|
5846
|
-
# applied. The valid values are `billing:rispgroupsharing
|
|
5846
|
+
# applied. The valid values are `billing:rispgroupsharing` and
|
|
5847
|
+
# `billing:billingview`.
|
|
5847
5848
|
# @return [Array<String>]
|
|
5848
5849
|
#
|
|
5849
5850
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/ListCostCategoryDefinitionsRequest AWS API Documentation
|
data/lib/aws-sdk-costexplorer.rb
CHANGED