@aws-sdk/client-security-ir 3.934.0 → 3.935.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-cjs/index.js +122 -121
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +121 -0
- package/dist-es/models/errors.js +138 -0
- package/dist-es/models/models_0.js +1 -259
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +241 -0
- package/dist-types/models/errors.d.ts +177 -0
- package/dist-types/models/models_0.d.ts +1 -416
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +145 -0
- package/dist-types/ts3.4/models/errors.d.ts +85 -0
- package/dist-types/ts3.4/models/models_0.d.ts +16 -228
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,63 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { SecurityIRServiceException as __BaseException } from "./SecurityIRServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p/>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
-
readonly name: "AccessDeniedException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
/**
|
|
11
|
-
* @internal
|
|
12
|
-
*/
|
|
13
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
-
}
|
|
15
|
-
/**
|
|
16
|
-
* @public
|
|
17
|
-
* @enum
|
|
18
|
-
*/
|
|
19
|
-
export declare const AwsRegion: {
|
|
20
|
-
readonly AF_SOUTH_1: "af-south-1";
|
|
21
|
-
readonly AP_EAST_1: "ap-east-1";
|
|
22
|
-
readonly AP_EAST_2: "ap-east-2";
|
|
23
|
-
readonly AP_NORTHEAST_1: "ap-northeast-1";
|
|
24
|
-
readonly AP_NORTHEAST_2: "ap-northeast-2";
|
|
25
|
-
readonly AP_NORTHEAST_3: "ap-northeast-3";
|
|
26
|
-
readonly AP_SOUTHEAST_1: "ap-southeast-1";
|
|
27
|
-
readonly AP_SOUTHEAST_2: "ap-southeast-2";
|
|
28
|
-
readonly AP_SOUTHEAST_3: "ap-southeast-3";
|
|
29
|
-
readonly AP_SOUTHEAST_4: "ap-southeast-4";
|
|
30
|
-
readonly AP_SOUTHEAST_5: "ap-southeast-5";
|
|
31
|
-
readonly AP_SOUTHEAST_6: "ap-southeast-6";
|
|
32
|
-
readonly AP_SOUTHEAST_7: "ap-southeast-7";
|
|
33
|
-
readonly AP_SOUTH_1: "ap-south-1";
|
|
34
|
-
readonly AP_SOUTH_2: "ap-south-2";
|
|
35
|
-
readonly CA_CENTRAL_1: "ca-central-1";
|
|
36
|
-
readonly CA_WEST_1: "ca-west-1";
|
|
37
|
-
readonly CN_NORTHWEST_1: "cn-northwest-1";
|
|
38
|
-
readonly CN_NORTH_1: "cn-north-1";
|
|
39
|
-
readonly EU_CENTRAL_1: "eu-central-1";
|
|
40
|
-
readonly EU_CENTRAL_2: "eu-central-2";
|
|
41
|
-
readonly EU_NORTH_1: "eu-north-1";
|
|
42
|
-
readonly EU_SOUTH_1: "eu-south-1";
|
|
43
|
-
readonly EU_SOUTH_2: "eu-south-2";
|
|
44
|
-
readonly EU_WEST_1: "eu-west-1";
|
|
45
|
-
readonly EU_WEST_2: "eu-west-2";
|
|
46
|
-
readonly EU_WEST_3: "eu-west-3";
|
|
47
|
-
readonly IL_CENTRAL_1: "il-central-1";
|
|
48
|
-
readonly ME_CENTRAL_1: "me-central-1";
|
|
49
|
-
readonly ME_SOUTH_1: "me-south-1";
|
|
50
|
-
readonly MX_CENTRAL_1: "mx-central-1";
|
|
51
|
-
readonly SA_EAST_1: "sa-east-1";
|
|
52
|
-
readonly US_EAST_1: "us-east-1";
|
|
53
|
-
readonly US_EAST_2: "us-east-2";
|
|
54
|
-
readonly US_WEST_1: "us-west-1";
|
|
55
|
-
readonly US_WEST_2: "us-west-2";
|
|
56
|
-
};
|
|
57
|
-
/**
|
|
58
|
-
* @public
|
|
59
|
-
*/
|
|
60
|
-
export type AwsRegion = (typeof AwsRegion)[keyof typeof AwsRegion];
|
|
1
|
+
import { AwsRegion, CaseAttachmentStatus, CaseStatus, ClosureCode, CommunicationType, CustomerType, EngagementType, MembershipAccountRelationshipStatus, MembershipAccountRelationshipType, MembershipStatus, OptInFeatureName, PendingAction, ResolverType, SelfManagedCaseStatus } from "./enums";
|
|
61
2
|
/**
|
|
62
3
|
* @public
|
|
63
4
|
*/
|
|
@@ -94,31 +35,6 @@ export interface GetMembershipAccountDetailError {
|
|
|
94
35
|
*/
|
|
95
36
|
message: string | undefined;
|
|
96
37
|
}
|
|
97
|
-
/**
|
|
98
|
-
* @public
|
|
99
|
-
* @enum
|
|
100
|
-
*/
|
|
101
|
-
export declare const MembershipAccountRelationshipStatus: {
|
|
102
|
-
readonly ASSOCIATED: "Associated";
|
|
103
|
-
readonly DISASSOCIATED: "Disassociated";
|
|
104
|
-
readonly UNASSOCIATED: "Unassociated";
|
|
105
|
-
};
|
|
106
|
-
/**
|
|
107
|
-
* @public
|
|
108
|
-
*/
|
|
109
|
-
export type MembershipAccountRelationshipStatus = (typeof MembershipAccountRelationshipStatus)[keyof typeof MembershipAccountRelationshipStatus];
|
|
110
|
-
/**
|
|
111
|
-
* @public
|
|
112
|
-
* @enum
|
|
113
|
-
*/
|
|
114
|
-
export declare const MembershipAccountRelationshipType: {
|
|
115
|
-
readonly ORGANIZATION: "Organization";
|
|
116
|
-
readonly UNRELATED: "Unrelated";
|
|
117
|
-
};
|
|
118
|
-
/**
|
|
119
|
-
* @public
|
|
120
|
-
*/
|
|
121
|
-
export type MembershipAccountRelationshipType = (typeof MembershipAccountRelationshipType)[keyof typeof MembershipAccountRelationshipType];
|
|
122
38
|
/**
|
|
123
39
|
* <p/>
|
|
124
40
|
* @public
|
|
@@ -155,145 +71,6 @@ export interface BatchGetMemberAccountDetailsResponse {
|
|
|
155
71
|
*/
|
|
156
72
|
errors?: GetMembershipAccountDetailError[] | undefined;
|
|
157
73
|
}
|
|
158
|
-
/**
|
|
159
|
-
* <p/>
|
|
160
|
-
* @public
|
|
161
|
-
*/
|
|
162
|
-
export declare class ConflictException extends __BaseException {
|
|
163
|
-
readonly name: "ConflictException";
|
|
164
|
-
readonly $fault: "client";
|
|
165
|
-
/**
|
|
166
|
-
* <p>The ID of the conflicting resource.</p>
|
|
167
|
-
* @public
|
|
168
|
-
*/
|
|
169
|
-
resourceId: string | undefined;
|
|
170
|
-
/**
|
|
171
|
-
* <p>The type of the conflicting resource.</p>
|
|
172
|
-
* @public
|
|
173
|
-
*/
|
|
174
|
-
resourceType: string | undefined;
|
|
175
|
-
/**
|
|
176
|
-
* @internal
|
|
177
|
-
*/
|
|
178
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
179
|
-
}
|
|
180
|
-
/**
|
|
181
|
-
* <p/>
|
|
182
|
-
* @public
|
|
183
|
-
*/
|
|
184
|
-
export declare class InternalServerException extends __BaseException {
|
|
185
|
-
readonly name: "InternalServerException";
|
|
186
|
-
readonly $fault: "server";
|
|
187
|
-
$retryable: {};
|
|
188
|
-
/**
|
|
189
|
-
* <p>The number of seconds after which to retry the request.</p>
|
|
190
|
-
* @public
|
|
191
|
-
*/
|
|
192
|
-
retryAfterSeconds?: number | undefined;
|
|
193
|
-
/**
|
|
194
|
-
* @internal
|
|
195
|
-
*/
|
|
196
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
197
|
-
}
|
|
198
|
-
/**
|
|
199
|
-
* <p/>
|
|
200
|
-
* @public
|
|
201
|
-
*/
|
|
202
|
-
export declare class InvalidTokenException extends __BaseException {
|
|
203
|
-
readonly name: "InvalidTokenException";
|
|
204
|
-
readonly $fault: "client";
|
|
205
|
-
$retryable: {};
|
|
206
|
-
/**
|
|
207
|
-
* @internal
|
|
208
|
-
*/
|
|
209
|
-
constructor(opts: __ExceptionOptionType<InvalidTokenException, __BaseException>);
|
|
210
|
-
}
|
|
211
|
-
/**
|
|
212
|
-
* <p/>
|
|
213
|
-
* @public
|
|
214
|
-
*/
|
|
215
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
216
|
-
readonly name: "ResourceNotFoundException";
|
|
217
|
-
readonly $fault: "client";
|
|
218
|
-
/**
|
|
219
|
-
* @internal
|
|
220
|
-
*/
|
|
221
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
222
|
-
}
|
|
223
|
-
/**
|
|
224
|
-
* <p/>
|
|
225
|
-
* @public
|
|
226
|
-
*/
|
|
227
|
-
export declare class SecurityIncidentResponseNotActiveException extends __BaseException {
|
|
228
|
-
readonly name: "SecurityIncidentResponseNotActiveException";
|
|
229
|
-
readonly $fault: "client";
|
|
230
|
-
/**
|
|
231
|
-
* @internal
|
|
232
|
-
*/
|
|
233
|
-
constructor(opts: __ExceptionOptionType<SecurityIncidentResponseNotActiveException, __BaseException>);
|
|
234
|
-
}
|
|
235
|
-
/**
|
|
236
|
-
* <p/>
|
|
237
|
-
* @public
|
|
238
|
-
*/
|
|
239
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
240
|
-
readonly name: "ServiceQuotaExceededException";
|
|
241
|
-
readonly $fault: "client";
|
|
242
|
-
/**
|
|
243
|
-
* <p>The ID of the requested resource which lead to the service quota exception.</p>
|
|
244
|
-
* @public
|
|
245
|
-
*/
|
|
246
|
-
resourceId: string | undefined;
|
|
247
|
-
/**
|
|
248
|
-
* <p>The type of the requested resource which lead to the service quota exception.</p>
|
|
249
|
-
* @public
|
|
250
|
-
*/
|
|
251
|
-
resourceType: string | undefined;
|
|
252
|
-
/**
|
|
253
|
-
* <p>The service code of the quota.</p>
|
|
254
|
-
* @public
|
|
255
|
-
*/
|
|
256
|
-
serviceCode: string | undefined;
|
|
257
|
-
/**
|
|
258
|
-
* <p>The code of the quota.</p>
|
|
259
|
-
* @public
|
|
260
|
-
*/
|
|
261
|
-
quotaCode: string | undefined;
|
|
262
|
-
/**
|
|
263
|
-
* @internal
|
|
264
|
-
*/
|
|
265
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
266
|
-
}
|
|
267
|
-
/**
|
|
268
|
-
* <p/>
|
|
269
|
-
* @public
|
|
270
|
-
*/
|
|
271
|
-
export declare class ThrottlingException extends __BaseException {
|
|
272
|
-
readonly name: "ThrottlingException";
|
|
273
|
-
readonly $fault: "client";
|
|
274
|
-
$retryable: {
|
|
275
|
-
throttling: boolean;
|
|
276
|
-
};
|
|
277
|
-
/**
|
|
278
|
-
* <p>The service code of the exception.</p>
|
|
279
|
-
* @public
|
|
280
|
-
*/
|
|
281
|
-
serviceCode?: string | undefined;
|
|
282
|
-
/**
|
|
283
|
-
* <p>The quota code of the exception.</p>
|
|
284
|
-
* @public
|
|
285
|
-
*/
|
|
286
|
-
quotaCode?: string | undefined;
|
|
287
|
-
/**
|
|
288
|
-
* <p>The number of seconds after which to retry the request.</p>
|
|
289
|
-
* @public
|
|
290
|
-
*/
|
|
291
|
-
retryAfterSeconds?: number | undefined;
|
|
292
|
-
/**
|
|
293
|
-
* @internal
|
|
294
|
-
*/
|
|
295
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
296
|
-
}
|
|
297
74
|
/**
|
|
298
75
|
* <p/>
|
|
299
76
|
* @public
|
|
@@ -310,42 +87,6 @@ export interface ValidationExceptionField {
|
|
|
310
87
|
*/
|
|
311
88
|
message: string | undefined;
|
|
312
89
|
}
|
|
313
|
-
/**
|
|
314
|
-
* @public
|
|
315
|
-
* @enum
|
|
316
|
-
*/
|
|
317
|
-
export declare const ValidationExceptionReason: {
|
|
318
|
-
readonly CANNOT_PARSE: "CANNOT_PARSE";
|
|
319
|
-
readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
|
|
320
|
-
readonly OTHER: "OTHER";
|
|
321
|
-
readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
|
|
322
|
-
};
|
|
323
|
-
/**
|
|
324
|
-
* @public
|
|
325
|
-
*/
|
|
326
|
-
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
327
|
-
/**
|
|
328
|
-
* <p/>
|
|
329
|
-
* @public
|
|
330
|
-
*/
|
|
331
|
-
export declare class ValidationException extends __BaseException {
|
|
332
|
-
readonly name: "ValidationException";
|
|
333
|
-
readonly $fault: "client";
|
|
334
|
-
/**
|
|
335
|
-
* <p>The reason for the exception.</p>
|
|
336
|
-
* @public
|
|
337
|
-
*/
|
|
338
|
-
reason: ValidationExceptionReason | undefined;
|
|
339
|
-
/**
|
|
340
|
-
* <p>The fields which lead to the exception.</p>
|
|
341
|
-
* @public
|
|
342
|
-
*/
|
|
343
|
-
fieldList?: ValidationExceptionField[] | undefined;
|
|
344
|
-
/**
|
|
345
|
-
* @internal
|
|
346
|
-
*/
|
|
347
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
348
|
-
}
|
|
349
90
|
/**
|
|
350
91
|
* @public
|
|
351
92
|
*/
|
|
@@ -376,23 +117,6 @@ export interface CloseCaseRequest {
|
|
|
376
117
|
*/
|
|
377
118
|
caseId: string | undefined;
|
|
378
119
|
}
|
|
379
|
-
/**
|
|
380
|
-
* @public
|
|
381
|
-
* @enum
|
|
382
|
-
*/
|
|
383
|
-
export declare const CaseStatus: {
|
|
384
|
-
readonly ACKNOWLEDGED: "Acknowledged";
|
|
385
|
-
readonly CLOSED: "Closed";
|
|
386
|
-
readonly CONTAINMENT_ERADICATION_AND_RECOVERY: "Containment, Eradication and Recovery";
|
|
387
|
-
readonly DETECTION_AND_ANALYSIS: "Detection and Analysis";
|
|
388
|
-
readonly POST_INCIDENT_ACTIVITIES: "Post-incident Activities";
|
|
389
|
-
readonly READY_TO_CLOSE: "Ready to Close";
|
|
390
|
-
readonly SUBMITTED: "Submitted";
|
|
391
|
-
};
|
|
392
|
-
/**
|
|
393
|
-
* @public
|
|
394
|
-
*/
|
|
395
|
-
export type CaseStatus = (typeof CaseStatus)[keyof typeof CaseStatus];
|
|
396
120
|
/**
|
|
397
121
|
* @public
|
|
398
122
|
*/
|
|
@@ -408,18 +132,6 @@ export interface CloseCaseResponse {
|
|
|
408
132
|
*/
|
|
409
133
|
closedDate?: Date | undefined;
|
|
410
134
|
}
|
|
411
|
-
/**
|
|
412
|
-
* @public
|
|
413
|
-
* @enum
|
|
414
|
-
*/
|
|
415
|
-
export declare const EngagementType: {
|
|
416
|
-
readonly INVESTIGATION: "Investigation";
|
|
417
|
-
readonly SECURITY_INCIDENT: "Security Incident";
|
|
418
|
-
};
|
|
419
|
-
/**
|
|
420
|
-
* @public
|
|
421
|
-
*/
|
|
422
|
-
export type EngagementType = (typeof EngagementType)[keyof typeof EngagementType];
|
|
423
135
|
/**
|
|
424
136
|
* <p/>
|
|
425
137
|
* @public
|
|
@@ -431,18 +143,6 @@ export interface ImpactedAwsRegion {
|
|
|
431
143
|
*/
|
|
432
144
|
region: AwsRegion | undefined;
|
|
433
145
|
}
|
|
434
|
-
/**
|
|
435
|
-
* @public
|
|
436
|
-
* @enum
|
|
437
|
-
*/
|
|
438
|
-
export declare const ResolverType: {
|
|
439
|
-
readonly AWS: "AWS";
|
|
440
|
-
readonly SELF: "Self";
|
|
441
|
-
};
|
|
442
|
-
/**
|
|
443
|
-
* @public
|
|
444
|
-
*/
|
|
445
|
-
export type ResolverType = (typeof ResolverType)[keyof typeof ResolverType];
|
|
446
146
|
/**
|
|
447
147
|
* <p/>
|
|
448
148
|
* @public
|
|
@@ -595,19 +295,6 @@ export interface GetCaseRequest {
|
|
|
595
295
|
*/
|
|
596
296
|
caseId: string | undefined;
|
|
597
297
|
}
|
|
598
|
-
/**
|
|
599
|
-
* @public
|
|
600
|
-
* @enum
|
|
601
|
-
*/
|
|
602
|
-
export declare const CaseAttachmentStatus: {
|
|
603
|
-
readonly FAILED: "Failed";
|
|
604
|
-
readonly PENDING: "Pending";
|
|
605
|
-
readonly VERIFIED: "Verified";
|
|
606
|
-
};
|
|
607
|
-
/**
|
|
608
|
-
* @public
|
|
609
|
-
*/
|
|
610
|
-
export type CaseAttachmentStatus = (typeof CaseAttachmentStatus)[keyof typeof CaseAttachmentStatus];
|
|
611
298
|
/**
|
|
612
299
|
* <p/>
|
|
613
300
|
* @public
|
|
@@ -639,32 +326,6 @@ export interface CaseAttachmentAttributes {
|
|
|
639
326
|
*/
|
|
640
327
|
createdDate: Date | undefined;
|
|
641
328
|
}
|
|
642
|
-
/**
|
|
643
|
-
* @public
|
|
644
|
-
* @enum
|
|
645
|
-
*/
|
|
646
|
-
export declare const ClosureCode: {
|
|
647
|
-
readonly DUPLICATE: "Duplicate";
|
|
648
|
-
readonly FALSE_POSITIVE: "False Positive";
|
|
649
|
-
readonly INVESTIGATION_COMPLETED: "Investigation Completed";
|
|
650
|
-
readonly NOT_RESOLVED: "Not Resolved";
|
|
651
|
-
};
|
|
652
|
-
/**
|
|
653
|
-
* @public
|
|
654
|
-
*/
|
|
655
|
-
export type ClosureCode = (typeof ClosureCode)[keyof typeof ClosureCode];
|
|
656
|
-
/**
|
|
657
|
-
* @public
|
|
658
|
-
* @enum
|
|
659
|
-
*/
|
|
660
|
-
export declare const PendingAction: {
|
|
661
|
-
readonly CUSTOMER: "Customer";
|
|
662
|
-
readonly NONE: "None";
|
|
663
|
-
};
|
|
664
|
-
/**
|
|
665
|
-
* @public
|
|
666
|
-
*/
|
|
667
|
-
export type PendingAction = (typeof PendingAction)[keyof typeof PendingAction];
|
|
668
329
|
/**
|
|
669
330
|
* @public
|
|
670
331
|
*/
|
|
@@ -1183,20 +844,6 @@ export interface UpdateCaseCommentResponse {
|
|
|
1183
844
|
*/
|
|
1184
845
|
body?: string | undefined;
|
|
1185
846
|
}
|
|
1186
|
-
/**
|
|
1187
|
-
* @public
|
|
1188
|
-
* @enum
|
|
1189
|
-
*/
|
|
1190
|
-
export declare const SelfManagedCaseStatus: {
|
|
1191
|
-
readonly CONTAINMENT_ERADICATION_AND_RECOVERY: "Containment, Eradication and Recovery";
|
|
1192
|
-
readonly DETECTION_AND_ANALYSIS: "Detection and Analysis";
|
|
1193
|
-
readonly POST_INCIDENT_ACTIVITIES: "Post-incident Activities";
|
|
1194
|
-
readonly SUBMITTED: "Submitted";
|
|
1195
|
-
};
|
|
1196
|
-
/**
|
|
1197
|
-
* @public
|
|
1198
|
-
*/
|
|
1199
|
-
export type SelfManagedCaseStatus = (typeof SelfManagedCaseStatus)[keyof typeof SelfManagedCaseStatus];
|
|
1200
847
|
/**
|
|
1201
848
|
* @public
|
|
1202
849
|
*/
|
|
@@ -1257,32 +904,6 @@ export interface UpdateResolverTypeResponse {
|
|
|
1257
904
|
*/
|
|
1258
905
|
resolverType?: ResolverType | undefined;
|
|
1259
906
|
}
|
|
1260
|
-
/**
|
|
1261
|
-
* @public
|
|
1262
|
-
* @enum
|
|
1263
|
-
*/
|
|
1264
|
-
export declare const CommunicationType: {
|
|
1265
|
-
readonly CASE_ACKNOWLEDGED: "Case Acknowledged";
|
|
1266
|
-
readonly CASE_ATTACHMENT_URL_UPLOADED: "Case Attachment Url Uploaded";
|
|
1267
|
-
readonly CASE_CLOSED: "Case Closed";
|
|
1268
|
-
readonly CASE_COMMENT_ADDED: "Case Comment Added";
|
|
1269
|
-
readonly CASE_COMMENT_UPDATED: "Case Comment Updated";
|
|
1270
|
-
readonly CASE_CREATED: "Case Created";
|
|
1271
|
-
readonly CASE_PENDING_CUSTOMER_ACTION_REMINDER: "Case Pending Customer Action Reminder";
|
|
1272
|
-
readonly CASE_UPDATED: "Case Updated";
|
|
1273
|
-
readonly CASE_UPDATED_TO_SERVICE_MANAGED: "Case Updated To Service Managed";
|
|
1274
|
-
readonly CASE_UPDATE_CASE_STATUS: "Case Status Updated";
|
|
1275
|
-
readonly DEREGISTER_DELEGATED_ADMINISTRATOR: "Deregister Delegated Administrator";
|
|
1276
|
-
readonly DISABLE_AWS_SERVICE_ACCESS: "Disable AWS Service Access";
|
|
1277
|
-
readonly MEMBERSHIP_CANCELLED: "Membership Cancelled";
|
|
1278
|
-
readonly MEMBERSHIP_CREATED: "Membership Created";
|
|
1279
|
-
readonly MEMBERSHIP_UPDATED: "Membership Updated";
|
|
1280
|
-
readonly REGISTER_DELEGATED_ADMINISTRATOR: "Register Delegated Administrator";
|
|
1281
|
-
};
|
|
1282
|
-
/**
|
|
1283
|
-
* @public
|
|
1284
|
-
*/
|
|
1285
|
-
export type CommunicationType = (typeof CommunicationType)[keyof typeof CommunicationType];
|
|
1286
907
|
/**
|
|
1287
908
|
* <p/>
|
|
1288
909
|
* @public
|
|
@@ -1309,17 +930,6 @@ export interface IncidentResponder {
|
|
|
1309
930
|
*/
|
|
1310
931
|
communicationPreferences?: CommunicationType[] | undefined;
|
|
1311
932
|
}
|
|
1312
|
-
/**
|
|
1313
|
-
* @public
|
|
1314
|
-
* @enum
|
|
1315
|
-
*/
|
|
1316
|
-
export declare const OptInFeatureName: {
|
|
1317
|
-
readonly TRIAGE: "Triage";
|
|
1318
|
-
};
|
|
1319
|
-
/**
|
|
1320
|
-
* @public
|
|
1321
|
-
*/
|
|
1322
|
-
export type OptInFeatureName = (typeof OptInFeatureName)[keyof typeof OptInFeatureName];
|
|
1323
933
|
/**
|
|
1324
934
|
* <p/>
|
|
1325
935
|
* @public
|
|
@@ -1381,18 +991,6 @@ export interface CreateMembershipResponse {
|
|
|
1381
991
|
*/
|
|
1382
992
|
membershipId: string | undefined;
|
|
1383
993
|
}
|
|
1384
|
-
/**
|
|
1385
|
-
* @public
|
|
1386
|
-
* @enum
|
|
1387
|
-
*/
|
|
1388
|
-
export declare const CustomerType: {
|
|
1389
|
-
readonly ORGANIZATION: "Organization";
|
|
1390
|
-
readonly STANDALONE: "Standalone";
|
|
1391
|
-
};
|
|
1392
|
-
/**
|
|
1393
|
-
* @public
|
|
1394
|
-
*/
|
|
1395
|
-
export type CustomerType = (typeof CustomerType)[keyof typeof CustomerType];
|
|
1396
994
|
/**
|
|
1397
995
|
* @public
|
|
1398
996
|
*/
|
|
@@ -1419,19 +1017,6 @@ export interface MembershipAccountsConfigurations {
|
|
|
1419
1017
|
*/
|
|
1420
1018
|
organizationalUnits?: string[] | undefined;
|
|
1421
1019
|
}
|
|
1422
|
-
/**
|
|
1423
|
-
* @public
|
|
1424
|
-
* @enum
|
|
1425
|
-
*/
|
|
1426
|
-
export declare const MembershipStatus: {
|
|
1427
|
-
readonly ACTIVE: "Active";
|
|
1428
|
-
readonly CANCELLED: "Cancelled";
|
|
1429
|
-
readonly TERMINATED: "Terminated";
|
|
1430
|
-
};
|
|
1431
|
-
/**
|
|
1432
|
-
* @public
|
|
1433
|
-
*/
|
|
1434
|
-
export type MembershipStatus = (typeof MembershipStatus)[keyof typeof MembershipStatus];
|
|
1435
1020
|
/**
|
|
1436
1021
|
* @public
|
|
1437
1022
|
*/
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { SecurityIRExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { SecurityIRServiceException } from "./models/SecurityIRServiceException";
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
export declare const AwsRegion: {
|
|
2
|
+
readonly AF_SOUTH_1: "af-south-1";
|
|
3
|
+
readonly AP_EAST_1: "ap-east-1";
|
|
4
|
+
readonly AP_EAST_2: "ap-east-2";
|
|
5
|
+
readonly AP_NORTHEAST_1: "ap-northeast-1";
|
|
6
|
+
readonly AP_NORTHEAST_2: "ap-northeast-2";
|
|
7
|
+
readonly AP_NORTHEAST_3: "ap-northeast-3";
|
|
8
|
+
readonly AP_SOUTHEAST_1: "ap-southeast-1";
|
|
9
|
+
readonly AP_SOUTHEAST_2: "ap-southeast-2";
|
|
10
|
+
readonly AP_SOUTHEAST_3: "ap-southeast-3";
|
|
11
|
+
readonly AP_SOUTHEAST_4: "ap-southeast-4";
|
|
12
|
+
readonly AP_SOUTHEAST_5: "ap-southeast-5";
|
|
13
|
+
readonly AP_SOUTHEAST_6: "ap-southeast-6";
|
|
14
|
+
readonly AP_SOUTHEAST_7: "ap-southeast-7";
|
|
15
|
+
readonly AP_SOUTH_1: "ap-south-1";
|
|
16
|
+
readonly AP_SOUTH_2: "ap-south-2";
|
|
17
|
+
readonly CA_CENTRAL_1: "ca-central-1";
|
|
18
|
+
readonly CA_WEST_1: "ca-west-1";
|
|
19
|
+
readonly CN_NORTHWEST_1: "cn-northwest-1";
|
|
20
|
+
readonly CN_NORTH_1: "cn-north-1";
|
|
21
|
+
readonly EU_CENTRAL_1: "eu-central-1";
|
|
22
|
+
readonly EU_CENTRAL_2: "eu-central-2";
|
|
23
|
+
readonly EU_NORTH_1: "eu-north-1";
|
|
24
|
+
readonly EU_SOUTH_1: "eu-south-1";
|
|
25
|
+
readonly EU_SOUTH_2: "eu-south-2";
|
|
26
|
+
readonly EU_WEST_1: "eu-west-1";
|
|
27
|
+
readonly EU_WEST_2: "eu-west-2";
|
|
28
|
+
readonly EU_WEST_3: "eu-west-3";
|
|
29
|
+
readonly IL_CENTRAL_1: "il-central-1";
|
|
30
|
+
readonly ME_CENTRAL_1: "me-central-1";
|
|
31
|
+
readonly ME_SOUTH_1: "me-south-1";
|
|
32
|
+
readonly MX_CENTRAL_1: "mx-central-1";
|
|
33
|
+
readonly SA_EAST_1: "sa-east-1";
|
|
34
|
+
readonly US_EAST_1: "us-east-1";
|
|
35
|
+
readonly US_EAST_2: "us-east-2";
|
|
36
|
+
readonly US_WEST_1: "us-west-1";
|
|
37
|
+
readonly US_WEST_2: "us-west-2";
|
|
38
|
+
};
|
|
39
|
+
export type AwsRegion = (typeof AwsRegion)[keyof typeof AwsRegion];
|
|
40
|
+
export declare const MembershipAccountRelationshipStatus: {
|
|
41
|
+
readonly ASSOCIATED: "Associated";
|
|
42
|
+
readonly DISASSOCIATED: "Disassociated";
|
|
43
|
+
readonly UNASSOCIATED: "Unassociated";
|
|
44
|
+
};
|
|
45
|
+
export type MembershipAccountRelationshipStatus =
|
|
46
|
+
(typeof MembershipAccountRelationshipStatus)[keyof typeof MembershipAccountRelationshipStatus];
|
|
47
|
+
export declare const MembershipAccountRelationshipType: {
|
|
48
|
+
readonly ORGANIZATION: "Organization";
|
|
49
|
+
readonly UNRELATED: "Unrelated";
|
|
50
|
+
};
|
|
51
|
+
export type MembershipAccountRelationshipType =
|
|
52
|
+
(typeof MembershipAccountRelationshipType)[keyof typeof MembershipAccountRelationshipType];
|
|
53
|
+
export declare const ValidationExceptionReason: {
|
|
54
|
+
readonly CANNOT_PARSE: "CANNOT_PARSE";
|
|
55
|
+
readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
|
|
56
|
+
readonly OTHER: "OTHER";
|
|
57
|
+
readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
|
|
58
|
+
};
|
|
59
|
+
export type ValidationExceptionReason =
|
|
60
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
61
|
+
export declare const CaseStatus: {
|
|
62
|
+
readonly ACKNOWLEDGED: "Acknowledged";
|
|
63
|
+
readonly CLOSED: "Closed";
|
|
64
|
+
readonly CONTAINMENT_ERADICATION_AND_RECOVERY: "Containment, Eradication and Recovery";
|
|
65
|
+
readonly DETECTION_AND_ANALYSIS: "Detection and Analysis";
|
|
66
|
+
readonly POST_INCIDENT_ACTIVITIES: "Post-incident Activities";
|
|
67
|
+
readonly READY_TO_CLOSE: "Ready to Close";
|
|
68
|
+
readonly SUBMITTED: "Submitted";
|
|
69
|
+
};
|
|
70
|
+
export type CaseStatus = (typeof CaseStatus)[keyof typeof CaseStatus];
|
|
71
|
+
export declare const EngagementType: {
|
|
72
|
+
readonly INVESTIGATION: "Investigation";
|
|
73
|
+
readonly SECURITY_INCIDENT: "Security Incident";
|
|
74
|
+
};
|
|
75
|
+
export type EngagementType =
|
|
76
|
+
(typeof EngagementType)[keyof typeof EngagementType];
|
|
77
|
+
export declare const ResolverType: {
|
|
78
|
+
readonly AWS: "AWS";
|
|
79
|
+
readonly SELF: "Self";
|
|
80
|
+
};
|
|
81
|
+
export type ResolverType = (typeof ResolverType)[keyof typeof ResolverType];
|
|
82
|
+
export declare const CaseAttachmentStatus: {
|
|
83
|
+
readonly FAILED: "Failed";
|
|
84
|
+
readonly PENDING: "Pending";
|
|
85
|
+
readonly VERIFIED: "Verified";
|
|
86
|
+
};
|
|
87
|
+
export type CaseAttachmentStatus =
|
|
88
|
+
(typeof CaseAttachmentStatus)[keyof typeof CaseAttachmentStatus];
|
|
89
|
+
export declare const ClosureCode: {
|
|
90
|
+
readonly DUPLICATE: "Duplicate";
|
|
91
|
+
readonly FALSE_POSITIVE: "False Positive";
|
|
92
|
+
readonly INVESTIGATION_COMPLETED: "Investigation Completed";
|
|
93
|
+
readonly NOT_RESOLVED: "Not Resolved";
|
|
94
|
+
};
|
|
95
|
+
export type ClosureCode = (typeof ClosureCode)[keyof typeof ClosureCode];
|
|
96
|
+
export declare const PendingAction: {
|
|
97
|
+
readonly CUSTOMER: "Customer";
|
|
98
|
+
readonly NONE: "None";
|
|
99
|
+
};
|
|
100
|
+
export type PendingAction = (typeof PendingAction)[keyof typeof PendingAction];
|
|
101
|
+
export declare const SelfManagedCaseStatus: {
|
|
102
|
+
readonly CONTAINMENT_ERADICATION_AND_RECOVERY: "Containment, Eradication and Recovery";
|
|
103
|
+
readonly DETECTION_AND_ANALYSIS: "Detection and Analysis";
|
|
104
|
+
readonly POST_INCIDENT_ACTIVITIES: "Post-incident Activities";
|
|
105
|
+
readonly SUBMITTED: "Submitted";
|
|
106
|
+
};
|
|
107
|
+
export type SelfManagedCaseStatus =
|
|
108
|
+
(typeof SelfManagedCaseStatus)[keyof typeof SelfManagedCaseStatus];
|
|
109
|
+
export declare const CommunicationType: {
|
|
110
|
+
readonly CASE_ACKNOWLEDGED: "Case Acknowledged";
|
|
111
|
+
readonly CASE_ATTACHMENT_URL_UPLOADED: "Case Attachment Url Uploaded";
|
|
112
|
+
readonly CASE_CLOSED: "Case Closed";
|
|
113
|
+
readonly CASE_COMMENT_ADDED: "Case Comment Added";
|
|
114
|
+
readonly CASE_COMMENT_UPDATED: "Case Comment Updated";
|
|
115
|
+
readonly CASE_CREATED: "Case Created";
|
|
116
|
+
readonly CASE_PENDING_CUSTOMER_ACTION_REMINDER: "Case Pending Customer Action Reminder";
|
|
117
|
+
readonly CASE_UPDATED: "Case Updated";
|
|
118
|
+
readonly CASE_UPDATED_TO_SERVICE_MANAGED: "Case Updated To Service Managed";
|
|
119
|
+
readonly CASE_UPDATE_CASE_STATUS: "Case Status Updated";
|
|
120
|
+
readonly DEREGISTER_DELEGATED_ADMINISTRATOR: "Deregister Delegated Administrator";
|
|
121
|
+
readonly DISABLE_AWS_SERVICE_ACCESS: "Disable AWS Service Access";
|
|
122
|
+
readonly MEMBERSHIP_CANCELLED: "Membership Cancelled";
|
|
123
|
+
readonly MEMBERSHIP_CREATED: "Membership Created";
|
|
124
|
+
readonly MEMBERSHIP_UPDATED: "Membership Updated";
|
|
125
|
+
readonly REGISTER_DELEGATED_ADMINISTRATOR: "Register Delegated Administrator";
|
|
126
|
+
};
|
|
127
|
+
export type CommunicationType =
|
|
128
|
+
(typeof CommunicationType)[keyof typeof CommunicationType];
|
|
129
|
+
export declare const OptInFeatureName: {
|
|
130
|
+
readonly TRIAGE: "Triage";
|
|
131
|
+
};
|
|
132
|
+
export type OptInFeatureName =
|
|
133
|
+
(typeof OptInFeatureName)[keyof typeof OptInFeatureName];
|
|
134
|
+
export declare const CustomerType: {
|
|
135
|
+
readonly ORGANIZATION: "Organization";
|
|
136
|
+
readonly STANDALONE: "Standalone";
|
|
137
|
+
};
|
|
138
|
+
export type CustomerType = (typeof CustomerType)[keyof typeof CustomerType];
|
|
139
|
+
export declare const MembershipStatus: {
|
|
140
|
+
readonly ACTIVE: "Active";
|
|
141
|
+
readonly CANCELLED: "Cancelled";
|
|
142
|
+
readonly TERMINATED: "Terminated";
|
|
143
|
+
};
|
|
144
|
+
export type MembershipStatus =
|
|
145
|
+
(typeof MembershipStatus)[keyof typeof MembershipStatus];
|