aws-sdk-cloudwatch 1.139.0 → 1.141.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudwatch/alarm.rb +3 -3
- data/lib/aws-sdk-cloudwatch/client.rb +491 -15
- data/lib/aws-sdk-cloudwatch/client_api.rb +164 -0
- data/lib/aws-sdk-cloudwatch/composite_alarm.rb +3 -3
- data/lib/aws-sdk-cloudwatch/errors.rb +64 -0
- data/lib/aws-sdk-cloudwatch/resource.rb +18 -12
- data/lib/aws-sdk-cloudwatch/types.rb +600 -10
- data/lib/aws-sdk-cloudwatch/waiters.rb +37 -0
- data/lib/aws-sdk-cloudwatch.rb +2 -2
- data/sig/alarm.rbs +1 -1
- data/sig/client.rbs +90 -4
- data/sig/composite_alarm.rbs +1 -1
- data/sig/errors.rbs +12 -0
- data/sig/resource.rbs +2 -2
- data/sig/types.rbs +116 -3
- data/sig/waiters.rbs +20 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eb6f98bd0b2fb464f53f56643b4ddab971d3b9754a46f1e6a07f8d84d457fc55
|
|
4
|
+
data.tar.gz: e4a976b47f6ecda00c062273da24bd36f09489395696ebb4b8b0208bb88fc19c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1eabd1f39d7f6bd8ac470155fafe33dfc44b93fb1eabc4a39943d4cd5dfba3bcd9a7d442705470aff84217a631b364c40a2fbc1a77fb8a6aa384981ea81c78e6
|
|
7
|
+
data.tar.gz: 19fb3e807a681ca44a8503d1eb9793fb07423293b2067477a66f2120f3b03f3e7cadbcc442168bacec7aa4bc928abe1b36213e3b3735b5d7901490b52e2a1bba
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.141.0 (2026-06-29)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds the API (PutLogAlarm) to manage a new CloudWatch resource, Log Based Alarms. Log Based Alarms allows customers to alarm directly on CloudWatch Logs query results.
|
|
8
|
+
|
|
9
|
+
1.140.0 (2026-06-09)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This release adds the APIs (AssociateDatasetKmsKey, DisassociateDatasetKmsKey, GetDataset) to manage encryption at rest for OpenTelemetry metrics in CloudWatch using AWS KMS customer managed keys.
|
|
13
|
+
|
|
4
14
|
1.139.0 (2026-06-02)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.141.0
|
|
@@ -456,7 +456,7 @@ module Aws::CloudWatch
|
|
|
456
456
|
#
|
|
457
457
|
# alarm.describe_history({
|
|
458
458
|
# alarm_contributor_id: "ContributorId",
|
|
459
|
-
# alarm_types: ["CompositeAlarm"], # accepts CompositeAlarm, MetricAlarm
|
|
459
|
+
# alarm_types: ["CompositeAlarm"], # accepts CompositeAlarm, MetricAlarm, LogAlarm
|
|
460
460
|
# history_item_type: "ConfigurationUpdate", # accepts ConfigurationUpdate, StateUpdate, Action, AlarmContributorStateUpdate, AlarmContributorAction
|
|
461
461
|
# start_date: Time.now,
|
|
462
462
|
# end_date: Time.now,
|
|
@@ -470,8 +470,8 @@ module Aws::CloudWatch
|
|
|
470
470
|
# alarm history results.
|
|
471
471
|
# @option options [Array<String>] :alarm_types
|
|
472
472
|
# Use this parameter to specify whether you want the operation to return
|
|
473
|
-
# metric alarms or
|
|
474
|
-
# metric alarms are returned.
|
|
473
|
+
# metric alarms, composite alarms, or log alarms. If you omit this
|
|
474
|
+
# parameter, only metric alarms are returned.
|
|
475
475
|
# @option options [String] :history_item_type
|
|
476
476
|
# The type of alarm histories to retrieve.
|
|
477
477
|
# @option options [Time,DateTime,Date,Integer,String] :start_date
|