aws-sdk-cloudwatch 1.133.0 → 1.134.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: cb444d9630e99161bd2892b7c9c682b4506f3e64b29a1304c34bf4922449bfd9
4
- data.tar.gz: c6376bf068bdb1300232ead6af70964b5074259291e1b0df6e63e9cd58ad3dbd
3
+ metadata.gz: dc414d2f1107d06392f609635337bfd927cb9cb47ea7ee1471372cd2bd8a7ce7
4
+ data.tar.gz: faf6cc6baa9feebdf153a050fc250589aa808738456ef89e79ff96bbd8fee8b3
5
5
  SHA512:
6
- metadata.gz: 6d361c9273b2b22216c93e6427f28b6d65b563e3877f89b40703ad4a2d6a08dbc13f4cc38ec1f47069b0c5c5bd9476cc2d657d920b4664d9d96a89a0c5d249ef
7
- data.tar.gz: 9c127efef53c702d19ff732b9435eb4ffb29a929f0bc8a7eac4977c50f10cee67adaf13b34d50da6c2d0b5c9bb54abb729e946bca39d02d0f59376be3df6513d
6
+ metadata.gz: 9aca21bf1ba006843216321b5f1ebb3880d1c26baa3d2be2ba0ff6566db5c152b4949d63e9073879af4cf1a08b54454ccab99b38899b09616238f8501cbd5529
7
+ data.tar.gz: 4f63802d4c3ddf4fa9faa5866360cfde34151b6606ca4bd7f0a01e3d7b917cccd47d8e398ab4b888869c84a1ef32bc1d745f1c665305c5dead212bc53abbe013
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.134.0 (2026-04-16)
5
+ ------------------
6
+
7
+ * Feature - Update documentation of alarm mute rules start and end date fields
8
+
4
9
  1.133.0 (2026-04-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.133.0
1
+ 1.134.0
@@ -2825,18 +2825,16 @@ module Aws::CloudWatch
2825
2825
  # can use tags to categorize and manage your mute rules.
2826
2826
  #
2827
2827
  # @option params [Time,DateTime,Date,Integer,String] :start_date
2828
- # The date and time after which the mute rule takes effect. If not
2829
- # specified, the mute rule takes effect immediately upon creation and
2830
- # the mutes are applied as per the schedule expression. This date and
2831
- # time is interpreted according to the schedule timezone, or UTC if no
2832
- # timezone is specified.
2828
+ # The date and time after which the mute rule takes effect, specified as
2829
+ # a timestamp in ISO 8601 format (for example, `2026-04-15T08:00:00Z`).
2830
+ # If not specified, the mute rule takes effect immediately upon creation
2831
+ # and the mutes are applied as per the schedule expression.
2833
2832
  #
2834
2833
  # @option params [Time,DateTime,Date,Integer,String] :expire_date
2835
2834
  # The date and time when the mute rule expires and is no longer
2836
- # evaluated. After this time, the rule status becomes EXPIRED and will
2837
- # no longer mute the targeted alarms. This date and time is interpreted
2838
- # according to the schedule timezone, or UTC if no timezone is
2839
- # specified.
2835
+ # evaluated, specified as a timestamp in ISO 8601 format (for example,
2836
+ # `2026-12-31T23:59:59Z`). After this time, the rule status becomes
2837
+ # EXPIRED and will no longer mute the targeted alarms.
2840
2838
  #
2841
2839
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2842
2840
  #
@@ -4802,7 +4800,7 @@ module Aws::CloudWatch
4802
4800
  tracer: tracer
4803
4801
  )
4804
4802
  context[:gem_name] = 'aws-sdk-cloudwatch'
4805
- context[:gem_version] = '1.133.0'
4803
+ context[:gem_version] = '1.134.0'
4806
4804
  Seahorse::Client::Request.new(handlers, context)
4807
4805
  end
4808
4806
 
@@ -3685,19 +3685,18 @@ module Aws::CloudWatch
3685
3685
  # @return [Array<Types::Tag>]
3686
3686
  #
3687
3687
  # @!attribute [rw] start_date
3688
- # The date and time after which the mute rule takes effect. If not
3689
- # specified, the mute rule takes effect immediately upon creation and
3690
- # the mutes are applied as per the schedule expression. This date and
3691
- # time is interpreted according to the schedule timezone, or UTC if no
3692
- # timezone is specified.
3688
+ # The date and time after which the mute rule takes effect, specified
3689
+ # as a timestamp in ISO 8601 format (for example,
3690
+ # `2026-04-15T08:00:00Z`). If not specified, the mute rule takes
3691
+ # effect immediately upon creation and the mutes are applied as per
3692
+ # the schedule expression.
3693
3693
  # @return [Time]
3694
3694
  #
3695
3695
  # @!attribute [rw] expire_date
3696
3696
  # The date and time when the mute rule expires and is no longer
3697
- # evaluated. After this time, the rule status becomes EXPIRED and will
3698
- # no longer mute the targeted alarms. This date and time is
3699
- # interpreted according to the schedule timezone, or UTC if no
3700
- # timezone is specified.
3697
+ # evaluated, specified as a timestamp in ISO 8601 format (for example,
3698
+ # `2026-12-31T23:59:59Z`). After this time, the rule status becomes
3699
+ # EXPIRED and will no longer mute the targeted alarms.
3701
3700
  # @return [Time]
3702
3701
  #
3703
3702
  # @see http://docs.aws.amazon.com/goto/WebAPI/monitoring-2010-08-01/PutAlarmMuteRuleInput AWS API Documentation
@@ -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.133.0'
61
+ GEM_VERSION = '1.134.0'
62
62
 
63
63
  end
64
64
 
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.133.0
4
+ version: 1.134.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services