aws-sdk-costexplorer 1.80.0 → 1.81.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 -1
- data/lib/aws-sdk-costexplorer/client_api.rb +1 -0
- data/lib/aws-sdk-costexplorer/types.rb +11 -3
- data/lib/aws-sdk-costexplorer.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9b57bdb9b69fa8c69f89521c2ea6da92860886dde37f515a53ef4a38d24f27ac
|
|
4
|
+
data.tar.gz: 6fb8bd7f1a669f1477bbd1ec745af4a254a00cc55c2fd491dd4f89ecb9cbeb18
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ce34d0967fabf8eb504ee80c505453d8d06e628dd0786363ee2bb93d5d277d088f44cb354b3a421f29f10517a1e30d7a6f2340dd4ccac8a2963870d1c4231ba8
|
|
7
|
+
data.tar.gz: dd19938f97917d3511b0f0bdd1b9713367216f74da4b139d122c9d649f2215d2f1c84bc3cf95f5cae0bf82368409fa8993b55625c9627c6f556724f1df049c10
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.81.0
|
|
@@ -930,6 +930,7 @@ module Aws::CostExplorer
|
|
|
930
930
|
# resp.anomalies[0].root_causes[0].region #=> String
|
|
931
931
|
# resp.anomalies[0].root_causes[0].linked_account #=> String
|
|
932
932
|
# resp.anomalies[0].root_causes[0].usage_type #=> String
|
|
933
|
+
# resp.anomalies[0].root_causes[0].linked_account_name #=> String
|
|
933
934
|
# resp.anomalies[0].anomaly_score.max_score #=> Float
|
|
934
935
|
# resp.anomalies[0].anomaly_score.current_score #=> Float
|
|
935
936
|
# resp.anomalies[0].impact.max_impact #=> Float
|
|
@@ -4718,7 +4719,7 @@ module Aws::CostExplorer
|
|
|
4718
4719
|
params: params,
|
|
4719
4720
|
config: config)
|
|
4720
4721
|
context[:gem_name] = 'aws-sdk-costexplorer'
|
|
4721
|
-
context[:gem_version] = '1.
|
|
4722
|
+
context[:gem_version] = '1.81.0'
|
|
4722
4723
|
Seahorse::Client::Request.new(handlers, context)
|
|
4723
4724
|
end
|
|
4724
4725
|
|
|
@@ -1161,6 +1161,7 @@ module Aws::CostExplorer
|
|
|
1161
1161
|
RootCause.add_member(:region, Shapes::ShapeRef.new(shape: GenericString, location_name: "Region"))
|
|
1162
1162
|
RootCause.add_member(:linked_account, Shapes::ShapeRef.new(shape: GenericString, location_name: "LinkedAccount"))
|
|
1163
1163
|
RootCause.add_member(:usage_type, Shapes::ShapeRef.new(shape: GenericString, location_name: "UsageType"))
|
|
1164
|
+
RootCause.add_member(:linked_account_name, Shapes::ShapeRef.new(shape: GenericString, location_name: "LinkedAccountName"))
|
|
1164
1165
|
RootCause.struct_class = Types::RootCause
|
|
1165
1166
|
|
|
1166
1167
|
RootCauses.member = Shapes::ShapeRef.new(shape: RootCause)
|
|
@@ -5272,8 +5272,10 @@ module Aws::CostExplorer
|
|
|
5272
5272
|
include Aws::Structure
|
|
5273
5273
|
end
|
|
5274
5274
|
|
|
5275
|
-
# The combination of Amazon Web Service, linked account,
|
|
5276
|
-
# usage type where a cost anomaly is observed.
|
|
5275
|
+
# The combination of Amazon Web Service, linked account, linked account
|
|
5276
|
+
# name, Region, and usage type where a cost anomaly is observed. The
|
|
5277
|
+
# linked account name will only be available when the account name can
|
|
5278
|
+
# be identified.
|
|
5277
5279
|
#
|
|
5278
5280
|
# @!attribute [rw] service
|
|
5279
5281
|
# The Amazon Web Service name that's associated with the cost
|
|
@@ -5293,13 +5295,19 @@ module Aws::CostExplorer
|
|
|
5293
5295
|
# The `UsageType` value that's associated with the cost anomaly.
|
|
5294
5296
|
# @return [String]
|
|
5295
5297
|
#
|
|
5298
|
+
# @!attribute [rw] linked_account_name
|
|
5299
|
+
# The member account name value that's associated with the cost
|
|
5300
|
+
# anomaly.
|
|
5301
|
+
# @return [String]
|
|
5302
|
+
#
|
|
5296
5303
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/RootCause AWS API Documentation
|
|
5297
5304
|
#
|
|
5298
5305
|
class RootCause < Struct.new(
|
|
5299
5306
|
:service,
|
|
5300
5307
|
:region,
|
|
5301
5308
|
:linked_account,
|
|
5302
|
-
:usage_type
|
|
5309
|
+
:usage_type,
|
|
5310
|
+
:linked_account_name)
|
|
5303
5311
|
SENSITIVE = []
|
|
5304
5312
|
include Aws::Structure
|
|
5305
5313
|
end
|
data/lib/aws-sdk-costexplorer.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-costexplorer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.81.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: 2022-12-
|
|
11
|
+
date: 2022-12-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|