aws-sdk-cloudwatch 1.77.0 → 1.79.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudwatch/client.rb +52 -8
- data/lib/aws-sdk-cloudwatch/metric.rb +37 -5
- data/lib/aws-sdk-cloudwatch/resource.rb +18 -2
- data/lib/aws-sdk-cloudwatch/types.rb +48 -7
- data/lib/aws-sdk-cloudwatch.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d9237232be8e0169b3910e7ec0a1bbe6a31f75de89ff622089bdccee2d59ad9d
|
4
|
+
data.tar.gz: 377712b6bc9760777c338287bae25310109234069efb109ac07ac76d175fda04
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 39603417b64bfdf7259002d5f03c69e5eb1f84d372971a2db35b5d12e90bf17984acce658599eff37ebfeb70381b33d754b08f60831c910179affa6c1e8da404
|
7
|
+
data.tar.gz: 00ff0d1eb892b6071ac3048bb85659cd6432208f1544a15e233adf7034737c13c0bf551b5aea2feb7195566eb9b35516378c3652e2d42615a8a2f5276a300eae
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.79.0 (2023-08-16)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Doc-only update to incorporate several doc bug fixes
|
8
|
+
|
9
|
+
1.78.0 (2023-07-11)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.77.0 (2023-07-06)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.79.0
|
@@ -216,6 +216,10 @@ module Aws::CloudWatch
|
|
216
216
|
# @option options [Boolean] :endpoint_discovery (false)
|
217
217
|
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
218
218
|
#
|
219
|
+
# @option options [Boolean] :ignore_configured_endpoint_urls
|
220
|
+
# Setting to true disables use of endpoint URLs provided via environment
|
221
|
+
# variables and the shared configuration file.
|
222
|
+
#
|
219
223
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
220
224
|
# The log formatter.
|
221
225
|
#
|
@@ -757,7 +761,15 @@ module Aws::CloudWatch
|
|
757
761
|
# @option params [Array<String>] :alarm_types
|
758
762
|
# Use this parameter to specify whether you want the operation to return
|
759
763
|
# metric alarms or composite alarms. If you omit this parameter, only
|
760
|
-
# metric alarms are returned
|
764
|
+
# metric alarms are returned, even if composite alarms exist in the
|
765
|
+
# account.
|
766
|
+
#
|
767
|
+
# For example, if you omit this parameter or specify `MetricAlarms`, the
|
768
|
+
# operation returns only a list of metric alarms. It does not return any
|
769
|
+
# composite alarms, even if composite alarms exist in the account.
|
770
|
+
#
|
771
|
+
# If you specify `CompositeAlarms`, the operation returns only a list of
|
772
|
+
# composite alarms, and does not return any metric alarms.
|
761
773
|
#
|
762
774
|
# @option params [String] :children_of_alarm_name
|
763
775
|
# If you use this parameter and specify the name of a composite alarm,
|
@@ -1449,7 +1461,7 @@ module Aws::CloudWatch
|
|
1449
1461
|
#
|
1450
1462
|
# @option params [String] :order_by
|
1451
1463
|
# Determines what statistic to use to rank the contributors. Valid
|
1452
|
-
# values are
|
1464
|
+
# values are `Sum` and `Maximum`.
|
1453
1465
|
#
|
1454
1466
|
# @return [Types::GetInsightRuleReportOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1455
1467
|
#
|
@@ -3160,10 +3172,40 @@ module Aws::CloudWatch
|
|
3160
3172
|
# either `Statistic` or `ExtendedStatistic,` but not both.
|
3161
3173
|
#
|
3162
3174
|
# @option params [String] :extended_statistic
|
3163
|
-
# The
|
3164
|
-
#
|
3165
|
-
#
|
3166
|
-
#
|
3175
|
+
# The extended statistic for the metric specified in `MetricName`. When
|
3176
|
+
# you call `PutMetricAlarm` and specify a `MetricName`, you must specify
|
3177
|
+
# either `Statistic` or `ExtendedStatistic` but not both.
|
3178
|
+
#
|
3179
|
+
# If you specify `ExtendedStatistic`, the following are valid values:
|
3180
|
+
#
|
3181
|
+
# * `p90`
|
3182
|
+
#
|
3183
|
+
# * `tm90`
|
3184
|
+
#
|
3185
|
+
# * `tc90`
|
3186
|
+
#
|
3187
|
+
# * `ts90`
|
3188
|
+
#
|
3189
|
+
# * `wm90`
|
3190
|
+
#
|
3191
|
+
# * `IQM`
|
3192
|
+
#
|
3193
|
+
# * `PR(n:m)` where n and m are values of the metric
|
3194
|
+
#
|
3195
|
+
# * `TC(X%:X%)` where X is between 10 and 90 inclusive.
|
3196
|
+
#
|
3197
|
+
# * `TM(X%:X%)` where X is between 10 and 90 inclusive.
|
3198
|
+
#
|
3199
|
+
# * `TS(X%:X%)` where X is between 10 and 90 inclusive.
|
3200
|
+
#
|
3201
|
+
# * `WM(X%:X%)` where X is between 10 and 90 inclusive.
|
3202
|
+
#
|
3203
|
+
# For more information about these extended statistics, see [CloudWatch
|
3204
|
+
# statistics definitions][1].
|
3205
|
+
#
|
3206
|
+
#
|
3207
|
+
#
|
3208
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Statistics-definitions.html
|
3167
3209
|
#
|
3168
3210
|
# @option params [Array<Types::Dimension>] :dimensions
|
3169
3211
|
# The dimensions for the metric specified in `MetricName`.
|
@@ -3313,7 +3355,9 @@ module Aws::CloudWatch
|
|
3313
3355
|
#
|
3314
3356
|
# @option params [Array<Types::Tag>] :tags
|
3315
3357
|
# A list of key-value pairs to associate with the alarm. You can
|
3316
|
-
# associate as many as 50 tags with an alarm.
|
3358
|
+
# associate as many as 50 tags with an alarm. To be able to associate
|
3359
|
+
# tags with the alarm when you create the alarm, you must have the
|
3360
|
+
# `cloudwatch:TagResource` permission.
|
3317
3361
|
#
|
3318
3362
|
# Tags can help you organize and categorize your resources. You can also
|
3319
3363
|
# use them to scope user permissions by granting a user permission to
|
@@ -3939,7 +3983,7 @@ module Aws::CloudWatch
|
|
3939
3983
|
params: params,
|
3940
3984
|
config: config)
|
3941
3985
|
context[:gem_name] = 'aws-sdk-cloudwatch'
|
3942
|
-
context[:gem_version] = '1.
|
3986
|
+
context[:gem_version] = '1.79.0'
|
3943
3987
|
Seahorse::Client::Request.new(handlers, context)
|
3944
3988
|
end
|
3945
3989
|
|
@@ -514,10 +514,40 @@ module Aws::CloudWatch
|
|
514
514
|
# you call `PutMetricAlarm` and specify a `MetricName`, you must specify
|
515
515
|
# either `Statistic` or `ExtendedStatistic,` but not both.
|
516
516
|
# @option options [String] :extended_statistic
|
517
|
-
# The
|
518
|
-
#
|
519
|
-
#
|
520
|
-
#
|
517
|
+
# The extended statistic for the metric specified in `MetricName`. When
|
518
|
+
# you call `PutMetricAlarm` and specify a `MetricName`, you must specify
|
519
|
+
# either `Statistic` or `ExtendedStatistic` but not both.
|
520
|
+
#
|
521
|
+
# If you specify `ExtendedStatistic`, the following are valid values:
|
522
|
+
#
|
523
|
+
# * `p90`
|
524
|
+
#
|
525
|
+
# * `tm90`
|
526
|
+
#
|
527
|
+
# * `tc90`
|
528
|
+
#
|
529
|
+
# * `ts90`
|
530
|
+
#
|
531
|
+
# * `wm90`
|
532
|
+
#
|
533
|
+
# * `IQM`
|
534
|
+
#
|
535
|
+
# * `PR(n:m)` where n and m are values of the metric
|
536
|
+
#
|
537
|
+
# * `TC(X%:X%)` where X is between 10 and 90 inclusive.
|
538
|
+
#
|
539
|
+
# * `TM(X%:X%)` where X is between 10 and 90 inclusive.
|
540
|
+
#
|
541
|
+
# * `TS(X%:X%)` where X is between 10 and 90 inclusive.
|
542
|
+
#
|
543
|
+
# * `WM(X%:X%)` where X is between 10 and 90 inclusive.
|
544
|
+
#
|
545
|
+
# For more information about these extended statistics, see [CloudWatch
|
546
|
+
# statistics definitions][1].
|
547
|
+
#
|
548
|
+
#
|
549
|
+
#
|
550
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Statistics-definitions.html
|
521
551
|
# @option options [Array<Types::Dimension>] :dimensions
|
522
552
|
# The dimensions for the metric specified in `MetricName`.
|
523
553
|
# @option options [Integer] :period
|
@@ -656,7 +686,9 @@ module Aws::CloudWatch
|
|
656
686
|
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDataQuery.html
|
657
687
|
# @option options [Array<Types::Tag>] :tags
|
658
688
|
# A list of key-value pairs to associate with the alarm. You can
|
659
|
-
# associate as many as 50 tags with an alarm.
|
689
|
+
# associate as many as 50 tags with an alarm. To be able to associate
|
690
|
+
# tags with the alarm when you create the alarm, you must have the
|
691
|
+
# `cloudwatch:TagResource` permission.
|
660
692
|
#
|
661
693
|
# Tags can help you organize and categorize your resources. You can also
|
662
694
|
# use them to scope user permissions by granting a user permission to
|
@@ -67,7 +67,15 @@ module Aws::CloudWatch
|
|
67
67
|
# @option options [Array<String>] :alarm_types
|
68
68
|
# Use this parameter to specify whether you want the operation to return
|
69
69
|
# metric alarms or composite alarms. If you omit this parameter, only
|
70
|
-
# metric alarms are returned
|
70
|
+
# metric alarms are returned, even if composite alarms exist in the
|
71
|
+
# account.
|
72
|
+
#
|
73
|
+
# For example, if you omit this parameter or specify `MetricAlarms`, the
|
74
|
+
# operation returns only a list of metric alarms. It does not return any
|
75
|
+
# composite alarms, even if composite alarms exist in the account.
|
76
|
+
#
|
77
|
+
# If you specify `CompositeAlarms`, the operation returns only a list of
|
78
|
+
# composite alarms, and does not return any metric alarms.
|
71
79
|
# @option options [String] :children_of_alarm_name
|
72
80
|
# If you use this parameter and specify the name of a composite alarm,
|
73
81
|
# the operation returns information about the "children" alarms of the
|
@@ -167,7 +175,15 @@ module Aws::CloudWatch
|
|
167
175
|
# @option options [Array<String>] :alarm_types
|
168
176
|
# Use this parameter to specify whether you want the operation to return
|
169
177
|
# metric alarms or composite alarms. If you omit this parameter, only
|
170
|
-
# metric alarms are returned
|
178
|
+
# metric alarms are returned, even if composite alarms exist in the
|
179
|
+
# account.
|
180
|
+
#
|
181
|
+
# For example, if you omit this parameter or specify `MetricAlarms`, the
|
182
|
+
# operation returns only a list of metric alarms. It does not return any
|
183
|
+
# composite alarms, even if composite alarms exist in the account.
|
184
|
+
#
|
185
|
+
# If you specify `CompositeAlarms`, the operation returns only a list of
|
186
|
+
# composite alarms, and does not return any metric alarms.
|
171
187
|
# @option options [String] :children_of_alarm_name
|
172
188
|
# If you use this parameter and specify the name of a composite alarm,
|
173
189
|
# the operation returns information about the "children" alarms of the
|
@@ -705,7 +705,16 @@ module Aws::CloudWatch
|
|
705
705
|
# @!attribute [rw] alarm_types
|
706
706
|
# Use this parameter to specify whether you want the operation to
|
707
707
|
# return metric alarms or composite alarms. If you omit this
|
708
|
-
# parameter, only metric alarms are returned
|
708
|
+
# parameter, only metric alarms are returned, even if composite alarms
|
709
|
+
# exist in the account.
|
710
|
+
#
|
711
|
+
# For example, if you omit this parameter or specify `MetricAlarms`,
|
712
|
+
# the operation returns only a list of metric alarms. It does not
|
713
|
+
# return any composite alarms, even if composite alarms exist in the
|
714
|
+
# account.
|
715
|
+
#
|
716
|
+
# If you specify `CompositeAlarms`, the operation returns only a list
|
717
|
+
# of composite alarms, and does not return any metric alarms.
|
709
718
|
# @return [Array<String>]
|
710
719
|
#
|
711
720
|
# @!attribute [rw] children_of_alarm_name
|
@@ -1155,7 +1164,7 @@ module Aws::CloudWatch
|
|
1155
1164
|
#
|
1156
1165
|
# @!attribute [rw] order_by
|
1157
1166
|
# Determines what statistic to use to rank the contributors. Valid
|
1158
|
-
# values are
|
1167
|
+
# values are `Sum` and `Maximum`.
|
1159
1168
|
# @return [String]
|
1160
1169
|
#
|
1161
1170
|
# @see http://docs.aws.amazon.com/goto/WebAPI/monitoring-2010-08-01/GetInsightRuleReportInput AWS API Documentation
|
@@ -3680,10 +3689,40 @@ module Aws::CloudWatch
|
|
3680
3689
|
# @return [String]
|
3681
3690
|
#
|
3682
3691
|
# @!attribute [rw] extended_statistic
|
3683
|
-
# The
|
3684
|
-
#
|
3685
|
-
# `
|
3686
|
-
#
|
3692
|
+
# The extended statistic for the metric specified in `MetricName`.
|
3693
|
+
# When you call `PutMetricAlarm` and specify a `MetricName`, you must
|
3694
|
+
# specify either `Statistic` or `ExtendedStatistic` but not both.
|
3695
|
+
#
|
3696
|
+
# If you specify `ExtendedStatistic`, the following are valid values:
|
3697
|
+
#
|
3698
|
+
# * `p90`
|
3699
|
+
#
|
3700
|
+
# * `tm90`
|
3701
|
+
#
|
3702
|
+
# * `tc90`
|
3703
|
+
#
|
3704
|
+
# * `ts90`
|
3705
|
+
#
|
3706
|
+
# * `wm90`
|
3707
|
+
#
|
3708
|
+
# * `IQM`
|
3709
|
+
#
|
3710
|
+
# * `PR(n:m)` where n and m are values of the metric
|
3711
|
+
#
|
3712
|
+
# * `TC(X%:X%)` where X is between 10 and 90 inclusive.
|
3713
|
+
#
|
3714
|
+
# * `TM(X%:X%)` where X is between 10 and 90 inclusive.
|
3715
|
+
#
|
3716
|
+
# * `TS(X%:X%)` where X is between 10 and 90 inclusive.
|
3717
|
+
#
|
3718
|
+
# * `WM(X%:X%)` where X is between 10 and 90 inclusive.
|
3719
|
+
#
|
3720
|
+
# For more information about these extended statistics, see
|
3721
|
+
# [CloudWatch statistics definitions][1].
|
3722
|
+
#
|
3723
|
+
#
|
3724
|
+
#
|
3725
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Statistics-definitions.html
|
3687
3726
|
# @return [String]
|
3688
3727
|
#
|
3689
3728
|
# @!attribute [rw] dimensions
|
@@ -3847,7 +3886,9 @@ module Aws::CloudWatch
|
|
3847
3886
|
#
|
3848
3887
|
# @!attribute [rw] tags
|
3849
3888
|
# A list of key-value pairs to associate with the alarm. You can
|
3850
|
-
# associate as many as 50 tags with an alarm.
|
3889
|
+
# associate as many as 50 tags with an alarm. To be able to associate
|
3890
|
+
# tags with the alarm when you create the alarm, you must have the
|
3891
|
+
# `cloudwatch:TagResource` permission.
|
3851
3892
|
#
|
3852
3893
|
# Tags can help you organize and categorize your resources. You can
|
3853
3894
|
# also use them to scope user permissions by granting a user
|
data/lib/aws-sdk-cloudwatch.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudwatch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.79.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-08-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|