@aws-sdk/client-detective 3.169.0 → 3.170.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 (46) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/Detective.d.ts +442 -125
  3. package/dist-types/ts3.4/DetectiveClient.d.ts +273 -97
  4. package/dist-types/ts3.4/commands/AcceptInvitationCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/BatchGetGraphMemberDatasourcesCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/BatchGetMembershipDatasourcesCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/CreateGraphCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/CreateMembersCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/DeleteGraphCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DeleteMembersCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/DescribeOrganizationConfigurationCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/DisableOrganizationAdminAccountCommand.d.ts +35 -16
  13. package/dist-types/ts3.4/commands/DisassociateMembershipCommand.d.ts +36 -17
  14. package/dist-types/ts3.4/commands/EnableOrganizationAdminAccountCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/GetMembersCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/ListDatasourcePackagesCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/ListGraphsCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/ListInvitationsCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +34 -17
  20. package/dist-types/ts3.4/commands/ListOrganizationAdminAccountsCommand.d.ts +41 -17
  21. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  22. package/dist-types/ts3.4/commands/RejectInvitationCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/StartMonitoringMemberCommand.d.ts +36 -17
  24. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  26. package/dist-types/ts3.4/commands/UpdateDatasourcePackagesCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/UpdateOrganizationConfigurationCommand.d.ts +37 -17
  28. package/dist-types/ts3.4/commands/index.d.ts +24 -24
  29. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  30. package/dist-types/ts3.4/index.d.ts +6 -6
  31. package/dist-types/ts3.4/models/DetectiveServiceException.d.ts +8 -6
  32. package/dist-types/ts3.4/models/index.d.ts +1 -1
  33. package/dist-types/ts3.4/models/models_0.d.ts +543 -485
  34. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  35. package/dist-types/ts3.4/pagination/ListDatasourcePackagesPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/ListGraphsPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/ListInvitationsPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/ListMembersPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/ListOrganizationAdminAccountsPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/index.d.ts +6 -6
  41. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +293 -74
  42. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  43. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  44. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  45. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  46. package/package.json +34 -34
