@aws-sdk/client-detective 3.1087.0 → 3.1088.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.
Files changed (50) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/Detective.d.ts +98 -122
  3. package/dist-types/ts3.4/DetectiveClient.d.ts +11 -38
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
  5. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
  6. package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
  7. package/dist-types/ts3.4/commands/AcceptInvitationCommand.d.ts +2 -2
  8. package/dist-types/ts3.4/commands/BatchGetGraphMemberDatasourcesCommand.d.ts +4 -6
  9. package/dist-types/ts3.4/commands/BatchGetMembershipDatasourcesCommand.d.ts +4 -6
  10. package/dist-types/ts3.4/commands/CreateGraphCommand.d.ts +2 -4
  11. package/dist-types/ts3.4/commands/CreateMembersCommand.d.ts +4 -9
  12. package/dist-types/ts3.4/commands/DeleteGraphCommand.d.ts +2 -2
  13. package/dist-types/ts3.4/commands/DeleteMembersCommand.d.ts +4 -9
  14. package/dist-types/ts3.4/commands/DescribeOrganizationConfigurationCommand.d.ts +4 -6
  15. package/dist-types/ts3.4/commands/DisableOrganizationAdminAccountCommand.d.ts +2 -3
  16. package/dist-types/ts3.4/commands/DisassociateMembershipCommand.d.ts +3 -4
  17. package/dist-types/ts3.4/commands/EnableOrganizationAdminAccountCommand.d.ts +4 -6
  18. package/dist-types/ts3.4/commands/GetInvestigationCommand.d.ts +4 -9
  19. package/dist-types/ts3.4/commands/GetMembersCommand.d.ts +3 -5
  20. package/dist-types/ts3.4/commands/ListDatasourcePackagesCommand.d.ts +5 -10
  21. package/dist-types/ts3.4/commands/ListGraphsCommand.d.ts +2 -4
  22. package/dist-types/ts3.4/commands/ListIndicatorsCommand.d.ts +4 -9
  23. package/dist-types/ts3.4/commands/ListInvestigationsCommand.d.ts +5 -10
  24. package/dist-types/ts3.4/commands/ListInvitationsCommand.d.ts +3 -8
  25. package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +3 -5
  26. package/dist-types/ts3.4/commands/ListOrganizationAdminAccountsCommand.d.ts +3 -5
  27. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
  28. package/dist-types/ts3.4/commands/RejectInvitationCommand.d.ts +2 -2
  29. package/dist-types/ts3.4/commands/StartInvestigationCommand.d.ts +5 -10
  30. package/dist-types/ts3.4/commands/StartMonitoringMemberCommand.d.ts +3 -4
  31. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
  32. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
  33. package/dist-types/ts3.4/commands/UpdateDatasourcePackagesCommand.d.ts +4 -6
  34. package/dist-types/ts3.4/commands/UpdateInvestigationStateCommand.d.ts +4 -6
  35. package/dist-types/ts3.4/commands/UpdateOrganizationConfigurationCommand.d.ts +4 -6
  36. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  37. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  38. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  39. package/dist-types/ts3.4/models/enums.d.ts +3 -6
  40. package/dist-types/ts3.4/models/errors.d.ts +6 -18
  41. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  42. package/dist-types/ts3.4/pagination/ListGraphsPaginator.d.ts +1 -4
  43. package/dist-types/ts3.4/pagination/ListMembersPaginator.d.ts +1 -4
  44. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  45. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  46. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  47. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  48. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  49. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
  50. package/package.json +38 -38
package/dist-cjs/index.js CHANGED
@@ -69,7 +69,7 @@ const commonParams = {
69
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
70
70
  };
71
71
 
72
- var version = "3.1086.0";
72
+ var version = "3.1087.0";
73
73
  var packageInfo = {
74
74
  version: version};
75
75
 
@@ -15,18 +15,12 @@ import {
15
15
  BatchGetMembershipDatasourcesCommandInput,
16
16
  BatchGetMembershipDatasourcesCommandOutput,
17
17
  } from "./commands/BatchGetMembershipDatasourcesCommand";
18
- import {
19
- CreateGraphCommandInput,
20
- CreateGraphCommandOutput,
21
- } from "./commands/CreateGraphCommand";
18
+ import { CreateGraphCommandInput, CreateGraphCommandOutput } from "./commands/CreateGraphCommand";
22
19
  import {
23
20
  CreateMembersCommandInput,
24
21
  CreateMembersCommandOutput,
25
22
  } from "./commands/CreateMembersCommand";
