aws-sdk-cloudwatch 1.129.0 → 1.130.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: b5a245752791ad94a2d99707e80a154e5362f5ee9e5160710a51e4a55139e3b2
4
- data.tar.gz: 3474752323bee8b597b8494aec02803a9b2e6fa5574a13abaff7e8b781a396d7
3
+ metadata.gz: e0c5eace65413d4181b83f220602bd11dd8609afd6a87f9addd59537e1ae6693
4
+ data.tar.gz: fbbe35b14ab095ee2c9220490ae91f1b8ae09edfd6efe79a6b71ad35038e3b47
5
5
  SHA512:
6
- metadata.gz: 7cb4f01b2af631573d35785853683cac33efac3b13311431953e92ebc85f64c25fc5f54e59e796240ee43ab183bf07005d59ea548f313866fcea3daefd053a0e
7
- data.tar.gz: 5cd7bdede6af57dcd172ca2d981de11aac75776173517834ed7d58b2a062a999d5b8a37447aa89adf6bb0d78700a20f62ff0d01d484f09b0f73e41dc1c545e71
6
+ metadata.gz: 9ac84b30d1319800aa62b0ece696c6ff2a194ea3b4825220c35b55a8d85755eb9e232fcaaa0a9ff380573b39a8ed0d8e1f46d5b776432efc6a516a11788898de
7
+ data.tar.gz: e676343336e27ad9d504f29c5e83ab0a2c35c62bcb78dbaeab06590fe6dd513b36aecc454c46acc97bd9bd5319a9b4315e50ab49f5163891091acda808b6c1cd
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.130.0 (2026-02-13)
5
+ ------------------
6
+
7
+ * Feature - Adding new evaluation states that provides information about the alarm evaluation process. Evaluation error Indicates configuration errors in alarm setup that require review and correction. Evaluation failure Indicates temporary CloudWatch issues.
8
+
4
9
  1.129.0 (2026-01-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.129.0
1
+ 1.130.0
@@ -224,10 +224,18 @@ module Aws::CloudWatch
224
224
  data[:threshold_metric_id]
225
225
  end
226
226
 
227
- # If the value of this field is `PARTIAL_DATA`, the alarm is being
228
- # evaluated based on only partial data. This happens if the query used
229
- # for the alarm returns more than 10,000 metrics. For more information,
230
- # see [Create alarms on Metrics Insights queries][1].
227
+ # If the value of this field is `PARTIAL_DATA`, it indicates that not
228
+ # all the available data was able to be retrieved due to quota
229
+ # limitations. For more information, see [Create alarms on Metrics
230
+ # Insights queries][1].
231
+ #
232
+ # If the value of this field is `EVALUATION_ERROR`, it indicates
233
+ # configuration errors in alarm setup that require review and
234
+ # correction. Refer to StateReason field of the alarm for more details.
235
+ #
236
+ # If the value of this field is `EVALUATION_FAILURE`, it indicates
237
+ # temporary CloudWatch issues. We recommend manual monitoring until the
238
+ # issue is resolved
231
239
  #
232
240
  #
233
241
  #
@@ -1069,7 +1069,7 @@ module Aws::CloudWatch
1069
1069
  # resp.metric_alarms[0].metrics[0].period #=> Integer
1070
1070
  # resp.metric_alarms[0].metrics[0].account_id #=> String
1071
1071
  # resp.metric_alarms[0].threshold_metric_id #=> String
1072
- # resp.metric_alarms[0].evaluation_state #=> String, one of "PARTIAL_DATA"
1072
+ # resp.metric_alarms[0].evaluation_state #=> String, one of "PARTIAL_DATA", "EVALUATION_FAILURE", "EVALUATION_ERROR"
1073
1073
  # resp.metric_alarms[0].state_transitioned_timestamp #=> Time
1074
1074
  # resp.next_token #=> String
1075
1075
  #
@@ -1191,7 +1191,7 @@ module Aws::CloudWatch
1191
1191
  # resp.metric_alarms[0].metrics[0].period #=> Integer
1192
1192
  # resp.metric_alarms[0].metrics[0].account_id #=> String
1193
1193
  # resp.metric_alarms[0].threshold_metric_id #=> String
1194
- # resp.metric_alarms[0].evaluation_state #=> String, one of "PARTIAL_DATA"
1194
+ # resp.metric_alarms[0].evaluation_state #=> String, one of "PARTIAL_DATA", "EVALUATION_FAILURE", "EVALUATION_ERROR"
1195
1195
  # resp.metric_alarms[0].state_transitioned_timestamp #=> Time
1196
1196
  #
1197
1197
  # @see http://docs.aws.amazon.com/goto/WebAPI/monitoring-2010-08-01/DescribeAlarmsForMetric AWS API Documentation
@@ -4402,7 +4402,7 @@ module Aws::CloudWatch
4402
4402
  tracer: tracer
4403
4403
  )
