aws-sdk-cloudwatch 1.111.0 → 1.112.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 +1 -1
- data/lib/aws-sdk-cloudwatch/errors.rb +25 -0
- 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: 96efc3954b4086fe41d703485497ef7a75152b24434e60a5eafc4130f26a8a0a
|
4
|
+
data.tar.gz: 74829d57b10b9efbabeac46f120a1dcc6cb68c7ea43e934298cb7f9fde9e4c45
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 21837f07c3fd909c958f9a9833e426f803b85e108c14983ececd893f745ebf8da0f3bf35cdb2110f3441f79e2de06682658192420e8829a433faa34e0e273865
|
7
|
+
data.tar.gz: f2dda4c24cf2a7d549e550d1fcabc5732e1d44092395291321346ec5e5254dd4cbd7e1ededa0a62ddc7efdf692436f1ad1da3bea81e1505bedada3e990437b84
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.112.0
|
@@ -29,20 +29,29 @@ module Aws::CloudWatch
|
|
29
29
|
# ## Error Classes
|
30
30
|
# * {ConcurrentModificationException}
|
31
31
|
# * {DashboardInvalidInputError}
|
32
|
+
# * This error class is not used. `InvalidParameterInput` is used during parsing instead.
|
32
33
|
# * {DashboardNotFoundError}
|
34
|
+
# * This error class is not used. `ResourceNotFound` is used during parsing instead.
|
33
35
|
# * {InternalServiceFault}
|
36
|
+
# * This error class is not used. `InternalServiceError` is used during parsing instead.
|
34
37
|
# * {InvalidFormatFault}
|
38
|
+
# * This error class is not used. `InvalidFormat` is used during parsing instead.
|
35
39
|
# * {InvalidNextToken}
|
36
40
|
# * {InvalidParameterCombinationException}
|
41
|
+
# * This error class is not used. `InvalidParameterCombination` is used during parsing instead.
|
37
42
|
# * {InvalidParameterValueException}
|
43
|
+
# * This error class is not used. `InvalidParameterValue` is used during parsing instead.
|
38
44
|
# * {LimitExceededException}
|
39
45
|
# * {LimitExceededFault}
|
46
|
+
# * This error class is not used. `LimitExceeded` is used during parsing instead.
|
40
47
|
# * {MissingRequiredParameterException}
|
48
|
+
# * This error class is not used. `MissingParameter` is used during parsing instead.
|
41
49
|
# * {ResourceNotFound}
|
42
50
|
# * {ResourceNotFoundException}
|
43
51
|
#
|
44
52
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
45
53
|
# if they are not defined above.
|
54
|
+
# Some existing error classes may use a different class name than the one documented.
|
46
55
|
module Errors
|
47
56
|
|
48
57
|
extend Aws::Errors::DynamicErrors
|
@@ -57,6 +66,8 @@ module Aws::CloudWatch
|
|
57
66
|
end
|
58
67
|
end
|
59
68
|
|
69
|
+
# @deprecated This error class is not used during parsing.
|
70
|
+
# Please use `InvalidParameterInput` instead.
|
60
71
|
class DashboardInvalidInputError < ServiceError
|
61
72
|
|
62
73
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -77,6 +88,8 @@ module Aws::CloudWatch
|
|
77
88
|
end
|
78
89
|
end
|
79
90
|
|
91
|
+
# @deprecated This error class is not used during parsing.
|
92
|
+
# Please use `ResourceNotFound` instead.
|
80
93
|
class DashboardNotFoundError < ServiceError
|
81
94
|
|
82
95
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -92,6 +105,8 @@ module Aws::CloudWatch
|
|
92
105
|
end
|
93
106
|
end
|
94
107
|
|
108
|
+
# @deprecated This error class is not used during parsing.
|
109
|
+
# Please use `InternalServiceError` instead.
|
95
110
|
class InternalServiceFault < ServiceError
|
96
111
|
|
97
112
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -107,6 +122,8 @@ module Aws::CloudWatch
|
|
107
122
|
end
|
108
123
|
end
|
109
124
|
|
125
|
+
# @deprecated This error class is not used during parsing.
|
126
|
+
# Please use `InvalidFormat` instead.
|
110
127
|
class InvalidFormatFault < ServiceError
|
111
128
|
|
112
129
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -137,6 +154,8 @@ module Aws::CloudWatch
|
|
137
154
|
end
|
138
155
|
end
|
139
156
|
|
157
|
+
# @deprecated This error class is not used during parsing.
|
158
|
+
# Please use `InvalidParameterCombination` instead.
|
140
159
|
class InvalidParameterCombinationException < ServiceError
|
141
160
|
|
142
161
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -152,6 +171,8 @@ module Aws::CloudWatch
|
|
152
171
|
end
|
153
172
|
end
|
154
173
|
|
174
|
+
# @deprecated This error class is not used during parsing.
|
175
|
+
# Please use `InvalidParameterValue` instead.
|
155
176
|
class InvalidParameterValueException < ServiceError
|
156
177
|
|
157
178
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -177,6 +198,8 @@ module Aws::CloudWatch
|
|
177
198
|
end
|
178
199
|
end
|
179
200
|
|
201
|
+
# @deprecated This error class is not used during parsing.
|
202
|
+
# Please use `LimitExceeded` instead.
|
180
203
|
class LimitExceededFault < ServiceError
|
181
204
|
|
182
205
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -192,6 +215,8 @@ module Aws::CloudWatch
|
|
192
215
|
end
|
193
216
|
end
|
194
217
|
|
218
|
+
# @deprecated This error class is not used during parsing.
|
219
|
+
# Please use `MissingParameter` instead.
|
195
220
|
class MissingRequiredParameterException < ServiceError
|
196
221
|
|
197
222
|
# @param [Seahorse::Client::RequestContext] context
|
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.112.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: 2025-
|
11
|
+
date: 2025-03-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|