aws-sdk-computeoptimizer 1.14.0 → 1.15.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: af40dd60485d0bb667c8c950f11963e1ca7e8bbafb07da22403bdffe894d57d7
4
- data.tar.gz: 91ea70f096d30fb327c0ddcf3da090c43f412a2c6e51fd484a20281c17ba0ebf
3
+ metadata.gz: b3e71d7130da86042a01be6ac59dc5a235ac7d2eaa61e9ede4461bf6a986cd65
4
+ data.tar.gz: fe35e50b3c20d03156bf1c40e566a3bbccadb779f691e6937d25f0438e774493
5
5
  SHA512:
6
- metadata.gz: d20fad106503394bffb0fa3bcc633829bc645c3390e6be77e1014ad7b8f478de3ae324d2ad93300e10c6279a497f5be7abde04176488dc999041127ec57f0dbf
7
- data.tar.gz: bf29cb9c91e974270c9399c4eeec28f9c9f62ac1383bbad5b30cd3cfaea384fb723d2b78282d942cfb514a3abd1beb92c55e69ab6b85aefad3e2293c8871471b
6
+ metadata.gz: 41fe11cc72ab115f8c85bda5668b84d493f247b019c548859fe6807bb33b960cac07701041cd704f6a42900a6eabaff6261be7396810ce1b168f5a77aeb10541
7
+ data.tar.gz: ca4118177167b633dd531700df6432f3a4d7ea078223eee2b33f4d1a293c5aeab27b90ec65a13a4fd30df6cca61af1a043792f83ce1bb0499e4893d69145e0ff
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-computeoptimizer/customizations'
48
48
  # @!group service
49
49
  module Aws::ComputeOptimizer
50
50
 
51
- GEM_VERSION = '1.14.0'
51
+ GEM_VERSION = '1.15.0'
52
52
 
53
53
  end
@@ -1160,10 +1160,19 @@ module Aws::ComputeOptimizer
1160
1160
 
1161
1161
  # Returns the optimization findings for an account.
1162
1162
  #
1163
- # For example, it returns the number of Amazon EC2 instances in an
1164
- # account that are under-provisioned, over-provisioned, or optimized. It
1165
- # also returns the number of Auto Scaling groups in an account that are
1166
- # not optimized, or optimized.
1163
+ # It returns the number of:
1164
+ #
1165
+ # * Amazon EC2 instances in an account that are `Underprovisioned`,
1166
+ # `Overprovisioned`, or `Optimized`.
1167
+ #
1168
+ # * Auto Scaling groups in an account that are `NotOptimized`, or
1169
+ # `Optimized`.
1170
+ #
1171
+ # * Amazon EBS volumes in an account that are `NotOptimized`, or
1172
+ # `Optimized`.
1173
+ #
1174
+ # * Lambda functions in an account that are `NotOptimized`, or
1175
+ # `Optimized`.
1167
1176
  #
1168
1177
  # @option params [Array<String>] :account_ids
1169
1178
  # The ID of the AWS account for which to return recommendation
@@ -1309,7 +1318,7 @@ module Aws::ComputeOptimizer
1309
1318
  params: params,
1310
1319
  config: config)
1311
1320
  context[:gem_name] = 'aws-sdk-computeoptimizer'
1312
- context[:gem_version] = '1.14.0'
1321
+ context[:gem_version] = '1.15.0'
1313
1322
  Seahorse::Client::Request.new(handlers, context)
1314
1323
  end
1315
1324
 
@@ -323,15 +323,22 @@ module Aws::ComputeOptimizer
323
323
  # @!attribute [rw] statistic
324
324
  # The statistic of the utilization metric.
325
325
  #
326
- # The following statistics are available:
326
+ # The Compute Optimizer API, AWS Command Line Interface (AWS CLI), and
327
+ # SDKs return utilization metrics using only the `Maximum` statistic,
328
+ # which is the highest value observed during the specified period.
327
329
  #
