aws-sdk-cloudwatch 1.148.0 → 1.149.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 +418 -5
- data/lib/aws-sdk-cloudwatch/client_api.rb +137 -0
- data/lib/aws-sdk-cloudwatch/errors.rb +19 -0
- data/lib/aws-sdk-cloudwatch/types.rb +396 -4
- data/lib/aws-sdk-cloudwatch.rb +1 -1
- data/sig/client.rbs +93 -0
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +92 -2
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -104,6 +104,17 @@ module Aws::CloudWatch
|
|
|
104
104
|
SENSITIVE: []
|
|
105
105
|
end
|
|
106
106
|
|
|
107
|
+
class CreateResourceMetricsConfigurationInput
|
|
108
|
+
attr_accessor resource_arn: ::String
|
|
109
|
+
attr_accessor metric_selections: ::Array[Types::ResourceMetricSelection]
|
|
110
|
+
SENSITIVE: []
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
class CreateResourceMetricsConfigurationOutput
|
|
114
|
+
attr_accessor resource_metrics_configuration: Types::ResourceMetricsConfiguration
|
|
115
|
+
SENSITIVE: []
|
|
116
|
+
end
|
|
117
|
+
|
|
107
118
|
class DashboardEntry
|
|
108
119
|
attr_accessor dashboard_name: ::String
|
|
109
120
|
attr_accessor dashboard_arn: ::String
|
|
@@ -191,6 +202,14 @@ module Aws::CloudWatch
|
|
|
191
202
|
class DeleteMetricStreamOutput < Aws::EmptyStructure
|
|
192
203
|
end
|
|
193
204
|
|
|
205
|
+
class DeleteResourceMetricsConfigurationInput
|
|
206
|
+
attr_accessor resource_arn: ::String
|
|
207
|
+
SENSITIVE: []
|
|
208
|
+
end
|
|
209
|
+
|
|
210
|
+
class DeleteResourceMetricsConfigurationOutput < Aws::EmptyStructure
|
|
211
|
+
end
|
|
212
|
+
|
|
194
213
|
class DescribeAlarmContributorsInput
|
|
195
214
|
attr_accessor alarm_name: ::String
|
|
196
215
|
attr_accessor next_token: ::String
|
|
@@ -513,6 +532,20 @@ module Aws::CloudWatch
|
|
|
513
532
|
|
|
514
533
|
class GetOTelEnrichmentOutput
|
|
515
534
|
attr_accessor status: ("Running" | "Stopped")
|
|
535
|
+
attr_accessor include_filters: ::Array[Types::OTelEnrichmentMetricSelector]
|
|
536
|
+
attr_accessor exclude_filters: ::Array[Types::OTelEnrichmentMetricSelector]
|
|
537
|
+
attr_accessor created_at: ::Time
|
|
538
|
+
attr_accessor updated_at: ::Time
|
|
539
|
+
SENSITIVE: []
|
|
540
|
+
end
|
|
541
|
+
|
|
542
|
+
class GetResourceMetricsConfigurationInput
|
|
543
|
+
attr_accessor resource_arn: ::String
|
|
544
|
+
SENSITIVE: []
|
|
545
|
+
end
|
|
546
|
+
|
|
547
|
+
class GetResourceMetricsConfigurationOutput
|
|
548
|
+
attr_accessor resource_metrics_configuration: Types::ResourceMetricsConfiguration
|
|
516
549
|
SENSITIVE: []
|
|
517
550
|
end
|
|
518
551
|
|
|
@@ -871,6 +904,12 @@ module Aws::CloudWatch
|
|
|
871
904
|
SENSITIVE: []
|
|
872
905
|
end
|
|
873
906
|
|
|
907
|
+
class OTelEnrichmentMetricSelector
|
|
908
|
+
attr_accessor namespace: ::String
|
|
909
|
+
attr_accessor metric_names: ::Array[::String]
|
|
910
|
+
SENSITIVE: []
|
|
911
|
+
end
|
|
912
|
+
|
|
874
913
|
class PartialFailure
|
|
875
914
|
attr_accessor failure_resource: ::String
|
|
876
915
|
attr_accessor exception_type: ::String
|
|
@@ -1043,6 +1082,19 @@ module Aws::CloudWatch
|
|
|
1043
1082
|
SENSITIVE: []
|
|
1044
1083
|
end
|
|
1045
1084
|
|
|
1085
|
+
class ResourceMetricSelection
|
|
1086
|
+
attr_accessor include_metrics: ::Array[::String]
|
|
1087
|
+
SENSITIVE: []
|
|
1088
|
+
end
|
|
1089
|
+
|
|
1090
|
+
class ResourceMetricsConfiguration
|
|
1091
|
+
attr_accessor resource_arn: ::String
|
|
1092
|
+
attr_accessor created_at: ::Time
|
|
1093
|
+
attr_accessor updated_at: ::Time
|
|
1094
|
+
attr_accessor metric_selections: ::Array[Types::ResourceMetricSelection]
|
|
1095
|
+
SENSITIVE: []
|
|
1096
|
+
end
|
|
1097
|
+
|
|
1046
1098
|
class ResourceNotFound
|
|
1047
1099
|
attr_accessor message: ::String
|
|
1048
1100
|
SENSITIVE: []
|
|
@@ -1112,10 +1164,18 @@ module Aws::CloudWatch
|
|
|
1112
1164
|
class StartMetricStreamsOutput < Aws::EmptyStructure
|
|
1113
1165
|
end
|
|
1114
1166
|
|
|
1115
|
-
class StartOTelEnrichmentInput
|
|
1167
|
+
class StartOTelEnrichmentInput
|
|
1168
|
+
attr_accessor include_filters: ::Array[Types::OTelEnrichmentMetricSelector]
|
|
1169
|
+
attr_accessor exclude_filters: ::Array[Types::OTelEnrichmentMetricSelector]
|
|
1170
|
+
SENSITIVE: []
|
|
1116
1171
|
end
|
|
1117
1172
|
|
|
1118
|
-
class StartOTelEnrichmentOutput
|
|
1173
|
+
class StartOTelEnrichmentOutput
|
|
1174
|
+
attr_accessor include_filters: ::Array[Types::OTelEnrichmentMetricSelector]
|
|
1175
|
+
attr_accessor exclude_filters: ::Array[Types::OTelEnrichmentMetricSelector]
|
|
1176
|
+
attr_accessor created_at: ::Time
|
|
1177
|
+
attr_accessor updated_at: ::Time
|
|
1178
|
+
SENSITIVE: []
|
|
1119
1179
|
end
|
|
1120
1180
|
|
|
1121
1181
|
class StatisticSet
|
|
@@ -1164,6 +1224,36 @@ module Aws::CloudWatch
|
|
|
1164
1224
|
class UntagResourceOutput < Aws::EmptyStructure
|
|
1165
1225
|
end
|
|
1166
1226
|
|
|
1227
|
+
class UpdateOTelEnrichmentInput
|
|
1228
|
+
attr_accessor include_filters: ::Array[Types::OTelEnrichmentMetricSelector]
|
|
1229
|
+
attr_accessor exclude_filters: ::Array[Types::OTelEnrichmentMetricSelector]
|
|
1230
|
+
SENSITIVE: []
|
|
1231
|
+
end
|
|
1232
|
+
|
|
1233
|
+
class UpdateOTelEnrichmentOutput
|
|
1234
|
+
attr_accessor include_filters: ::Array[Types::OTelEnrichmentMetricSelector]
|
|
1235
|
+
attr_accessor exclude_filters: ::Array[Types::OTelEnrichmentMetricSelector]
|
|
1236
|
+
attr_accessor created_at: ::Time
|
|
1237
|
+
attr_accessor updated_at: ::Time
|
|
1238
|
+
SENSITIVE: []
|
|
1239
|
+
end
|
|
1240
|
+
|
|
1241
|
+
class UpdateResourceMetricsConfigurationInput
|
|
1242
|
+
attr_accessor resource_arn: ::String
|
|
1243
|
+
attr_accessor metric_selections: ::Array[Types::ResourceMetricSelection]
|
|
1244
|
+
SENSITIVE: []
|
|
1245
|
+
end
|
|
1246
|
+
|
|
1247
|
+
class UpdateResourceMetricsConfigurationOutput
|
|
1248
|
+
attr_accessor resource_metrics_configuration: Types::ResourceMetricsConfiguration
|
|
1249
|
+
SENSITIVE: []
|
|
1250
|
+
end
|
|
1251
|
+
|
|
1252
|
+
class ValidationException
|
|
1253
|
+
attr_accessor message: ::String
|
|
1254
|
+
SENSITIVE: []
|
|
1255
|
+
end
|
|
1256
|
+
|
|
1167
1257
|
class WallClockWindow
|
|
1168
1258
|
attr_accessor timezone: ::String
|
|
1169
1259
|
SENSITIVE: []
|