@aws-sdk/client-detective 3.451.0 → 3.458.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/README.md +64 -24
- package/dist-cjs/Detective.js +10 -0
- package/dist-cjs/commands/GetInvestigationCommand.js +51 -0
- package/dist-cjs/commands/ListIndicatorsCommand.js +51 -0
- package/dist-cjs/commands/ListInvestigationsCommand.js +51 -0
- package/dist-cjs/commands/StartInvestigationCommand.js +51 -0
- package/dist-cjs/commands/UpdateInvestigationStateCommand.js +51 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/models/models_0.js +43 -1
- package/dist-cjs/protocols/Aws_restJson1.js +394 -1
- package/dist-es/Detective.js +10 -0
- package/dist-es/commands/GetInvestigationCommand.js +47 -0
- package/dist-es/commands/ListIndicatorsCommand.js +47 -0
- package/dist-es/commands/ListInvestigationsCommand.js +47 -0
- package/dist-es/commands/StartInvestigationCommand.js +47 -0
- package/dist-es/commands/UpdateInvestigationStateCommand.js +47 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +42 -0
- package/dist-es/protocols/Aws_restJson1.js +382 -0
- package/dist-types/Detective.d.ts +35 -0
- package/dist-types/DetectiveClient.d.ts +7 -2
- package/dist-types/commands/CreateMembersCommand.d.ts +2 -2
- package/dist-types/commands/GetInvestigationCommand.d.ts +100 -0
- package/dist-types/commands/ListIndicatorsCommand.d.ts +144 -0
- package/dist-types/commands/ListInvestigationsCommand.d.ts +125 -0
- package/dist-types/commands/StartInvestigationCommand.d.ts +93 -0
- package/dist-types/commands/UpdateInvestigationStateCommand.d.ts +90 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +687 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/Detective.d.ts +85 -0
- package/dist-types/ts3.4/DetectiveClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/GetInvestigationCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListIndicatorsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListInvestigationsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/StartInvestigationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateInvestigationStateCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +186 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/package.json +3 -3
|
@@ -11,18 +11,23 @@ import { DescribeOrganizationConfigurationCommandInput, DescribeOrganizationConf
|
|
|
11
11
|
import { DisableOrganizationAdminAccountCommandInput, DisableOrganizationAdminAccountCommandOutput } from "../commands/DisableOrganizationAdminAccountCommand";
|
|
12
12
|
import { DisassociateMembershipCommandInput, DisassociateMembershipCommandOutput } from "../commands/DisassociateMembershipCommand";
|
|
13
13
|
import { EnableOrganizationAdminAccountCommandInput, EnableOrganizationAdminAccountCommandOutput } from "../commands/EnableOrganizationAdminAccountCommand";
|
|
14
|
+
import { GetInvestigationCommandInput, GetInvestigationCommandOutput } from "../commands/GetInvestigationCommand";
|
|
14
15
|
import { GetMembersCommandInput, GetMembersCommandOutput } from "../commands/GetMembersCommand";
|
|
15
16
|
import { ListDatasourcePackagesCommandInput, ListDatasourcePackagesCommandOutput } from "../commands/ListDatasourcePackagesCommand";
|
|
16
17
|
import { ListGraphsCommandInput, ListGraphsCommandOutput } from "../commands/ListGraphsCommand";
|
|
18
|
+
import { ListIndicatorsCommandInput, ListIndicatorsCommandOutput } from "../commands/ListIndicatorsCommand";
|
|
19
|
+
import { ListInvestigationsCommandInput, ListInvestigationsCommandOutput } from "../commands/ListInvestigationsCommand";
|
|
17
20
|
import { ListInvitationsCommandInput, ListInvitationsCommandOutput } from "../commands/ListInvitationsCommand";
|
|
18
21
|
import { ListMembersCommandInput, ListMembersCommandOutput } from "../commands/ListMembersCommand";
|
|
19
22
|
import { ListOrganizationAdminAccountsCommandInput, ListOrganizationAdminAccountsCommandOutput } from "../commands/ListOrganizationAdminAccountsCommand";
|
|
20
23
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
21
24
|
import { RejectInvitationCommandInput, RejectInvitationCommandOutput } from "../commands/RejectInvitationCommand";
|
|
25
|
+
import { StartInvestigationCommandInput, StartInvestigationCommandOutput } from "../commands/StartInvestigationCommand";
|
|
22
26
|
import { StartMonitoringMemberCommandInput, StartMonitoringMemberCommandOutput } from "../commands/StartMonitoringMemberCommand";
|
|
23
27
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
24
28
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
25
29
|
import { UpdateDatasourcePackagesCommandInput, UpdateDatasourcePackagesCommandOutput } from "../commands/UpdateDatasourcePackagesCommand";
|
|
30
|
+
import { UpdateInvestigationStateCommandInput, UpdateInvestigationStateCommandOutput } from "../commands/UpdateInvestigationStateCommand";
|
|
26
31
|
import { UpdateOrganizationConfigurationCommandInput, UpdateOrganizationConfigurationCommandOutput } from "../commands/UpdateOrganizationConfigurationCommand";
|
|
27
32
|
/**
|
|
28
33
|
* serializeAws_restJson1AcceptInvitationCommand
|
|
@@ -68,6 +73,10 @@ export declare const se_DisassociateMembershipCommand: (input: DisassociateMembe
|
|
|
68
73
|
* serializeAws_restJson1EnableOrganizationAdminAccountCommand
|
|
69
74
|
*/
|
|
70
75
|
export declare const se_EnableOrganizationAdminAccountCommand: (input: EnableOrganizationAdminAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
|
+
/**
|
|
77
|
+
* serializeAws_restJson1GetInvestigationCommand
|
|
78
|
+
*/
|
|
79
|
+
export declare const se_GetInvestigationCommand: (input: GetInvestigationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
80
|
/**
|
|
72
81
|
* serializeAws_restJson1GetMembersCommand
|
|
73
82
|
*/
|
|
@@ -80,6 +89,14 @@ export declare const se_ListDatasourcePackagesCommand: (input: ListDatasourcePac
|
|
|
80
89
|
* serializeAws_restJson1ListGraphsCommand
|
|
81
90
|
*/
|
|
82
91
|
export declare const se_ListGraphsCommand: (input: ListGraphsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
92
|
+
/**
|
|
93
|
+
* serializeAws_restJson1ListIndicatorsCommand
|
|
94
|
+
*/
|
|
95
|
+
export declare const se_ListIndicatorsCommand: (input: ListIndicatorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
96
|
+
/**
|
|
97
|
+
* serializeAws_restJson1ListInvestigationsCommand
|
|
98
|
+
*/
|
|
99
|
+
export declare const se_ListInvestigationsCommand: (input: ListInvestigationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
100
|
/**
|
|
84
101
|
* serializeAws_restJson1ListInvitationsCommand
|
|
85
102
|
*/
|
|
@@ -100,6 +117,10 @@ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceC
|
|
|
100
117
|
* serializeAws_restJson1RejectInvitationCommand
|
|
101
118
|
*/
|
|
102
119
|
export declare const se_RejectInvitationCommand: (input: RejectInvitationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
120
|
+
/**
|
|
121
|
+
* serializeAws_restJson1StartInvestigationCommand
|
|
122
|
+
*/
|
|
123
|
+
export declare const se_StartInvestigationCommand: (input: StartInvestigationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
103
124
|
/**
|
|
104
125
|
* serializeAws_restJson1StartMonitoringMemberCommand
|
|
105
126
|
*/
|
|
@@ -116,6 +137,10 @@ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput,
|
|
|
116
137
|
* serializeAws_restJson1UpdateDatasourcePackagesCommand
|
|
117
138
|
*/
|
|
118
139
|
export declare const se_UpdateDatasourcePackagesCommand: (input: UpdateDatasourcePackagesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
140
|
+
/**
|
|
141
|
+
* serializeAws_restJson1UpdateInvestigationStateCommand
|
|
142
|
+
*/
|
|
143
|
+
export declare const se_UpdateInvestigationStateCommand: (input: UpdateInvestigationStateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
119
144
|
/**
|
|
120
145
|
* serializeAws_restJson1UpdateOrganizationConfigurationCommand
|
|
121
146
|
*/
|
|
@@ -164,6 +189,10 @@ export declare const de_DisassociateMembershipCommand: (output: __HttpResponse,
|
|
|
164
189
|
* deserializeAws_restJson1EnableOrganizationAdminAccountCommand
|
|
165
190
|
*/
|
|
166
191
|
export declare const de_EnableOrganizationAdminAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableOrganizationAdminAccountCommandOutput>;
|
|
192
|
+
/**
|
|
193
|
+
* deserializeAws_restJson1GetInvestigationCommand
|
|
194
|
+
*/
|
|
195
|
+
export declare const de_GetInvestigationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetInvestigationCommandOutput>;
|
|
167
196
|
/**
|
|
168
197
|
* deserializeAws_restJson1GetMembersCommand
|
|
169
198
|
*/
|
|
@@ -176,6 +205,14 @@ export declare const de_ListDatasourcePackagesCommand: (output: __HttpResponse,
|
|
|
176
205
|
* deserializeAws_restJson1ListGraphsCommand
|
|
177
206
|
*/
|
|
178
207
|
export declare const de_ListGraphsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGraphsCommandOutput>;
|
|
208
|
+
/**
|
|
209
|
+
* deserializeAws_restJson1ListIndicatorsCommand
|
|
210
|
+
*/
|
|
211
|
+
export declare const de_ListIndicatorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIndicatorsCommandOutput>;
|
|
212
|
+
/**
|
|
213
|
+
* deserializeAws_restJson1ListInvestigationsCommand
|
|
214
|
+
*/
|
|
215
|
+
export declare const de_ListInvestigationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInvestigationsCommandOutput>;
|
|
179
216
|
/**
|
|
180
217
|
* deserializeAws_restJson1ListInvitationsCommand
|
|
181
218
|
*/
|
|
@@ -196,6 +233,10 @@ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, con
|
|
|
196
233
|
* deserializeAws_restJson1RejectInvitationCommand
|
|
197
234
|
*/
|
|
198
235
|
export declare const de_RejectInvitationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RejectInvitationCommandOutput>;
|
|
236
|
+
/**
|
|
237
|
+
* deserializeAws_restJson1StartInvestigationCommand
|
|
238
|
+
*/
|
|
239
|
+
export declare const de_StartInvestigationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartInvestigationCommandOutput>;
|
|
199
240
|
/**
|
|
200
241
|
* deserializeAws_restJson1StartMonitoringMemberCommand
|
|
201
242
|
*/
|
|
@@ -212,6 +253,10 @@ export declare const de_UntagResourceCommand: (output: __HttpResponse, context:
|
|
|
212
253
|
* deserializeAws_restJson1UpdateDatasourcePackagesCommand
|
|
213
254
|
*/
|
|
214
255
|
export declare const de_UpdateDatasourcePackagesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDatasourcePackagesCommandOutput>;
|
|
256
|
+
/**
|
|
257
|
+
* deserializeAws_restJson1UpdateInvestigationStateCommand
|
|
258
|
+
*/
|
|
259
|
+
export declare const de_UpdateInvestigationStateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateInvestigationStateCommandOutput>;
|
|
215
260
|
/**
|
|
216
261
|
* deserializeAws_restJson1UpdateOrganizationConfigurationCommand
|
|
217
262
|
*/
|
|
@@ -43,6 +43,10 @@ import {
|
|
|
43
43
|
EnableOrganizationAdminAccountCommandInput,
|
|
44
44
|
EnableOrganizationAdminAccountCommandOutput,
|
|
45
45
|
} from "./commands/EnableOrganizationAdminAccountCommand";
|
|
46
|
+
import {
|
|
47
|
+
GetInvestigationCommandInput,
|
|
48
|
+
GetInvestigationCommandOutput,
|
|
49
|
+
} from "./commands/GetInvestigationCommand";
|
|
46
50
|
import {
|
|
47
51
|
GetMembersCommandInput,
|
|
48
52
|
GetMembersCommandOutput,
|
|
@@ -55,6 +59,14 @@ import {
|
|
|
55
59
|
ListGraphsCommandInput,
|
|
56
60
|
ListGraphsCommandOutput,
|
|
57
61
|
} from "./commands/ListGraphsCommand";
|
|
62
|
+
import {
|
|
63
|
+
ListIndicatorsCommandInput,
|
|
64
|
+
ListIndicatorsCommandOutput,
|
|
65
|
+
} from "./commands/ListIndicatorsCommand";
|
|
66
|
+
import {
|
|
67
|
+
ListInvestigationsCommandInput,
|
|
68
|
+
ListInvestigationsCommandOutput,
|
|
69
|
+
} from "./commands/ListInvestigationsCommand";
|
|
58
70
|
import {
|
|
59
71
|
ListInvitationsCommandInput,
|
|
60
72
|
ListInvitationsCommandOutput,
|
|
@@ -75,6 +87,10 @@ import {
|
|
|
75
87
|
RejectInvitationCommandInput,
|
|
76
88
|
RejectInvitationCommandOutput,
|
|
77
89
|
} from "./commands/RejectInvitationCommand";
|
|
90
|
+
import {
|
|
91
|
+
StartInvestigationCommandInput,
|
|
92
|
+
StartInvestigationCommandOutput,
|
|
93
|
+
} from "./commands/StartInvestigationCommand";
|
|
78
94
|
import {
|
|
79
95
|
StartMonitoringMemberCommandInput,
|
|
80
96
|
StartMonitoringMemberCommandOutput,
|
|
@@ -91,6 +107,10 @@ import {
|
|
|
91
107
|
UpdateDatasourcePackagesCommandInput,
|
|
92
108
|
UpdateDatasourcePackagesCommandOutput,
|
|
93
109
|
} from "./commands/UpdateDatasourcePackagesCommand";
|
|
110
|
+
import {
|
|
111
|
+
UpdateInvestigationStateCommandInput,
|
|
112
|
+
UpdateInvestigationStateCommandOutput,
|
|
113
|
+
} from "./commands/UpdateInvestigationStateCommand";
|
|
94
114
|
import {
|
|
95
115
|
UpdateOrganizationConfigurationCommandInput,
|
|
96
116
|
UpdateOrganizationConfigurationCommandOutput,
|
|
@@ -246,6 +266,19 @@ export interface Detective {
|
|
|
246
266
|
options: __HttpHandlerOptions,
|
|
247
267
|
cb: (err: any, data?: EnableOrganizationAdminAccountCommandOutput) => void
|
|
248
268
|
): void;
|
|
269
|
+
getInvestigation(
|
|
270
|
+
args: GetInvestigationCommandInput,
|
|
271
|
+
options?: __HttpHandlerOptions
|
|
272
|
+
): Promise<GetInvestigationCommandOutput>;
|
|
273
|
+
getInvestigation(
|
|
274
|
+
args: GetInvestigationCommandInput,
|
|
275
|
+
cb: (err: any, data?: GetInvestigationCommandOutput) => void
|
|
276
|
+
): void;
|
|
277
|
+
getInvestigation(
|
|
278
|
+
args: GetInvestigationCommandInput,
|
|
279
|
+
options: __HttpHandlerOptions,
|
|
280
|
+
cb: (err: any, data?: GetInvestigationCommandOutput) => void
|
|
281
|
+
): void;
|
|
249
282
|
getMembers(
|
|
250
283
|
args: GetMembersCommandInput,
|
|
251
284
|
options?: __HttpHandlerOptions
|
|
@@ -285,6 +318,32 @@ export interface Detective {
|
|
|
285
318
|
options: __HttpHandlerOptions,
|
|
286
319
|
cb: (err: any, data?: ListGraphsCommandOutput) => void
|
|
287
320
|
): void;
|
|
321
|
+
listIndicators(
|
|
322
|
+
args: ListIndicatorsCommandInput,
|
|
323
|
+
options?: __HttpHandlerOptions
|
|
324
|
+
): Promise<ListIndicatorsCommandOutput>;
|
|
325
|
+
listIndicators(
|
|
326
|
+
args: ListIndicatorsCommandInput,
|
|
327
|
+
cb: (err: any, data?: ListIndicatorsCommandOutput) => void
|
|
328
|
+
): void;
|
|
329
|
+
listIndicators(
|
|
330
|
+
args: ListIndicatorsCommandInput,
|
|
331
|
+
options: __HttpHandlerOptions,
|
|
332
|
+
cb: (err: any, data?: ListIndicatorsCommandOutput) => void
|
|
333
|
+
): void;
|
|
334
|
+
listInvestigations(
|
|
335
|
+
args: ListInvestigationsCommandInput,
|
|
336
|
+
options?: __HttpHandlerOptions
|
|
337
|
+
): Promise<ListInvestigationsCommandOutput>;
|
|
338
|
+
listInvestigations(
|
|
339
|
+
args: ListInvestigationsCommandInput,
|
|
340
|
+
cb: (err: any, data?: ListInvestigationsCommandOutput) => void
|
|
341
|
+
): void;
|
|
342
|
+
listInvestigations(
|
|
343
|
+
args: ListInvestigationsCommandInput,
|
|
344
|
+
options: __HttpHandlerOptions,
|
|
345
|
+
cb: (err: any, data?: ListInvestigationsCommandOutput) => void
|
|
346
|
+
): void;
|
|
288
347
|
listInvitations(
|
|
289
348
|
args: ListInvitationsCommandInput,
|
|
290
349
|
options?: __HttpHandlerOptions
|
|
@@ -350,6 +409,19 @@ export interface Detective {
|
|
|
350
409
|
options: __HttpHandlerOptions,
|
|
351
410
|
cb: (err: any, data?: RejectInvitationCommandOutput) => void
|
|
352
411
|
): void;
|
|
412
|
+
startInvestigation(
|
|
413
|
+
args: StartInvestigationCommandInput,
|
|
414
|
+
options?: __HttpHandlerOptions
|
|
415
|
+
): Promise<StartInvestigationCommandOutput>;
|
|
416
|
+
startInvestigation(
|
|
417
|
+
args: StartInvestigationCommandInput,
|
|
418
|
+
cb: (err: any, data?: StartInvestigationCommandOutput) => void
|
|
419
|
+
): void;
|
|
420
|
+
startInvestigation(
|
|
421
|
+
args: StartInvestigationCommandInput,
|
|
422
|
+
options: __HttpHandlerOptions,
|
|
423
|
+
cb: (err: any, data?: StartInvestigationCommandOutput) => void
|
|
424
|
+
): void;
|
|
353
425
|
startMonitoringMember(
|
|
354
426
|
args: StartMonitoringMemberCommandInput,
|
|
355
427
|
options?: __HttpHandlerOptions
|
|
@@ -402,6 +474,19 @@ export interface Detective {
|
|
|
402
474
|
options: __HttpHandlerOptions,
|
|
403
475
|
cb: (err: any, data?: UpdateDatasourcePackagesCommandOutput) => void
|
|
404
476
|
): void;
|
|
477
|
+
updateInvestigationState(
|
|
478
|
+
args: UpdateInvestigationStateCommandInput,
|
|
479
|
+
options?: __HttpHandlerOptions
|
|
480
|
+
): Promise<UpdateInvestigationStateCommandOutput>;
|
|
481
|
+
updateInvestigationState(
|
|
482
|
+
args: UpdateInvestigationStateCommandInput,
|
|
483
|
+
cb: (err: any, data?: UpdateInvestigationStateCommandOutput) => void
|
|
484
|
+
): void;
|
|
485
|
+
updateInvestigationState(
|
|
486
|
+
args: UpdateInvestigationStateCommandInput,
|
|
487
|
+
options: __HttpHandlerOptions,
|
|
488
|
+
cb: (err: any, data?: UpdateInvestigationStateCommandOutput) => void
|
|
489
|
+
): void;
|
|
405
490
|
updateOrganizationConfiguration(
|
|
406
491
|
args: UpdateOrganizationConfigurationCommandInput,
|
|
407
492
|
options?: __HttpHandlerOptions
|
|
@@ -89,6 +89,10 @@ import {
|
|
|
89
89
|
EnableOrganizationAdminAccountCommandInput,
|
|
90
90
|
EnableOrganizationAdminAccountCommandOutput,
|
|
91
91
|
} from "./commands/EnableOrganizationAdminAccountCommand";
|
|
92
|
+
import {
|
|
93
|
+
GetInvestigationCommandInput,
|
|
94
|
+
GetInvestigationCommandOutput,
|
|
95
|
+
} from "./commands/GetInvestigationCommand";
|
|
92
96
|
import {
|
|
93
97
|
GetMembersCommandInput,
|
|
94
98
|
GetMembersCommandOutput,
|
|
@@ -101,6 +105,14 @@ import {
|
|
|
101
105
|
ListGraphsCommandInput,
|
|
102
106
|
ListGraphsCommandOutput,
|
|
103
107
|
} from "./commands/ListGraphsCommand";
|
|
108
|
+
import {
|
|
109
|
+
ListIndicatorsCommandInput,
|
|
110
|
+
ListIndicatorsCommandOutput,
|
|
111
|
+
} from "./commands/ListIndicatorsCommand";
|
|
112
|
+
import {
|
|
113
|
+
ListInvestigationsCommandInput,
|
|
114
|
+
ListInvestigationsCommandOutput,
|
|
115
|
+
} from "./commands/ListInvestigationsCommand";
|
|
104
116
|
import {
|
|
105
117
|
ListInvitationsCommandInput,
|
|
106
118
|
ListInvitationsCommandOutput,
|
|
@@ -121,6 +133,10 @@ import {
|
|
|
121
133
|
RejectInvitationCommandInput,
|
|
122
134
|
RejectInvitationCommandOutput,
|
|
123
135
|
} from "./commands/RejectInvitationCommand";
|
|
136
|
+
import {
|
|
137
|
+
StartInvestigationCommandInput,
|
|
138
|
+
StartInvestigationCommandOutput,
|
|
139
|
+
} from "./commands/StartInvestigationCommand";
|
|
124
140
|
import {
|
|
125
141
|
StartMonitoringMemberCommandInput,
|
|
126
142
|
StartMonitoringMemberCommandOutput,
|
|
@@ -137,6 +153,10 @@ import {
|
|
|
137
153
|
UpdateDatasourcePackagesCommandInput,
|
|
138
154
|
UpdateDatasourcePackagesCommandOutput,
|
|
139
155
|
} from "./commands/UpdateDatasourcePackagesCommand";
|
|
156
|
+
import {
|
|
157
|
+
UpdateInvestigationStateCommandInput,
|
|
158
|
+
UpdateInvestigationStateCommandOutput,
|
|
159
|
+
} from "./commands/UpdateInvestigationStateCommand";
|
|
140
160
|
import {
|
|
141
161
|
UpdateOrganizationConfigurationCommandInput,
|
|
142
162
|
UpdateOrganizationConfigurationCommandOutput,
|
|
@@ -160,18 +180,23 @@ export type ServiceInputTypes =
|
|
|
160
180
|
| DisableOrganizationAdminAccountCommandInput
|
|
161
181
|
| DisassociateMembershipCommandInput
|
|
162
182
|
| EnableOrganizationAdminAccountCommandInput
|
|
183
|
+
| GetInvestigationCommandInput
|
|
163
184
|
| GetMembersCommandInput
|
|
164
185
|
| ListDatasourcePackagesCommandInput
|
|
165
186
|
| ListGraphsCommandInput
|
|
187
|
+
| ListIndicatorsCommandInput
|
|
188
|
+
| ListInvestigationsCommandInput
|
|
166
189
|
| ListInvitationsCommandInput
|
|
167
190
|
| ListMembersCommandInput
|
|
168
191
|
| ListOrganizationAdminAccountsCommandInput
|
|
169
192
|
| ListTagsForResourceCommandInput
|
|
170
193
|
| RejectInvitationCommandInput
|
|
194
|
+
| StartInvestigationCommandInput
|
|
171
195
|
| StartMonitoringMemberCommandInput
|
|
172
196
|
| TagResourceCommandInput
|
|
173
197
|
| UntagResourceCommandInput
|
|
174
198
|
| UpdateDatasourcePackagesCommandInput
|
|
199
|
+
| UpdateInvestigationStateCommandInput
|
|
175
200
|
| UpdateOrganizationConfigurationCommandInput;
|
|
176
201
|
export type ServiceOutputTypes =
|
|
177
202
|
| AcceptInvitationCommandOutput
|
|
@@ -185,18 +210,23 @@ export type ServiceOutputTypes =
|
|
|
185
210
|
| DisableOrganizationAdminAccountCommandOutput
|
|
186
211
|
| DisassociateMembershipCommandOutput
|
|
187
212
|
| EnableOrganizationAdminAccountCommandOutput
|
|
213
|
+
| GetInvestigationCommandOutput
|
|
188
214
|
| GetMembersCommandOutput
|
|
189
215
|
| ListDatasourcePackagesCommandOutput
|
|
190
216
|
| ListGraphsCommandOutput
|
|
217
|
+
| ListIndicatorsCommandOutput
|
|
218
|
+
| ListInvestigationsCommandOutput
|
|
191
219
|
| ListInvitationsCommandOutput
|
|
192
220
|
| ListMembersCommandOutput
|
|
193
221
|
| ListOrganizationAdminAccountsCommandOutput
|
|
194
222
|
| ListTagsForResourceCommandOutput
|
|
195
223
|
| RejectInvitationCommandOutput
|
|
224
|
+
| StartInvestigationCommandOutput
|
|
196
225
|
| StartMonitoringMemberCommandOutput
|
|
197
226
|
| TagResourceCommandOutput
|
|
198
227
|
| UntagResourceCommandOutput
|
|
199
228
|
| UpdateDatasourcePackagesCommandOutput
|
|
229
|
+
| UpdateInvestigationStateCommandOutput
|
|
200
230
|
| UpdateOrganizationConfigurationCommandOutput;
|
|
201
231
|
export interface ClientDefaults
|
|
202
232
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
DetectiveClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DetectiveClient";
|
|
14
|
+
import {
|
|
15
|
+
GetInvestigationRequest,
|
|
16
|
+
GetInvestigationResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetInvestigationCommandInput extends GetInvestigationRequest {}
|
|
20
|
+
export interface GetInvestigationCommandOutput
|
|
21
|
+
extends GetInvestigationResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class GetInvestigationCommand extends $Command<
|
|
24
|
+
GetInvestigationCommandInput,
|
|
25
|
+
GetInvestigationCommandOutput,
|
|
26
|
+
DetectiveClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetInvestigationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GetInvestigationCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DetectiveClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetInvestigationCommandInput, GetInvestigationCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
DetectiveClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DetectiveClient";
|
|
14
|
+
import {
|
|
15
|
+
ListIndicatorsRequest,
|
|
16
|
+
ListIndicatorsResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListIndicatorsCommandInput extends ListIndicatorsRequest {}
|
|
20
|
+
export interface ListIndicatorsCommandOutput
|
|
21
|
+
extends ListIndicatorsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListIndicatorsCommand extends $Command<
|
|
24
|
+
ListIndicatorsCommandInput,
|
|
25
|
+
ListIndicatorsCommandOutput,
|
|
26
|
+
DetectiveClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListIndicatorsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListIndicatorsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DetectiveClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListIndicatorsCommandInput, ListIndicatorsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
DetectiveClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DetectiveClient";
|
|
14
|
+
import {
|
|
15
|
+
ListInvestigationsRequest,
|
|
16
|
+
ListInvestigationsResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListInvestigationsCommandInput
|
|
20
|
+
extends ListInvestigationsRequest {}
|
|
21
|
+
export interface ListInvestigationsCommandOutput
|
|
22
|
+
extends ListInvestigationsResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListInvestigationsCommand extends $Command<
|
|
25
|
+
ListInvestigationsCommandInput,
|
|
26
|
+
ListInvestigationsCommandOutput,
|
|
27
|
+
DetectiveClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListInvestigationsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListInvestigationsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: DetectiveClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<ListInvestigationsCommandInput, ListInvestigationsCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
DetectiveClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DetectiveClient";
|
|
14
|
+
import {
|
|
15
|
+
StartInvestigationRequest,
|
|
16
|
+
StartInvestigationResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface StartInvestigationCommandInput
|
|
20
|
+
extends StartInvestigationRequest {}
|
|
21
|
+
export interface StartInvestigationCommandOutput
|
|
22
|
+
extends StartInvestigationResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class StartInvestigationCommand extends $Command<
|
|
25
|
+
StartInvestigationCommandInput,
|
|
26
|
+
StartInvestigationCommandOutput,
|
|
27
|
+
DetectiveClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: StartInvestigationCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: StartInvestigationCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: DetectiveClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<StartInvestigationCommandInput, StartInvestigationCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
DetectiveClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DetectiveClient";
|
|
14
|
+
import { UpdateInvestigationStateRequest } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface UpdateInvestigationStateCommandInput
|
|
17
|
+
extends UpdateInvestigationStateRequest {}
|
|
18
|
+
export interface UpdateInvestigationStateCommandOutput
|
|
19
|
+
extends __MetadataBearer {}
|
|
20
|
+
export declare class UpdateInvestigationStateCommand extends $Command<
|
|
21
|
+
UpdateInvestigationStateCommandInput,
|
|
22
|
+
UpdateInvestigationStateCommandOutput,
|
|
23
|
+
DetectiveClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: UpdateInvestigationStateCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: UpdateInvestigationStateCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: DetectiveClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<
|
|
33
|
+
UpdateInvestigationStateCommandInput,
|
|
34
|
+
UpdateInvestigationStateCommandOutput
|
|
35
|
+
>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -9,16 +9,21 @@ export * from "./DescribeOrganizationConfigurationCommand";
|
|
|
9
9
|
export * from "./DisableOrganizationAdminAccountCommand";
|
|
10
10
|
export * from "./DisassociateMembershipCommand";
|
|
11
11
|
export * from "./EnableOrganizationAdminAccountCommand";
|
|
12
|
+
export * from "./GetInvestigationCommand";
|
|
12
13
|
export * from "./GetMembersCommand";
|
|
13
14
|
export * from "./ListDatasourcePackagesCommand";
|
|
14
15
|
export * from "./ListGraphsCommand";
|
|
16
|
+
export * from "./ListIndicatorsCommand";
|
|
17
|
+
export * from "./ListInvestigationsCommand";
|
|
15
18
|
export * from "./ListInvitationsCommand";
|
|
16
19
|
export * from "./ListMembersCommand";
|
|
17
20
|
export * from "./ListOrganizationAdminAccountsCommand";
|
|
18
21
|
export * from "./ListTagsForResourceCommand";
|
|
19
22
|
export * from "./RejectInvitationCommand";
|
|
23
|
+
export * from "./StartInvestigationCommand";
|
|
20
24
|
export * from "./StartMonitoringMemberCommand";
|
|
21
25
|
export * from "./TagResourceCommand";
|
|
22
26
|
export * from "./UntagResourceCommand";
|
|
23
27
|
export * from "./UpdateDatasourcePackagesCommand";
|
|
28
|
+
export * from "./UpdateInvestigationStateCommand";
|
|
24
29
|
export * from "./UpdateOrganizationConfigurationCommand";
|