328
- # * `Average` - This is the value of Sum / SampleCount during the
329
- # specified period, or the average value observed during the
330
- # specified period.
330
+ # The Compute Optimizer console displays graphs for some utilization
331
+ # metrics using the `Average` statistic, which is the value of `Sum` /
332
+ # `SampleCount` during the specified period. For more information, see
333
+ # [Viewing resource recommendations][1] in the *AWS Compute Optimizer
334
+ # User Guide*. You can also get averaged utilization metric data for
335
+ # your resources using Amazon CloudWatch. For more information, see
336
+ # the [Amazon CloudWatch User Guide][2].
331
337
  #
332
- # * `Maximum` - The highest value observed during the specified
333
- # period. Use this value to determine high volumes of activity for
334
- # your application.
338
+ #
339
+ #
340
+ # [1]: https://docs.aws.amazon.com/compute-optimizer/latest/ug/viewing-recommendations.html
341
+ # [2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/WhatIsCloudWatch.html
335
342
  # @return [String]
336
343
  #
337
344
  # @!attribute [rw] value
@@ -1678,6 +1685,23 @@ module Aws::ComputeOptimizer
1678
1685
  #
1679
1686
  # @!attribute [rw] statistic
1680
1687
  # The statistic of the utilization metric.
1688
+ #
1689
+ # The Compute Optimizer API, AWS Command Line Interface (AWS CLI), and
1690
+ # SDKs return utilization metrics using only the `Maximum` statistic,
1691
+ # which is the highest value observed during the specified period.
1692
+ #
1693
+ # The Compute Optimizer console displays graphs for some utilization
1694
+ # metrics using the `Average` statistic, which is the value of `Sum` /
1695
+ # `SampleCount` during the specified period. For more information, see
1696
+ # [Viewing resource recommendations][1] in the *AWS Compute Optimizer
1697
+ # User Guide*. You can also get averaged utilization metric data for
1698
+ # your resources using Amazon CloudWatch. For more information, see
1699
+ # the [Amazon CloudWatch User Guide][2].
1700
+ #
1701
+ #
1702
+ #
1703
+ # [1]: https://docs.aws.amazon.com/compute-optimizer/latest/ug/viewing-recommendations.html
1704
+ # [2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/WhatIsCloudWatch.html
1681
1705
  # @return [String]
1682
1706
  #
1683
1707
  # @!attribute [rw] value
@@ -2237,15 +2261,22 @@ module Aws::ComputeOptimizer
2237
2261
  # @!attribute [rw] statistic
2238
2262
  # The statistic of the utilization metric.
2239
2263
  #
2240
- # The following statistics are available:
2264
+ # The Compute Optimizer API, AWS Command Line Interface (AWS CLI), and
2265
+ # SDKs return utilization metrics using only the `Maximum` statistic,
2266
+ # which is the highest value observed during the specified period.
2267
+ #
2268
+ # The Compute Optimizer console displays graphs for some utilization
2269
+ # metrics using the `Average` statistic, which is the value of `Sum` /
2270
+ # `SampleCount` during the specified period. For more information, see
2271
+ # [Viewing resource recommendations][1] in the *AWS Compute Optimizer
2272
+ # User Guide*. You can also get averaged utilization metric data for
2273
+ # your resources using Amazon CloudWatch. For more information, see
2274
+ # the [Amazon CloudWatch User Guide][2].
2275
+ #
2241
2276
  #
2242
- # * `Average` - This is the value of Sum / SampleCount during the
2243
- # specified period, or the average value observed during the
2244
- # specified period.
2245
2277
  #
2246
- # * `Maximum` - The highest value observed during the specified
2247
- # period. Use this value to determine high volumes of activity for
2248
- # your application.
2278
+ # [1]: https://docs.aws.amazon.com/compute-optimizer/latest/ug/viewing-recommendations.html
2279
+ # [2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/WhatIsCloudWatch.html
2249
2280
  # @return [String]
2250
2281
  #
2251
2282
  # @!attribute [rw] value
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-computeoptimizer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.0
4
+ version: 1.15.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: 2021-02-24 00:00:00.000000000 Z
11
+ date: 2021-03-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core