@aws-sdk/client-detective 3.686.0 → 3.691.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/dist-types/models/models_0.d.ts +157 -157
- package/dist-types/ts3.4/models/models_0.d.ts +172 -170
- package/package.json +7 -7
|
@@ -12,11 +12,11 @@ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
|
12
12
|
export declare class AccessDeniedException extends __BaseException {
|
|
13
13
|
readonly name: "AccessDeniedException";
|
|
14
14
|
readonly $fault: "client";
|
|
15
|
-
Message?: string;
|
|
16
|
-
ErrorCode?: ErrorCode;
|
|
17
|
-
ErrorCodeReason?: string;
|
|
18
|
-
SubErrorCode?: ErrorCode;
|
|
19
|
-
SubErrorCodeReason?: string;
|
|
15
|
+
Message?: string | undefined;
|
|
16
|
+
ErrorCode?: ErrorCode | undefined;
|
|
17
|
+
ErrorCodeReason?: string | undefined;
|
|
18
|
+
SubErrorCode?: ErrorCode | undefined;
|
|
19
|
+
SubErrorCodeReason?: string | undefined;
|
|
20
20
|
constructor(
|
|
21
21
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
22
22
|
);
|
|
@@ -24,13 +24,13 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
24
24
|
export declare class ConflictException extends __BaseException {
|
|
25
25
|
readonly name: "ConflictException";
|
|
26
26
|
readonly $fault: "client";
|
|
27
|
-
Message?: string;
|
|
27
|
+
Message?: string | undefined;
|
|
28
28
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
29
29
|
}
|
|
30
30
|
export declare class InternalServerException extends __BaseException {
|
|
31
31
|
readonly name: "InternalServerException";
|
|
32
32
|
readonly $fault: "server";
|
|
33
|
-
Message?: string;
|
|
33
|
+
Message?: string | undefined;
|
|
34
34
|
constructor(
|
|
35
35
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
36
36
|
);
|
|
@@ -38,7 +38,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
38
38
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
39
39
|
readonly name: "ResourceNotFoundException";
|
|
40
40
|
readonly $fault: "client";
|
|
41
|
-
Message?: string;
|
|
41
|
+
Message?: string | undefined;
|
|
42
42
|
constructor(
|
|
43
43
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
44
44
|
);
|
|
@@ -46,9 +46,9 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
46
46
|
export declare class ValidationException extends __BaseException {
|
|
47
47
|
readonly name: "ValidationException";
|
|
48
48
|
readonly $fault: "client";
|
|
49
|
-
Message?: string;
|
|
50
|
-
ErrorCode?: ErrorCode;
|
|
51
|
-
ErrorCodeReason?: string;
|
|
49
|
+
Message?: string | undefined;
|
|
50
|
+
ErrorCode?: ErrorCode | undefined;
|
|
51
|
+
ErrorCodeReason?: string | undefined;
|
|
52
52
|
constructor(
|
|
53
53
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
54
54
|
);
|
|
@@ -58,9 +58,9 @@ export interface Account {
|
|
|
58
58
|
EmailAddress: string | undefined;
|
|
59
59
|
}
|
|
60
60
|
export interface Administrator {
|
|
61
|
-
AccountId?: string;
|
|
62
|
-
GraphArn?: string;
|
|
63
|
-
DelegationTime?: Date;
|
|
61
|
+
AccountId?: string | undefined;
|
|
62
|
+
GraphArn?: string | undefined;
|
|
63
|
+
DelegationTime?: Date | undefined;
|
|
64
64
|
}
|
|
65
65
|
export interface BatchGetGraphMemberDatasourcesRequest {
|
|
66
66
|
GraphArn: string | undefined;
|
|
@@ -81,56 +81,58 @@ export declare const DatasourcePackageIngestState: {
|
|
|
81
81
|
export type DatasourcePackageIngestState =
|
|
82
82
|
(typeof DatasourcePackageIngestState)[keyof typeof DatasourcePackageIngestState];
|
|
83
83
|
export interface TimestampForCollection {
|
|
84
|
-
Timestamp?: Date;
|
|
84
|
+
Timestamp?: Date | undefined;
|
|
85
85
|
}
|
|
86
86
|
export interface MembershipDatasources {
|
|
87
|
-
AccountId?: string;
|
|
88
|
-
GraphArn?: string;
|
|
89
|
-
DatasourcePackageIngestHistory?:
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
87
|
+
AccountId?: string | undefined;
|
|
88
|
+
GraphArn?: string | undefined;
|
|
89
|
+
DatasourcePackageIngestHistory?:
|
|
90
|
+
| Partial<
|
|
91
|
+
Record<
|
|
92
|
+
DatasourcePackage,
|
|
93
|
+
Partial<Record<DatasourcePackageIngestState, TimestampForCollection>>
|
|
94
|
+
>
|
|
95
|
+
>
|
|
96
|
+
| undefined;
|
|
95
97
|
}
|
|
96
98
|
export interface UnprocessedAccount {
|
|
97
|
-
AccountId?: string;
|
|
98
|
-
Reason?: string;
|
|
99
|
+
AccountId?: string | undefined;
|
|
100
|
+
Reason?: string | undefined;
|
|
99
101
|
}
|
|
100
102
|
export interface BatchGetGraphMemberDatasourcesResponse {
|
|
101
|
-
MemberDatasources?: MembershipDatasources[];
|
|
102
|
-
UnprocessedAccounts?: UnprocessedAccount[];
|
|
103
|
+
MemberDatasources?: MembershipDatasources[] | undefined;
|
|
104
|
+
UnprocessedAccounts?: UnprocessedAccount[] | undefined;
|
|
103
105
|
}
|
|
104
106
|
export interface BatchGetMembershipDatasourcesRequest {
|
|
105
107
|
GraphArns: string[] | undefined;
|
|
106
108
|
}
|
|
107
109
|
export interface UnprocessedGraph {
|
|
108
|
-
GraphArn?: string;
|
|
109
|
-
Reason?: string;
|
|
110
|
+
GraphArn?: string | undefined;
|
|
111
|
+
Reason?: string | undefined;
|
|
110
112
|
}
|
|
111
113
|
export interface BatchGetMembershipDatasourcesResponse {
|
|
112
|
-
MembershipDatasources?: MembershipDatasources[];
|
|
113
|
-
UnprocessedGraphs?: UnprocessedGraph[];
|
|
114
|
+
MembershipDatasources?: MembershipDatasources[] | undefined;
|
|
115
|
+
UnprocessedGraphs?: UnprocessedGraph[] | undefined;
|
|
114
116
|
}
|
|
115
117
|
export interface CreateGraphRequest {
|
|
116
|
-
Tags?: Record<string, string
|
|
118
|
+
Tags?: Record<string, string> | undefined;
|
|
117
119
|
}
|
|
118
120
|
export interface CreateGraphResponse {
|
|
119
|
-
GraphArn?: string;
|
|
121
|
+
GraphArn?: string | undefined;
|
|
120
122
|
}
|
|
121
123
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
122
124
|
readonly name: "ServiceQuotaExceededException";
|
|
123
125
|
readonly $fault: "client";
|
|
124
|
-
Message?: string;
|
|
125
|
-
Resources?: string[];
|
|
126
|
+
Message?: string | undefined;
|
|
127
|
+
Resources?: string[] | undefined;
|
|
126
128
|
constructor(
|
|
127
129
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
128
130
|
);
|
|
129
131
|
}
|
|
130
132
|
export interface CreateMembersRequest {
|
|
131
133
|
GraphArn: string | undefined;
|
|
132
|
-
Message?: string;
|
|
133
|
-
DisableEmailNotification?: boolean;
|
|
134
|
+
Message?: string | undefined;
|
|
135
|
+
DisableEmailNotification?: boolean | undefined;
|
|
134
136
|
Accounts: Account[] | undefined;
|
|
135
137
|
}
|
|
136
138
|
export declare const MemberDisabledReason: {
|
|
@@ -154,34 +156,34 @@ export declare const MemberStatus: {
|
|
|
154
156
|
};
|
|
155
157
|
export type MemberStatus = (typeof MemberStatus)[keyof typeof MemberStatus];
|
|
156
158
|
export interface DatasourcePackageUsageInfo {
|
|
157
|
-
VolumeUsageInBytes?: number;
|
|
158
|
-
VolumeUsageUpdateTime?: Date;
|
|
159
|
+
VolumeUsageInBytes?: number | undefined;
|
|
160
|
+
VolumeUsageUpdateTime?: Date | undefined;
|
|
159
161
|
}
|
|
160
162
|
export interface MemberDetail {
|
|
161
|
-
AccountId?: string;
|
|
162
|
-
EmailAddress?: string;
|
|
163
|
-
GraphArn?: string;
|
|
164
|
-
MasterId?: string;
|
|
165
|
-
AdministratorId?: string;
|
|
166
|
-
Status?: MemberStatus;
|
|
167
|
-
DisabledReason?: MemberDisabledReason;
|
|
168
|
-
InvitedTime?: Date;
|
|
169
|
-
UpdatedTime?: Date;
|
|
170
|
-
VolumeUsageInBytes?: number;
|
|
171
|
-
VolumeUsageUpdatedTime?: Date;
|
|
172
|
-
PercentOfGraphUtilization?: number;
|
|
173
|
-
PercentOfGraphUtilizationUpdatedTime?: Date;
|
|
174
|
-
InvitationType?: InvitationType;
|
|
175
|
-
VolumeUsageByDatasourcePackage?:
|
|
176
|
-
Record<DatasourcePackage, DatasourcePackageUsageInfo
|
|
177
|
-
|
|
178
|
-
DatasourcePackageIngestStates?:
|
|
179
|
-
Record<DatasourcePackage, DatasourcePackageIngestState
|
|
180
|
-
|
|
163
|
+
AccountId?: string | undefined;
|
|
164
|
+
EmailAddress?: string | undefined;
|
|
165
|
+
GraphArn?: string | undefined;
|
|
166
|
+
MasterId?: string | undefined;
|
|
167
|
+
AdministratorId?: string | undefined;
|
|
168
|
+
Status?: MemberStatus | undefined;
|
|
169
|
+
DisabledReason?: MemberDisabledReason | undefined;
|
|
170
|
+
InvitedTime?: Date | undefined;
|
|
171
|
+
UpdatedTime?: Date | undefined;
|
|
172
|
+
VolumeUsageInBytes?: number | undefined;
|
|
173
|
+
VolumeUsageUpdatedTime?: Date | undefined;
|
|
174
|
+
PercentOfGraphUtilization?: number | undefined;
|
|
175
|
+
PercentOfGraphUtilizationUpdatedTime?: Date | undefined;
|
|
176
|
+
InvitationType?: InvitationType | undefined;
|
|
177
|
+
VolumeUsageByDatasourcePackage?:
|
|
178
|
+
| Partial<Record<DatasourcePackage, DatasourcePackageUsageInfo>>
|
|
179
|
+
| undefined;
|
|
180
|
+
DatasourcePackageIngestStates?:
|
|
181
|
+
| Partial<Record<DatasourcePackage, DatasourcePackageIngestState>>
|
|
182
|
+
| undefined;
|
|
181
183
|
}
|
|
182
184
|
export interface CreateMembersResponse {
|
|
183
|
-
Members?: MemberDetail[];
|
|
184
|
-
UnprocessedAccounts?: UnprocessedAccount[];
|
|
185
|
+
Members?: MemberDetail[] | undefined;
|
|
186
|
+
UnprocessedAccounts?: UnprocessedAccount[] | undefined;
|
|
185
187
|
}
|
|
186
188
|
export interface DeleteGraphRequest {
|
|
187
189
|
GraphArn: string | undefined;
|
|
@@ -191,19 +193,19 @@ export interface DeleteMembersRequest {
|
|
|
191
193
|
AccountIds: string[] | undefined;
|
|
192
194
|
}
|
|
193
195
|
export interface DeleteMembersResponse {
|
|
194
|
-
AccountIds?: string[];
|
|
195
|
-
UnprocessedAccounts?: UnprocessedAccount[];
|
|
196
|
+
AccountIds?: string[] | undefined;
|
|
197
|
+
UnprocessedAccounts?: UnprocessedAccount[] | undefined;
|
|
196
198
|
}
|
|
197
199
|
export interface DescribeOrganizationConfigurationRequest {
|
|
198
200
|
GraphArn: string | undefined;
|
|
199
201
|
}
|
|
200
202
|
export interface DescribeOrganizationConfigurationResponse {
|
|
201
|
-
AutoEnable?: boolean;
|
|
203
|
+
AutoEnable?: boolean | undefined;
|
|
202
204
|
}
|
|
203
205
|
export declare class TooManyRequestsException extends __BaseException {
|
|
204
206
|
readonly name: "TooManyRequestsException";
|
|
205
207
|
readonly $fault: "client";
|
|
206
|
-
Message?: string;
|
|
208
|
+
Message?: string | undefined;
|
|
207
209
|
constructor(
|
|
208
210
|
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
209
211
|
);
|
|
@@ -243,53 +245,53 @@ export declare const Status: {
|
|
|
243
245
|
};
|
|
244
246
|
export type Status = (typeof Status)[keyof typeof Status];
|
|
245
247
|
export interface GetInvestigationResponse {
|
|
246
|
-
GraphArn?: string;
|
|
247
|
-
InvestigationId?: string;
|
|
248
|
-
EntityArn?: string;
|
|
249
|
-
EntityType?: EntityType;
|
|
250
|
-
CreatedTime?: Date;
|
|
251
|
-
ScopeStartTime?: Date;
|
|
252
|
-
ScopeEndTime?: Date;
|
|
253
|
-
Status?: Status;
|
|
254
|
-
Severity?: Severity;
|
|
255
|
-
State?: State;
|
|
248
|
+
GraphArn?: string | undefined;
|
|
249
|
+
InvestigationId?: string | undefined;
|
|
250
|
+
EntityArn?: string | undefined;
|
|
251
|
+
EntityType?: EntityType | undefined;
|
|
252
|
+
CreatedTime?: Date | undefined;
|
|
253
|
+
ScopeStartTime?: Date | undefined;
|
|
254
|
+
ScopeEndTime?: Date | undefined;
|
|
255
|
+
Status?: Status | undefined;
|
|
256
|
+
Severity?: Severity | undefined;
|
|
257
|
+
State?: State | undefined;
|
|
256
258
|
}
|
|
257
259
|
export interface GetMembersRequest {
|
|
258
260
|
GraphArn: string | undefined;
|
|
259
261
|
AccountIds: string[] | undefined;
|
|
260
262
|
}
|
|
261
263
|
export interface GetMembersResponse {
|
|
262
|
-
MemberDetails?: MemberDetail[];
|
|
263
|
-
UnprocessedAccounts?: UnprocessedAccount[];
|
|
264
|
+
MemberDetails?: MemberDetail[] | undefined;
|
|
265
|
+
UnprocessedAccounts?: UnprocessedAccount[] | undefined;
|
|
264
266
|
}
|
|
265
267
|
export interface ListDatasourcePackagesRequest {
|
|
266
268
|
GraphArn: string | undefined;
|
|
267
|
-
NextToken?: string;
|
|
268
|
-
MaxResults?: number;
|
|
269
|
+
NextToken?: string | undefined;
|
|
270
|
+
MaxResults?: number | undefined;
|
|
269
271
|
}
|
|
270
272
|
export interface DatasourcePackageIngestDetail {
|
|
271
|
-
DatasourcePackageIngestState?: DatasourcePackageIngestState;
|
|
272
|
-
LastIngestStateChange?:
|
|
273
|
-
Record<DatasourcePackageIngestState, TimestampForCollection
|
|
274
|
-
|
|
273
|
+
DatasourcePackageIngestState?: DatasourcePackageIngestState | undefined;
|
|
274
|
+
LastIngestStateChange?:
|
|
275
|
+
| Partial<Record<DatasourcePackageIngestState, TimestampForCollection>>
|
|
276
|
+
| undefined;
|
|
275
277
|
}
|
|
276
278
|
export interface ListDatasourcePackagesResponse {
|
|
277
|
-
DatasourcePackages?:
|
|
278
|
-
Record<DatasourcePackage, DatasourcePackageIngestDetail
|
|
279
|
-
|
|
280
|
-
NextToken?: string;
|
|
279
|
+
DatasourcePackages?:
|
|
280
|
+
| Partial<Record<DatasourcePackage, DatasourcePackageIngestDetail>>
|
|
281
|
+
| undefined;
|
|
282
|
+
NextToken?: string | undefined;
|
|
281
283
|
}
|
|
282
284
|
export interface ListGraphsRequest {
|
|
283
|
-
NextToken?: string;
|
|
284
|
-
MaxResults?: number;
|
|
285
|
+
NextToken?: string | undefined;
|
|
286
|
+
MaxResults?: number | undefined;
|
|
285
287
|
}
|
|
286
288
|
export interface Graph {
|
|
287
|
-
Arn?: string;
|
|
288
|
-
CreatedTime?: Date;
|
|
289
|
+
Arn?: string | undefined;
|
|
290
|
+
CreatedTime?: Date | undefined;
|
|
289
291
|
}
|
|
290
292
|
export interface ListGraphsResponse {
|
|
291
|
-
GraphList?: Graph[];
|
|
292
|
-
NextToken?: string;
|
|
293
|
+
GraphList?: Graph[] | undefined;
|
|
294
|
+
NextToken?: string | undefined;
|
|
293
295
|
}
|
|
294
296
|
export declare const IndicatorType: {
|
|
295
297
|
readonly FLAGGED_IP_ADDRESS: "FLAGGED_IP_ADDRESS";
|
|
@@ -305,74 +307,74 @@ export type IndicatorType = (typeof IndicatorType)[keyof typeof IndicatorType];
|
|
|
305
307
|
export interface ListIndicatorsRequest {
|
|
306
308
|
GraphArn: string | undefined;
|
|
307
309
|
InvestigationId: string | undefined;
|
|
308
|
-
IndicatorType?: IndicatorType;
|
|
309
|
-
NextToken?: string;
|
|
310
|
-
MaxResults?: number;
|
|
310
|
+
IndicatorType?: IndicatorType | undefined;
|
|
311
|
+
NextToken?: string | undefined;
|
|
312
|
+
MaxResults?: number | undefined;
|
|
311
313
|
}
|
|
312
314
|
export declare const Reason: {
|
|
313
315
|
readonly AWS_THREAT_INTELLIGENCE: "AWS_THREAT_INTELLIGENCE";
|
|
314
316
|
};
|
|
315
317
|
export type Reason = (typeof Reason)[keyof typeof Reason];
|
|
316
318
|
export interface FlaggedIpAddressDetail {
|
|
317
|
-
IpAddress?: string;
|
|
318
|
-
Reason?: Reason;
|
|
319
|
+
IpAddress?: string | undefined;
|
|
320
|
+
Reason?: Reason | undefined;
|
|
319
321
|
}
|
|
320
322
|
export interface ImpossibleTravelDetail {
|
|
321
|
-
StartingIpAddress?: string;
|
|
322
|
-
EndingIpAddress?: string;
|
|
323
|
-
StartingLocation?: string;
|
|
324
|
-
EndingLocation?: string;
|
|
325
|
-
HourlyTimeDelta?: number;
|
|
323
|
+
StartingIpAddress?: string | undefined;
|
|
324
|
+
EndingIpAddress?: string | undefined;
|
|
325
|
+
StartingLocation?: string | undefined;
|
|
326
|
+
EndingLocation?: string | undefined;
|
|
327
|
+
HourlyTimeDelta?: number | undefined;
|
|
326
328
|
}
|
|
327
329
|
export interface NewAsoDetail {
|
|
328
|
-
Aso?: string;
|
|
329
|
-
IsNewForEntireAccount?: boolean;
|
|
330
|
+
Aso?: string | undefined;
|
|
331
|
+
IsNewForEntireAccount?: boolean | undefined;
|
|
330
332
|
}
|
|
331
333
|
export interface NewGeolocationDetail {
|
|
332
|
-
Location?: string;
|
|
333
|
-
IpAddress?: string;
|
|
334
|
-
IsNewForEntireAccount?: boolean;
|
|
334
|
+
Location?: string | undefined;
|
|
335
|
+
IpAddress?: string | undefined;
|
|
336
|
+
IsNewForEntireAccount?: boolean | undefined;
|
|
335
337
|
}
|
|
336
338
|
export interface NewUserAgentDetail {
|
|
337
|
-
UserAgent?: string;
|
|
338
|
-
IsNewForEntireAccount?: boolean;
|
|
339
|
+
UserAgent?: string | undefined;
|
|
340
|
+
IsNewForEntireAccount?: boolean | undefined;
|
|
339
341
|
}
|
|
340
342
|
export interface RelatedFindingDetail {
|
|
341
|
-
Arn?: string;
|
|
342
|
-
Type?: string;
|
|
343
|
-
IpAddress?: string;
|
|
343
|
+
Arn?: string | undefined;
|
|
344
|
+
Type?: string | undefined;
|
|
345
|
+
IpAddress?: string | undefined;
|
|
344
346
|
}
|
|
345
347
|
export interface RelatedFindingGroupDetail {
|
|
346
|
-
Id?: string;
|
|
348
|
+
Id?: string | undefined;
|
|
347
349
|
}
|
|
348
350
|
export interface TTPsObservedDetail {
|
|
349
|
-
Tactic?: string;
|
|
350
|
-
Technique?: string;
|
|
351
|
-
Procedure?: string;
|
|
352
|
-
IpAddress?: string;
|
|
353
|
-
APIName?: string;
|
|
354
|
-
APISuccessCount?: number;
|
|
355
|
-
APIFailureCount?: number;
|
|
351
|
+
Tactic?: string | undefined;
|
|
352
|
+
Technique?: string | undefined;
|
|
353
|
+
Procedure?: string | undefined;
|
|
354
|
+
IpAddress?: string | undefined;
|
|
355
|
+
APIName?: string | undefined;
|
|
356
|
+
APISuccessCount?: number | undefined;
|
|
357
|
+
APIFailureCount?: number | undefined;
|
|
356
358
|
}
|
|
357
359
|
export interface IndicatorDetail {
|
|
358
|
-
TTPsObservedDetail?: TTPsObservedDetail;
|
|
359
|
-
ImpossibleTravelDetail?: ImpossibleTravelDetail;
|
|
360
|
-
FlaggedIpAddressDetail?: FlaggedIpAddressDetail;
|
|
361
|
-
NewGeolocationDetail?: NewGeolocationDetail;
|
|
362
|
-
NewAsoDetail?: NewAsoDetail;
|
|
363
|
-
NewUserAgentDetail?: NewUserAgentDetail;
|
|
364
|
-
RelatedFindingDetail?: RelatedFindingDetail;
|
|
365
|
-
RelatedFindingGroupDetail?: RelatedFindingGroupDetail;
|
|
360
|
+
TTPsObservedDetail?: TTPsObservedDetail | undefined;
|
|
361
|
+
ImpossibleTravelDetail?: ImpossibleTravelDetail | undefined;
|
|
362
|
+
FlaggedIpAddressDetail?: FlaggedIpAddressDetail | undefined;
|
|
363
|
+
NewGeolocationDetail?: NewGeolocationDetail | undefined;
|
|
364
|
+
NewAsoDetail?: NewAsoDetail | undefined;
|
|
365
|
+
NewUserAgentDetail?: NewUserAgentDetail | undefined;
|
|
366
|
+
RelatedFindingDetail?: RelatedFindingDetail | undefined;
|
|
367
|
+
RelatedFindingGroupDetail?: RelatedFindingGroupDetail | undefined;
|
|
366
368
|
}
|
|
367
369
|
export interface Indicator {
|
|
368
|
-
IndicatorType?: IndicatorType;
|
|
369
|
-
IndicatorDetail?: IndicatorDetail;
|
|
370
|
+
IndicatorType?: IndicatorType | undefined;
|
|
371
|
+
IndicatorDetail?: IndicatorDetail | undefined;
|
|
370
372
|
}
|
|
371
373
|
export interface ListIndicatorsResponse {
|
|
372
|
-
GraphArn?: string;
|
|
373
|
-
InvestigationId?: string;
|
|
374
|
-
NextToken?: string;
|
|
375
|
-
Indicators?: Indicator[];
|
|
374
|
+
GraphArn?: string | undefined;
|
|
375
|
+
InvestigationId?: string | undefined;
|
|
376
|
+
NextToken?: string | undefined;
|
|
377
|
+
Indicators?: Indicator[] | undefined;
|
|
376
378
|
}
|
|
377
379
|
export interface DateFilter {
|
|
378
380
|
StartInclusive: Date | undefined;
|
|
@@ -382,11 +384,11 @@ export interface StringFilter {
|
|
|
382
384
|
Value: string | undefined;
|
|
383
385
|
}
|
|
384
386
|
export interface FilterCriteria {
|
|
385
|
-
Severity?: StringFilter;
|
|
386
|
-
Status?: StringFilter;
|
|
387
|
-
State?: StringFilter;
|
|
388
|
-
EntityArn?: StringFilter;
|
|
389
|
-
CreatedTime?: DateFilter;
|
|
387
|
+
Severity?: StringFilter | undefined;
|
|
388
|
+
Status?: StringFilter | undefined;
|
|
389
|
+
State?: StringFilter | undefined;
|
|
390
|
+
EntityArn?: StringFilter | undefined;
|
|
391
|
+
CreatedTime?: DateFilter | undefined;
|
|
390
392
|
}
|
|
391
393
|
export declare const Field: {
|
|
392
394
|
readonly CREATED_TIME: "CREATED_TIME";
|
|
@@ -400,59 +402,59 @@ export declare const SortOrder: {
|
|
|
400
402
|
};
|
|
401
403
|
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
402
404
|
export interface SortCriteria {
|
|
403
|
-
Field?: Field;
|
|
404
|
-
SortOrder?: SortOrder;
|
|
405
|
+
Field?: Field | undefined;
|
|
406
|
+
SortOrder?: SortOrder | undefined;
|
|
405
407
|
}
|
|
406
408
|
export interface ListInvestigationsRequest {
|
|
407
409
|
GraphArn: string | undefined;
|
|
408
|
-
NextToken?: string;
|
|
409
|
-
MaxResults?: number;
|
|
410
|
-
FilterCriteria?: FilterCriteria;
|
|
411
|
-
SortCriteria?: SortCriteria;
|
|
410
|
+
NextToken?: string | undefined;
|
|
411
|
+
MaxResults?: number | undefined;
|
|
412
|
+
FilterCriteria?: FilterCriteria | undefined;
|
|
413
|
+
SortCriteria?: SortCriteria | undefined;
|
|
412
414
|
}
|
|
413
415
|
export interface InvestigationDetail {
|
|
414
|
-
InvestigationId?: string;
|
|
415
|
-
Severity?: Severity;
|
|
416
|
-
Status?: Status;
|
|
417
|
-
State?: State;
|
|
418
|
-
CreatedTime?: Date;
|
|
419
|
-
EntityArn?: string;
|
|
420
|
-
EntityType?: EntityType;
|
|
416
|
+
InvestigationId?: string | undefined;
|
|
417
|
+
Severity?: Severity | undefined;
|
|
418
|
+
Status?: Status | undefined;
|
|
419
|
+
State?: State | undefined;
|
|
420
|
+
CreatedTime?: Date | undefined;
|
|
421
|
+
EntityArn?: string | undefined;
|
|
422
|
+
EntityType?: EntityType | undefined;
|
|
421
423
|
}
|
|
422
424
|
export interface ListInvestigationsResponse {
|
|
423
|
-
InvestigationDetails?: InvestigationDetail[];
|
|
424
|
-
NextToken?: string;
|
|
425
|
+
InvestigationDetails?: InvestigationDetail[] | undefined;
|
|
426
|
+
NextToken?: string | undefined;
|
|
425
427
|
}
|
|
426
428
|
export interface ListInvitationsRequest {
|
|
427
|
-
NextToken?: string;
|
|
428
|
-
MaxResults?: number;
|
|
429
|
+
NextToken?: string | undefined;
|
|
430
|
+
MaxResults?: number | undefined;
|
|
429
431
|
}
|
|
430
432
|
export interface ListInvitationsResponse {
|
|
431
|
-
Invitations?: MemberDetail[];
|
|
432
|
-
NextToken?: string;
|
|
433
|
+
Invitations?: MemberDetail[] | undefined;
|
|
434
|
+
NextToken?: string | undefined;
|
|
433
435
|
}
|
|
434
436
|
export interface ListMembersRequest {
|
|
435
437
|
GraphArn: string | undefined;
|
|
436
|
-
NextToken?: string;
|
|
437
|
-
MaxResults?: number;
|
|
438
|
+
NextToken?: string | undefined;
|
|
439
|
+
MaxResults?: number | undefined;
|
|
438
440
|
}
|
|
439
441
|
export interface ListMembersResponse {
|
|
440
|
-
MemberDetails?: MemberDetail[];
|
|
441
|
-
NextToken?: string;
|
|
442
|
+
MemberDetails?: MemberDetail[] | undefined;
|
|
443
|
+
NextToken?: string | undefined;
|
|
442
444
|
}
|
|
443
445
|
export interface ListOrganizationAdminAccountsRequest {
|
|
444
|
-
NextToken?: string;
|
|
445
|
-
MaxResults?: number;
|
|
446
|
+
NextToken?: string | undefined;
|
|
447
|
+
MaxResults?: number | undefined;
|
|
446
448
|
}
|
|
447
449
|
export interface ListOrganizationAdminAccountsResponse {
|
|
448
|
-
Administrators?: Administrator[];
|
|
449
|
-
NextToken?: string;
|
|
450
|
+
Administrators?: Administrator[] | undefined;
|
|
451
|
+
NextToken?: string | undefined;
|
|
450
452
|
}
|
|
451
453
|
export interface ListTagsForResourceRequest {
|
|
452
454
|
ResourceArn: string | undefined;
|
|
453
455
|
}
|
|
454
456
|
export interface ListTagsForResourceResponse {
|
|
455
|
-
Tags?: Record<string, string
|
|
457
|
+
Tags?: Record<string, string> | undefined;
|
|
456
458
|
}
|
|
457
459
|
export interface RejectInvitationRequest {
|
|
458
460
|
GraphArn: string | undefined;
|
|
@@ -464,7 +466,7 @@ export interface StartInvestigationRequest {
|
|
|
464
466
|
ScopeEndTime: Date | undefined;
|
|
465
467
|
}
|
|
466
468
|
export interface StartInvestigationResponse {
|
|
467
|
-
InvestigationId?: string;
|
|
469
|
+
InvestigationId?: string | undefined;
|
|
468
470
|
}
|
|
469
471
|
export interface StartMonitoringMemberRequest {
|
|
470
472
|
GraphArn: string | undefined;
|
|
@@ -491,7 +493,7 @@ export interface UpdateInvestigationStateRequest {
|
|
|
491
493
|
}
|
|
492
494
|
export interface UpdateOrganizationConfigurationRequest {
|
|
493
495
|
GraphArn: string | undefined;
|
|
494
|
-
AutoEnable?: boolean;
|
|
496
|
+
AutoEnable?: boolean | undefined;
|
|
495
497
|
}
|
|
496
498
|
export declare const AccountFilterSensitiveLog: (obj: Account) => any;
|
|
497
499
|
export declare const CreateMembersRequestFilterSensitiveLog: (
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-detective",
|
|
3
3
|
"description": "AWS SDK for JavaScript Detective Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.691.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-detective",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|