aws-sdk-costoptimizationhub 1.10.0 → 1.11.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: 135bc70edca4d75fec3f621683af73056fd455d5780f397bab90987e5adbe29e
4
- data.tar.gz: 3ee10849af44381bc06de39a3dd76ef3a3e7b79d788bb34d92126ade58111fb1
3
+ metadata.gz: 32e5ed167b979230b9c9aa6ac376982480f3987ab60d4c934d07a20e513c28f5
4
+ data.tar.gz: 130e1fef533831d292f5cbebc73bcbddb0e7f319ea2d3642bce1e1e5226709fe
5
5
  SHA512:
6
- metadata.gz: 01aea64cdae37a12b4951c921a7b92eec21ad65782eb70cb1e6d2a6ab56f4c6c358c009d45d53ba4b0f6a3929ccde35b2d2798df288ddcb460b7c98afe169d19
7
- data.tar.gz: cf727f89e2588caa45f99a8e9e1bcf9fc99f084feaef5b1cb00320f5771de35b89886a8db2976e3f73770d51ddbc47b3c5b988d6e8bee97b8cf647e918b2abe5
6
+ metadata.gz: 418b88825ce2accab7807643fd9f7b55080025ccb84a014bb111746e9ddb93b68211d333256ed6cbe8fcc6c0d71ead87f7209d879e81d5cf90e7c7b4ed4c2ec6
7
+ data.tar.gz: 7a9c7dbfa837f43a9e02cfe3dd152c19cf7db03c5f671cb39b002f564325e90fac5e4e11be5d452407e16e71d09f66c5ec704623669d8b2297ad723859363096
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.11.0 (2024-08-06)
5
+ ------------------
6
+
7
+ * Feature - This release adds savings percentage support to the ListRecommendationSummaries API.
8
+
4
9
  1.10.0 (2024-07-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.10.0
1
+ 1.11.0
@@ -1045,8 +1045,11 @@ module Aws::CostOptimizationHub
1045
1045
  # The grouping of recommendations by a dimension.
1046
1046
  #
1047
1047
  # @option params [Integer] :max_results
1048
- # The maximum number of recommendations that are returned for the
1049
- # request.
1048
+ # The maximum number of recommendations to be returned for the request.
1049
+ #
1050
+ # @option params [Array<String>] :metrics
1051
+ # Additional metrics to be returned for the request. The only valid
1052
+ # value is `savingsPercentage`.
1050
1053
  #
1051
1054
  # @option params [String] :next_token
1052
1055
  # The token to retrieve the next set of results.
@@ -1057,6 +1060,7 @@ module Aws::CostOptimizationHub
1057
1060
  # * {Types::ListRecommendationSummariesResponse#items #items} => Array&lt;Types::RecommendationSummary&gt;
1058
1061
  # * {Types::ListRecommendationSummariesResponse#group_by #data.group_by} => String (This method conflicts with a method on Response, call it through the data member)
1059
1062
  # * {Types::ListRecommendationSummariesResponse#currency_code #currency_code} => String
1063
+ # * {Types::ListRecommendationSummariesResponse#metrics #metrics} => Types::SummaryMetricsResult
1060
1064
  # * {Types::ListRecommendationSummariesResponse#next_token #next_token} => String
1061
1065
  #
1062
1066
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
@@ -1084,6 +1088,7 @@ module Aws::CostOptimizationHub
1084
1088
  # },
1085
1089
  # group_by: "String", # required
1086
1090
  # max_results: 1,
1091
+ # metrics: ["SavingsPercentage"], # accepts SavingsPercentage
1087
1092
  # next_token: "String",
1088
1093
  # })
1089
1094
  #
@@ -1096,6 +1101,7 @@ module Aws::CostOptimizationHub
1096
1101
  # resp.items[0].recommendation_count #=> Integer
1097
1102
  # resp.data.group_by #=> String
1098
1103
  # resp.currency_code #=> String
1104
+ # resp.metrics.savings_percentage #=> String
1099
1105
  # resp.next_token #=> String
1100
1106
  #
1101
1107
  # @see http://docs.aws.amazon.com/goto/WebAPI/cost-optimization-hub-2022-07-26/ListRecommendationSummaries AWS API Documentation
@@ -1203,8 +1209,9 @@ module Aws::CostOptimizationHub
1203
1209
  # Updates the enrollment (opt in and opt out) status of an account to
1204
1210
  # the Cost Optimization Hub service.
1205
1211
  #
1206
- # If the account is a management account of an organization, this action
1207
- # can also be used to enroll member accounts of the organization.
1212
+ # If the account is a management account or delegated administrator of
1213
+ # an organization, this action can also be used to enroll member
1214
+ # accounts of the organization.
1208
1215
  #
1209
1216
  # You must have the appropriate permissions to opt in to Cost
1210
1217
  # Optimization Hub and to view its recommendations. When you opt in,
@@ -1216,7 +1223,7 @@ module Aws::CostOptimizationHub
1216
1223
  #
1217
1224
  # @option params [Boolean] :include_member_accounts
1218
1225
  # Indicates whether to enroll member accounts of the organization if the
1219
- # account is the management account.
1226
+ # account is the management account or delegated administrator.
1220
1227
  #
1221
1228
  # @return [Types::UpdateEnrollmentStatusResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1222
1229
  #
@@ -1291,7 +1298,7 @@ module Aws::CostOptimizationHub
1291
1298
  params: params,
1292
1299
  config: config)