26
- import {
27
- DeleteGraphCommandInput,
28
- DeleteGraphCommandOutput,
29
- } from "./commands/DeleteGraphCommand";
23
+ import { DeleteGraphCommandInput, DeleteGraphCommandOutput } from "./commands/DeleteGraphCommand";
30
24
  import {
31
25
  DeleteMembersCommandInput,
32
26
  DeleteMembersCommandOutput,
@@ -51,18 +45,12 @@ import {
51
45
  GetInvestigationCommandInput,
52
46
  GetInvestigationCommandOutput,
53
47
  } from "./commands/GetInvestigationCommand";
54
- import {
55
- GetMembersCommandInput,
56
- GetMembersCommandOutput,
57
- } from "./commands/GetMembersCommand";
48
+ import { GetMembersCommandInput, GetMembersCommandOutput } from "./commands/GetMembersCommand";
58
49
  import {
59
50
  ListDatasourcePackagesCommandInput,
60
51
  ListDatasourcePackagesCommandOutput,
61
52
  } from "./commands/ListDatasourcePackagesCommand";
62
- import {
63
- ListGraphsCommandInput,
64
- ListGraphsCommandOutput,
65
- } from "./commands/ListGraphsCommand";
53
+ import { ListGraphsCommandInput, ListGraphsCommandOutput } from "./commands/ListGraphsCommand";
66
54
  import {
67
55
  ListIndicatorsCommandInput,
68
56
  ListIndicatorsCommandOutput,
@@ -75,10 +63,7 @@ import {
75
63
  ListInvitationsCommandInput,
76
64
  ListInvitationsCommandOutput,
77
65
  } from "./commands/ListInvitationsCommand";
78
- import {
79
- ListMembersCommandInput,
80
- ListMembersCommandOutput,
81
- } from "./commands/ListMembersCommand";
66
+ import { ListMembersCommandInput, ListMembersCommandOutput } from "./commands/ListMembersCommand";
82
67
  import {
83
68
  ListOrganizationAdminAccountsCommandInput,
84
69
  ListOrganizationAdminAccountsCommandOutput,
@@ -99,10 +84,7 @@ import {
99
84
  StartMonitoringMemberCommandInput,
100
85
  StartMonitoringMemberCommandOutput,
101
86
  } from "./commands/StartMonitoringMemberCommand";
102
- import {
103
- TagResourceCommandInput,
104
- TagResourceCommandOutput,
105
- } from "./commands/TagResourceCommand";
87
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
106
88
  import {
107
89
  UntagResourceCommandInput,
108
90
  UntagResourceCommandOutput,
@@ -123,426 +105,420 @@ import { DetectiveClient } from "./DetectiveClient";
123
105
  export interface Detective {
124
106
  acceptInvitation(
125
107
  args: AcceptInvitationCommandInput,
126
- options?: __HttpHandlerOptions
108
+ options?: __HttpHandlerOptions,
127
109
  ): Promise<AcceptInvitationCommandOutput>;
128
110
  acceptInvitation(
129
111
  args: AcceptInvitationCommandInput,
130
- cb: (err: any, data?: AcceptInvitationCommandOutput) => void
112
+ cb: (err: any, data?: AcceptInvitationCommandOutput) => void,
131
113
  ): void;
132
114
  acceptInvitation(
133
115
  args: AcceptInvitationCommandInput,
134
116
  options: __HttpHandlerOptions,
135
- cb: (err: any, data?: AcceptInvitationCommandOutput) => void
117
+ cb: (err: any, data?: AcceptInvitationCommandOutput) => void,
136
118
  ): void;
137
119
  batchGetGraphMemberDatasources(
138
120
  args: BatchGetGraphMemberDatasourcesCommandInput,
139
- options?: __HttpHandlerOptions
121
+ options?: __HttpHandlerOptions,
140
122
  ): Promise<BatchGetGraphMemberDatasourcesCommandOutput>;
141
123
  batchGetGraphMemberDatasources(
142
124
  args: BatchGetGraphMemberDatasourcesCommandInput,
143
- cb: (err: any, data?: BatchGetGraphMemberDatasourcesCommandOutput) => void
125
+ cb: (err: any, data?: BatchGetGraphMemberDatasourcesCommandOutput) => void,
144
126
  ): void;
145
127
  batchGetGraphMemberDatasources(
146
128
  args: BatchGetGraphMemberDatasourcesCommandInput,
147
129
  options: __HttpHandlerOptions,
148
- cb: (err: any, data?: BatchGetGraphMemberDatasourcesCommandOutput) => void
130
+ cb: (err: any, data?: BatchGetGraphMemberDatasourcesCommandOutput) => void,
149
131
  ): void;
150
132
  batchGetMembershipDatasources(
151
133
  args: BatchGetMembershipDatasourcesCommandInput,
152
- options?: __HttpHandlerOptions
134
+ options?: __HttpHandlerOptions,
153
135
  ): Promise<BatchGetMembershipDatasourcesCommandOutput>;
154
136
  batchGetMembershipDatasources(
155
137
  args: BatchGetMembershipDatasourcesCommandInput,
156
- cb: (err: any, data?: BatchGetMembershipDatasourcesCommandOutput) => void
138
+ cb: (err: any, data?: BatchGetMembershipDatasourcesCommandOutput) => void,
157
139
  ): void;
158
140
  batchGetMembershipDatasources(
159
141
  args: BatchGetMembershipDatasourcesCommandInput,
160
142
  options: __HttpHandlerOptions,
161
- cb: (err: any, data?: BatchGetMembershipDatasourcesCommandOutput) => void
143
+ cb: (err: any, data?: BatchGetMembershipDatasourcesCommandOutput) => void,
162
144
  ): void;
163
145
  createGraph(): Promise<CreateGraphCommandOutput>;
164
146
  createGraph(
165
147
  args: CreateGraphCommandInput,
166
- options?: __HttpHandlerOptions
148
+ options?: __HttpHandlerOptions,
167
149
  ): Promise<CreateGraphCommandOutput>;
168
150
  createGraph(
169
151
  args: CreateGraphCommandInput,
170
- cb: (err: any, data?: CreateGraphCommandOutput) => void
152
+ cb: (err: any, data?: CreateGraphCommandOutput) => void,
171
153
  ): void;
172
154
  createGraph(
173
155
  args: CreateGraphCommandInput,
174
156
  options: __HttpHandlerOptions,
175
- cb: (err: any, data?: CreateGraphCommandOutput) => void
157
+ cb: (err: any, data?: CreateGraphCommandOutput) => void,
176
158
  ): void;
177
159
  createMembers(
178
160
  args: CreateMembersCommandInput,
179
- options?: __HttpHandlerOptions
161
+ options?: __HttpHandlerOptions,
180
162
  ): Promise<CreateMembersCommandOutput>;
181
163
  createMembers(
182
164
  args: CreateMembersCommandInput,
183
- cb: (err: any, data?: CreateMembersCommandOutput) => void
165
+ cb: (err: any, data?: CreateMembersCommandOutput) => void,
184
166
  ): void;
185
167
  createMembers(
186
168
  args: CreateMembersCommandInput,
187
169
  options: __HttpHandlerOptions,
188
- cb: (err: any, data?: CreateMembersCommandOutput) => void
170
+ cb: (err: any, data?: CreateMembersCommandOutput) => void,
189
171
  ): void;
190
172
  deleteGraph(
191
173
  args: DeleteGraphCommandInput,
192
- options?: __HttpHandlerOptions
174
+ options?: __HttpHandlerOptions,
193
175
  ): Promise<DeleteGraphCommandOutput>;
194
176
  deleteGraph(
195
177
  args: DeleteGraphCommandInput,
196
- cb: (err: any, data?: DeleteGraphCommandOutput) => void
178
+ cb: (err: any, data?: DeleteGraphCommandOutput) => void,
197
179
  ): void;
198
180
  deleteGraph(
199
181
  args: DeleteGraphCommandInput,
200
182
  options: __HttpHandlerOptions,
201
- cb: (err: any, data?: DeleteGraphCommandOutput) => void
183
+ cb: (err: any, data?: DeleteGraphCommandOutput) => void,
202
184
  ): void;
203
185
  deleteMembers(
204
186
  args: DeleteMembersCommandInput,
205
- options?: __HttpHandlerOptions
187
+ options?: __HttpHandlerOptions,
206
188
  ): Promise<DeleteMembersCommandOutput>;
207
189
  deleteMembers(
208
190
  args: DeleteMembersCommandInput,
209
- cb: (err: any, data?: DeleteMembersCommandOutput) => void
191
+ cb: (err: any, data?: DeleteMembersCommandOutput) => void,
210
192
  ): void;
211
193
  deleteMembers(
212
194
  args: DeleteMembersCommandInput,
213
195
  options: __HttpHandlerOptions,
214
- cb: (err: any, data?: DeleteMembersCommandOutput) => void
196
+ cb: (err: any, data?: DeleteMembersCommandOutput) => void,
215
197
  ): void;
216
198
  describeOrganizationConfiguration(
217
199
  args: DescribeOrganizationConfigurationCommandInput,
218
- options?: __HttpHandlerOptions
200
+ options?: __HttpHandlerOptions,
219
201
  ): Promise<DescribeOrganizationConfigurationCommandOutput>;
220
202
  describeOrganizationConfiguration(
221
203
  args: DescribeOrganizationConfigurationCommandInput,
222
- cb: (
223
- err: any,
224
- data?: DescribeOrganizationConfigurationCommandOutput
225
- ) => void
204
+ cb: (err: any, data?: DescribeOrganizationConfigurationCommandOutput) => void,
226
205
  ): void;
227
206
  describeOrganizationConfiguration(
228
207
  args: DescribeOrganizationConfigurationCommandInput,
229
208
  options: __HttpHandlerOptions,
230
- cb: (
231
- err: any,
232
- data?: DescribeOrganizationConfigurationCommandOutput
233
- ) => void
209
+ cb: (err: any, data?: DescribeOrganizationConfigurationCommandOutput) => void,
234
210
  ): void;
235
211
  disableOrganizationAdminAccount(): Promise<DisableOrganizationAdminAccountCommandOutput>;
236
212
  disableOrganizationAdminAccount(
237
213
  args: DisableOrganizationAdminAccountCommandInput,
238
- options?: __HttpHandlerOptions
214
+ options?: __HttpHandlerOptions,
239
215
  ): Promise<DisableOrganizationAdminAccountCommandOutput>;
240
216
  disableOrganizationAdminAccount(
241
217
  args: DisableOrganizationAdminAccountCommandInput,
242
- cb: (err: any, data?: DisableOrganizationAdminAccountCommandOutput) => void
218
+ cb: (err: any, data?: DisableOrganizationAdminAccountCommandOutput) => void,
243
219
  ): void;
244
220
  disableOrganizationAdminAccount(
245
221
  args: DisableOrganizationAdminAccountCommandInput,
246
222
  options: __HttpHandlerOptions,
247
- cb: (err: any, data?: DisableOrganizationAdminAccountCommandOutput) => void
223
+ cb: (err: any, data?: DisableOrganizationAdminAccountCommandOutput) => void,
248
224
  ): void;
249
225
  disassociateMembership(
250
226
  args: DisassociateMembershipCommandInput,
251
- options?: __HttpHandlerOptions
227
+ options?: __HttpHandlerOptions,
252
228
  ): Promise<DisassociateMembershipCommandOutput>;
253
229
  disassociateMembership(
254
230
  args: DisassociateMembershipCommandInput,
255
- cb: (err: any, data?: DisassociateMembershipCommandOutput) => void
231
+ cb: (err: any, data?: DisassociateMembershipCommandOutput) => void,
256
232
  ): void;
257
233
  disassociateMembership(
258
234
  args: DisassociateMembershipCommandInput,
259
235
  options: __HttpHandlerOptions,
260
- cb: (err: any, data?: DisassociateMembershipCommandOutput) => void
236
+ cb: (err: any, data?: DisassociateMembershipCommandOutput) => void,
261
237
  ): void;
262
238
  enableOrganizationAdminAccount(
263
239
  args: EnableOrganizationAdminAccountCommandInput,
264
- options?: __HttpHandlerOptions
240
+ options?: __HttpHandlerOptions,
265
241
  ): Promise<EnableOrganizationAdminAccountCommandOutput>;
266
242
  enableOrganizationAdminAccount(
267
243
  args: EnableOrganizationAdminAccountCommandInput,
268
- cb: (err: any, data?: EnableOrganizationAdminAccountCommandOutput) => void
244
+ cb: (err: any, data?: EnableOrganizationAdminAccountCommandOutput) => void,
269
245
  ): void;
270
246
  enableOrganizationAdminAccount(
271
247
  args: EnableOrganizationAdminAccountCommandInput,
272
248
  options: __HttpHandlerOptions,
273
- cb: (err: any, data?: EnableOrganizationAdminAccountCommandOutput) => void
249
+ cb: (err: any, data?: EnableOrganizationAdminAccountCommandOutput) => void,
274
250
  ): void;
275
251
  getInvestigation(
276
252
  args: GetInvestigationCommandInput,
277
- options?: __HttpHandlerOptions
253
+ options?: __HttpHandlerOptions,
278
254
  ): Promise<GetInvestigationCommandOutput>;
279
255
  getInvestigation(
280
256
  args: GetInvestigationCommandInput,
281
- cb: (err: any, data?: GetInvestigationCommandOutput) => void
257
+ cb: (err: any, data?: GetInvestigationCommandOutput) => void,
282
258
  ): void;
283
259
  getInvestigation(
284
260
  args: GetInvestigationCommandInput,
285
261
  options: __HttpHandlerOptions,
286
- cb: (err: any, data?: GetInvestigationCommandOutput) => void
262
+ cb: (err: any, data?: GetInvestigationCommandOutput) => void,
287
263
  ): void;
288
264
  getMembers(
289
265
  args: GetMembersCommandInput,
290
- options?: __HttpHandlerOptions
266
+ options?: __HttpHandlerOptions,
291
267
  ): Promise<GetMembersCommandOutput>;
292
268
  getMembers(
293
269
  args: GetMembersCommandInput,
294
- cb: (err: any, data?: GetMembersCommandOutput) => void
270
+ cb: (err: any, data?: GetMembersCommandOutput) => void,
295
271
  ): void;
296
272
  getMembers(
297
273
  args: GetMembersCommandInput,
298
274
  options: __HttpHandlerOptions,
299
- cb: (err: any, data?: GetMembersCommandOutput) => void
275
+ cb: (err: any, data?: GetMembersCommandOutput) => void,
300
276
  ): void;
301
277
  listDatasourcePackages(
302
278
  args: ListDatasourcePackagesCommandInput,
303
- options?: __HttpHandlerOptions
279
+ options?: __HttpHandlerOptions,
304
280
  ): Promise<ListDatasourcePackagesCommandOutput>;
305
281
  listDatasourcePackages(
306
282
  args: ListDatasourcePackagesCommandInput,
307
- cb: (err: any, data?: ListDatasourcePackagesCommandOutput) => void
283
+ cb: (err: any, data?: ListDatasourcePackagesCommandOutput) => void,
308
284
  ): void;
309
285
  listDatasourcePackages(
310
286
  args: ListDatasourcePackagesCommandInput,
311
287
  options: __HttpHandlerOptions,
312
- cb: (err: any, data?: ListDatasourcePackagesCommandOutput) => void
288
+ cb: (err: any, data?: ListDatasourcePackagesCommandOutput) => void,
313
289
  ): void;
314
290
  listGraphs(): Promise<ListGraphsCommandOutput>;
315
291
  listGraphs(
316
292
  args: ListGraphsCommandInput,
317
- options?: __HttpHandlerOptions
293
+ options?: __HttpHandlerOptions,
318
294
  ): Promise<ListGraphsCommandOutput>;
319
295
  listGraphs(
320
296
  args: ListGraphsCommandInput,
321
- cb: (err: any, data?: ListGraphsCommandOutput) => void
297
+ cb: (err: any, data?: ListGraphsCommandOutput) => void,
322
298
  ): void;
323
299
  listGraphs(
324
300
  args: ListGraphsCommandInput,
325
301
  options: __HttpHandlerOptions,
326
- cb: (err: any, data?: ListGraphsCommandOutput) => void
302
+ cb: (err: any, data?: ListGraphsCommandOutput) => void,
327
303
  ): void;
328
304
  listIndicators(
329
305
  args: ListIndicatorsCommandInput,
330
- options?: __HttpHandlerOptions
306
+ options?: __HttpHandlerOptions,
331
307
  ): Promise<ListIndicatorsCommandOutput>;
332
308
  listIndicators(
333
309
  args: ListIndicatorsCommandInput,
334
- cb: (err: any, data?: ListIndicatorsCommandOutput) => void
310
+ cb: (err: any, data?: ListIndicatorsCommandOutput) => void,
335
311
  ): void;
336
312
  listIndicators(
337
313
  args: ListIndicatorsCommandInput,
338
314
  options: __HttpHandlerOptions,
339
- cb: (err: any, data?: ListIndicatorsCommandOutput) => void
315
+ cb: (err: any, data?: ListIndicatorsCommandOutput) => void,
340
316
  ): void;
341
317
  listInvestigations(
342
318
  args: ListInvestigationsCommandInput,
343
- options?: __HttpHandlerOptions
319
+ options?: __HttpHandlerOptions,
344
320
  ): Promise<ListInvestigationsCommandOutput>;
345
321
  listInvestigations(
346
322
  args: ListInvestigationsCommandInput,
347
- cb: (err: any, data?: ListInvestigationsCommandOutput) => void
323
+ cb: (err: any, data?: ListInvestigationsCommandOutput) => void,
348
324
  ): void;
349
325
  listInvestigations(
350
326
  args: ListInvestigationsCommandInput,
351
327
  options: __HttpHandlerOptions,
352
- cb: (err: any, data?: ListInvestigationsCommandOutput) => void
328
+ cb: (err: any, data?: ListInvestigationsCommandOutput) => void,
353
329
  ): void;
354
330
  listInvitations(): Promise<ListInvitationsCommandOutput>;
355
331
  listInvitations(
356
332
  args: ListInvitationsCommandInput,
357
- options?: __HttpHandlerOptions
333
+ options?: __HttpHandlerOptions,
358
334
  ): Promise<ListInvitationsCommandOutput>;
359
335
  listInvitations(
360
336
  args: ListInvitationsCommandInput,
361
- cb: (err: any, data?: ListInvitationsCommandOutput) => void
337
+ cb: (err: any, data?: ListInvitationsCommandOutput) => void,
362
338
  ): void;
363
339
  listInvitations(
364
340
  args: ListInvitationsCommandInput,
365
341
  options: __HttpHandlerOptions,
366
- cb: (err: any, data?: ListInvitationsCommandOutput) => void
342
+ cb: (err: any, data?: ListInvitationsCommandOutput) => void,
367
343
  ): void;
368
344
  listMembers(
369
345
  args: ListMembersCommandInput,
370
- options?: __HttpHandlerOptions
346
+ options?: __HttpHandlerOptions,
371
347
  ): Promise<ListMembersCommandOutput>;
372
348
  listMembers(
373
349
  args: ListMembersCommandInput,
374
- cb: (err: any, data?: ListMembersCommandOutput) => void
350
+ cb: (err: any, data?: ListMembersCommandOutput) => void,
375
351
  ): void;
376
352
  listMembers(
377
353
  args: ListMembersCommandInput,
378
354
  options: __HttpHandlerOptions,
379
- cb: (err: any, data?: ListMembersCommandOutput) => void
355
+ cb: (err: any, data?: ListMembersCommandOutput) => void,
380
356
  ): void;
381
357
  listOrganizationAdminAccounts(): Promise<ListOrganizationAdminAccountsCommandOutput>;
382
358
  listOrganizationAdminAccounts(
383
359
  args: ListOrganizationAdminAccountsCommandInput,
384
- options?: __HttpHandlerOptions
360
+ options?: __HttpHandlerOptions,
385
361
  ): Promise<ListOrganizationAdminAccountsCommandOutput>;
386
362
  listOrganizationAdminAccounts(
387
363
  args: ListOrganizationAdminAccountsCommandInput,
388
- cb: (err: any, data?: ListOrganizationAdminAccountsCommandOutput) => void
364
+ cb: (err: any, data?: ListOrganizationAdminAccountsCommandOutput) => void,
389
365
  ): void;
390
366
  listOrganizationAdminAccounts(
391
367
  args: ListOrganizationAdminAccountsCommandInput,
392
368
  options: __HttpHandlerOptions,
393
- cb: (err: any, data?: ListOrganizationAdminAccountsCommandOutput) => void
369
+ cb: (err: any, data?: ListOrganizationAdminAccountsCommandOutput) => void,
394
370
  ): void;
395
371
  listTagsForResource(
396
372
  args: ListTagsForResourceCommandInput,
397
- options?: __HttpHandlerOptions
373
+ options?: __HttpHandlerOptions,
398
374
  ): Promise<ListTagsForResourceCommandOutput>;
399
375
  listTagsForResource(
400
376
  args: ListTagsForResourceCommandInput,
401
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
377
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
402
378
  ): void;
403
379
  listTagsForResource(
404
380
  args: ListTagsForResourceCommandInput,
405
381
  options: __HttpHandlerOptions,
406
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
382
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
407
383
  ): void;
408
384
  rejectInvitation(
409
385
  args: RejectInvitationCommandInput,
410
- options?: __HttpHandlerOptions
386
+ options?: __HttpHandlerOptions,
411
387
  ): Promise<RejectInvitationCommandOutput>;
412
388
  rejectInvitation(
413
389
  args: RejectInvitationCommandInput,
414
- cb: (err: any, data?: RejectInvitationCommandOutput) => void
390
+ cb: (err: any, data?: RejectInvitationCommandOutput) => void,
415
391
  ): void;
416
392
  rejectInvitation(
417
393
  args: RejectInvitationCommandInput,
418
394
  options: __HttpHandlerOptions,
419
- cb: (err: any, data?: RejectInvitationCommandOutput) => void
395
+ cb: (err: any, data?: RejectInvitationCommandOutput) => void,
420
396
  ): void;
421
397
  startInvestigation(
422
398
  args: StartInvestigationCommandInput,
423
- options?: __HttpHandlerOptions
399
+ options?: __HttpHandlerOptions,
424
400
  ): Promise<StartInvestigationCommandOutput>;
425
401
  startInvestigation(
426
402
  args: StartInvestigationCommandInput,
427
- cb: (err: any, data?: StartInvestigationCommandOutput) => void
403
+ cb: (err: any, data?: StartInvestigationCommandOutput) => void,
428
404
  ): void;
429
405
  startInvestigation(
430
406
  args: StartInvestigationCommandInput,
431
407
  options: __HttpHandlerOptions,
432
- cb: (err: any, data?: StartInvestigationCommandOutput) => void
408
+ cb: (err: any, data?: StartInvestigationCommandOutput) => void,
433
409
  ): void;
434
410
  startMonitoringMember(
435
411
  args: StartMonitoringMemberCommandInput,
436
- options?: __HttpHandlerOptions
412
+ options?: __HttpHandlerOptions,
437
413
  ): Promise<StartMonitoringMemberCommandOutput>;
438
414
  startMonitoringMember(
439
415
  args: StartMonitoringMemberCommandInput,
440
- cb: (err: any, data?: StartMonitoringMemberCommandOutput) => void
416
+ cb: (err: any, data?: StartMonitoringMemberCommandOutput) => void,
441
417
  ): void;
442
418
  startMonitoringMember(
443
419
  args: StartMonitoringMemberCommandInput,
444
420
  options: __HttpHandlerOptions,
445
- cb: (err: any, data?: StartMonitoringMemberCommandOutput) => void
421
+ cb: (err: any, data?: StartMonitoringMemberCommandOutput) => void,
446
422
  ): void;
447
423
  tagResource(
448
424
  args: TagResourceCommandInput,
449
- options?: __HttpHandlerOptions
425
+ options?: __HttpHandlerOptions,
450
426
  ): Promise<TagResourceCommandOutput>;
451
427
  tagResource(
452
428
  args: TagResourceCommandInput,
453
- cb: (err: any, data?: TagResourceCommandOutput) => void
429
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
454
430
  ): void;
455
431
  tagResource(
456
432
  args: TagResourceCommandInput,
457
433
  options: __HttpHandlerOptions,
458
- cb: (err: any, data?: TagResourceCommandOutput) => void
434
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
459
435
  ): void;
460
436
  untagResource(
461
437
  args: UntagResourceCommandInput,
462
- options?: __HttpHandlerOptions
438
+ options?: __HttpHandlerOptions,
463
439
  ): Promise<UntagResourceCommandOutput>;
464
440
  untagResource(
465
441
  args: UntagResourceCommandInput,
466
- cb: (err: any, data?: UntagResourceCommandOutput) => void
442
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
467
443
  ): void;
468
444
  untagResource(
469
445
  args: UntagResourceCommandInput,
470
446
  options: __HttpHandlerOptions,
471
- cb: (err: any, data?: UntagResourceCommandOutput) => void
447
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
472
448
  ): void;
473
449
  updateDatasourcePackages(
474
450
  args: UpdateDatasourcePackagesCommandInput,
475
- options?: __HttpHandlerOptions
451
+ options?: __HttpHandlerOptions,
476
452
  ): Promise<UpdateDatasourcePackagesCommandOutput>;
477
453
  updateDatasourcePackages(
478
454
  args: UpdateDatasourcePackagesCommandInput,
479
- cb: (err: any, data?: UpdateDatasourcePackagesCommandOutput) => void
455
+ cb: (err: any, data?: UpdateDatasourcePackagesCommandOutput) => void,
480
456
  ): void;
481
457
  updateDatasourcePackages(
482
458
  args: UpdateDatasourcePackagesCommandInput,
483
459
  options: __HttpHandlerOptions,
484
- cb: (err: any, data?: UpdateDatasourcePackagesCommandOutput) => void
460
+ cb: (err: any, data?: UpdateDatasourcePackagesCommandOutput) => void,
485
461
  ): void;
486
462
  updateInvestigationState(
487
463
  args: UpdateInvestigationStateCommandInput,
488
- options?: __HttpHandlerOptions
464
+ options?: __HttpHandlerOptions,
489
465
  ): Promise<UpdateInvestigationStateCommandOutput>;
490
466
  updateInvestigationState(
491
467
  args: UpdateInvestigationStateCommandInput,
492
- cb: (err: any, data?: UpdateInvestigationStateCommandOutput) => void
468
+ cb: (err: any, data?: UpdateInvestigationStateCommandOutput) => void,
493
469
  ): void;
494
470
  updateInvestigationState(
495
471
  args: UpdateInvestigationStateCommandInput,
496
472
  options: __HttpHandlerOptions,
497
- cb: (err: any, data?: UpdateInvestigationStateCommandOutput) => void
473
+ cb: (err: any, data?: UpdateInvestigationStateCommandOutput) => void,
498
474
  ): void;
499
475
  updateOrganizationConfiguration(
500
476
  args: UpdateOrganizationConfigurationCommandInput,
501
- options?: __HttpHandlerOptions
477
+ options?: __HttpHandlerOptions,
502
478
  ): Promise<UpdateOrganizationConfigurationCommandOutput>;
503
479
  updateOrganizationConfiguration(
504
480
  args: UpdateOrganizationConfigurationCommandInput,
505
- cb: (err: any, data?: UpdateOrganizationConfigurationCommandOutput) => void
481
+ cb: (err: any, data?: UpdateOrganizationConfigurationCommandOutput) => void,
506
482
  ): void;
507
483
  updateOrganizationConfiguration(
508
484
  args: UpdateOrganizationConfigurationCommandInput,
509
485
  options: __HttpHandlerOptions,
510
- cb: (err: any, data?: UpdateOrganizationConfigurationCommandOutput) => void
486
+ cb: (err: any, data?: UpdateOrganizationConfigurationCommandOutput) => void,
511
487
  ): void;
512
488
  paginateListDatasourcePackages(
513
489
  args: ListDatasourcePackagesCommandInput,
514
490
  paginationConfig?: Pick<
515
491
  PaginationConfiguration,
516
492
  Exclude<keyof PaginationConfiguration, "client">
517
- >
493
+ >,
518
494
  ): Paginator<ListDatasourcePackagesCommandOutput>;
519
495
  paginateListGraphs(
520
496
  args?: ListGraphsCommandInput,
521
497
  paginationConfig?: Pick<
522
498
  PaginationConfiguration,
523
499
  Exclude<keyof PaginationConfiguration, "client">
524
- >
500
+ >,
525
501
  ): Paginator<ListGraphsCommandOutput>;
526
502
  paginateListInvitations(
527
503
  args?: ListInvitationsCommandInput,
528
504
  paginationConfig?: Pick<
529
505
  PaginationConfiguration,
530
506
  Exclude<keyof PaginationConfiguration, "client">
531
- >
507
+ >,
532
508
  ): Paginator<ListInvitationsCommandOutput>;
533
509
  paginateListMembers(
534
510
  args: ListMembersCommandInput,
535
511
  paginationConfig?: Pick<
536
512
  PaginationConfiguration,
537
513
  Exclude<keyof PaginationConfiguration, "client">
538
- >
514
+ >,
539
515
  ): Paginator<ListMembersCommandOutput>;
540
516
  paginateListOrganizationAdminAccounts(
541
517
  args?: ListOrganizationAdminAccountsCommandInput,
542
518
  paginationConfig?: Pick<
543
519
  PaginationConfiguration,
544
520
  Exclude<keyof PaginationConfiguration, "client">
545
- >
521
+ >,
546
522
  ): Paginator<ListOrganizationAdminAccountsCommandOutput>;
547
523
  }
548
524
  export declare class Detective extends DetectiveClient implements Detective {}