@@ -1,485 +1,543 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { DetectiveServiceException as __BaseException } from "./DetectiveServiceException";
3
- export interface AcceptInvitationRequest {
4
-
5
- GraphArn: string | undefined;
6
- }
7
-
8
- export declare class ConflictException extends __BaseException {
9
- readonly name: "ConflictException";
10
- readonly $fault: "client";
11
- Message?: string;
12
-
13
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
14
- }
15
-
16
- export declare class InternalServerException extends __BaseException {
17
- readonly name: "InternalServerException";
18
- readonly $fault: "server";
19
- Message?: string;
20
-
21
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
22
- }
23
-
24
- export declare class ResourceNotFoundException extends __BaseException {
25
- readonly name: "ResourceNotFoundException";
26
- readonly $fault: "client";
27
- Message?: string;
28
-
29
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
30
- }
31
- export declare enum ErrorCode {
32
- InternalError = "INTERNAL_ERROR",
33
- InvalidGraphArn = "INVALID_GRAPH_ARN",
34
- InvalidRequestBody = "INVALID_REQUEST_BODY"
35
- }
36
-
37
- export declare class ValidationException extends __BaseException {
38
- readonly name: "ValidationException";
39
- readonly $fault: "client";
40
- Message?: string;
41
-
42
- ErrorCode?: ErrorCode | string;
43
-
44
- ErrorCodeReason?: string;
45
-
46
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
47
- }
48
-
49
- export interface Account {
50
-
51
- AccountId: string | undefined;
52
-
53
- EmailAddress: string | undefined;
54
- }
55
-
56
- export interface Administrator {
57
-
58
- AccountId?: string;
59
-
60
- GraphArn?: string;
61
-
62
- DelegationTime?: Date;
63
- }
64
- export interface BatchGetGraphMemberDatasourcesRequest {
65
-
66
- GraphArn: string | undefined;
67
-
68
- AccountIds: string[] | undefined;
69
- }
70
- export declare enum DatasourcePackage {
71
- DETECTIVE_CORE = "DETECTIVE_CORE",
72
- EKS_AUDIT = "EKS_AUDIT"
73
- }
74
- export declare enum DatasourcePackageIngestState {
75
- DISABLED = "DISABLED",
76
- STARTED = "STARTED",
77
- STOPPED = "STOPPED"
78
- }
79
-
80
- export interface TimestampForCollection {
81
-
82
- Timestamp?: Date;
83
- }
84
-
85
- export interface MembershipDatasources {
86
-
87
- AccountId?: string;
88
-
89
- GraphArn?: string;
90
-
91
- DatasourcePackageIngestHistory?: Record<string, Record<string, TimestampForCollection>>;
92
- }
93
-
94
- export interface UnprocessedAccount {
95
-
96
- AccountId?: string;
97
-
98
- Reason?: string;
99
- }
100
- export interface BatchGetGraphMemberDatasourcesResponse {
101
-
102
- MemberDatasources?: MembershipDatasources[];
103
-
104
- UnprocessedAccounts?: UnprocessedAccount[];
105
- }
106
- export interface BatchGetMembershipDatasourcesRequest {
107
-
108
- GraphArns: string[] | undefined;
109
- }
110
-
111
- export interface UnprocessedGraph {
112
-
113
- GraphArn?: string;
114
-
115
- Reason?: string;
116
- }
117
- export interface BatchGetMembershipDatasourcesResponse {
118
-
119
- MembershipDatasources?: MembershipDatasources[];
120
-
121
- UnprocessedGraphs?: UnprocessedGraph[];
122
- }
123
- export interface CreateGraphRequest {
124
-
125
- Tags?: Record<string, string>;
126
- }
127
- export interface CreateGraphResponse {
128
-
129
- GraphArn?: string;
130
- }
131
-
132
- export declare class ServiceQuotaExceededException extends __BaseException {
133
- readonly name: "ServiceQuotaExceededException";
134
- readonly $fault: "client";
135
- Message?: string;
136
-
137
- Resources?: string[];
138
-
139
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
140
- }
141
- export interface CreateMembersRequest {
142
-
143
- GraphArn: string | undefined;
144
-
145
- Message?: string;
146
-
147
- DisableEmailNotification?: boolean;
148
-
149
- Accounts: Account[] | undefined;
150
- }
151
- export declare enum MemberDisabledReason {
152
- VOLUME_TOO_HIGH = "VOLUME_TOO_HIGH",
153
- VOLUME_UNKNOWN = "VOLUME_UNKNOWN"
154
- }
155
- export declare enum InvitationType {
156
- INVITATION = "INVITATION",
157
- ORGANIZATION = "ORGANIZATION"
158
- }
159
- export declare enum MemberStatus {
160
- ACCEPTED_BUT_DISABLED = "ACCEPTED_BUT_DISABLED",
161
- ENABLED = "ENABLED",
162
- INVITED = "INVITED",
163
- VERIFICATION_FAILED = "VERIFICATION_FAILED",
164
- VERIFICATION_IN_PROGRESS = "VERIFICATION_IN_PROGRESS"
165
- }
166
-
167
- export interface DatasourcePackageUsageInfo {
168
-
169
- VolumeUsageInBytes?: number;
170
-
171
- VolumeUsageUpdateTime?: Date;
172
- }
173
-
174
- export interface MemberDetail {
175
-
176
- AccountId?: string;
177
-
178
- EmailAddress?: string;
179
-
180
- GraphArn?: string;
181
-
182
- MasterId?: string;
183
-
184
- AdministratorId?: string;
185
-
186
- Status?: MemberStatus | string;
187
-
188
- DisabledReason?: MemberDisabledReason | string;
189
-
190
- InvitedTime?: Date;
191
-
192
- UpdatedTime?: Date;
193
-
194
- VolumeUsageInBytes?: number;
195
-
196
- VolumeUsageUpdatedTime?: Date;
197
-
198
- PercentOfGraphUtilization?: number;
199
-
200
- PercentOfGraphUtilizationUpdatedTime?: Date;
201
-
202
- InvitationType?: InvitationType | string;
203
-
204
- VolumeUsageByDatasourcePackage?: Record<string, DatasourcePackageUsageInfo>;
205
-
206
- DatasourcePackageIngestStates?: Record<string, DatasourcePackageIngestState | string>;
207
- }
208
- export interface CreateMembersResponse {
209
-
210
- Members?: MemberDetail[];
211
-
212
- UnprocessedAccounts?: UnprocessedAccount[];
213
- }
214
- export interface DeleteGraphRequest {
215
-
216
- GraphArn: string | undefined;
217
- }
218
- export interface DeleteMembersRequest {
219
-
220
- GraphArn: string | undefined;
221
-
222
- AccountIds: string[] | undefined;
223
- }
224
- export interface DeleteMembersResponse {
225
-
226
- AccountIds?: string[];
227
-
228
- UnprocessedAccounts?: UnprocessedAccount[];
229
- }
230
- export interface DescribeOrganizationConfigurationRequest {
231
-
232
- GraphArn: string | undefined;
233
- }
234
- export interface DescribeOrganizationConfigurationResponse {
235
-
236
- AutoEnable?: boolean;
237
- }
238
-
239
- export declare class TooManyRequestsException extends __BaseException {
240
- readonly name: "TooManyRequestsException";
241
- readonly $fault: "client";
242
- Message?: string;
243
-
244
- constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
245
- }
246
- export interface DisassociateMembershipRequest {
247
-
248
- GraphArn: string | undefined;
249
- }
250
- export interface EnableOrganizationAdminAccountRequest {
251
-
252
- AccountId: string | undefined;
253
- }
254
- export interface GetMembersRequest {
255
-
256
- GraphArn: string | undefined;
257
-
258
- AccountIds: string[] | undefined;
259
- }
260
- export interface GetMembersResponse {
261
-
262
- MemberDetails?: MemberDetail[];
263
-
264
- UnprocessedAccounts?: UnprocessedAccount[];
265
- }
266
- export interface ListDatasourcePackagesRequest {
267
-
268
- GraphArn: string | undefined;
269
-
270
- NextToken?: string;
271
-
272
- MaxResults?: number;
273
- }
274
-
275
- export interface DatasourcePackageIngestDetail {
276
-
277
- DatasourcePackageIngestState?: DatasourcePackageIngestState | string;
278
-
279
- LastIngestStateChange?: Record<string, TimestampForCollection>;
280
- }
281
- export interface ListDatasourcePackagesResponse {
282
-
283
- DatasourcePackages?: Record<string, DatasourcePackageIngestDetail>;
284
-
285
- NextToken?: string;
286
- }
287
- export interface ListGraphsRequest {
288
-
289
- NextToken?: string;
290
-
291
- MaxResults?: number;
292
- }
293
-
294
- export interface Graph {
295
-
296
- Arn?: string;
297
-
298
- CreatedTime?: Date;
299
- }
300
- export interface ListGraphsResponse {
301
-
302
- GraphList?: Graph[];
303
-
304
- NextToken?: string;
305
- }
306
- export interface ListInvitationsRequest {
307
-
308
- NextToken?: string;
309
-
310
- MaxResults?: number;
311
- }
312
- export interface ListInvitationsResponse {
313
-
314
- Invitations?: MemberDetail[];
315
-
316
- NextToken?: string;
317
- }
318
- export interface ListMembersRequest {
319
-
320
- GraphArn: string | undefined;
321
-
322
- NextToken?: string;
323
-
324
- MaxResults?: number;
325
- }
326
- export interface ListMembersResponse {
327
-
328
- MemberDetails?: MemberDetail[];
329
-
330
- NextToken?: string;
331
- }
332
- export interface ListOrganizationAdminAccountsRequest {
333
-
334
- NextToken?: string;
335
-
336
- MaxResults?: number;
337
- }
338
- export interface ListOrganizationAdminAccountsResponse {
339
-
340
- Administrators?: Administrator[];
341
-
342
- NextToken?: string;
343
- }
344
- export interface ListTagsForResourceRequest {
345
-
346
- ResourceArn: string | undefined;
347
- }
348
- export interface ListTagsForResourceResponse {
349
-
350
- Tags?: Record<string, string>;
351
- }
352
- export interface RejectInvitationRequest {
353
-
354
- GraphArn: string | undefined;
355
- }
356
- export interface StartMonitoringMemberRequest {
357
-
358
- GraphArn: string | undefined;
359
-
360
- AccountId: string | undefined;
361
- }
362
- export interface TagResourceRequest {
363
-
364
- ResourceArn: string | undefined;
365
-
366
- Tags: Record<string, string> | undefined;
367
- }
368
- export interface TagResourceResponse {
369
- }
370
- export interface UntagResourceRequest {
371
-
372
- ResourceArn: string | undefined;
373
-
374
- TagKeys: string[] | undefined;
375
- }
376
- export interface UntagResourceResponse {
377
- }
378
- export interface UpdateDatasourcePackagesRequest {
379
-
380
- GraphArn: string | undefined;
381
-
382
- DatasourcePackages: (DatasourcePackage | string)[] | undefined;
383
- }
384
- export interface UpdateOrganizationConfigurationRequest {
385
-
386
- GraphArn: string | undefined;
387
-
388
- AutoEnable?: boolean;
389
- }
390
-
391
- export declare const AcceptInvitationRequestFilterSensitiveLog: (obj: AcceptInvitationRequest) => any;
392
-
393
- export declare const AccountFilterSensitiveLog: (obj: Account) => any;
394
-
395
- export declare const AdministratorFilterSensitiveLog: (obj: Administrator) => any;
396
-
397
- export declare const BatchGetGraphMemberDatasourcesRequestFilterSensitiveLog: (obj: BatchGetGraphMemberDatasourcesRequest) => any;
398
-
399
- export declare const TimestampForCollectionFilterSensitiveLog: (obj: TimestampForCollection) => any;
400
-
401
- export declare const MembershipDatasourcesFilterSensitiveLog: (obj: MembershipDatasources) => any;
402
-
403
- export declare const UnprocessedAccountFilterSensitiveLog: (obj: UnprocessedAccount) => any;
404
-
405
- export declare const BatchGetGraphMemberDatasourcesResponseFilterSensitiveLog: (obj: BatchGetGraphMemberDatasourcesResponse) => any;
406
-
407
- export declare const BatchGetMembershipDatasourcesRequestFilterSensitiveLog: (obj: BatchGetMembershipDatasourcesRequest) => any;
408
-
409
- export declare const UnprocessedGraphFilterSensitiveLog: (obj: UnprocessedGraph) => any;
410
-
411
- export declare const BatchGetMembershipDatasourcesResponseFilterSensitiveLog: (obj: BatchGetMembershipDatasourcesResponse) => any;
412
-
413
- export declare const CreateGraphRequestFilterSensitiveLog: (obj: CreateGraphRequest) => any;
414
-
415
- export declare const CreateGraphResponseFilterSensitiveLog: (obj: CreateGraphResponse) => any;
416
-
417
- export declare const CreateMembersRequestFilterSensitiveLog: (obj: CreateMembersRequest) => any;
418
-
419
- export declare const DatasourcePackageUsageInfoFilterSensitiveLog: (obj: DatasourcePackageUsageInfo) => any;
420
-
421
- export declare const MemberDetailFilterSensitiveLog: (obj: MemberDetail) => any;
422
-
423
- export declare const CreateMembersResponseFilterSensitiveLog: (obj: CreateMembersResponse) => any;
424
-
425
- export declare const DeleteGraphRequestFilterSensitiveLog: (obj: DeleteGraphRequest) => any;
426
-
427
- export declare const DeleteMembersRequestFilterSensitiveLog: (obj: DeleteMembersRequest) => any;
428
-
429
- export declare const DeleteMembersResponseFilterSensitiveLog: (obj: DeleteMembersResponse) => any;
430
-
431
- export declare const DescribeOrganizationConfigurationRequestFilterSensitiveLog: (obj: DescribeOrganizationConfigurationRequest) => any;
432
-
433
- export declare const DescribeOrganizationConfigurationResponseFilterSensitiveLog: (obj: DescribeOrganizationConfigurationResponse) => any;
434
-
435
- export declare const DisassociateMembershipRequestFilterSensitiveLog: (obj: DisassociateMembershipRequest) => any;
436
-
437
- export declare const EnableOrganizationAdminAccountRequestFilterSensitiveLog: (obj: EnableOrganizationAdminAccountRequest) => any;
438
-
439
- export declare const GetMembersRequestFilterSensitiveLog: (obj: GetMembersRequest) => any;
440
-
441
- export declare const GetMembersResponseFilterSensitiveLog: (obj: GetMembersResponse) => any;
442
-
443
- export declare const ListDatasourcePackagesRequestFilterSensitiveLog: (obj: ListDatasourcePackagesRequest) => any;
444
-
445
- export declare const DatasourcePackageIngestDetailFilterSensitiveLog: (obj: DatasourcePackageIngestDetail) => any;
446
-
447
- export declare const ListDatasourcePackagesResponseFilterSensitiveLog: (obj: ListDatasourcePackagesResponse) => any;
448
-
449
- export declare const ListGraphsRequestFilterSensitiveLog: (obj: ListGraphsRequest) => any;
450
-
451
- export declare const GraphFilterSensitiveLog: (obj: Graph) => any;
452
-
453
- export declare const ListGraphsResponseFilterSensitiveLog: (obj: ListGraphsResponse) => any;
454
-
455
- export declare const ListInvitationsRequestFilterSensitiveLog: (obj: ListInvitationsRequest) => any;
456
-
457
- export declare const ListInvitationsResponseFilterSensitiveLog: (obj: ListInvitationsResponse) => any;
458
-
459
- export declare const ListMembersRequestFilterSensitiveLog: (obj: ListMembersRequest) => any;
460
-
461
- export declare const ListMembersResponseFilterSensitiveLog: (obj: ListMembersResponse) => any;
462
-
463
- export declare const ListOrganizationAdminAccountsRequestFilterSensitiveLog: (obj: ListOrganizationAdminAccountsRequest) => any;
464
-
465
- export declare const ListOrganizationAdminAccountsResponseFilterSensitiveLog: (obj: ListOrganizationAdminAccountsResponse) => any;
466
-
467
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
468
-
469
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
470
-
471
- export declare const RejectInvitationRequestFilterSensitiveLog: (obj: RejectInvitationRequest) => any;
472
-
473
- export declare const StartMonitoringMemberRequestFilterSensitiveLog: (obj: StartMonitoringMemberRequest) => any;
474
-
475
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
476
-
477
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
478
-
479
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
480
-
481
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
482
-
483
- export declare const UpdateDatasourcePackagesRequestFilterSensitiveLog: (obj: UpdateDatasourcePackagesRequest) => any;
484
-
485
- export declare const UpdateOrganizationConfigurationRequestFilterSensitiveLog: (obj: UpdateOrganizationConfigurationRequest) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { DetectiveServiceException as __BaseException } from "./DetectiveServiceException";
3
+ export interface AcceptInvitationRequest {
4
+ GraphArn: string | undefined;
5
+ }
6
+
7
+ export declare class ConflictException extends __BaseException {
8
+ readonly name: "ConflictException";
9
+ readonly $fault: "client";
10
+ Message?: string;
11
+
12
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
13
+ }
14
+
15
+ export declare class InternalServerException extends __BaseException {
16
+ readonly name: "InternalServerException";
17
+ readonly $fault: "server";
18
+ Message?: string;
19
+
20
+ constructor(
21
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
22
+ );
23
+ }
24
+
25
+ export declare class ResourceNotFoundException extends __BaseException {
26
+ readonly name: "ResourceNotFoundException";
27
+ readonly $fault: "client";
28
+ Message?: string;
29
+
30
+ constructor(
31
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
32
+ );
33
+ }
34
+ export declare enum ErrorCode {
35
+ InternalError = "INTERNAL_ERROR",
36
+ InvalidGraphArn = "INVALID_GRAPH_ARN",
37
+ InvalidRequestBody = "INVALID_REQUEST_BODY",
38
+ }
39
+
40
+ export declare class ValidationException extends __BaseException {
41
+ readonly name: "ValidationException";
42
+ readonly $fault: "client";
43
+ Message?: string;
44
+
45
+ ErrorCode?: ErrorCode | string;
46
+
47
+ ErrorCodeReason?: string;
48
+
49
+ constructor(
50
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
51
+ );
52
+ }
53
+
54
+ export interface Account {
55
+ AccountId: string | undefined;
56
+
57
+ EmailAddress: string | undefined;
58
+ }
59
+
60
+ export interface Administrator {
61
+ AccountId?: string;
62
+
63
+ GraphArn?: string;
64
+
65
+ DelegationTime?: Date;
66
+ }
67
+ export interface BatchGetGraphMemberDatasourcesRequest {
68
+ GraphArn: string | undefined;
69
+
70
+ AccountIds: string[] | undefined;
71
+ }
72
+ export declare enum DatasourcePackage {
73
+ DETECTIVE_CORE = "DETECTIVE_CORE",
74
+ EKS_AUDIT = "EKS_AUDIT",
75
+ }
76
+ export declare enum DatasourcePackageIngestState {
77
+ DISABLED = "DISABLED",
78
+ STARTED = "STARTED",
79
+ STOPPED = "STOPPED",
80
+ }
81
+
82
+ export interface TimestampForCollection {
83
+ Timestamp?: Date;
84
+ }
85
+
86
+ export interface MembershipDatasources {
87
+ AccountId?: string;
88
+
89
+ GraphArn?: string;
90
+
91
+ DatasourcePackageIngestHistory?: Record<
92
+ string,
93
+ Record<string, TimestampForCollection>
94
+ >;
95
+ }
96
+
97
+ export interface UnprocessedAccount {
98
+ AccountId?: string;
99
+
100
+ Reason?: string;
101
+ }
102
+ export interface BatchGetGraphMemberDatasourcesResponse {
103
+ MemberDatasources?: MembershipDatasources[];
104
+
105
+ UnprocessedAccounts?: UnprocessedAccount[];
106
+ }
107
+ export interface BatchGetMembershipDatasourcesRequest {
108
+ GraphArns: string[] | undefined;
109
+ }
110
+
111
+ export interface UnprocessedGraph {
112
+ GraphArn?: string;
113
+
114
+ Reason?: string;
115
+ }
116
+ export interface BatchGetMembershipDatasourcesResponse {
117
+ MembershipDatasources?: MembershipDatasources[];
118
+
119
+ UnprocessedGraphs?: UnprocessedGraph[];
120
+ }
121
+ export interface CreateGraphRequest {
122
+ Tags?: Record<string, string>;
123
+ }
124
+ export interface CreateGraphResponse {
125
+ GraphArn?: string;
126
+ }
127
+
128
+ export declare class ServiceQuotaExceededException extends __BaseException {
129
+ readonly name: "ServiceQuotaExceededException";
130
+ readonly $fault: "client";
131
+ Message?: string;
132
+
133
+ Resources?: string[];
134
+
135
+ constructor(
136
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
137
+ );
138
+ }
139
+ export interface CreateMembersRequest {
140
+ GraphArn: string | undefined;
141
+
142
+ Message?: string;
143
+
144
+ DisableEmailNotification?: boolean;
145
+
146
+ Accounts: Account[] | undefined;
147
+ }
148
+ export declare enum MemberDisabledReason {
149
+ VOLUME_TOO_HIGH = "VOLUME_TOO_HIGH",
150
+ VOLUME_UNKNOWN = "VOLUME_UNKNOWN",
151
+ }
152
+ export declare enum InvitationType {
153
+ INVITATION = "INVITATION",
154
+ ORGANIZATION = "ORGANIZATION",
155
+ }
156
+ export declare enum MemberStatus {
157
+ ACCEPTED_BUT_DISABLED = "ACCEPTED_BUT_DISABLED",
158
+ ENABLED = "ENABLED",
159
+ INVITED = "INVITED",
160
+ VERIFICATION_FAILED = "VERIFICATION_FAILED",
161
+ VERIFICATION_IN_PROGRESS = "VERIFICATION_IN_PROGRESS",
162
+ }
163
+
164
+ export interface DatasourcePackageUsageInfo {
165
+ VolumeUsageInBytes?: number;
166
+
167
+ VolumeUsageUpdateTime?: Date;
168
+ }
169
+
170
+ export interface MemberDetail {
171
+ AccountId?: string;
172
+
173
+ EmailAddress?: string;
174
+
175
+ GraphArn?: string;
176
+
177
+ MasterId?: string;
178
+
179
+ AdministratorId?: string;
180
+
181
+ Status?: MemberStatus | string;
182
+
183
+ DisabledReason?: MemberDisabledReason | string;
184
+
185
+ InvitedTime?: Date;
186
+
187
+ UpdatedTime?: Date;
188
+
189
+ VolumeUsageInBytes?: number;
190
+
191
+ VolumeUsageUpdatedTime?: Date;
192
+
193
+ PercentOfGraphUtilization?: number;
194
+
195
+ PercentOfGraphUtilizationUpdatedTime?: Date;
196
+
197
+ InvitationType?: InvitationType | string;
198
+
199
+ VolumeUsageByDatasourcePackage?: Record<string, DatasourcePackageUsageInfo>;
200
+
201
+ DatasourcePackageIngestStates?: Record<
202
+ string,
203
+ DatasourcePackageIngestState | string
204
+ >;
205
+ }
206
+ export interface CreateMembersResponse {
207
+ Members?: MemberDetail[];
208
+
209
+ UnprocessedAccounts?: UnprocessedAccount[];
210
+ }
211
+ export interface DeleteGraphRequest {
212
+ GraphArn: string | undefined;
213
+ }
214
+ export interface DeleteMembersRequest {
215
+ GraphArn: string | undefined;
216
+
217
+ AccountIds: string[] | undefined;
218
+ }
219
+ export interface DeleteMembersResponse {
220
+ AccountIds?: string[];
221
+
222
+ UnprocessedAccounts?: UnprocessedAccount[];
223
+ }
224
+ export interface DescribeOrganizationConfigurationRequest {
225
+ GraphArn: string | undefined;
226
+ }
227
+ export interface DescribeOrganizationConfigurationResponse {
228
+ AutoEnable?: boolean;
229
+ }
230
+
231
+ export declare class TooManyRequestsException extends __BaseException {
232
+ readonly name: "TooManyRequestsException";
233
+ readonly $fault: "client";
234
+ Message?: string;
235
+
236
+ constructor(
237
+ opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
238
+ );
239
+ }
240
+ export interface DisassociateMembershipRequest {
241
+ GraphArn: string | undefined;
242
+ }
243
+ export interface EnableOrganizationAdminAccountRequest {
244
+ AccountId: string | undefined;
245
+ }
246
+ export interface GetMembersRequest {
247
+ GraphArn: string | undefined;
248
+
249
+ AccountIds: string[] | undefined;
250
+ }
251
+ export interface GetMembersResponse {
252
+ MemberDetails?: MemberDetail[];
253
+
254
+ UnprocessedAccounts?: UnprocessedAccount[];
255
+ }
256
+ export interface ListDatasourcePackagesRequest {
257
+ GraphArn: string | undefined;
258
+
259
+ NextToken?: string;
260
+
261
+ MaxResults?: number;
262
+ }
263
+
264
+ export interface DatasourcePackageIngestDetail {
265
+ DatasourcePackageIngestState?: DatasourcePackageIngestState | string;
266
+
267
+ LastIngestStateChange?: Record<string, TimestampForCollection>;
268
+ }
269
+ export interface ListDatasourcePackagesResponse {
270
+ DatasourcePackages?: Record<string, DatasourcePackageIngestDetail>;
271
+
272
+ NextToken?: string;
273
+ }
274
+ export interface ListGraphsRequest {
275
+ NextToken?: string;
276
+
277
+ MaxResults?: number;
278
+ }
279
+
280
+ export interface Graph {
281
+ Arn?: string;
282
+
283
+ CreatedTime?: Date;
284
+ }
285
+ export interface ListGraphsResponse {
286
+ GraphList?: Graph[];
287
+
288
+ NextToken?: string;
289
+ }
290
+ export interface ListInvitationsRequest {
291
+ NextToken?: string;
292
+
293
+ MaxResults?: number;
294
+ }
295
+ export interface ListInvitationsResponse {
296
+ Invitations?: MemberDetail[];
297
+
298
+ NextToken?: string;
299
+ }
300
+ export interface ListMembersRequest {
301
+ GraphArn: string | undefined;
302
+
303
+ NextToken?: string;
304
+
305
+ MaxResults?: number;
306
+ }
307
+ export interface ListMembersResponse {
308
+ MemberDetails?: MemberDetail[];
309
+
310
+ NextToken?: string;
311
+ }
312
+ export interface ListOrganizationAdminAccountsRequest {
313
+ NextToken?: string;
314
+
315
+ MaxResults?: number;
316
+ }
317
+ export interface ListOrganizationAdminAccountsResponse {
318
+ Administrators?: Administrator[];
319
+
320
+ NextToken?: string;
321
+ }
322
+ export interface ListTagsForResourceRequest {
323
+ ResourceArn: string | undefined;
324
+ }
325
+ export interface ListTagsForResourceResponse {
326
+ Tags?: Record<string, string>;
327
+ }
328
+ export interface RejectInvitationRequest {
329
+ GraphArn: string | undefined;
330
+ }
331
+ export interface StartMonitoringMemberRequest {
332
+ GraphArn: string | undefined;
333
+
334
+ AccountId: string | undefined;
335
+ }
336
+ export interface TagResourceRequest {
337
+ ResourceArn: string | undefined;
338
+
339
+ Tags: Record<string, string> | undefined;
340
+ }
341
+ export interface TagResourceResponse {}
342
+ export interface UntagResourceRequest {
343
+ ResourceArn: string | undefined;
344
+
345
+ TagKeys: string[] | undefined;
346
+ }
347
+ export interface UntagResourceResponse {}
348
+ export interface UpdateDatasourcePackagesRequest {
349
+ GraphArn: string | undefined;
350
+
351
+ DatasourcePackages: (DatasourcePackage | string)[] | undefined;
352
+ }
353
+ export interface UpdateOrganizationConfigurationRequest {
354
+ GraphArn: string | undefined;
355
+
356
+ AutoEnable?: boolean;
357
+ }
358
+
359
+ export declare const AcceptInvitationRequestFilterSensitiveLog: (
360
+ obj: AcceptInvitationRequest
361
+ ) => any;
362
+
363
+ export declare const AccountFilterSensitiveLog: (obj: Account) => any;
364
+
365
+ export declare const AdministratorFilterSensitiveLog: (
366
+ obj: Administrator
367
+ ) => any;
368
+
369
+ export declare const BatchGetGraphMemberDatasourcesRequestFilterSensitiveLog: (
370
+ obj: BatchGetGraphMemberDatasourcesRequest
371
+ ) => any;
372
+
373
+ export declare const TimestampForCollectionFilterSensitiveLog: (
374
+ obj: TimestampForCollection
375
+ ) => any;
376
+
377
+ export declare const MembershipDatasourcesFilterSensitiveLog: (
378
+ obj: MembershipDatasources
379
+ ) => any;
380
+
381
+ export declare const UnprocessedAccountFilterSensitiveLog: (
382
+ obj: UnprocessedAccount
383
+ ) => any;
384
+
385
+ export declare const BatchGetGraphMemberDatasourcesResponseFilterSensitiveLog: (
386
+ obj: BatchGetGraphMemberDatasourcesResponse
387
+ ) => any;
388
+
389
+ export declare const BatchGetMembershipDatasourcesRequestFilterSensitiveLog: (
390
+ obj: BatchGetMembershipDatasourcesRequest
391
+ ) => any;
392
+
393
+ export declare const UnprocessedGraphFilterSensitiveLog: (
394
+ obj: UnprocessedGraph
395
+ ) => any;
396
+
397
+ export declare const BatchGetMembershipDatasourcesResponseFilterSensitiveLog: (
398
+ obj: BatchGetMembershipDatasourcesResponse
399
+ ) => any;
400
+
401
+ export declare const CreateGraphRequestFilterSensitiveLog: (
402
+ obj: CreateGraphRequest
403
+ ) => any;
404
+
405
+ export declare const CreateGraphResponseFilterSensitiveLog: (
406
+ obj: CreateGraphResponse
407
+ ) => any;
408
+
409
+ export declare const CreateMembersRequestFilterSensitiveLog: (
410
+ obj: CreateMembersRequest
411
+ ) => any;
412
+
413
+ export declare const DatasourcePackageUsageInfoFilterSensitiveLog: (
414
+ obj: DatasourcePackageUsageInfo
415
+ ) => any;
416
+
417
+ export declare const MemberDetailFilterSensitiveLog: (obj: MemberDetail) => any;
418
+
419
+ export declare const CreateMembersResponseFilterSensitiveLog: (
420
+ obj: CreateMembersResponse
421
+ ) => any;
422
+
423
+ export declare const DeleteGraphRequestFilterSensitiveLog: (
424
+ obj: DeleteGraphRequest
425
+ ) => any;
426
+
427
+ export declare const DeleteMembersRequestFilterSensitiveLog: (
428
+ obj: DeleteMembersRequest
429
+ ) => any;
430
+
431
+ export declare const DeleteMembersResponseFilterSensitiveLog: (
432
+ obj: DeleteMembersResponse
433
+ ) => any;
434
+
435
+ export declare const DescribeOrganizationConfigurationRequestFilterSensitiveLog: (
436
+ obj: DescribeOrganizationConfigurationRequest
437
+ ) => any;
438
+
439
+ export declare const DescribeOrganizationConfigurationResponseFilterSensitiveLog: (
440
+ obj: DescribeOrganizationConfigurationResponse
441
+ ) => any;
442
+
443
+ export declare const DisassociateMembershipRequestFilterSensitiveLog: (
444
+ obj: DisassociateMembershipRequest
445
+ ) => any;
446
+
447
+ export declare const EnableOrganizationAdminAccountRequestFilterSensitiveLog: (
448
+ obj: EnableOrganizationAdminAccountRequest
449
+ ) => any;
450
+
451
+ export declare const GetMembersRequestFilterSensitiveLog: (
452
+ obj: GetMembersRequest
453
+ ) => any;
454
+
455
+ export declare const GetMembersResponseFilterSensitiveLog: (
456
+ obj: GetMembersResponse
457
+ ) => any;
458
+
459
+ export declare const ListDatasourcePackagesRequestFilterSensitiveLog: (
460
+ obj: ListDatasourcePackagesRequest
461
+ ) => any;
462
+
463
+ export declare const DatasourcePackageIngestDetailFilterSensitiveLog: (
464
+ obj: DatasourcePackageIngestDetail
465
+ ) => any;
466
+
467
+ export declare const ListDatasourcePackagesResponseFilterSensitiveLog: (
468
+ obj: ListDatasourcePackagesResponse
469
+ ) => any;
470
+
471
+ export declare const ListGraphsRequestFilterSensitiveLog: (
472
+ obj: ListGraphsRequest
473
+ ) => any;
474
+
475
+ export declare const GraphFilterSensitiveLog: (obj: Graph) => any;
476
+
477
+ export declare const ListGraphsResponseFilterSensitiveLog: (
478
+ obj: ListGraphsResponse
479
+ ) => any;
480
+
481
+ export declare const ListInvitationsRequestFilterSensitiveLog: (
482
+ obj: ListInvitationsRequest
483
+ ) => any;
484
+
485
+ export declare const ListInvitationsResponseFilterSensitiveLog: (
486
+ obj: ListInvitationsResponse
487
+ ) => any;
488
+
489
+ export declare const ListMembersRequestFilterSensitiveLog: (
490
+ obj: ListMembersRequest
491
+ ) => any;
492
+
493
+ export declare const ListMembersResponseFilterSensitiveLog: (
494
+ obj: ListMembersResponse
495
+ ) => any;
496
+
497
+ export declare const ListOrganizationAdminAccountsRequestFilterSensitiveLog: (
498
+ obj: ListOrganizationAdminAccountsRequest
499
+ ) => any;
500
+
501
+ export declare const ListOrganizationAdminAccountsResponseFilterSensitiveLog: (
502
+ obj: ListOrganizationAdminAccountsResponse
503
+ ) => any;
504
+
505
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
506
+ obj: ListTagsForResourceRequest
507
+ ) => any;
508
+
509
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
510
+ obj: ListTagsForResourceResponse
511
+ ) => any;
512
+
513
+ export declare const RejectInvitationRequestFilterSensitiveLog: (
514
+ obj: RejectInvitationRequest
515
+ ) => any;
516
+
517
+ export declare const StartMonitoringMemberRequestFilterSensitiveLog: (
518
+ obj: StartMonitoringMemberRequest
519
+ ) => any;
520
+
521
+ export declare const TagResourceRequestFilterSensitiveLog: (
522
+ obj: TagResourceRequest
523
+ ) => any;
524
+
525
+ export declare const TagResourceResponseFilterSensitiveLog: (
526
+ obj: TagResourceResponse
527
+ ) => any;
528
+
529
+ export declare const UntagResourceRequestFilterSensitiveLog: (
530
+ obj: UntagResourceRequest
531
+ ) => any;
532
+
533
+ export declare const UntagResourceResponseFilterSensitiveLog: (
534
+ obj: UntagResourceResponse
535
+ ) => any;
536
+
537
+ export declare const UpdateDatasourcePackagesRequestFilterSensitiveLog: (
538
+ obj: UpdateDatasourcePackagesRequest
539
+ ) => any;
540
+
541
+ export declare const UpdateOrganizationConfigurationRequestFilterSensitiveLog: (
542
+ obj: UpdateOrganizationConfigurationRequest
543
+ ) => any;