1293
1300
  context[:gem_name] = 'aws-sdk-costoptimizationhub'
1294
- context[:gem_version] = '1.10.0'
1301
+ context[:gem_version] = '1.11.0'
1295
1302
  Seahorse::Client::Request.new(handlers, context)
1296
1303
  end
1297
1304
 
@@ -103,6 +103,9 @@ module Aws::CostOptimizationHub
103
103
  Source = Shapes::StringShape.new(name: 'Source')
104
104
  StorageConfiguration = Shapes::StructureShape.new(name: 'StorageConfiguration')
105
105
  String = Shapes::StringShape.new(name: 'String')
106
+ SummaryMetrics = Shapes::StringShape.new(name: 'SummaryMetrics')
107
+ SummaryMetricsList = Shapes::ListShape.new(name: 'SummaryMetricsList')
108
+ SummaryMetricsResult = Shapes::StructureShape.new(name: 'SummaryMetricsResult')
106
109
  Tag = Shapes::StructureShape.new(name: 'Tag')
107
110
  TagList = Shapes::ListShape.new(name: 'TagList')
108
111
  ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
@@ -320,6 +323,7 @@ module Aws::CostOptimizationHub
320
323
  ListRecommendationSummariesRequest.add_member(:filter, Shapes::ShapeRef.new(shape: Filter, location_name: "filter"))
321
324
  ListRecommendationSummariesRequest.add_member(:group_by, Shapes::ShapeRef.new(shape: String, required: true, location_name: "groupBy"))
322
325
  ListRecommendationSummariesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListRecommendationSummariesRequestMaxResultsInteger, location_name: "maxResults"))
326
+ ListRecommendationSummariesRequest.add_member(:metrics, Shapes::ShapeRef.new(shape: SummaryMetricsList, location_name: "metrics"))
323
327
  ListRecommendationSummariesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
324
328
  ListRecommendationSummariesRequest.struct_class = Types::ListRecommendationSummariesRequest
325
329
 
@@ -327,6 +331,7 @@ module Aws::CostOptimizationHub
327
331
  ListRecommendationSummariesResponse.add_member(:items, Shapes::ShapeRef.new(shape: RecommendationSummariesList, location_name: "items"))
328
332
  ListRecommendationSummariesResponse.add_member(:group_by, Shapes::ShapeRef.new(shape: String, location_name: "groupBy"))
329
333
  ListRecommendationSummariesResponse.add_member(:currency_code, Shapes::ShapeRef.new(shape: String, location_name: "currencyCode"))
