aws-sdk-costexplorer 1.54.0 → 1.55.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: 940b4ef1a65a63ec3a36228cacf6fcb922ace0d795a3f37b25a7251fe9f9b569
4
- data.tar.gz: 58ab876de970ed21945cdddd696983a7ec85f85e08a5b16b8fcf8b506903682b
3
+ metadata.gz: 8ddcbfcf351adf9c4c5b13e0b62e3fff3b71543a1a97774f8f8199954319646c
4
+ data.tar.gz: 248b0bf1505f8715185c88ae65cc13453dc4c757bdafee566eeca329ed7438ce
5
5
  SHA512:
6
- metadata.gz: 69b14ff65f6ffaf516cf1c9ecefbfc8bb51ac63658ece9b57d29940f5455bd651aa1e974f66c01462643fdd3fcf8b6f60af11d308c8b12ee90eb3d311e99734e
7
- data.tar.gz: bac72d3e3a97fe0bbf11a851ab950b7f8db1e2830774074cb02897089f3a0be340e5e9303bc99c34cbc7d08603eea2bf7b072aa6738c95d0d10c1f40c1eb6c1b
6
+ metadata.gz: fa2fc50f1aea036e02324f1eb5bc6915fe646ce39a0a71212781797987c06df9b8f60fa3448c3a9e32f6a194a8aa3efcdfe29c398a44096560b430566b35fa8a
7
+ data.tar.gz: 8e18b95afce70c86a416d086053eada9187f1c206f8769a3db903f465d43892796eb7fe15ac8e56a75af4fa1bb7eecf5dc476011ff2cd585611b701af139183f
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-costexplorer/customizations'
48
48
  # @!group service
49
49
  module Aws::CostExplorer
50
50
 
51
- GEM_VERSION = '1.54.0'
51
+ GEM_VERSION = '1.55.0'
52
52
 
53
53
  end
@@ -2205,6 +2205,7 @@ module Aws::CostExplorer
2205
2205
  # resp.metadata.recommendation_id #=> String
2206
2206
  # resp.metadata.generation_timestamp #=> String
2207
2207
  # resp.metadata.lookback_period_in_days #=> String, one of "SEVEN_DAYS", "THIRTY_DAYS", "SIXTY_DAYS"
2208
+ # resp.metadata.additional_metadata #=> String
2208
2209
  # resp.summary.total_recommendation_count #=> String
2209
2210
  # resp.summary.estimated_total_monthly_savings_amount #=> String
2210
2211
  # resp.summary.savings_currency_code #=> String
@@ -3138,7 +3139,7 @@ module Aws::CostExplorer
3138
3139
  # notifications.
3139
3140
  #
3140
3141
  # @option params [Array<String>] :monitor_arn_list
3141
- # A list of cost anomaly subscription ARNs.
3142
+ # A list of cost anomaly monitor ARNs.
3142
3143
  #
3143
3144
  # @option params [Array<Types::Subscriber>] :subscribers
3144
3145
  # The update to the subscriber list.
@@ -3273,7 +3274,7 @@ module Aws::CostExplorer
3273
3274
  params: params,
3274
3275
  config: config)
3275
3276
  context[:gem_name] = 'aws-sdk-costexplorer'
3276
- context[:gem_version] = '1.54.0'
3277
+ context[:gem_version] = '1.55.0'
3277
3278
  Seahorse::Client::Request.new(handlers, context)
3278
3279
  end
3279
3280
 
@@ -928,6 +928,7 @@ module Aws::CostExplorer
928
928
  RightsizingRecommendationMetadata.add_member(:recommendation_id, Shapes::ShapeRef.new(shape: GenericString, location_name: "RecommendationId"))
929
929
  RightsizingRecommendationMetadata.add_member(:generation_timestamp, Shapes::ShapeRef.new(shape: GenericString, location_name: "GenerationTimestamp"))
930
930
  RightsizingRecommendationMetadata.add_member(:lookback_period_in_days, Shapes::ShapeRef.new(shape: LookbackPeriodInDays, location_name: "LookbackPeriodInDays"))
931
+ RightsizingRecommendationMetadata.add_member(:additional_metadata, Shapes::ShapeRef.new(shape: GenericString, location_name: "AdditionalMetadata"))
931
932
  RightsizingRecommendationMetadata.struct_class = Types::RightsizingRecommendationMetadata
932
933
 
933
934
  RightsizingRecommendationSummary.add_member(:total_recommendation_count, Shapes::ShapeRef.new(shape: GenericString, location_name: "TotalRecommendationCount"))
@@ -4812,12 +4812,17 @@ module Aws::CostExplorer
4812
4812
  # recommendation.
4813
4813
  # @return [String]
4814
4814
  #
4815
+ # @!attribute [rw] additional_metadata
4816
+ # Additional metadata that may be applicable to the recommendation.
4817
+ # @return [String]
4818
+ #
4815
4819
  # @see http://docs.aws.amazon.com/goto/WebAPI/ce-2017-10-25/RightsizingRecommendationMetadata AWS API Documentation
4816
4820
  #
4817
4821
  class RightsizingRecommendationMetadata < Struct.new(
4818
4822
  :recommendation_id,
4819
4823
  :generation_timestamp,
4820
- :lookback_period_in_days)
4824
+ :lookback_period_in_days,
4825
+ :additional_metadata)
4821
4826
  SENSITIVE = []
4822
4827
  include Aws::Structure
4823
4828
  end
@@ -5726,7 +5731,7 @@ module Aws::CostExplorer
5726
5731
  # @return [String]
5727
5732
  #
5728
5733
  # @!attribute [rw] monitor_arn_list
5729
- # A list of cost anomaly subscription ARNs.
5734
+ # A list of cost anomaly monitor ARNs.
5730
5735
  # @return [Array<String>]
5731
5736
  #
5732
5737
  # @!attribute [rw] subscribers
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.54.0
4
+ version: 1.55.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: 2020-12-16 00:00:00.000000000 Z
11
+ date: 2020-12-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core