@@ -49,13 +49,28 @@ import {
49
49
EnableOrganizationAdminAccountCommandInput ,
50
50
EnableOrganizationAdminAccountCommandOutput ,
51
51
} from "./commands/EnableOrganizationAdminAccountCommand" ;
52
+ import {
53
+ GetInvestigationCommand ,
54
+ GetInvestigationCommandInput ,
55
+ GetInvestigationCommandOutput ,
56
+ } from "./commands/GetInvestigationCommand" ;
52
57
import { GetMembersCommand , GetMembersCommandInput , GetMembersCommandOutput } from "./commands/GetMembersCommand" ;
53
58
import {
54
59
ListDatasourcePackagesCommand ,
55
60
ListDatasourcePackagesCommandInput ,
56
61
ListDatasourcePackagesCommandOutput ,
57
62
} from "./commands/ListDatasourcePackagesCommand" ;
58
63
import { ListGraphsCommand , ListGraphsCommandInput , ListGraphsCommandOutput } from "./commands/ListGraphsCommand" ;
64
+ import {
65
+ ListIndicatorsCommand ,
66
+ ListIndicatorsCommandInput ,
67
+ ListIndicatorsCommandOutput ,
68
+ } from "./commands/ListIndicatorsCommand" ;
69
+ import {
70
+ ListInvestigationsCommand ,
71
+ ListInvestigationsCommandInput ,
72
+ ListInvestigationsCommandOutput ,
73
+ } from "./commands/ListInvestigationsCommand" ;
59
74
import {
60
75
ListInvitationsCommand ,
61
76
ListInvitationsCommandInput ,
@@ -77,6 +92,11 @@ import {
77
92
RejectInvitationCommandInput ,
78
93
RejectInvitationCommandOutput ,
79
94
} from "./commands/RejectInvitationCommand" ;
95
+ import {
96
+ StartInvestigationCommand ,
97
+ StartInvestigationCommandInput ,
98
+ StartInvestigationCommandOutput ,
99
+ } from "./commands/StartInvestigationCommand" ;
80
100
import {
81
101
StartMonitoringMemberCommand ,
82
102
StartMonitoringMemberCommandInput ,
@@ -93,6 +113,11 @@ import {
93
113
UpdateDatasourcePackagesCommandInput ,
94
114
UpdateDatasourcePackagesCommandOutput ,
95
115
} from "./commands/UpdateDatasourcePackagesCommand" ;
116
+ import {
117
+ UpdateInvestigationStateCommand ,
118
+ UpdateInvestigationStateCommandInput ,
119
+ UpdateInvestigationStateCommandOutput ,
120
+ } from "./commands/UpdateInvestigationStateCommand" ;
96
121
import {
97
122
UpdateOrganizationConfigurationCommand ,
98
123
UpdateOrganizationConfigurationCommandInput ,
@@ -112,18 +137,23 @@ const commands = {
112
137
DisableOrganizationAdminAccountCommand,
113
138
DisassociateMembershipCommand,
114
139
EnableOrganizationAdminAccountCommand,
140
+ GetInvestigationCommand,
115
141
GetMembersCommand,
116
142
ListDatasourcePackagesCommand,
117
143
ListGraphsCommand,
144
+ ListIndicatorsCommand,
145
+ ListInvestigationsCommand,
118
146
ListInvitationsCommand,
119
147
ListMembersCommand,
120
148
ListOrganizationAdminAccountsCommand,
121
149
ListTagsForResourceCommand,
122
150
RejectInvitationCommand,
151
+ StartInvestigationCommand,
123
152
StartMonitoringMemberCommand,
124
153
TagResourceCommand,
125
154
UntagResourceCommand,
126
155
UpdateDatasourcePackagesCommand,
156
+ UpdateInvestigationStateCommand,
127
157
UpdateOrganizationConfigurationCommand,
128
158
} ;
129
159
@@ -291,6 +321,23 @@ export interface Detective {
291
321
cb : ( err : any , data ?: EnableOrganizationAdminAccountCommandOutput ) => void
292
322
) : void ;
293
323
324
+ /**
325
+ * @see {@link GetInvestigationCommand }
326
+ */
327
+ getInvestigation (
328
+ args : GetInvestigationCommandInput ,
329
+ options ?: __HttpHandlerOptions
330
+ ) : Promise < GetInvestigationCommandOutput > ;
331
+ getInvestigation (
332
+ args : GetInvestigationCommandInput ,
333
+ cb : ( err : any , data ?: GetInvestigationCommandOutput ) => void
334
+ ) : void ;
335
+ getInvestigation (
336
+ args : GetInvestigationCommandInput ,
337
+ options : __HttpHandlerOptions ,
338
+ cb : ( err : any , data ?: GetInvestigationCommandOutput ) => void
339
+ ) : void ;
340
+
294
341
/**
295
342
* @see {@link GetMembersCommand }
296
343
*/
@@ -330,6 +377,37 @@ export interface Detective {
330
377
cb : ( err : any , data ?: ListGraphsCommandOutput ) => void
331
378
) : void ;
332
379
380
+ /**
381
+ * @see {@link ListIndicatorsCommand }
382
+ */
383
+ listIndicators (
384
+ args : ListIndicatorsCommandInput ,
385
+ options ?: __HttpHandlerOptions
386
+ ) : Promise < ListIndicatorsCommandOutput > ;
387
+ listIndicators ( args : ListIndicatorsCommandInput , cb : ( err : any , data ?: ListIndicatorsCommandOutput ) => void ) : void ;
388
+ listIndicators (
389
+ args : ListIndicatorsCommandInput ,
390
+ options : __HttpHandlerOptions ,
391
+ cb : ( err : any , data ?: ListIndicatorsCommandOutput ) => void
392
+ ) : void ;
393
+
394
+ /**
395
+ * @see {@link ListInvestigationsCommand }
396
+ */
397
+ listInvestigations (
398
+ args : ListInvestigationsCommandInput ,
399
+ options ?: __HttpHandlerOptions
400
+ ) : Promise < ListInvestigationsCommandOutput > ;
401
+ listInvestigations (
402
+ args : ListInvestigationsCommandInput ,
403
+ cb : ( err : any , data ?: ListInvestigationsCommandOutput ) => void
404
+ ) : void ;
405
+ listInvestigations (
406
+ args : ListInvestigationsCommandInput ,
407
+ options : __HttpHandlerOptions ,
408
+ cb : ( err : any , data ?: ListInvestigationsCommandOutput ) => void
409
+ ) : void ;
410
+
333
411
/**
334
412
* @see {@link ListInvitationsCommand }
335
413
*/
@@ -406,6 +484,23 @@ export interface Detective {
406
484
cb : ( err : any , data ?: RejectInvitationCommandOutput ) => void
407
485
) : void ;
408
486
487
+ /**
488
+ * @see {@link StartInvestigationCommand }
489
+ */
490
+ startInvestigation (
491
+ args : StartInvestigationCommandInput ,
492
+ options ?: __HttpHandlerOptions
493
+ ) : Promise < StartInvestigationCommandOutput > ;
494
+ startInvestigation (
495
+ args : StartInvestigationCommandInput ,
496
+ cb : ( err : any , data ?: StartInvestigationCommandOutput ) => void
497
+ ) : void ;
498
+ startInvestigation (
499
+ args : StartInvestigationCommandInput ,
500
+ options : __HttpHandlerOptions ,
501
+ cb : ( err : any , data ?: StartInvestigationCommandOutput ) => void
502
+ ) : void ;
503
+
409
504
/**
410
505
* @see {@link StartMonitoringMemberCommand }
411
506
*/
@@ -462,6 +557,23 @@ export interface Detective {
462
557
cb : ( err : any , data ?: UpdateDatasourcePackagesCommandOutput ) => void
463
558
) : void ;
464
559
560
+ /**
561
+ * @see {@link UpdateInvestigationStateCommand }
562
+ */
563
+ updateInvestigationState (
564
+ args : UpdateInvestigationStateCommandInput ,
565
+ options ?: __HttpHandlerOptions
566
+ ) : Promise < UpdateInvestigationStateCommandOutput > ;
567
+ updateInvestigationState (
568
+ args : UpdateInvestigationStateCommandInput ,
569
+ cb : ( err : any , data ?: UpdateInvestigationStateCommandOutput ) => void
570
+ ) : void ;
571
+ updateInvestigationState (
572
+ args : UpdateInvestigationStateCommandInput ,
573
+ options : __HttpHandlerOptions ,
574
+ cb : ( err : any , data ?: UpdateInvestigationStateCommandOutput ) => void
575
+ ) : void ;
576
+
465
577
/**
466
578
* @see {@link UpdateOrganizationConfigurationCommand }
467
579
*/
0 commit comments