aws-sdk-costexplorer 1.80.0 → 1.81.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f29b723690f77b46793898db81ba6e1f209f34e2354626394a2d2b8efd17b35b
4
- data.tar.gz: cb6e46daf2706629f949d5ef43238ae6d27dfca49bc916d9c4475181f017d44a
3
+ metadata.gz: 9b57bdb9b69fa8c69f89521c2ea6da92860886dde37f515a53ef4a38d24f27ac
4
+ data.tar.gz: 6fb8bd7f1a669f1477bbd1ec745af4a254a00cc55c2fd491dd4f89ecb9cbeb18
5
5
  SHA512:
6
- metadata.gz: b34ff974f7f1e5a69df15f3ceb033001b4f73771ddcaabedcb05d598499fc1e386f00d4cf10767d8888335c9b176c66d327f0ae2d6c39f775833adeda9806441
7
- data.tar.gz: 77c3259379b7d91dc6fc6a0048c5ed9a52d16fd77c81738ea8a33c5c4265210e9606f5ea32a266be4fd4b1f912427c584a093057b08d440c1fe793a28ea27c2c
6
+ metadata.gz: ce34d0967fabf8eb504ee80c505453d8d06e628dd0786363ee2bb93d5d277d088f44cb354b3a421f29f10517a1e30d7a6f2340dd4ccac8a2963870d1c4231ba8
7
+ data.tar.gz: dd19938f97917d3511b0f0bdd1b9713367216f74da4b139d122c9d649f2215d2f1c84bc3cf95f5cae0bf82368409fa8993b55625c9627c6f556724f1df049c10
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.81.0 (2022-12-07)
5
+ ------------------
6
+
7
+ * Feature - This release adds the LinkedAccountName field to the GetAnomalies API response under RootCause
8
+
4
9
  1.80.0 (2022-12-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.80.0
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.80.0'
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, Region, and
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
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-costexplorer/customizations'
52
52
  # @!group service
53
53
  module Aws::CostExplorer
54
54
 
55
- GEM_VERSION = '1.80.0'
55
+ GEM_VERSION = '1.81.0'
56
56
 
57
57
  end
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.80.0
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-05 00:00:00.000000000 Z
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