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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0e1696c1c202b7eb04323f0a36ec4746db08cb6cef22065d3900130dc8a9f79d
4
- data.tar.gz: 8f625e70a28a6d96870edf77b96113dee30ddb0fb4937cb52cfeb8facdbe2311
3
+ metadata.gz: 9178d50ad4fbde97cad9ed81cde82cdded7fa5e34588ed96f4749194691951aa
4
+ data.tar.gz: 8ded76600ccc0c1946c6f64d0786440bbe5d10ba5604dc9e81ee5de73d345855
5
5
  SHA512:
6
- metadata.gz: cc5b52c6dcdfd5e587878464a1f53ddda09c7edb4c8a31e3d3e32520b2b7a05e219396d61953ac3b35a2af1337c090cad3594f9cca32ca9d18309f9c70598795
7
- data.tar.gz: 8de85c48b9aed4357fb5c25b857c849366c334dd838986ff4b90533f4593f3693ad9e5b9db79f60e52f540a866bcbd9248dd165cfcfb08f58d76e906a27e1aac
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.144.0
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.144.0'
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
 
@@ -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.144.0'
61
+ GEM_VERSION = '1.145.0'
62
62
 
63
63
  end
64
64
 
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,
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.144.0
4
+ version: 1.145.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services