@@ -23,6 +23,11 @@ import {
23
23
CreateExportTaskCommandInput ,
24
24
CreateExportTaskCommandOutput ,
25
25
} from "./commands/CreateExportTaskCommand" ;
26
+ import {
27
+ CreateLogAnomalyDetectorCommand ,
28
+ CreateLogAnomalyDetectorCommandInput ,
29
+ CreateLogAnomalyDetectorCommandOutput ,
30
+ } from "./commands/CreateLogAnomalyDetectorCommand" ;
26
31
import {
27
32
CreateLogGroupCommand ,
28
33
CreateLogGroupCommandInput ,
@@ -68,6 +73,11 @@ import {
68
73
DeleteDestinationCommandInput ,
69
74
DeleteDestinationCommandOutput ,
70
75
} from "./commands/DeleteDestinationCommand" ;
76
+ import {
77
+ DeleteLogAnomalyDetectorCommand ,
78
+ DeleteLogAnomalyDetectorCommandInput ,
79
+ DeleteLogAnomalyDetectorCommandOutput ,
80
+ } from "./commands/DeleteLogAnomalyDetectorCommand" ;
71
81
import {
72
82
DeleteLogGroupCommand ,
73
83
DeleteLogGroupCommandInput ,
@@ -199,6 +209,11 @@ import {
199
209
GetDeliverySourceCommandInput ,
200
210
GetDeliverySourceCommandOutput ,
201
211
} from "./commands/GetDeliverySourceCommand" ;
212
+ import {
213
+ GetLogAnomalyDetectorCommand ,
214
+ GetLogAnomalyDetectorCommandInput ,
215
+ GetLogAnomalyDetectorCommandOutput ,
216
+ } from "./commands/GetLogAnomalyDetectorCommand" ;
202
217
import {
203
218
GetLogEventsCommand ,
204
219
GetLogEventsCommandInput ,
@@ -219,6 +234,16 @@ import {
219
234
GetQueryResultsCommandInput ,
220
235
GetQueryResultsCommandOutput ,
221
236
} from "./commands/GetQueryResultsCommand" ;
237
+ import {
238
+ ListAnomaliesCommand ,
239
+ ListAnomaliesCommandInput ,
240
+ ListAnomaliesCommandOutput ,
241
+ } from "./commands/ListAnomaliesCommand" ;
242
+ import {
243
+ ListLogAnomalyDetectorsCommand ,
244
+ ListLogAnomalyDetectorsCommandInput ,
245
+ ListLogAnomalyDetectorsCommandOutput ,
246
+ } from "./commands/ListLogAnomalyDetectorsCommand" ;
222
247
import {
223
248
ListTagsForResourceCommand ,
224
249
ListTagsForResourceCommandInput ,
@@ -313,12 +338,23 @@ import {
313
338
UntagResourceCommandInput ,
314
339
UntagResourceCommandOutput ,
315
340
} from "./commands/UntagResourceCommand" ;
341
+ import {
342
+ UpdateAnomalyCommand ,
343
+ UpdateAnomalyCommandInput ,
344
+ UpdateAnomalyCommandOutput ,
345
+ } from "./commands/UpdateAnomalyCommand" ;
346
+ import {
347
+ UpdateLogAnomalyDetectorCommand ,
348
+ UpdateLogAnomalyDetectorCommandInput ,
349
+ UpdateLogAnomalyDetectorCommandOutput ,
350
+ } from "./commands/UpdateLogAnomalyDetectorCommand" ;
316
351
317
352
const commands = {
318
353
AssociateKmsKeyCommand,
319
354
CancelExportTaskCommand,
320
355
CreateDeliveryCommand,
321
356
CreateExportTaskCommand,
357
+ CreateLogAnomalyDetectorCommand,
322
358
CreateLogGroupCommand,
323
359
CreateLogStreamCommand,
324
360
DeleteAccountPolicyCommand,
@@ -328,6 +364,7 @@ const commands = {
328
364
DeleteDeliveryDestinationPolicyCommand,
329
365
DeleteDeliverySourceCommand,
330
366
DeleteDestinationCommand,
367
+ DeleteLogAnomalyDetectorCommand,
331
368
DeleteLogGroupCommand,
332
369
DeleteLogStreamCommand,
333
370
DeleteMetricFilterCommand,
@@ -355,10 +392,13 @@ const commands = {
355
392
GetDeliveryDestinationCommand,
356
393
GetDeliveryDestinationPolicyCommand,
357
394
GetDeliverySourceCommand,
395
+ GetLogAnomalyDetectorCommand,
358
396
GetLogEventsCommand,
359
397
GetLogGroupFieldsCommand,
360
398
GetLogRecordCommand,
361
399
GetQueryResultsCommand,
400
+ ListAnomaliesCommand,
401
+ ListLogAnomalyDetectorsCommand,
362
402
ListTagsForResourceCommand,
363
403
ListTagsLogGroupCommand,
364
404
PutAccountPolicyCommand,
@@ -381,6 +421,8 @@ const commands = {
381
421
TestMetricFilterCommand,
382
422
UntagLogGroupCommand,
383
423
UntagResourceCommand,
424
+ UpdateAnomalyCommand,
425
+ UpdateLogAnomalyDetectorCommand,
384
426
} ;
385
427
386
428
export interface CloudWatchLogs {
@@ -446,6 +488,23 @@ export interface CloudWatchLogs {
446
488
cb : ( err : any , data ?: CreateExportTaskCommandOutput ) => void
447
489
) : void ;
448
490
491
+ /**
492
+ * @see {@link CreateLogAnomalyDetectorCommand }
493
+ */
494
+ createLogAnomalyDetector (
495
+ args : CreateLogAnomalyDetectorCommandInput ,
496
+ options ?: __HttpHandlerOptions
497
+ ) : Promise < CreateLogAnomalyDetectorCommandOutput > ;
498
+ createLogAnomalyDetector (
499
+ args : CreateLogAnomalyDetectorCommandInput ,
500
+ cb : ( err : any , data ?: CreateLogAnomalyDetectorCommandOutput ) => void
501
+ ) : void ;
502
+ createLogAnomalyDetector (
503
+ args : CreateLogAnomalyDetectorCommandInput ,
504
+ options : __HttpHandlerOptions ,
505
+ cb : ( err : any , data ?: CreateLogAnomalyDetectorCommandOutput ) => void
506
+ ) : void ;
507
+
449
508
/**
450
509
* @see {@link CreateLogGroupCommand }
451
510
*/
@@ -590,6 +649,23 @@ export interface CloudWatchLogs {
590
649
cb : ( err : any , data ?: DeleteDestinationCommandOutput ) => void
591
650
) : void ;
592
651
652
+ /**
653
+ * @see {@link DeleteLogAnomalyDetectorCommand }
654
+ */
655
+ deleteLogAnomalyDetector (
656
+ args : DeleteLogAnomalyDetectorCommandInput ,
657
+ options ?: __HttpHandlerOptions
658
+ ) : Promise < DeleteLogAnomalyDetectorCommandOutput > ;
659
+ deleteLogAnomalyDetector (
660
+ args : DeleteLogAnomalyDetectorCommandInput ,
661
+ cb : ( err : any , data ?: DeleteLogAnomalyDetectorCommandOutput ) => void
662
+ ) : void ;
663
+ deleteLogAnomalyDetector (
664
+ args : DeleteLogAnomalyDetectorCommandInput ,
665
+ options : __HttpHandlerOptions ,
666
+ cb : ( err : any , data ?: DeleteLogAnomalyDetectorCommandOutput ) => void
667
+ ) : void ;
668
+
593
669
/**
594
670
* @see {@link DeleteLogGroupCommand }
595
671
*/
@@ -1031,6 +1107,23 @@ export interface CloudWatchLogs {
1031
1107
cb : ( err : any , data ?: GetDeliverySourceCommandOutput ) => void
1032
1108
) : void ;
1033
1109
1110
+ /**
1111
+ * @see {@link GetLogAnomalyDetectorCommand }
1112
+ */
1113
+ getLogAnomalyDetector (
1114
+ args : GetLogAnomalyDetectorCommandInput ,
1115
+ options ?: __HttpHandlerOptions
1116
+ ) : Promise < GetLogAnomalyDetectorCommandOutput > ;
1117
+ getLogAnomalyDetector (
1118
+ args : GetLogAnomalyDetectorCommandInput ,
1119
+ cb : ( err : any , data ?: GetLogAnomalyDetectorCommandOutput ) => void
1120
+ ) : void ;
1121
+ getLogAnomalyDetector (
1122
+ args : GetLogAnomalyDetectorCommandInput ,
1123
+ options : __HttpHandlerOptions ,
1124
+ cb : ( err : any , data ?: GetLogAnomalyDetectorCommandOutput ) => void
1125
+ ) : void ;
1126
+
1034
1127
/**
1035
1128
* @see {@link GetLogEventsCommand }
1036
1129
*/
@@ -1084,6 +1177,34 @@ export interface CloudWatchLogs {
1084
1177
cb : ( err : any , data ?: GetQueryResultsCommandOutput ) => void
1085
1178
) : void ;
1086
1179
1180
+ /**
1181
+ * @see {@link ListAnomaliesCommand }
1182
+ */
1183
+ listAnomalies ( args : ListAnomaliesCommandInput , options ?: __HttpHandlerOptions ) : Promise < ListAnomaliesCommandOutput > ;
1184
+ listAnomalies ( args : ListAnomaliesCommandInput , cb : ( err : any , data ?: ListAnomaliesCommandOutput ) => void ) : void ;
1185
+ listAnomalies (
1186
+ args : ListAnomaliesCommandInput ,
1187
+ options : __HttpHandlerOptions ,
1188
+ cb : ( err : any , data ?: ListAnomaliesCommandOutput ) => void
1189
+ ) : void ;
1190
+
1191
+ /**
1192
+ * @see {@link ListLogAnomalyDetectorsCommand }
1193
+ */
1194
+ listLogAnomalyDetectors (
1195
+ args : ListLogAnomalyDetectorsCommandInput ,
1196
+ options ?: __HttpHandlerOptions
1197
+ ) : Promise < ListLogAnomalyDetectorsCommandOutput > ;
1198
+ listLogAnomalyDetectors (
1199
+ args : ListLogAnomalyDetectorsCommandInput ,
1200
+ cb : ( err : any , data ?: ListLogAnomalyDetectorsCommandOutput ) => void
1201
+ ) : void ;
1202
+ listLogAnomalyDetectors (
1203
+ args : ListLogAnomalyDetectorsCommandInput ,
1204
+ options : __HttpHandlerOptions ,
1205
+ cb : ( err : any , data ?: ListLogAnomalyDetectorsCommandOutput ) => void
1206
+ ) : void ;
1207
+
1087
1208
/**
1088
1209
* @see {@link ListTagsForResourceCommand }
1089
1210
*/
@@ -1409,6 +1530,34 @@ export interface CloudWatchLogs {
1409
1530
options : __HttpHandlerOptions ,
1410
1531
cb : ( err : any , data ?: UntagResourceCommandOutput ) => void
1411
1532
) : void ;
1533
+
1534
+ /**
1535
+ * @see {@link UpdateAnomalyCommand }
1536
+ */
1537
+ updateAnomaly ( args : UpdateAnomalyCommandInput , options ?: __HttpHandlerOptions ) : Promise < UpdateAnomalyCommandOutput > ;
1538
+ updateAnomaly ( args : UpdateAnomalyCommandInput , cb : ( err : any , data ?: UpdateAnomalyCommandOutput ) => void ) : void ;
1539
+ updateAnomaly (
1540
+ args : UpdateAnomalyCommandInput ,
1541
+ options : __HttpHandlerOptions ,
1542
+ cb : ( err : any , data ?: UpdateAnomalyCommandOutput ) => void
1543
+ ) : void ;
1544
+
1545
+ /**
1546
+ * @see {@link UpdateLogAnomalyDetectorCommand }
1547
+ */
1548
+ updateLogAnomalyDetector (
1549
+ args : UpdateLogAnomalyDetectorCommandInput ,
1550
+ options ?: __HttpHandlerOptions
1551
+ ) : Promise < UpdateLogAnomalyDetectorCommandOutput > ;
1552
+ updateLogAnomalyDetector (
1553
+ args : UpdateLogAnomalyDetectorCommandInput ,
1554
+ cb : ( err : any , data ?: UpdateLogAnomalyDetectorCommandOutput ) => void
1555
+ ) : void ;
1556
+ updateLogAnomalyDetector (
1557
+ args : UpdateLogAnomalyDetectorCommandInput ,
1558
+ options : __HttpHandlerOptions ,
1559
+ cb : ( err : any , data ?: UpdateLogAnomalyDetectorCommandOutput ) => void
1560
+ ) : void ;
1412
1561
}
1413
1562
1414
1563
/**
0 commit comments