4404
4404
  context[:gem_name] = 'aws-sdk-cloudwatch'
4405
- context[:gem_version] = '1.129.0'
4405
+ context[:gem_version] = '1.130.0'
4406
4406
  Seahorse::Client::Request.new(handlers, context)
4407
4407
  end
4408
4408
 
@@ -2722,10 +2722,19 @@ module Aws::CloudWatch
2722
2722
  # @return [String]
2723
2723
  #
2724
2724
  # @!attribute [rw] evaluation_state
2725
- # If the value of this field is `PARTIAL_DATA`, the alarm is being
2726
- # evaluated based on only partial data. This happens if the query used
2727
- # for the alarm returns more than 10,000 metrics. For more
2728
- # information, see [Create alarms on Metrics Insights queries][1].
2725
+ # If the value of this field is `PARTIAL_DATA`, it indicates that not
2726
+ # all the available data was able to be retrieved due to quota
2727
+ # limitations. For more information, see [Create alarms on Metrics
2728
+ # Insights queries][1].
2729
+ #
2730
+ # If the value of this field is `EVALUATION_ERROR`, it indicates
2731
+ # configuration errors in alarm setup that require review and
2732
+ # correction. Refer to StateReason field of the alarm for more
2733
+ # details.
2734
+ #
2735
+ # If the value of this field is `EVALUATION_FAILURE`, it indicates
2736
+ # temporary CloudWatch issues. We recommend manual monitoring until
2737
+ # the issue is resolved
2729
2738
  #
2730
2739
  #
2731
2740
  #
@@ -58,7 +58,7 @@ module Aws::CloudWatch
58
58
  autoload :CompositeAlarm, 'aws-sdk-cloudwatch/composite_alarm'
59
59
  autoload :Metric, 'aws-sdk-cloudwatch/metric'
60
60
 
61
- GEM_VERSION = '1.129.0'
61
+ GEM_VERSION = '1.130.0'
62
62
 
63
63
  end
64
64
 
data/sig/alarm.rbs CHANGED
@@ -97,7 +97,7 @@ module Aws
97
97
  def threshold_metric_id: () -> ::String
98
98
 
99
99
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatch/Alarm.html#evaluation_state-instance_method
100
- def evaluation_state: () -> ("PARTIAL_DATA")
100
+ def evaluation_state: () -> ("PARTIAL_DATA" | "EVALUATION_FAILURE" | "EVALUATION_ERROR")
101
101
 
102
102
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatch/Alarm.html#state_transitioned_timestamp-instance_method
103
103
  def state_transitioned_timestamp: () -> ::Time
data/sig/types.rbs CHANGED
@@ -609,7 +609,7 @@ module Aws::CloudWatch
609
609
  attr_accessor evaluate_low_sample_count_percentile: ::String
610
610
  attr_accessor metrics: ::Array[Types::MetricDataQuery]
611
611
  attr_accessor threshold_metric_id: ::String
612
- attr_accessor evaluation_state: ("PARTIAL_DATA")
612
+ attr_accessor evaluation_state: ("PARTIAL_DATA" | "EVALUATION_FAILURE" | "EVALUATION_ERROR")
613
613
  attr_accessor state_transitioned_timestamp: ::Time
614
614
  SENSITIVE: []
615
615
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudwatch
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.129.0
4
+ version: 1.130.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services