aws-sdk-devopsguru 1.1.0 → 1.2.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: 99151139c93f2ff5bc0240bc3d3bca8ec9caa0893d85fe09d538547049583723
4
- data.tar.gz: 7c0dbbefff8b6bfa707c54e0835a48b540ad3667b9713a0727c17270e0844687
3
+ metadata.gz: a7e375d02d5402a98698794f475b37271de806a3140d58ea77c91b7855693584
4
+ data.tar.gz: 75eb78671585376d57b822e27e976535c03f35c490149911e24461ab61895fa0
5
5
  SHA512:
6
- metadata.gz: 384ee4f3abf0c6ca1bc61da3ce1186ebad6c66c021ff190d120ce7a8f4696b23a0c38c82f934741fe09aff051e0fab9f99621d289a7eb0ed6866220317df2e44
7
- data.tar.gz: 4de527bed95d3a6465261c5ba0fee2e0feb0f3e49b470c63d107d646df3fa37021edb1b60fc0e9eb8187a90b7b77b757f099ddd2e07ee52a82143f5dc4ba3552
6
+ metadata.gz: 938b77f166e69846ee18779a03a79e7c9cc5e2ff36e5b250916b49d05b9047b64230ee71c5a82d872ce12784390d02ac0982a343442a583e5d2d6653d26fa558
7
+ data.tar.gz: 1ed8ab03680664b12c6b6c7ceaba61fc67536e30869abb77a276995d0db4a7baccdc2b65277a7732f8cc3c2fa1fd8a02802eace0154f4dd14480a9b8ce3af9ee
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-devopsguru/customizations'
48
48
  # @!group service
49
49
  module Aws::DevOpsGuru
50
50
 
51
- GEM_VERSION = '1.1.0'
51
+ GEM_VERSION = '1.2.0'
52
52
 
53
53
  end
@@ -389,12 +389,14 @@ module Aws::DevOpsGuru
389
389
  # * {Types::DescribeAccountHealthResponse#open_reactive_insights #open_reactive_insights} => Integer
390
390
  # * {Types::DescribeAccountHealthResponse#open_proactive_insights #open_proactive_insights} => Integer
391
391
  # * {Types::DescribeAccountHealthResponse#metrics_analyzed #metrics_analyzed} => Integer
392
+ # * {Types::DescribeAccountHealthResponse#resource_hours #resource_hours} => Integer
392
393
  #
393
394
  # @example Response structure
394
395
  #
395
396
  # resp.open_reactive_insights #=> Integer
396
397
  # resp.open_proactive_insights #=> Integer
397
398
  # resp.metrics_analyzed #=> Integer
399
+ # resp.resource_hours #=> Integer
398
400
  #
399
401
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeAccountHealth AWS API Documentation
400
402
  #
@@ -1239,7 +1241,7 @@ module Aws::DevOpsGuru
1239
1241
  params: params,
1240
1242
  config: config)
1241
1243
  context[:gem_name] = 'aws-sdk-devopsguru'
1242
- context[:gem_version] = '1.1.0'
1244
+ context[:gem_version] = '1.2.0'
1243
1245
  Seahorse::Client::Request.new(handlers, context)
1244
1246
  end
1245
1247
 
@@ -158,6 +158,7 @@ module Aws::DevOpsGuru
158
158
  ResourceCollection = Shapes::StructureShape.new(name: 'ResourceCollection')
159
159
  ResourceCollectionFilter = Shapes::StructureShape.new(name: 'ResourceCollectionFilter')
160
160
  ResourceCollectionType = Shapes::StringShape.new(name: 'ResourceCollectionType')
161
+ ResourceHours = Shapes::IntegerShape.new(name: 'ResourceHours')
161
162
  ResourceIdString = Shapes::StringShape.new(name: 'ResourceIdString')
162
163
  ResourceIdType = Shapes::StringShape.new(name: 'ResourceIdType')
163
164
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
@@ -247,6 +248,7 @@ module Aws::DevOpsGuru
247
248
  DescribeAccountHealthResponse.add_member(:open_reactive_insights, Shapes::ShapeRef.new(shape: NumOpenReactiveInsights, required: true, location_name: "OpenReactiveInsights"))
248
249
  DescribeAccountHealthResponse.add_member(:open_proactive_insights, Shapes::ShapeRef.new(shape: NumOpenProactiveInsights, required: true, location_name: "OpenProactiveInsights"))
249
250
  DescribeAccountHealthResponse.add_member(:metrics_analyzed, Shapes::ShapeRef.new(shape: NumMetricsAnalyzed, required: true, location_name: "MetricsAnalyzed"))
251
+ DescribeAccountHealthResponse.add_member(:resource_hours, Shapes::ShapeRef.new(shape: ResourceHours, required: true, location_name: "ResourceHours"))
250
252
  DescribeAccountHealthResponse.struct_class = Types::DescribeAccountHealthResponse
251
253
 
252
254
  DescribeAccountOverviewRequest.add_member(:from_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "FromTime"))
@@ -225,7 +225,7 @@ module Aws::DevOpsGuru
225
225
 
226
226
  # The dimension of a Amazon CloudWatch metric that is used when DevOps
227
227
  # Guru analyzes the resources in your account for operational problems
228
- # and anomalous behaviour. A dimension is a name/value pair that is part
228
+ # and anomalous behavior. A dimension is a name/value pair that is part
229
229
  # of the identity of a metric. A metric can have up to 10 dimensions.
230
230
  # For more information, see [Dimensions][1] in the *Amazon CloudWatch
231
231
  # User Guide*.
@@ -295,12 +295,18 @@ module Aws::DevOpsGuru
295
295
  # analyzed in your AWS account.
296
296
  # @return [Integer]
297
297
  #
298
+ # @!attribute [rw] resource_hours
299
+ # The number of Amazon DevOps Guru resource analysis hours billed to
300
+ # the current AWS account in the last hour.
301
+ # @return [Integer]
302
+ #
298
303
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-guru-2020-12-01/DescribeAccountHealthResponse AWS API Documentation
299
304
  #
300
305
  class DescribeAccountHealthResponse < Struct.new(
301
306
  :open_reactive_insights,
302
307
  :open_proactive_insights,
303
- :metrics_analyzed)
308
+ :metrics_analyzed,
309
+ :resource_hours)
304
310
  SENSITIVE = []
305
311
  include Aws::Structure
306
312
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-devopsguru
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.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-14 00:00:00.000000000 Z
11
+ date: 2021-01-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core