@aws-sdk/client-cloudwatch 3.315.0 → 3.319.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.
- package/dist-cjs/CloudWatch.js +42 -532
- package/dist-es/CloudWatch.js +42 -532
- package/dist-types/CloudWatch.d.ts +58 -545
- package/dist-types/ts3.4/CloudWatch.d.ts +4 -1
- package/package.json +8 -8
package/dist-cjs/CloudWatch.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.CloudWatch = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
4
5
|
const CloudWatchClient_1 = require("./CloudWatchClient");
|
|
5
6
|
const DeleteAlarmsCommand_1 = require("./commands/DeleteAlarmsCommand");
|
|
6
7
|
const DeleteAnomalyDetectorCommand_1 = require("./commands/DeleteAnomalyDetectorCommand");
|
|
@@ -40,538 +41,47 @@ const StartMetricStreamsCommand_1 = require("./commands/StartMetricStreamsComman
|
|
|
40
41
|
const StopMetricStreamsCommand_1 = require("./commands/StopMetricStreamsCommand");
|
|
41
42
|
const TagResourceCommand_1 = require("./commands/TagResourceCommand");
|
|
42
43
|
const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
|
|
44
|
+
const commands = {
|
|
45
|
+
DeleteAlarmsCommand: DeleteAlarmsCommand_1.DeleteAlarmsCommand,
|
|
46
|
+
DeleteAnomalyDetectorCommand: DeleteAnomalyDetectorCommand_1.DeleteAnomalyDetectorCommand,
|
|
47
|
+
DeleteDashboardsCommand: DeleteDashboardsCommand_1.DeleteDashboardsCommand,
|
|
48
|
+
DeleteInsightRulesCommand: DeleteInsightRulesCommand_1.DeleteInsightRulesCommand,
|
|
49
|
+
DeleteMetricStreamCommand: DeleteMetricStreamCommand_1.DeleteMetricStreamCommand,
|
|
50
|
+
DescribeAlarmHistoryCommand: DescribeAlarmHistoryCommand_1.DescribeAlarmHistoryCommand,
|
|
51
|
+
DescribeAlarmsCommand: DescribeAlarmsCommand_1.DescribeAlarmsCommand,
|
|
52
|
+
DescribeAlarmsForMetricCommand: DescribeAlarmsForMetricCommand_1.DescribeAlarmsForMetricCommand,
|
|
53
|
+
DescribeAnomalyDetectorsCommand: DescribeAnomalyDetectorsCommand_1.DescribeAnomalyDetectorsCommand,
|
|
54
|
+
DescribeInsightRulesCommand: DescribeInsightRulesCommand_1.DescribeInsightRulesCommand,
|
|
55
|
+
DisableAlarmActionsCommand: DisableAlarmActionsCommand_1.DisableAlarmActionsCommand,
|
|
56
|
+
DisableInsightRulesCommand: DisableInsightRulesCommand_1.DisableInsightRulesCommand,
|
|
57
|
+
EnableAlarmActionsCommand: EnableAlarmActionsCommand_1.EnableAlarmActionsCommand,
|
|
58
|
+
EnableInsightRulesCommand: EnableInsightRulesCommand_1.EnableInsightRulesCommand,
|
|
59
|
+
GetDashboardCommand: GetDashboardCommand_1.GetDashboardCommand,
|
|
60
|
+
GetInsightRuleReportCommand: GetInsightRuleReportCommand_1.GetInsightRuleReportCommand,
|
|
61
|
+
GetMetricDataCommand: GetMetricDataCommand_1.GetMetricDataCommand,
|
|
62
|
+
GetMetricStatisticsCommand: GetMetricStatisticsCommand_1.GetMetricStatisticsCommand,
|
|
63
|
+
GetMetricStreamCommand: GetMetricStreamCommand_1.GetMetricStreamCommand,
|
|
64
|
+
GetMetricWidgetImageCommand: GetMetricWidgetImageCommand_1.GetMetricWidgetImageCommand,
|
|
65
|
+
ListDashboardsCommand: ListDashboardsCommand_1.ListDashboardsCommand,
|
|
66
|
+
ListManagedInsightRulesCommand: ListManagedInsightRulesCommand_1.ListManagedInsightRulesCommand,
|
|
67
|
+
ListMetricsCommand: ListMetricsCommand_1.ListMetricsCommand,
|
|
68
|
+
ListMetricStreamsCommand: ListMetricStreamsCommand_1.ListMetricStreamsCommand,
|
|
69
|
+
ListTagsForResourceCommand: ListTagsForResourceCommand_1.ListTagsForResourceCommand,
|
|
70
|
+
PutAnomalyDetectorCommand: PutAnomalyDetectorCommand_1.PutAnomalyDetectorCommand,
|
|
71
|
+
PutCompositeAlarmCommand: PutCompositeAlarmCommand_1.PutCompositeAlarmCommand,
|
|
72
|
+
PutDashboardCommand: PutDashboardCommand_1.PutDashboardCommand,
|
|
73
|
+
PutInsightRuleCommand: PutInsightRuleCommand_1.PutInsightRuleCommand,
|
|
74
|
+
PutManagedInsightRulesCommand: PutManagedInsightRulesCommand_1.PutManagedInsightRulesCommand,
|
|
75
|
+
PutMetricAlarmCommand: PutMetricAlarmCommand_1.PutMetricAlarmCommand,
|
|
76
|
+
PutMetricDataCommand: PutMetricDataCommand_1.PutMetricDataCommand,
|
|
77
|
+
PutMetricStreamCommand: PutMetricStreamCommand_1.PutMetricStreamCommand,
|
|
78
|
+
SetAlarmStateCommand: SetAlarmStateCommand_1.SetAlarmStateCommand,
|
|
79
|
+
StartMetricStreamsCommand: StartMetricStreamsCommand_1.StartMetricStreamsCommand,
|
|
80
|
+
StopMetricStreamsCommand: StopMetricStreamsCommand_1.StopMetricStreamsCommand,
|
|
81
|
+
TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
|
|
82
|
+
UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
|
|
83
|
+
};
|
|
43
84
|
class CloudWatch extends CloudWatchClient_1.CloudWatchClient {
|
|
44
|
-
deleteAlarms(args, optionsOrCb, cb) {
|
|
45
|
-
const command = new DeleteAlarmsCommand_1.DeleteAlarmsCommand(args);
|
|
46
|
-
if (typeof optionsOrCb === "function") {
|
|
47
|
-
this.send(command, optionsOrCb);
|
|
48
|
-
}
|
|
49
|
-
else if (typeof cb === "function") {
|
|
50
|
-
if (typeof optionsOrCb !== "object")
|
|
51
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
52
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
53
|
-
}
|
|
54
|
-
else {
|
|
55
|
-
return this.send(command, optionsOrCb);
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
deleteAnomalyDetector(args, optionsOrCb, cb) {
|
|
59
|
-
const command = new DeleteAnomalyDetectorCommand_1.DeleteAnomalyDetectorCommand(args);
|
|
60
|
-
if (typeof optionsOrCb === "function") {
|
|
61
|
-
this.send(command, optionsOrCb);
|
|
62
|
-
}
|
|
63
|
-
else if (typeof cb === "function") {
|
|
64
|
-
if (typeof optionsOrCb !== "object")
|
|
65
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
66
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
67
|
-
}
|
|
68
|
-
else {
|
|
69
|
-
return this.send(command, optionsOrCb);
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
deleteDashboards(args, optionsOrCb, cb) {
|
|
73
|
-
const command = new DeleteDashboardsCommand_1.DeleteDashboardsCommand(args);
|
|
74
|
-
if (typeof optionsOrCb === "function") {
|
|
75
|
-
this.send(command, optionsOrCb);
|
|
76
|
-
}
|
|
77
|
-
else if (typeof cb === "function") {
|
|
78
|
-
if (typeof optionsOrCb !== "object")
|
|
79
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
80
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
81
|
-
}
|
|
82
|
-
else {
|
|
83
|
-
return this.send(command, optionsOrCb);
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
deleteInsightRules(args, optionsOrCb, cb) {
|
|
87
|
-
const command = new DeleteInsightRulesCommand_1.DeleteInsightRulesCommand(args);
|
|
88
|
-
if (typeof optionsOrCb === "function") {
|
|
89
|
-
this.send(command, optionsOrCb);
|
|
90
|
-
}
|
|
91
|
-
else if (typeof cb === "function") {
|
|
92
|
-
if (typeof optionsOrCb !== "object")
|
|
93
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
94
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
95
|
-
}
|
|
96
|
-
else {
|
|
97
|
-
return this.send(command, optionsOrCb);
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
deleteMetricStream(args, optionsOrCb, cb) {
|
|
101
|
-
const command = new DeleteMetricStreamCommand_1.DeleteMetricStreamCommand(args);
|
|
102
|
-
if (typeof optionsOrCb === "function") {
|
|
103
|
-
this.send(command, optionsOrCb);
|
|
104
|
-
}
|
|
105
|
-
else if (typeof cb === "function") {
|
|
106
|
-
if (typeof optionsOrCb !== "object")
|
|
107
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
108
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
109
|
-
}
|
|
110
|
-
else {
|
|
111
|
-
return this.send(command, optionsOrCb);
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
describeAlarmHistory(args, optionsOrCb, cb) {
|
|
115
|
-
const command = new DescribeAlarmHistoryCommand_1.DescribeAlarmHistoryCommand(args);
|
|
116
|
-
if (typeof optionsOrCb === "function") {
|
|
117
|
-
this.send(command, optionsOrCb);
|
|
118
|
-
}
|
|
119
|
-
else if (typeof cb === "function") {
|
|
120
|
-
if (typeof optionsOrCb !== "object")
|
|
121
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
122
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
123
|
-
}
|
|
124
|
-
else {
|
|
125
|
-
return this.send(command, optionsOrCb);
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
describeAlarms(args, optionsOrCb, cb) {
|
|
129
|
-
const command = new DescribeAlarmsCommand_1.DescribeAlarmsCommand(args);
|
|
130
|
-
if (typeof optionsOrCb === "function") {
|
|
131
|
-
this.send(command, optionsOrCb);
|
|
132
|
-
}
|
|
133
|
-
else if (typeof cb === "function") {
|
|
134
|
-
if (typeof optionsOrCb !== "object")
|
|
135
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
136
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
137
|
-
}
|
|
138
|
-
else {
|
|
139
|
-
return this.send(command, optionsOrCb);
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
describeAlarmsForMetric(args, optionsOrCb, cb) {
|
|
143
|
-
const command = new DescribeAlarmsForMetricCommand_1.DescribeAlarmsForMetricCommand(args);
|
|
144
|
-
if (typeof optionsOrCb === "function") {
|
|
145
|
-
this.send(command, optionsOrCb);
|
|
146
|
-
}
|
|
147
|
-
else if (typeof cb === "function") {
|
|
148
|
-
if (typeof optionsOrCb !== "object")
|
|
149
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
150
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
151
|
-
}
|
|
152
|
-
else {
|
|
153
|
-
return this.send(command, optionsOrCb);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
describeAnomalyDetectors(args, optionsOrCb, cb) {
|
|
157
|
-
const command = new DescribeAnomalyDetectorsCommand_1.DescribeAnomalyDetectorsCommand(args);
|
|
158
|
-
if (typeof optionsOrCb === "function") {
|
|
159
|
-
this.send(command, optionsOrCb);
|
|
160
|
-
}
|
|
161
|
-
else if (typeof cb === "function") {
|
|
162
|
-
if (typeof optionsOrCb !== "object")
|
|
163
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
164
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
165
|
-
}
|
|
166
|
-
else {
|
|
167
|
-
return this.send(command, optionsOrCb);
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
describeInsightRules(args, optionsOrCb, cb) {
|
|
171
|
-
const command = new DescribeInsightRulesCommand_1.DescribeInsightRulesCommand(args);
|
|
172
|
-
if (typeof optionsOrCb === "function") {
|
|
173
|
-
this.send(command, optionsOrCb);
|
|
174
|
-
}
|
|
175
|
-
else if (typeof cb === "function") {
|
|
176
|
-
if (typeof optionsOrCb !== "object")
|
|
177
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
178
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
179
|
-
}
|
|
180
|
-
else {
|
|
181
|
-
return this.send(command, optionsOrCb);
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
disableAlarmActions(args, optionsOrCb, cb) {
|
|
185
|
-
const command = new DisableAlarmActionsCommand_1.DisableAlarmActionsCommand(args);
|
|
186
|
-
if (typeof optionsOrCb === "function") {
|
|
187
|
-
this.send(command, optionsOrCb);
|
|
188
|
-
}
|
|
189
|
-
else if (typeof cb === "function") {
|
|
190
|
-
if (typeof optionsOrCb !== "object")
|
|
191
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
192
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
193
|
-
}
|
|
194
|
-
else {
|
|
195
|
-
return this.send(command, optionsOrCb);
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
disableInsightRules(args, optionsOrCb, cb) {
|
|
199
|
-
const command = new DisableInsightRulesCommand_1.DisableInsightRulesCommand(args);
|
|
200
|
-
if (typeof optionsOrCb === "function") {
|
|
201
|
-
this.send(command, optionsOrCb);
|
|
202
|
-
}
|
|
203
|
-
else if (typeof cb === "function") {
|
|
204
|
-
if (typeof optionsOrCb !== "object")
|
|
205
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
206
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
207
|
-
}
|
|
208
|
-
else {
|
|
209
|
-
return this.send(command, optionsOrCb);
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
enableAlarmActions(args, optionsOrCb, cb) {
|
|
213
|
-
const command = new EnableAlarmActionsCommand_1.EnableAlarmActionsCommand(args);
|
|
214
|
-
if (typeof optionsOrCb === "function") {
|
|
215
|
-
this.send(command, optionsOrCb);
|
|
216
|
-
}
|
|
217
|
-
else if (typeof cb === "function") {
|
|
218
|
-
if (typeof optionsOrCb !== "object")
|
|
219
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
220
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
221
|
-
}
|
|
222
|
-
else {
|
|
223
|
-
return this.send(command, optionsOrCb);
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
enableInsightRules(args, optionsOrCb, cb) {
|
|
227
|
-
const command = new EnableInsightRulesCommand_1.EnableInsightRulesCommand(args);
|
|
228
|
-
if (typeof optionsOrCb === "function") {
|
|
229
|
-
this.send(command, optionsOrCb);
|
|
230
|
-
}
|
|
231
|
-
else if (typeof cb === "function") {
|
|
232
|
-
if (typeof optionsOrCb !== "object")
|
|
233
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
234
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
235
|
-
}
|
|
236
|
-
else {
|
|
237
|
-
return this.send(command, optionsOrCb);
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
getDashboard(args, optionsOrCb, cb) {
|
|
241
|
-
const command = new GetDashboardCommand_1.GetDashboardCommand(args);
|
|
242
|
-
if (typeof optionsOrCb === "function") {
|
|
243
|
-
this.send(command, optionsOrCb);
|
|
244
|
-
}
|
|
245
|
-
else if (typeof cb === "function") {
|
|
246
|
-
if (typeof optionsOrCb !== "object")
|
|
247
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
248
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
249
|
-
}
|
|
250
|
-
else {
|
|
251
|
-
return this.send(command, optionsOrCb);
|
|
252
|
-
}
|
|
253
|
-
}
|
|
254
|
-
getInsightRuleReport(args, optionsOrCb, cb) {
|
|
255
|
-
const command = new GetInsightRuleReportCommand_1.GetInsightRuleReportCommand(args);
|
|
256
|
-
if (typeof optionsOrCb === "function") {
|
|
257
|
-
this.send(command, optionsOrCb);
|
|
258
|
-
}
|
|
259
|
-
else if (typeof cb === "function") {
|
|
260
|
-
if (typeof optionsOrCb !== "object")
|
|
261
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
262
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
263
|
-
}
|
|
264
|
-
else {
|
|
265
|
-
return this.send(command, optionsOrCb);
|
|
266
|
-
}
|
|
267
|
-
}
|
|
268
|
-
getMetricData(args, optionsOrCb, cb) {
|
|
269
|
-
const command = new GetMetricDataCommand_1.GetMetricDataCommand(args);
|
|
270
|
-
if (typeof optionsOrCb === "function") {
|
|
271
|
-
this.send(command, optionsOrCb);
|
|
272
|
-
}
|
|
273
|
-
else if (typeof cb === "function") {
|
|
274
|
-
if (typeof optionsOrCb !== "object")
|
|
275
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
276
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
277
|
-
}
|
|
278
|
-
else {
|
|
279
|
-
return this.send(command, optionsOrCb);
|
|
280
|
-
}
|
|
281
|
-
}
|
|
282
|
-
getMetricStatistics(args, optionsOrCb, cb) {
|
|
283
|
-
const command = new GetMetricStatisticsCommand_1.GetMetricStatisticsCommand(args);
|
|
284
|
-
if (typeof optionsOrCb === "function") {
|
|
285
|
-
this.send(command, optionsOrCb);
|
|
286
|
-
}
|
|
287
|
-
else if (typeof cb === "function") {
|
|
288
|
-
if (typeof optionsOrCb !== "object")
|
|
289
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
290
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
291
|
-
}
|
|
292
|
-
else {
|
|
293
|
-
return this.send(command, optionsOrCb);
|
|
294
|
-
}
|
|
295
|
-
}
|
|
296
|
-
getMetricStream(args, optionsOrCb, cb) {
|
|
297
|
-
const command = new GetMetricStreamCommand_1.GetMetricStreamCommand(args);
|
|
298
|
-
if (typeof optionsOrCb === "function") {
|
|
299
|
-
this.send(command, optionsOrCb);
|
|
300
|
-
}
|
|
301
|
-
else if (typeof cb === "function") {
|
|
302
|
-
if (typeof optionsOrCb !== "object")
|
|
303
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
304
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
305
|
-
}
|
|
306
|
-
else {
|
|
307
|
-
return this.send(command, optionsOrCb);
|
|
308
|
-
}
|
|
309
|
-
}
|
|
310
|
-
getMetricWidgetImage(args, optionsOrCb, cb) {
|
|
311
|
-
const command = new GetMetricWidgetImageCommand_1.GetMetricWidgetImageCommand(args);
|
|
312
|
-
if (typeof optionsOrCb === "function") {
|
|
313
|
-
this.send(command, optionsOrCb);
|
|
314
|
-
}
|
|
315
|
-
else if (typeof cb === "function") {
|
|
316
|
-
if (typeof optionsOrCb !== "object")
|
|
317
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
318
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
319
|
-
}
|
|
320
|
-
else {
|
|
321
|
-
return this.send(command, optionsOrCb);
|
|
322
|
-
}
|
|
323
|
-
}
|
|
324
|
-
listDashboards(args, optionsOrCb, cb) {
|
|
325
|
-
const command = new ListDashboardsCommand_1.ListDashboardsCommand(args);
|
|
326
|
-
if (typeof optionsOrCb === "function") {
|
|
327
|
-
this.send(command, optionsOrCb);
|
|
328
|
-
}
|
|
329
|
-
else if (typeof cb === "function") {
|
|
330
|
-
if (typeof optionsOrCb !== "object")
|
|
331
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
332
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
333
|
-
}
|
|
334
|
-
else {
|
|
335
|
-
return this.send(command, optionsOrCb);
|
|
336
|
-
}
|
|
337
|
-
}
|
|
338
|
-
listManagedInsightRules(args, optionsOrCb, cb) {
|
|
339
|
-
const command = new ListManagedInsightRulesCommand_1.ListManagedInsightRulesCommand(args);
|
|
340
|
-
if (typeof optionsOrCb === "function") {
|
|
341
|
-
this.send(command, optionsOrCb);
|
|
342
|
-
}
|
|
343
|
-
else if (typeof cb === "function") {
|
|
344
|
-
if (typeof optionsOrCb !== "object")
|
|
345
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
346
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
347
|
-
}
|
|
348
|
-
else {
|
|
349
|
-
return this.send(command, optionsOrCb);
|
|
350
|
-
}
|
|
351
|
-
}
|
|
352
|
-
listMetrics(args, optionsOrCb, cb) {
|
|
353
|
-
const command = new ListMetricsCommand_1.ListMetricsCommand(args);
|
|
354
|
-
if (typeof optionsOrCb === "function") {
|
|
355
|
-
this.send(command, optionsOrCb);
|
|
356
|
-
}
|
|
357
|
-
else if (typeof cb === "function") {
|
|
358
|
-
if (typeof optionsOrCb !== "object")
|
|
359
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
360
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
361
|
-
}
|
|
362
|
-
else {
|
|
363
|
-
return this.send(command, optionsOrCb);
|
|
364
|
-
}
|
|
365
|
-
}
|
|
366
|
-
listMetricStreams(args, optionsOrCb, cb) {
|
|
367
|
-
const command = new ListMetricStreamsCommand_1.ListMetricStreamsCommand(args);
|
|
368
|
-
if (typeof optionsOrCb === "function") {
|
|
369
|
-
this.send(command, optionsOrCb);
|
|
370
|
-
}
|
|
371
|
-
else if (typeof cb === "function") {
|
|
372
|
-
if (typeof optionsOrCb !== "object")
|
|
373
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
374
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
375
|
-
}
|
|
376
|
-
else {
|
|
377
|
-
return this.send(command, optionsOrCb);
|
|
378
|
-
}
|
|
379
|
-
}
|
|
380
|
-
listTagsForResource(args, optionsOrCb, cb) {
|
|
381
|
-
const command = new ListTagsForResourceCommand_1.ListTagsForResourceCommand(args);
|
|
382
|
-
if (typeof optionsOrCb === "function") {
|
|
383
|
-
this.send(command, optionsOrCb);
|
|
384
|
-
}
|
|
385
|
-
else if (typeof cb === "function") {
|
|
386
|
-
if (typeof optionsOrCb !== "object")
|
|
387
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
388
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
389
|
-
}
|
|
390
|
-
else {
|
|
391
|
-
return this.send(command, optionsOrCb);
|
|
392
|
-
}
|
|
393
|
-
}
|
|
394
|
-
putAnomalyDetector(args, optionsOrCb, cb) {
|
|
395
|
-
const command = new PutAnomalyDetectorCommand_1.PutAnomalyDetectorCommand(args);
|
|
396
|
-
if (typeof optionsOrCb === "function") {
|
|
397
|
-
this.send(command, optionsOrCb);
|
|
398
|
-
}
|
|
399
|
-
else if (typeof cb === "function") {
|
|
400
|
-
if (typeof optionsOrCb !== "object")
|
|
401
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
402
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
403
|
-
}
|
|
404
|
-
else {
|
|
405
|
-
return this.send(command, optionsOrCb);
|
|
406
|
-
}
|
|
407
|
-
}
|
|
408
|
-
putCompositeAlarm(args, optionsOrCb, cb) {
|
|
409
|
-
const command = new PutCompositeAlarmCommand_1.PutCompositeAlarmCommand(args);
|
|
410
|
-
if (typeof optionsOrCb === "function") {
|
|
411
|
-
this.send(command, optionsOrCb);
|
|
412
|
-
}
|
|
413
|
-
else if (typeof cb === "function") {
|
|
414
|
-
if (typeof optionsOrCb !== "object")
|
|
415
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
416
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
417
|
-
}
|
|
418
|
-
else {
|
|
419
|
-
return this.send(command, optionsOrCb);
|
|
420
|
-
}
|
|
421
|
-
}
|
|
422
|
-
putDashboard(args, optionsOrCb, cb) {
|
|
423
|
-
const command = new PutDashboardCommand_1.PutDashboardCommand(args);
|
|
424
|
-
if (typeof optionsOrCb === "function") {
|
|
425
|
-
this.send(command, optionsOrCb);
|
|
426
|
-
}
|
|
427
|
-
else if (typeof cb === "function") {
|
|
428
|
-
if (typeof optionsOrCb !== "object")
|
|
429
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
430
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
431
|
-
}
|
|
432
|
-
else {
|
|
433
|
-
return this.send(command, optionsOrCb);
|
|
434
|
-
}
|
|
435
|
-
}
|
|
436
|
-
putInsightRule(args, optionsOrCb, cb) {
|
|
437
|
-
const command = new PutInsightRuleCommand_1.PutInsightRuleCommand(args);
|
|
438
|
-
if (typeof optionsOrCb === "function") {
|
|
439
|
-
this.send(command, optionsOrCb);
|
|
440
|
-
}
|
|
441
|
-
else if (typeof cb === "function") {
|
|
442
|
-
if (typeof optionsOrCb !== "object")
|
|
443
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
444
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
445
|
-
}
|
|
446
|
-
else {
|
|
447
|
-
return this.send(command, optionsOrCb);
|
|
448
|
-
}
|
|
449
|
-
}
|
|
450
|
-
putManagedInsightRules(args, optionsOrCb, cb) {
|
|
451
|
-
const command = new PutManagedInsightRulesCommand_1.PutManagedInsightRulesCommand(args);
|
|
452
|
-
if (typeof optionsOrCb === "function") {
|
|
453
|
-
this.send(command, optionsOrCb);
|
|
454
|
-
}
|
|
455
|
-
else if (typeof cb === "function") {
|
|
456
|
-
if (typeof optionsOrCb !== "object")
|
|
457
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
458
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
459
|
-
}
|
|
460
|
-
else {
|
|
461
|
-
return this.send(command, optionsOrCb);
|
|
462
|
-
}
|
|
463
|
-
}
|
|
464
|
-
putMetricAlarm(args, optionsOrCb, cb) {
|
|
465
|
-
const command = new PutMetricAlarmCommand_1.PutMetricAlarmCommand(args);
|
|
466
|
-
if (typeof optionsOrCb === "function") {
|
|
467
|
-
this.send(command, optionsOrCb);
|
|
468
|
-
}
|
|
469
|
-
else if (typeof cb === "function") {
|
|
470
|
-
if (typeof optionsOrCb !== "object")
|
|
471
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
472
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
473
|
-
}
|
|
474
|
-
else {
|
|
475
|
-
return this.send(command, optionsOrCb);
|
|
476
|
-
}
|
|
477
|
-
}
|
|
478
|
-
putMetricData(args, optionsOrCb, cb) {
|
|
479
|
-
const command = new PutMetricDataCommand_1.PutMetricDataCommand(args);
|
|
480
|
-
if (typeof optionsOrCb === "function") {
|
|
481
|
-
this.send(command, optionsOrCb);
|
|
482
|
-
}
|
|
483
|
-
else if (typeof cb === "function") {
|
|
484
|
-
if (typeof optionsOrCb !== "object")
|
|
485
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
486
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
487
|
-
}
|
|
488
|
-
else {
|
|
489
|
-
return this.send(command, optionsOrCb);
|
|
490
|
-
}
|
|
491
|
-
}
|
|
492
|
-
putMetricStream(args, optionsOrCb, cb) {
|
|
493
|
-
const command = new PutMetricStreamCommand_1.PutMetricStreamCommand(args);
|
|
494
|
-
if (typeof optionsOrCb === "function") {
|
|
495
|
-
this.send(command, optionsOrCb);
|
|
496
|
-
}
|
|
497
|
-
else if (typeof cb === "function") {
|
|
498
|
-
if (typeof optionsOrCb !== "object")
|
|
499
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
500
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
501
|
-
}
|
|
502
|
-
else {
|
|
503
|
-
return this.send(command, optionsOrCb);
|
|
504
|
-
}
|
|
505
|
-
}
|
|
506
|
-
setAlarmState(args, optionsOrCb, cb) {
|
|
507
|
-
const command = new SetAlarmStateCommand_1.SetAlarmStateCommand(args);
|
|
508
|
-
if (typeof optionsOrCb === "function") {
|
|
509
|
-
this.send(command, optionsOrCb);
|
|
510
|
-
}
|
|
511
|
-
else if (typeof cb === "function") {
|
|
512
|
-
if (typeof optionsOrCb !== "object")
|
|
513
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
514
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
515
|
-
}
|
|
516
|
-
else {
|
|
517
|
-
return this.send(command, optionsOrCb);
|
|
518
|
-
}
|
|
519
|
-
}
|
|
520
|
-
startMetricStreams(args, optionsOrCb, cb) {
|
|
521
|
-
const command = new StartMetricStreamsCommand_1.StartMetricStreamsCommand(args);
|
|
522
|
-
if (typeof optionsOrCb === "function") {
|
|
523
|
-
this.send(command, optionsOrCb);
|
|
524
|
-
}
|
|
525
|
-
else if (typeof cb === "function") {
|
|
526
|
-
if (typeof optionsOrCb !== "object")
|
|
527
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
528
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
529
|
-
}
|
|
530
|
-
else {
|
|
531
|
-
return this.send(command, optionsOrCb);
|
|
532
|
-
}
|
|
533
|
-
}
|
|
534
|
-
stopMetricStreams(args, optionsOrCb, cb) {
|
|
535
|
-
const command = new StopMetricStreamsCommand_1.StopMetricStreamsCommand(args);
|
|
536
|
-
if (typeof optionsOrCb === "function") {
|
|
537
|
-
this.send(command, optionsOrCb);
|
|
538
|
-
}
|
|
539
|
-
else if (typeof cb === "function") {
|
|
540
|
-
if (typeof optionsOrCb !== "object")
|
|
541
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
542
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
543
|
-
}
|
|
544
|
-
else {
|
|
545
|
-
return this.send(command, optionsOrCb);
|
|
546
|
-
}
|
|
547
|
-
}
|
|
548
|
-
tagResource(args, optionsOrCb, cb) {
|
|
549
|
-
const command = new TagResourceCommand_1.TagResourceCommand(args);
|
|
550
|
-
if (typeof optionsOrCb === "function") {
|
|
551
|
-
this.send(command, optionsOrCb);
|
|
552
|
-
}
|
|
553
|
-
else if (typeof cb === "function") {
|
|
554
|
-
if (typeof optionsOrCb !== "object")
|
|
555
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
556
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
557
|
-
}
|
|
558
|
-
else {
|
|
559
|
-
return this.send(command, optionsOrCb);
|
|
560
|
-
}
|
|
561
|
-
}
|
|
562
|
-
untagResource(args, optionsOrCb, cb) {
|
|
563
|
-
const command = new UntagResourceCommand_1.UntagResourceCommand(args);
|
|
564
|
-
if (typeof optionsOrCb === "function") {
|
|
565
|
-
this.send(command, optionsOrCb);
|
|
566
|
-
}
|
|
567
|
-
else if (typeof cb === "function") {
|
|
568
|
-
if (typeof optionsOrCb !== "object")
|
|
569
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
570
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
571
|
-
}
|
|
572
|
-
else {
|
|
573
|
-
return this.send(command, optionsOrCb);
|
|
574
|
-
}
|
|
575
|
-
}
|
|
576
85
|
}
|
|
577
86
|
exports.CloudWatch = CloudWatch;
|
|
87
|
+
(0, smithy_client_1.createAggregatedClient)(commands, CloudWatch);
|