334
+ ListRecommendationSummariesResponse.add_member(:metrics, Shapes::ShapeRef.new(shape: SummaryMetricsResult, location_name: "metrics"))
330
335
  ListRecommendationSummariesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
331
336
  ListRecommendationSummariesResponse.struct_class = Types::ListRecommendationSummariesResponse
332
337
 
@@ -544,6 +549,11 @@ module Aws::CostOptimizationHub
544
549
  StorageConfiguration.add_member(:size_in_gb, Shapes::ShapeRef.new(shape: Double, location_name: "sizeInGb"))
545
550
  StorageConfiguration.struct_class = Types::StorageConfiguration
546
551
 
552
+ SummaryMetricsList.member = Shapes::ShapeRef.new(shape: SummaryMetrics)
553
+
554
+ SummaryMetricsResult.add_member(:savings_percentage, Shapes::ShapeRef.new(shape: String, location_name: "savingsPercentage"))
555
+ SummaryMetricsResult.struct_class = Types::SummaryMetricsResult
556
+
547
557
  Tag.add_member(:key, Shapes::ShapeRef.new(shape: String, location_name: "key"))
548
558
  Tag.add_member(:value, Shapes::ShapeRef.new(shape: String, location_name: "value"))
549
559
  Tag.struct_class = Types::Tag
@@ -944,7 +944,7 @@ module Aws::CostOptimizationHub
944
944
  #
945
945
  # @!attribute [rw] include_member_accounts
946
946
  # The enrollment status of all member accounts in the organization if
947
- # the account is the management account.
947
+ # the account is the management account or delegated administrator.
948
948
  # @return [Boolean]
949
949
  #
950
950
  # @!attribute [rw] next_token
@@ -971,10 +971,15 @@ module Aws::CostOptimizationHub
971
971
  # @return [String]
972
972
  #
973
973
  # @!attribute [rw] max_results
974
- # The maximum number of recommendations that are returned for the
974
+ # The maximum number of recommendations to be returned for the
975
975
  # request.
976
976
  # @return [Integer]
977
977
  #
978
+ # @!attribute [rw] metrics
979
+ # Additional metrics to be returned for the request. The only valid
980
+ # value is `savingsPercentage`.
981
+ # @return [Array<String>]
982
+ #
978
983
  # @!attribute [rw] next_token
979
984
  # The token to retrieve the next set of results.
980
985
  # @return [String]
@@ -985,6 +990,7 @@ module Aws::CostOptimizationHub
985
990
  :filter,
986
991
  :group_by,
987
992
  :max_results,
993
+ :metrics,
988
994
  :next_token)
989
995
  SENSITIVE = []
990
996
  include Aws::Structure
@@ -995,7 +1001,7 @@ module Aws::CostOptimizationHub
995
1001
  # @return [Float]
996
1002
  #
997
1003
  # @!attribute [rw] items
998
- # List of all savings recommendations.
1004
+ # A list of all savings recommendations.
999
1005
  # @return [Array<Types::RecommendationSummary>]
1000
1006
  #
1001
1007
  # @!attribute [rw] group_by
@@ -1006,6 +1012,11 @@ module Aws::CostOptimizationHub
1006
1012
  # The currency code used for the recommendation.
1007
1013
  # @return [String]
1008
1014
  #
1015
+ # @!attribute [rw] metrics
1016
+ # The results or descriptions for the additional metrics, based on
1017
+ # whether the metrics were or were not requested.
1018
+ # @return [Types::SummaryMetricsResult]
1019
+ #
1009
1020
  # @!attribute [rw] next_token
1010
1021
  # The token to retrieve the next set of results.
1011
1022
  # @return [String]
@@ -1017,6 +1028,7 @@ module Aws::CostOptimizationHub
1017
1028
  :items,
1018
1029
  :group_by,
1019
1030
  :currency_code,
1031
+ :metrics,
1020
1032
  :next_token)
1021
1033
  SENSITIVE = []
1022
1034
  include Aws::Structure
@@ -1961,6 +1973,27 @@ module Aws::CostOptimizationHub
1961
1973
  include Aws::Structure
1962
1974
  end
