aws-sdk-cloudwatch 1.31.0 → 1.32.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
  SHA1:
3
- metadata.gz: eb74dba62b70246e5687907e204af30262f36326
4
- data.tar.gz: 6d60905dbb0e60627b4133205d4da4ef89cca1e8
3
+ metadata.gz: a833e36820b3aa32124d0d9820219d0f82c3379e
4
+ data.tar.gz: 8491a05ccf7e6c68614929cc0ca5eaad00fec9d0
5
5
  SHA512:
6
- metadata.gz: eafbfff62cf8fd57ef282da7206a33e0fd136e5501542d009958cca7a055b1ece2997f54c0903682f18886a49de9f0fb67938817f9b17a4ebd8a317aeb7dbb2b
7
- data.tar.gz: 5e3084db9410492503b3d06e3322fcdaf9242f47a1e233757d1710722f33da00d6da6efe6c234199011d9e34be701937a7f680244e3a6e46558512629d85d784
6
+ metadata.gz: 74c18ce6d4172c16ede10a78ccd610ccc345b7bfb842c1a01309396bac347b7f949de5828d0c20b7ca94e2680ffa963f2ab3a80038bdd9771eccc1548f3c28db
7
+ data.tar.gz: ff2cb2ecf10b24fc41433fd4bf8edd52e33a47b3754fcd41df6891013a048c9f21bea3b078f2dd1fac5c8cdab05ba20c453f483bade3f8559389c09ab8cf3280
@@ -45,6 +45,6 @@ require_relative 'aws-sdk-cloudwatch/customizations'
45
45
  # @service
46
46
  module Aws::CloudWatch
47
47
 
48
- GEM_VERSION = '1.31.0'
48
+ GEM_VERSION = '1.32.0'
49
49
 
50
50
  end
@@ -21,6 +21,7 @@ module Aws::CloudWatch
21
21
  @name = extract_name(args, options)
22
22
  @data = options.delete(:data)
23
23
  @client = options.delete(:client) || Client.new(options)
24
+ @waiter_block_warned = false
24
25
  end
25
26
 
26
27
  # @!group Read-Only Attributes
@@ -710,6 +710,7 @@ module Aws::CloudWatch
710
710
  # resp.anomaly_detectors[0].configuration.excluded_time_ranges[0].start_time #=> Time
711
711
  # resp.anomaly_detectors[0].configuration.excluded_time_ranges[0].end_time #=> Time
712
712
  # resp.anomaly_detectors[0].configuration.metric_timezone #=> String
713
+ # resp.anomaly_detectors[0].state_value #=> String, one of "PENDING_TRAINING", "TRAINED_INSUFFICIENT_DATA", "TRAINED"
713
714
  # resp.next_token #=> String
714
715
  #
715
716
  # @see http://docs.aws.amazon.com/goto/WebAPI/monitoring-2010-08-01/DescribeAnomalyDetectors AWS API Documentation
@@ -2480,7 +2481,7 @@ module Aws::CloudWatch
2480
2481
  params: params,
2481
2482
  config: config)
2482
2483
  context[:gem_name] = 'aws-sdk-cloudwatch'
2483
- context[:gem_version] = '1.31.0'
2484
+ context[:gem_version] = '1.32.0'
2484
2485
  Seahorse::Client::Request.new(handlers, context)
2485
2486
  end
2486
2487
 
@@ -25,6 +25,7 @@ module Aws::CloudWatch
25
25
  AnomalyDetectorConfiguration = Shapes::StructureShape.new(name: 'AnomalyDetectorConfiguration')
26
26
  AnomalyDetectorExcludedTimeRanges = Shapes::ListShape.new(name: 'AnomalyDetectorExcludedTimeRanges')
27
27
  AnomalyDetectorMetricTimezone = Shapes::StringShape.new(name: 'AnomalyDetectorMetricTimezone')
28
+ AnomalyDetectorStateValue = Shapes::StringShape.new(name: 'AnomalyDetectorStateValue')
28
29
  AnomalyDetectors = Shapes::ListShape.new(name: 'AnomalyDetectors')
29
30
  AwsQueryErrorMessage = Shapes::StringShape.new(name: 'AwsQueryErrorMessage')
30
31
  BatchFailures = Shapes::ListShape.new(name: 'BatchFailures')
@@ -232,6 +233,7 @@ module Aws::CloudWatch
232
233
  AnomalyDetector.add_member(:dimensions, Shapes::ShapeRef.new(shape: Dimensions, location_name: "Dimensions"))
233
234
  AnomalyDetector.add_member(:stat, Shapes::ShapeRef.new(shape: Stat, location_name: "Stat"))
234
235
  AnomalyDetector.add_member(:configuration, Shapes::ShapeRef.new(shape: AnomalyDetectorConfiguration, location_name: "Configuration"))
236
+ AnomalyDetector.add_member(:state_value, Shapes::ShapeRef.new(shape: AnomalyDetectorStateValue, location_name: "StateValue"))
235
237
  AnomalyDetector.struct_class = Types::AnomalyDetector
236
238
 
237
239
  AnomalyDetectorConfiguration.add_member(:excluded_time_ranges, Shapes::ShapeRef.new(shape: AnomalyDetectorExcludedTimeRanges, location_name: "ExcludedTimeRanges"))
@@ -24,6 +24,7 @@ module Aws::CloudWatch
24
24
  @name = extract_name(args, options)
25
25
  @data = options.delete(:data)
26
26
  @client = options.delete(:client) || Client.new(options)
27
+ @waiter_block_warned = false
27
28
  end
28
29
 
29
30
  # @!group Read-Only Attributes
@@ -68,6 +68,11 @@ module Aws::CloudWatch
68
68
  # for training the model, and the time zone to use for the metric.
69
69
  # @return [Types::AnomalyDetectorConfiguration]
70
70
  #
71
+ # @!attribute [rw] state_value
72
+ # The current status of the anomaly detector's training. The possible
73
+ # values are `TRAINED | PENDING_TRAINING | TRAINED_INSUFFICIENT_DATA`
74
+ # @return [String]
75
+ #
71
76
  # @see http://docs.aws.amazon.com/goto/WebAPI/monitoring-2010-08-01/AnomalyDetector AWS API Documentation
72
77
  #
73
78
  class AnomalyDetector < Struct.new(
@@ -75,7 +80,8 @@ module Aws::CloudWatch
75
80
  :metric_name,
76
81
  :dimensions,
77
82
  :stat,
78
- :configuration)
83
+ :configuration,
84
+ :state_value)
79
85
  include Aws::Structure
80
86
  end
81
87
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudwatch
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.31.0
4
+ version: 1.32.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: 2019-11-25 00:00:00.000000000 Z
11
+ date: 2020-01-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core