aws-sdk-cloudwatch 1.144.0 → 1.145.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudwatch/client.rb +2 -2
- data/lib/aws-sdk-cloudwatch/client_api.rb +1 -1
- data/lib/aws-sdk-cloudwatch.rb +1 -1
- data/sig/client.rbs +1 -1
- 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: 9178d50ad4fbde97cad9ed81cde82cdded7fa5e34588ed96f4749194691951aa
|
|
4
|
+
data.tar.gz: 8ded76600ccc0c1946c6f64d0786440bbe5d10ba5604dc9e81ee5de73d345855
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9982d62058c3ca0d42f8640a0117b0d8fe6f3deed066a5c6747897bdd246344b15ec48f21e706522b9f40b3edd29c5bd5b20b536b6b3c9c78f0264affc5f79bc
|
|
7
|
+
data.tar.gz: a9a06dc76ef202ea2392426ed3a72cbebe813a695cc9c9b5f7f86cae55f0ac5e1b383d9ef5de977a544b6440c11dd5c865a41fac70545cf28ec0402464a598c5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.145.0 (2026-07-22)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds documented value constraints for CloudWatch Log Alarm scheduled query configuration fields, and makes LogGroupIdentifiers optional for log alarms.
|
|
8
|
+
|
|
4
9
|
1.144.0 (2026-07-10)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.145.0
|
|
@@ -3962,7 +3962,7 @@ module Aws::CloudWatch
|
|
|
3962
3962
|
# scheduled_query_role_arn: "AmazonResourceName", # required
|
|
3963
3963
|
# schedule_configuration: { # required
|
|
3964
3964
|
# schedule_expression: "ScheduleExpression", # required
|
|
3965
|
-
# start_time_offset: 1,
|
|
3965
|
+
# start_time_offset: 1, # required
|
|
3966
3966
|
# end_time_offset: 1,
|
|
3967
3967
|
# },
|
|
3968
3968
|
# aggregation_expression: "AggregationExpression", # required
|
|
@@ -5370,7 +5370,7 @@ module Aws::CloudWatch
|
|
|
5370
5370
|
tracer: tracer
|
|
5371
5371
|
)
|
|
5372
5372
|
context[:gem_name] = 'aws-sdk-cloudwatch'
|
|
5373
|
-
context[:gem_version] = '1.
|
|
5373
|
+
context[:gem_version] = '1.145.0'
|
|
5374
5374
|
Seahorse::Client::Request.new(handlers, context)
|
|
5375
5375
|
end
|
|
5376
5376
|
|
|
@@ -1264,7 +1264,7 @@ module Aws::CloudWatch
|
|
|
1264
1264
|
Schedule.struct_class = Types::Schedule
|
|
1265
1265
|
|
|
1266
1266
|
ScheduleConfiguration.add_member(:schedule_expression, Shapes::ShapeRef.new(shape: ScheduleExpression, required: true, location_name: "ScheduleExpression"))
|
|
1267
|
-
ScheduleConfiguration.add_member(:start_time_offset, Shapes::ShapeRef.new(shape: StartTimeOffset, location_name: "StartTimeOffset"))
|
|
1267
|
+
ScheduleConfiguration.add_member(:start_time_offset, Shapes::ShapeRef.new(shape: StartTimeOffset, required: true, location_name: "StartTimeOffset"))
|
|
1268
1268
|
ScheduleConfiguration.add_member(:end_time_offset, Shapes::ShapeRef.new(shape: EndTimeOffset, location_name: "EndTimeOffset"))
|
|
1269
1269
|
ScheduleConfiguration.struct_class = Types::ScheduleConfiguration
|
|
1270
1270
|
|
data/lib/aws-sdk-cloudwatch.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -656,7 +656,7 @@ module Aws
|
|
|
656
656
|
scheduled_query_role_arn: ::String,
|
|
657
657
|
schedule_configuration: {
|
|
658
658
|
schedule_expression: ::String,
|
|
659
|
-
start_time_offset: ::Integer
|
|
659
|
+
start_time_offset: ::Integer,
|
|
660
660
|
end_time_offset: ::Integer?
|
|
661
661
|
},
|
|
662
662
|
aggregation_expression: ::String,
|