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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a833e36820b3aa32124d0d9820219d0f82c3379e
|
|
4
|
+
data.tar.gz: 8491a05ccf7e6c68614929cc0ca5eaad00fec9d0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 74c18ce6d4172c16ede10a78ccd610ccc345b7bfb842c1a01309396bac347b7f949de5828d0c20b7ca94e2680ffa963f2ab3a80038bdd9771eccc1548f3c28db
|
|
7
|
+
data.tar.gz: ff2cb2ecf10b24fc41433fd4bf8edd52e33a47b3754fcd41df6891013a048c9f21bea3b078f2dd1fac5c8cdab05ba20c453f483bade3f8559389c09ab8cf3280
|
data/lib/aws-sdk-cloudwatch.rb
CHANGED
|
@@ -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.
|
|
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"))
|
|
@@ -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.
|
|
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:
|
|
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
|