aws-sdk-computeoptimizer 1.14.0 → 1.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-computeoptimizer.rb +1 -1
- data/lib/aws-sdk-computeoptimizer/client.rb +14 -5
- data/lib/aws-sdk-computeoptimizer/types.rb +45 -14
- 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: b3e71d7130da86042a01be6ac59dc5a235ac7d2eaa61e9ede4461bf6a986cd65
|
4
|
+
data.tar.gz: fe35e50b3c20d03156bf1c40e566a3bbccadb779f691e6937d25f0438e774493
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 41fe11cc72ab115f8c85bda5668b84d493f247b019c548859fe6807bb33b960cac07701041cd704f6a42900a6eabaff6261be7396810ce1b168f5a77aeb10541
|
7
|
+
data.tar.gz: ca4118177167b633dd531700df6432f3a4d7ea078223eee2b33f4d1a293c5aeab27b90ec65a13a4fd30df6cca61af1a043792f83ce1bb0499e4893d69145e0ff
|
@@ -1160,10 +1160,19 @@ module Aws::ComputeOptimizer
|
|
1160
1160
|
|
1161
1161
|
# Returns the optimization findings for an account.
|
1162
1162
|
#
|
1163
|
-
#
|
1164
|
-
#
|
1165
|
-
#
|
1166
|
-
#
|
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.
|
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
|
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
|
-
#
|
329
|
-
#
|
330
|
-
#
|
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
|
-
#
|
333
|
-
#
|
334
|
-
#
|
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
|
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
|
-
#
|
2247
|
-
#
|
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.
|
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
|
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
|