1963
1975
 
1976
+ # The results or descriptions for the additional metrics, based on
1977
+ # whether the metrics were or were not requested.
1978
+ #
1979
+ # @!attribute [rw] savings_percentage
1980
+ # The savings percentage based on your Amazon Web Services spend over
1981
+ # the past 30 days.
1982
+ #
1983
+ # <note markdown="1"> Savings percentage is only supported when filtering by Region,
1984
+ # account ID, or tags.
1985
+ #
1986
+ # </note>
1987
+ # @return [String]
1988
+ #
1989
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cost-optimization-hub-2022-07-26/SummaryMetricsResult AWS API Documentation
1990
+ #
1991
+ class SummaryMetricsResult < Struct.new(
1992
+ :savings_percentage)
1993
+ SENSITIVE = []
1994
+ include Aws::Structure
1995
+ end
1996
+
1964
1997
  # The tag structure that contains a tag key and value.
1965
1998
  #
1966
1999
  # @!attribute [rw] key
@@ -1999,7 +2032,7 @@ module Aws::CostOptimizationHub
1999
2032
  #
2000
2033
  # @!attribute [rw] include_member_accounts
2001
2034
  # Indicates whether to enroll member accounts of the organization if
2002
- # the account is the management account.
2035
+ # the account is the management account or delegated administrator.
2003
2036
  # @return [Boolean]
2004
2037
  #
2005
2038
  # @see http://docs.aws.amazon.com/goto/WebAPI/cost-optimization-hub-2022-07-26/UpdateEnrollmentStatusRequest AWS API Documentation
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-costoptimizationhub/customizations'
53
53
  # @!group service
54
54
  module Aws::CostOptimizationHub
55
55
 
56
- GEM_VERSION = '1.10.0'
56
+ GEM_VERSION = '1.11.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -137,6 +137,7 @@ module Aws
137
137
  def items: () -> ::Array[Types::RecommendationSummary]
138
138
  def group_by: () -> ::String
139
139
  def currency_code: () -> ::String
140
+ def metrics: () -> Types::SummaryMetricsResult
140
141
  def next_token: () -> ::String
141
142
  end
142
143
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CostOptimizationHub/Client.html#list_recommendation_summaries-instance_method
@@ -161,6 +162,7 @@ module Aws
161
162
  },
162
163
  group_by: ::String,
163
164
  ?max_results: ::Integer,
165
+ ?metrics: Array[("SavingsPercentage")],
164
166
  ?next_token: ::String
165
167
  ) -> _ListRecommendationSummariesResponseSuccess
166
168
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRecommendationSummariesResponseSuccess
data/sig/types.rbs CHANGED
@@ -268,6 +268,7 @@ module Aws::CostOptimizationHub
268
268
  attr_accessor filter: Types::Filter
269
269
  attr_accessor group_by: ::String
270
270
  attr_accessor max_results: ::Integer
271
+ attr_accessor metrics: ::Array[("SavingsPercentage")]
271
272
  attr_accessor next_token: ::String
272
273
  SENSITIVE: []
273
274
  end
@@ -277,6 +278,7 @@ module Aws::CostOptimizationHub
277
278
  attr_accessor items: ::Array[Types::RecommendationSummary]
278
279
  attr_accessor group_by: ::String
279
280
  attr_accessor currency_code: ::String
281
+ attr_accessor metrics: Types::SummaryMetricsResult
280
282
  attr_accessor next_token: ::String
281
283
  SENSITIVE: []
282
284
  end
@@ -550,6 +552,11 @@ module Aws::CostOptimizationHub
550
552
  SENSITIVE: []
551
553
  end
552
554
 
555
+ class SummaryMetricsResult
556
+ attr_accessor savings_percentage: ::String
557
+ SENSITIVE: []
558
+ end
559
+
553
560
  class Tag
554
561
  attr_accessor key: ::String
555
562
  attr_accessor value: ::String
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-costoptimizationhub
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0
4
+ version: 1.11.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: 2024-07-02 00:00:00.000000000 Z
11
+ date: 2024-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core