@@ -78,6 +78,11 @@ import {
78
78
DeleteIndexPolicyCommandInput ,
79
79
DeleteIndexPolicyCommandOutput ,
80
80
} from "./commands/DeleteIndexPolicyCommand" ;
81
+ import {
82
+ DeleteIntegrationCommand ,
83
+ DeleteIntegrationCommandInput ,
84
+ DeleteIntegrationCommandOutput ,
85
+ } from "./commands/DeleteIntegrationCommand" ;
81
86
import {
82
87
DeleteLogAnomalyDetectorCommand ,
83
88
DeleteLogAnomalyDetectorCommandInput ,
@@ -234,6 +239,11 @@ import {
234
239
GetDeliverySourceCommandInput ,
235
240
GetDeliverySourceCommandOutput ,
236
241
} from "./commands/GetDeliverySourceCommand" ;
242
+ import {
243
+ GetIntegrationCommand ,
244
+ GetIntegrationCommandInput ,
245
+ GetIntegrationCommandOutput ,
246
+ } from "./commands/GetIntegrationCommand" ;
237
247
import {
238
248
GetLogAnomalyDetectorCommand ,
239
249
GetLogAnomalyDetectorCommandInput ,
@@ -269,6 +279,11 @@ import {
269
279
ListAnomaliesCommandInput ,
270
280
ListAnomaliesCommandOutput ,
271
281
} from "./commands/ListAnomaliesCommand" ;
282
+ import {
283
+ ListIntegrationsCommand ,
284
+ ListIntegrationsCommandInput ,
285
+ ListIntegrationsCommandOutput ,
286
+ } from "./commands/ListIntegrationsCommand" ;
272
287
import {
273
288
ListLogAnomalyDetectorsCommand ,
274
289
ListLogAnomalyDetectorsCommandInput ,
@@ -329,6 +344,11 @@ import {
329
344
PutIndexPolicyCommandInput ,
330
345
PutIndexPolicyCommandOutput ,
331
346
} from "./commands/PutIndexPolicyCommand" ;
347
+ import {
348
+ PutIntegrationCommand ,
349
+ PutIntegrationCommandInput ,
350
+ PutIntegrationCommandOutput ,
351
+ } from "./commands/PutIntegrationCommand" ;
332
352
import {
333
353
PutLogEventsCommand ,
334
354
PutLogEventsCommandInput ,
@@ -425,6 +445,7 @@ const commands = {
425
445
DeleteDeliverySourceCommand,
426
446
DeleteDestinationCommand,
427
447
DeleteIndexPolicyCommand,
448
+ DeleteIntegrationCommand,
428
449
DeleteLogAnomalyDetectorCommand,
429
450
DeleteLogGroupCommand,
430
451
DeleteLogStreamCommand,
@@ -457,13 +478,15 @@ const commands = {
457
478
GetDeliveryDestinationCommand,
458
479
GetDeliveryDestinationPolicyCommand,
459
480
GetDeliverySourceCommand,
481
+ GetIntegrationCommand,
460
482
GetLogAnomalyDetectorCommand,
461
483
GetLogEventsCommand,
462
484
GetLogGroupFieldsCommand,
463
485
GetLogRecordCommand,
464
486
GetQueryResultsCommand,
465
487
GetTransformerCommand,
466
488
ListAnomaliesCommand,
489
+ ListIntegrationsCommand,
467
490
ListLogAnomalyDetectorsCommand,
468
491
ListLogGroupsForQueryCommand,
469
492
ListTagsForResourceCommand,
@@ -476,6 +499,7 @@ const commands = {
476
499
PutDestinationCommand,
477
500
PutDestinationPolicyCommand,
478
501
PutIndexPolicyCommand,
502
+ PutIntegrationCommand,
479
503
PutLogEventsCommand,
480
504
PutMetricFilterCommand,
481
505
PutQueryDefinitionCommand,
@@ -738,6 +762,23 @@ export interface CloudWatchLogs {
738
762
cb : ( err : any , data ?: DeleteIndexPolicyCommandOutput ) => void
739
763
) : void ;
740
764
765
+ /**
766
+ * @see {@link DeleteIntegrationCommand }
767
+ */
768
+ deleteIntegration (
769
+ args : DeleteIntegrationCommandInput ,
770
+ options ?: __HttpHandlerOptions
771
+ ) : Promise < DeleteIntegrationCommandOutput > ;
772
+ deleteIntegration (
773
+ args : DeleteIntegrationCommandInput ,
774
+ cb : ( err : any , data ?: DeleteIntegrationCommandOutput ) => void
775
+ ) : void ;
776
+ deleteIntegration (
777
+ args : DeleteIntegrationCommandInput ,
778
+ options : __HttpHandlerOptions ,
779
+ cb : ( err : any , data ?: DeleteIntegrationCommandOutput ) => void
780
+ ) : void ;
781
+
741
782
/**
742
783
* @see {@link DeleteLogAnomalyDetectorCommand }
743
784
*/
@@ -1279,6 +1320,20 @@ export interface CloudWatchLogs {
1279
1320
cb : ( err : any , data ?: GetDeliverySourceCommandOutput ) => void
1280
1321
) : void ;
1281
1322
1323
+ /**
1324
+ * @see {@link GetIntegrationCommand }
1325
+ */
1326
+ getIntegration (
1327
+ args : GetIntegrationCommandInput ,
1328
+ options ?: __HttpHandlerOptions
1329
+ ) : Promise < GetIntegrationCommandOutput > ;
1330
+ getIntegration ( args : GetIntegrationCommandInput , cb : ( err : any , data ?: GetIntegrationCommandOutput ) => void ) : void ;
1331
+ getIntegration (
1332
+ args : GetIntegrationCommandInput ,
1333
+ options : __HttpHandlerOptions ,
1334
+ cb : ( err : any , data ?: GetIntegrationCommandOutput ) => void
1335
+ ) : void ;
1336
+
1282
1337
/**
1283
1338
* @see {@link GetLogAnomalyDetectorCommand }
1284
1339
*/
@@ -1376,6 +1431,24 @@ export interface CloudWatchLogs {
1376
1431
cb : ( err : any , data ?: ListAnomaliesCommandOutput ) => void
1377
1432
) : void ;
1378
1433
1434
+ /**
1435
+ * @see {@link ListIntegrationsCommand }
1436
+ */
1437
+ listIntegrations ( ) : Promise < ListIntegrationsCommandOutput > ;
1438
+ listIntegrations (
1439
+ args : ListIntegrationsCommandInput ,
1440
+ options ?: __HttpHandlerOptions
1441
+ ) : Promise < ListIntegrationsCommandOutput > ;
1442
+ listIntegrations (
1443
+ args : ListIntegrationsCommandInput ,
1444
+ cb : ( err : any , data ?: ListIntegrationsCommandOutput ) => void
1445
+ ) : void ;
1446
+ listIntegrations (
1447
+ args : ListIntegrationsCommandInput ,
1448
+ options : __HttpHandlerOptions ,
1449
+ cb : ( err : any , data ?: ListIntegrationsCommandOutput ) => void
1450
+ ) : void ;
1451
+
1379
1452
/**
1380
1453
* @see {@link ListLogAnomalyDetectorsCommand }
1381
1454
*/
@@ -1575,6 +1648,20 @@ export interface CloudWatchLogs {
1575
1648
cb : ( err : any , data ?: PutIndexPolicyCommandOutput ) => void
1576
1649
) : void ;
1577
1650
1651
+ /**
1652
+ * @see {@link PutIntegrationCommand }
1653
+ */
1654
+ putIntegration (
1655
+ args : PutIntegrationCommandInput ,
1656
+ options ?: __HttpHandlerOptions
1657
+ ) : Promise < PutIntegrationCommandOutput > ;
1658
+ putIntegration ( args : PutIntegrationCommandInput , cb : ( err : any , data ?: PutIntegrationCommandOutput ) => void ) : void ;
1659
+ putIntegration (
1660
+ args : PutIntegrationCommandInput ,
1661
+ options : __HttpHandlerOptions ,
1662
+ cb : ( err : any , data ?: PutIntegrationCommandOutput ) => void
1663
+ ) : void ;
1664
+
1578
1665
/**
1579
1666
* @see {@link PutLogEventsCommand }
1580
1667
*/
0 commit comments