aws-sdk-cloudwatch 1.78.0 → 1.80.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 +51 -11
- 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 +51 -10
- 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: d83074f533f1cc97c21d50c30bb343a9e1d7f0b33e057d4cf0fde833a250a8f0
|
4
|
+
data.tar.gz: eb5eaa476b99110a6d02dd69b66160feb5beec51b1c4cb3ba4e7bb0d6b05586f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac4cb4e7d45eab9d0d61d700796dd092e0547e1616e02ef50e140c96cef63c894b244be3854ab5c2abe973ed725ff7a66b4bf25d4cfea9a6341b77023ad69652
|
7
|
+
data.tar.gz: 24887c326365bbdc10cf1eaf5d0aebd92f9e7c69fd9d6aec691201a2f737240344106911a1873c970443a1cf72da0c0f8dc75f6e3ec75fb8f6e47c15cc35001b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.80.0 (2023-08-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Doc-only update to get doc bug fixes into the SDK docs
|
8
|
+
|
9
|
+
1.79.0 (2023-08-16)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Doc-only update to incorporate several doc bug fixes
|
13
|
+
|
4
14
|
1.78.0 (2023-07-11)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.80.0
|
@@ -761,7 +761,15 @@ module Aws::CloudWatch
|
|
761
761
|
# @option params [Array<String>] :alarm_types
|
762
762
|
# Use this parameter to specify whether you want the operation to return
|
763
763
|
# metric alarms or composite alarms. If you omit this parameter, only
|
764
|
-
# 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.
|
765
773
|
#
|
766
774
|
# @option params [String] :children_of_alarm_name
|
767
775
|
# If you use this parameter and specify the name of a composite alarm,
|
@@ -1453,7 +1461,7 @@ module Aws::CloudWatch
|
|
1453
1461
|
#
|
1454
1462
|
# @option params [String] :order_by
|
1455
1463
|
# Determines what statistic to use to rank the contributors. Valid
|
1456
|
-
# values are
|
1464
|
+
# values are `Sum` and `Maximum`.
|
1457
1465
|
#
|
1458
1466
|
# @return [Types::GetInsightRuleReportOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1459
1467
|
#
|
@@ -2361,7 +2369,7 @@ module Aws::CloudWatch
|
|
2361
2369
|
# `arn:aws:cloudwatch:Region:account-id:alarm:alarm-name `
|
2362
2370
|
#
|
2363
2371
|
# The ARN format of a Contributor Insights rule is
|
2364
|
-
# `arn:aws:cloudwatch:Region:account-id:insight-rule
|
2372
|
+
# `arn:aws:cloudwatch:Region:account-id:insight-rule/insight-rule-name `
|
2365
2373
|
#
|
2366
2374
|
# For more information about ARN format, see [ Resource Types Defined by
|
2367
2375
|
# Amazon CloudWatch][1] in the *Amazon Web Services General Reference*.
|
@@ -3164,10 +3172,40 @@ module Aws::CloudWatch
|
|
3164
3172
|
# either `Statistic` or `ExtendedStatistic,` but not both.
|
3165
3173
|
#
|
3166
3174
|
# @option params [String] :extended_statistic
|
3167
|
-
# The
|
3168
|
-
#
|
3169
|
-
#
|
3170
|
-
#
|
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
|
3171
3209
|
#
|
3172
3210
|
# @option params [Array<Types::Dimension>] :dimensions
|
3173
3211
|
# The dimensions for the metric specified in `MetricName`.
|
@@ -3317,7 +3355,9 @@ module Aws::CloudWatch
|
|
3317
3355
|
#
|
3318
3356
|
# @option params [Array<Types::Tag>] :tags
|
3319
3357
|
# A list of key-value pairs to associate with the alarm. You can
|
3320
|
-
# 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.
|
3321
3361
|
#
|
3322
3362
|
# Tags can help you organize and categorize your resources. You can also
|
3323
3363
|
# use them to scope user permissions by granting a user permission to
|
@@ -3856,7 +3896,7 @@ module Aws::CloudWatch
|
|
3856
3896
|
# `arn:aws:cloudwatch:Region:account-id:alarm:alarm-name `
|
3857
3897
|
#
|
3858
3898
|
# The ARN format of a Contributor Insights rule is
|
3859
|
-
# `arn:aws:cloudwatch:Region:account-id:insight-rule
|
3899
|
+
# `arn:aws:cloudwatch:Region:account-id:insight-rule/insight-rule-name `
|
3860
3900
|
#
|
3861
3901
|
# For more information about ARN format, see [ Resource Types Defined by
|
3862
3902
|
# Amazon CloudWatch][1] in the *Amazon Web Services General Reference*.
|
@@ -3900,7 +3940,7 @@ module Aws::CloudWatch
|
|
3900
3940
|
# `arn:aws:cloudwatch:Region:account-id:alarm:alarm-name `
|
3901
3941
|
#
|
3902
3942
|
# The ARN format of a Contributor Insights rule is
|
3903
|
-
# `arn:aws:cloudwatch:Region:account-id:insight-rule
|
3943
|
+
# `arn:aws:cloudwatch:Region:account-id:insight-rule/insight-rule-name `
|
3904
3944
|
#
|
3905
3945
|
# For more information about ARN format, see [ Resource Types Defined by
|
3906
3946
|
# Amazon CloudWatch][1] in the *Amazon Web Services General Reference*.
|
@@ -3943,7 +3983,7 @@ module Aws::CloudWatch
|
|
3943
3983
|
params: params,
|
3944
3984
|
config: config)
|
3945
3985
|
context[:gem_name] = 'aws-sdk-cloudwatch'
|
3946
|
-
context[:gem_version] = '1.
|
3986
|
+
context[:gem_version] = '1.80.0'
|
3947
3987
|
Seahorse::Client::Request.new(handlers, context)
|
3948
3988
|
end
|
3949
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
|
@@ -2200,7 +2209,7 @@ module Aws::CloudWatch
|
|
2200
2209
|
# `arn:aws:cloudwatch:Region:account-id:alarm:alarm-name `
|
2201
2210
|
#
|
2202
2211
|
# The ARN format of a Contributor Insights rule is
|
2203
|
-
# `arn:aws:cloudwatch:Region:account-id:insight-rule
|
2212
|
+
# `arn:aws:cloudwatch:Region:account-id:insight-rule/insight-rule-name
|
2204
2213
|
# `
|
2205
2214
|
#
|
2206
2215
|
# For more information about ARN format, see [ Resource Types Defined
|
@@ -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
|
@@ -4272,7 +4313,7 @@ module Aws::CloudWatch
|
|
4272
4313
|
# `arn:aws:cloudwatch:Region:account-id:alarm:alarm-name `
|
4273
4314
|
#
|
4274
4315
|
# The ARN format of a Contributor Insights rule is
|
4275
|
-
# `arn:aws:cloudwatch:Region:account-id:insight-rule
|
4316
|
+
# `arn:aws:cloudwatch:Region:account-id:insight-rule/insight-rule-name
|
4276
4317
|
# `
|
4277
4318
|
#
|
4278
4319
|
# For more information about ARN format, see [ Resource Types Defined
|
@@ -4308,7 +4349,7 @@ module Aws::CloudWatch
|
|
4308
4349
|
# `arn:aws:cloudwatch:Region:account-id:alarm:alarm-name `
|
4309
4350
|
#
|
4310
4351
|
# The ARN format of a Contributor Insights rule is
|
4311
|
-
# `arn:aws:cloudwatch:Region:account-id:insight-rule
|
4352
|
+
# `arn:aws:cloudwatch:Region:account-id:insight-rule/insight-rule-name
|
4312
4353
|
# `
|
4313
4354
|
#
|
4314
4355
|
# For more information about ARN format, see [ Resource Types Defined
|
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.80.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-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|