@aws-sdk/client-security-ir 3.933.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,259 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
constructor(opts) {
|
|
6
|
-
super({
|
|
7
|
-
name: "AccessDeniedException",
|
|
8
|
-
$fault: "client",
|
|
9
|
-
...opts,
|
|
10
|
-
});
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
export const AwsRegion = {
|
|
15
|
-
AF_SOUTH_1: "af-south-1",
|
|
16
|
-
AP_EAST_1: "ap-east-1",
|
|
17
|
-
AP_EAST_2: "ap-east-2",
|
|
18
|
-
AP_NORTHEAST_1: "ap-northeast-1",
|
|
19
|
-
AP_NORTHEAST_2: "ap-northeast-2",
|
|
20
|
-
AP_NORTHEAST_3: "ap-northeast-3",
|
|
21
|
-
AP_SOUTHEAST_1: "ap-southeast-1",
|
|
22
|
-
AP_SOUTHEAST_2: "ap-southeast-2",
|
|
23
|
-
AP_SOUTHEAST_3: "ap-southeast-3",
|
|
24
|
-
AP_SOUTHEAST_4: "ap-southeast-4",
|
|
25
|
-
AP_SOUTHEAST_5: "ap-southeast-5",
|
|
26
|
-
AP_SOUTHEAST_6: "ap-southeast-6",
|
|
27
|
-
AP_SOUTHEAST_7: "ap-southeast-7",
|
|
28
|
-
AP_SOUTH_1: "ap-south-1",
|
|
29
|
-
AP_SOUTH_2: "ap-south-2",
|
|
30
|
-
CA_CENTRAL_1: "ca-central-1",
|
|
31
|
-
CA_WEST_1: "ca-west-1",
|
|
32
|
-
CN_NORTHWEST_1: "cn-northwest-1",
|
|
33
|
-
CN_NORTH_1: "cn-north-1",
|
|
34
|
-
EU_CENTRAL_1: "eu-central-1",
|
|
35
|
-
EU_CENTRAL_2: "eu-central-2",
|
|
36
|
-
EU_NORTH_1: "eu-north-1",
|
|
37
|
-
EU_SOUTH_1: "eu-south-1",
|
|
38
|
-
EU_SOUTH_2: "eu-south-2",
|
|
39
|
-
EU_WEST_1: "eu-west-1",
|
|
40
|
-
EU_WEST_2: "eu-west-2",
|
|
41
|
-
EU_WEST_3: "eu-west-3",
|
|
42
|
-
IL_CENTRAL_1: "il-central-1",
|
|
43
|
-
ME_CENTRAL_1: "me-central-1",
|
|
44
|
-
ME_SOUTH_1: "me-south-1",
|
|
45
|
-
MX_CENTRAL_1: "mx-central-1",
|
|
46
|
-
SA_EAST_1: "sa-east-1",
|
|
47
|
-
US_EAST_1: "us-east-1",
|
|
48
|
-
US_EAST_2: "us-east-2",
|
|
49
|
-
US_WEST_1: "us-west-1",
|
|
50
|
-
US_WEST_2: "us-west-2",
|
|
51
|
-
};
|
|
52
|
-
export const MembershipAccountRelationshipStatus = {
|
|
53
|
-
ASSOCIATED: "Associated",
|
|
54
|
-
DISASSOCIATED: "Disassociated",
|
|
55
|
-
UNASSOCIATED: "Unassociated",
|
|
56
|
-
};
|
|
57
|
-
export const MembershipAccountRelationshipType = {
|
|
58
|
-
ORGANIZATION: "Organization",
|
|
59
|
-
UNRELATED: "Unrelated",
|
|
60
|
-
};
|
|
61
|
-
export class ConflictException extends __BaseException {
|
|
62
|
-
name = "ConflictException";
|
|
63
|
-
$fault = "client";
|
|
64
|
-
resourceId;
|
|
65
|
-
resourceType;
|
|
66
|
-
constructor(opts) {
|
|
67
|
-
super({
|
|
68
|
-
name: "ConflictException",
|
|
69
|
-
$fault: "client",
|
|
70
|
-
...opts,
|
|
71
|
-
});
|
|
72
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
73
|
-
this.resourceId = opts.resourceId;
|
|
74
|
-
this.resourceType = opts.resourceType;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
export class InternalServerException extends __BaseException {
|
|
78
|
-
name = "InternalServerException";
|
|
79
|
-
$fault = "server";
|
|
80
|
-
$retryable = {};
|
|
81
|
-
retryAfterSeconds;
|
|
82
|
-
constructor(opts) {
|
|
83
|
-
super({
|
|
84
|
-
name: "InternalServerException",
|
|
85
|
-
$fault: "server",
|
|
86
|
-
...opts,
|
|
87
|
-
});
|
|
88
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
89
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
export class InvalidTokenException extends __BaseException {
|
|
93
|
-
name = "InvalidTokenException";
|
|
94
|
-
$fault = "client";
|
|
95
|
-
$retryable = {};
|
|
96
|
-
constructor(opts) {
|
|
97
|
-
super({
|
|
98
|
-
name: "InvalidTokenException",
|
|
99
|
-
$fault: "client",
|
|
100
|
-
...opts,
|
|
101
|
-
});
|
|
102
|
-
Object.setPrototypeOf(this, InvalidTokenException.prototype);
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
106
|
-
name = "ResourceNotFoundException";
|
|
107
|
-
$fault = "client";
|
|
108
|
-
constructor(opts) {
|
|
109
|
-
super({
|
|
110
|
-
name: "ResourceNotFoundException",
|
|
111
|
-
$fault: "client",
|
|
112
|
-
...opts,
|
|
113
|
-
});
|
|
114
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
export class SecurityIncidentResponseNotActiveException extends __BaseException {
|
|
118
|
-
name = "SecurityIncidentResponseNotActiveException";
|
|
119
|
-
$fault = "client";
|
|
120
|
-
constructor(opts) {
|
|
121
|
-
super({
|
|
122
|
-
name: "SecurityIncidentResponseNotActiveException",
|
|
123
|
-
$fault: "client",
|
|
124
|
-
...opts,
|
|
125
|
-
});
|
|
126
|
-
Object.setPrototypeOf(this, SecurityIncidentResponseNotActiveException.prototype);
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
export class ServiceQuotaExceededException extends __BaseException {
|
|
130
|
-
name = "ServiceQuotaExceededException";
|
|
131
|
-
$fault = "client";
|
|
132
|
-
resourceId;
|
|
133
|
-
resourceType;
|
|
134
|
-
serviceCode;
|
|
135
|
-
quotaCode;
|
|
136
|
-
constructor(opts) {
|
|
137
|
-
super({
|
|
138
|
-
name: "ServiceQuotaExceededException",
|
|
139
|
-
$fault: "client",
|
|
140
|
-
...opts,
|
|
141
|
-
});
|
|
142
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
143
|
-
this.resourceId = opts.resourceId;
|
|
144
|
-
this.resourceType = opts.resourceType;
|
|
145
|
-
this.serviceCode = opts.serviceCode;
|
|
146
|
-
this.quotaCode = opts.quotaCode;
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
export class ThrottlingException extends __BaseException {
|
|
150
|
-
name = "ThrottlingException";
|
|
151
|
-
$fault = "client";
|
|
152
|
-
$retryable = {
|
|
153
|
-
throttling: true,
|
|
154
|
-
};
|
|
155
|
-
serviceCode;
|
|
156
|
-
quotaCode;
|
|
157
|
-
retryAfterSeconds;
|
|
158
|
-
constructor(opts) {
|
|
159
|
-
super({
|
|
160
|
-
name: "ThrottlingException",
|
|
161
|
-
$fault: "client",
|
|
162
|
-
...opts,
|
|
163
|
-
});
|
|
164
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
165
|
-
this.serviceCode = opts.serviceCode;
|
|
166
|
-
this.quotaCode = opts.quotaCode;
|
|
167
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
export const ValidationExceptionReason = {
|
|
171
|
-
CANNOT_PARSE: "CANNOT_PARSE",
|
|
172
|
-
FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
|
|
173
|
-
OTHER: "OTHER",
|
|
174
|
-
UNKNOWN_OPERATION: "UNKNOWN_OPERATION",
|
|
175
|
-
};
|
|
176
|
-
export class ValidationException extends __BaseException {
|
|
177
|
-
name = "ValidationException";
|
|
178
|
-
$fault = "client";
|
|
179
|
-
reason;
|
|
180
|
-
fieldList;
|
|
181
|
-
constructor(opts) {
|
|
182
|
-
super({
|
|
183
|
-
name: "ValidationException",
|
|
184
|
-
$fault: "client",
|
|
185
|
-
...opts,
|
|
186
|
-
});
|
|
187
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
188
|
-
this.reason = opts.reason;
|
|
189
|
-
this.fieldList = opts.fieldList;
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
export const CaseStatus = {
|
|
193
|
-
ACKNOWLEDGED: "Acknowledged",
|
|
194
|
-
CLOSED: "Closed",
|
|
195
|
-
CONTAINMENT_ERADICATION_AND_RECOVERY: "Containment, Eradication and Recovery",
|
|
196
|
-
DETECTION_AND_ANALYSIS: "Detection and Analysis",
|
|
197
|
-
POST_INCIDENT_ACTIVITIES: "Post-incident Activities",
|
|
198
|
-
READY_TO_CLOSE: "Ready to Close",
|
|
199
|
-
SUBMITTED: "Submitted",
|
|
200
|
-
};
|
|
201
|
-
export const EngagementType = {
|
|
202
|
-
INVESTIGATION: "Investigation",
|
|
203
|
-
SECURITY_INCIDENT: "Security Incident",
|
|
204
|
-
};
|
|
205
|
-
export const ResolverType = {
|
|
206
|
-
AWS: "AWS",
|
|
207
|
-
SELF: "Self",
|
|
208
|
-
};
|
|
209
|
-
export const CaseAttachmentStatus = {
|
|
210
|
-
FAILED: "Failed",
|
|
211
|
-
PENDING: "Pending",
|
|
212
|
-
VERIFIED: "Verified",
|
|
213
|
-
};
|
|
214
|
-
export const ClosureCode = {
|
|
215
|
-
DUPLICATE: "Duplicate",
|
|
216
|
-
FALSE_POSITIVE: "False Positive",
|
|
217
|
-
INVESTIGATION_COMPLETED: "Investigation Completed",
|
|
218
|
-
NOT_RESOLVED: "Not Resolved",
|
|
219
|
-
};
|
|
220
|
-
export const PendingAction = {
|
|
221
|
-
CUSTOMER: "Customer",
|
|
222
|
-
NONE: "None",
|
|
223
|
-
};
|
|
224
|
-
export const SelfManagedCaseStatus = {
|
|
225
|
-
CONTAINMENT_ERADICATION_AND_RECOVERY: "Containment, Eradication and Recovery",
|
|
226
|
-
DETECTION_AND_ANALYSIS: "Detection and Analysis",
|
|
227
|
-
POST_INCIDENT_ACTIVITIES: "Post-incident Activities",
|
|
228
|
-
SUBMITTED: "Submitted",
|
|
229
|
-
};
|
|
230
|
-
export const CommunicationType = {
|
|
231
|
-
CASE_ACKNOWLEDGED: "Case Acknowledged",
|
|
232
|
-
CASE_ATTACHMENT_URL_UPLOADED: "Case Attachment Url Uploaded",
|
|
233
|
-
CASE_CLOSED: "Case Closed",
|
|
234
|
-
CASE_COMMENT_ADDED: "Case Comment Added",
|
|
235
|
-
CASE_COMMENT_UPDATED: "Case Comment Updated",
|
|
236
|
-
CASE_CREATED: "Case Created",
|
|
237
|
-
CASE_PENDING_CUSTOMER_ACTION_REMINDER: "Case Pending Customer Action Reminder",
|
|
238
|
-
CASE_UPDATED: "Case Updated",
|
|
239
|
-
CASE_UPDATED_TO_SERVICE_MANAGED: "Case Updated To Service Managed",
|
|
240
|
-
CASE_UPDATE_CASE_STATUS: "Case Status Updated",
|
|
241
|
-
DEREGISTER_DELEGATED_ADMINISTRATOR: "Deregister Delegated Administrator",
|
|
242
|
-
DISABLE_AWS_SERVICE_ACCESS: "Disable AWS Service Access",
|
|
243
|
-
MEMBERSHIP_CANCELLED: "Membership Cancelled",
|
|
244
|
-
MEMBERSHIP_CREATED: "Membership Created",
|
|
245
|
-
MEMBERSHIP_UPDATED: "Membership Updated",
|
|
246
|
-
REGISTER_DELEGATED_ADMINISTRATOR: "Register Delegated Administrator",
|
|
247
|
-
};
|
|
248
|
-
export const OptInFeatureName = {
|
|
249
|
-
TRIAGE: "Triage",
|
|
250
|
-
};
|
|
251
|
-
export const CustomerType = {
|
|
252
|
-
ORGANIZATION: "Organization",
|
|
253
|
-
STANDALONE: "Standalone",
|
|
254
|
-
};
|
|
255
|
-
export const MembershipStatus = {
|
|
256
|
-
ACTIVE: "Active",
|
|
257
|
-
CANCELLED: "Cancelled",
|
|
258
|
-
TERMINATED: "Terminated",
|
|
259
|
-
};
|
|
1
|
+
export {};
|
|
@@ -212,7 +212,7 @@ const _wTA = "watchersToAdd";
|
|
|
212
212
|
const _wTD = "watchersToDelete";
|
|
213
213
|
const n0 = "com.amazonaws.securityir";
|
|
214
214
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
215
|
-
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, InvalidTokenException as __InvalidTokenException, ResourceNotFoundException as __ResourceNotFoundException, SecurityIncidentResponseNotActiveException as __SecurityIncidentResponseNotActiveException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/
|
|
215
|
+
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, InvalidTokenException as __InvalidTokenException, ResourceNotFoundException as __ResourceNotFoundException, SecurityIncidentResponseNotActiveException as __SecurityIncidentResponseNotActiveException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/errors";
|
|
216
216
|
import { SecurityIRServiceException as __SecurityIRServiceException } from "../models/SecurityIRServiceException";
|
|
217
217
|
export var CaseDescription = [0, n0, _CD, 8, 0];
|
|
218
218
|
export var CaseTitle = [0, n0, _CT, 8, 0];
|
package/dist-types/index.d.ts
CHANGED
|
@@ -10,5 +10,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
10
10
|
export type { SecurityIRExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
12
|
export * from "./pagination";
|
|
13
|
-
export * from "./models";
|
|
13
|
+
export * from "./models/enums";
|
|
14
|
+
export * from "./models/errors";
|
|
15
|
+
export type * from "./models/models_0";
|
|
14
16
|
export { SecurityIRServiceException } from "./models/SecurityIRServiceException";
|
|
@@ -0,0 +1,241 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const AwsRegion: {
|
|
6
|
+
readonly AF_SOUTH_1: "af-south-1";
|
|
7
|
+
readonly AP_EAST_1: "ap-east-1";
|
|
8
|
+
readonly AP_EAST_2: "ap-east-2";
|
|
9
|
+
readonly AP_NORTHEAST_1: "ap-northeast-1";
|
|
10
|
+
readonly AP_NORTHEAST_2: "ap-northeast-2";
|
|
11
|
+
readonly AP_NORTHEAST_3: "ap-northeast-3";
|
|
12
|
+
readonly AP_SOUTHEAST_1: "ap-southeast-1";
|
|
13
|
+
readonly AP_SOUTHEAST_2: "ap-southeast-2";
|
|
14
|
+
readonly AP_SOUTHEAST_3: "ap-southeast-3";
|
|
15
|
+
readonly AP_SOUTHEAST_4: "ap-southeast-4";
|
|
16
|
+
readonly AP_SOUTHEAST_5: "ap-southeast-5";
|
|
17
|
+
readonly AP_SOUTHEAST_6: "ap-southeast-6";
|
|
18
|
+
readonly AP_SOUTHEAST_7: "ap-southeast-7";
|
|
19
|
+
readonly AP_SOUTH_1: "ap-south-1";
|
|
20
|
+
readonly AP_SOUTH_2: "ap-south-2";
|
|
21
|
+
readonly CA_CENTRAL_1: "ca-central-1";
|
|
22
|
+
readonly CA_WEST_1: "ca-west-1";
|
|
23
|
+
readonly CN_NORTHWEST_1: "cn-northwest-1";
|
|
24
|
+
readonly CN_NORTH_1: "cn-north-1";
|
|
25
|
+
readonly EU_CENTRAL_1: "eu-central-1";
|
|
26
|
+
readonly EU_CENTRAL_2: "eu-central-2";
|
|
27
|
+
readonly EU_NORTH_1: "eu-north-1";
|
|
28
|
+
readonly EU_SOUTH_1: "eu-south-1";
|
|
29
|
+
readonly EU_SOUTH_2: "eu-south-2";
|
|
30
|
+
readonly EU_WEST_1: "eu-west-1";
|
|
31
|
+
readonly EU_WEST_2: "eu-west-2";
|
|
32
|
+
readonly EU_WEST_3: "eu-west-3";
|
|
33
|
+
readonly IL_CENTRAL_1: "il-central-1";
|
|
34
|
+
readonly ME_CENTRAL_1: "me-central-1";
|
|
35
|
+
readonly ME_SOUTH_1: "me-south-1";
|
|
36
|
+
readonly MX_CENTRAL_1: "mx-central-1";
|
|
37
|
+
readonly SA_EAST_1: "sa-east-1";
|
|
38
|
+
readonly US_EAST_1: "us-east-1";
|
|
39
|
+
readonly US_EAST_2: "us-east-2";
|
|
40
|
+
readonly US_WEST_1: "us-west-1";
|
|
41
|
+
readonly US_WEST_2: "us-west-2";
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
export type AwsRegion = (typeof AwsRegion)[keyof typeof AwsRegion];
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
* @enum
|
|
50
|
+
*/
|
|
51
|
+
export declare const MembershipAccountRelationshipStatus: {
|
|
52
|
+
readonly ASSOCIATED: "Associated";
|
|
53
|
+
readonly DISASSOCIATED: "Disassociated";
|
|
54
|
+
readonly UNASSOCIATED: "Unassociated";
|
|
55
|
+
};
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
export type MembershipAccountRelationshipStatus = (typeof MembershipAccountRelationshipStatus)[keyof typeof MembershipAccountRelationshipStatus];
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
* @enum
|
|
63
|
+
*/
|
|
64
|
+
export declare const MembershipAccountRelationshipType: {
|
|
65
|
+
readonly ORGANIZATION: "Organization";
|
|
66
|
+
readonly UNRELATED: "Unrelated";
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
export type MembershipAccountRelationshipType = (typeof MembershipAccountRelationshipType)[keyof typeof MembershipAccountRelationshipType];
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
* @enum
|
|
75
|
+
*/
|
|
76
|
+
export declare const ValidationExceptionReason: {
|
|
77
|
+
readonly CANNOT_PARSE: "CANNOT_PARSE";
|
|
78
|
+
readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
|
|
79
|
+
readonly OTHER: "OTHER";
|
|
80
|
+
readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
86
|
+
/**
|
|
87
|
+
* @public
|
|
88
|
+
* @enum
|
|
89
|
+
*/
|
|
90
|
+
export declare const CaseStatus: {
|
|
91
|
+
readonly ACKNOWLEDGED: "Acknowledged";
|
|
92
|
+
readonly CLOSED: "Closed";
|
|
93
|
+
readonly CONTAINMENT_ERADICATION_AND_RECOVERY: "Containment, Eradication and Recovery";
|
|
94
|
+
readonly DETECTION_AND_ANALYSIS: "Detection and Analysis";
|
|
95
|
+
readonly POST_INCIDENT_ACTIVITIES: "Post-incident Activities";
|
|
96
|
+
readonly READY_TO_CLOSE: "Ready to Close";
|
|
97
|
+
readonly SUBMITTED: "Submitted";
|
|
98
|
+
};
|
|
99
|
+
/**
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
export type CaseStatus = (typeof CaseStatus)[keyof typeof CaseStatus];
|
|
103
|
+
/**
|
|
104
|
+
* @public
|
|
105
|
+
* @enum
|
|
106
|
+
*/
|
|
107
|
+
export declare const EngagementType: {
|
|
108
|
+
readonly INVESTIGATION: "Investigation";
|
|
109
|
+
readonly SECURITY_INCIDENT: "Security Incident";
|
|
110
|
+
};
|
|
111
|
+
/**
|
|
112
|
+
* @public
|
|
113
|
+
*/
|
|
114
|
+
export type EngagementType = (typeof EngagementType)[keyof typeof EngagementType];
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
* @enum
|
|
118
|
+
*/
|
|
119
|
+
export declare const ResolverType: {
|
|
120
|
+
readonly AWS: "AWS";
|
|
121
|
+
readonly SELF: "Self";
|
|
122
|
+
};
|
|
123
|
+
/**
|
|
124
|
+
* @public
|
|
125
|
+
*/
|
|
126
|
+
export type ResolverType = (typeof ResolverType)[keyof typeof ResolverType];
|
|
127
|
+
/**
|
|
128
|
+
* @public
|
|
129
|
+
* @enum
|
|
130
|
+
*/
|
|
131
|
+
export declare const CaseAttachmentStatus: {
|
|
132
|
+
readonly FAILED: "Failed";
|
|
133
|
+
readonly PENDING: "Pending";
|
|
134
|
+
readonly VERIFIED: "Verified";
|
|
135
|
+
};
|
|
136
|
+
/**
|
|
137
|
+
* @public
|
|
138
|
+
*/
|
|
139
|
+
export type CaseAttachmentStatus = (typeof CaseAttachmentStatus)[keyof typeof CaseAttachmentStatus];
|
|
140
|
+
/**
|
|
141
|
+
* @public
|
|
142
|
+
* @enum
|
|
143
|
+
*/
|
|
144
|
+
export declare const ClosureCode: {
|
|
145
|
+
readonly DUPLICATE: "Duplicate";
|
|
146
|
+
readonly FALSE_POSITIVE: "False Positive";
|
|
147
|
+
readonly INVESTIGATION_COMPLETED: "Investigation Completed";
|
|
148
|
+
readonly NOT_RESOLVED: "Not Resolved";
|
|
149
|
+
};
|
|
150
|
+
/**
|
|
151
|
+
* @public
|
|
152
|
+
*/
|
|
153
|
+
export type ClosureCode = (typeof ClosureCode)[keyof typeof ClosureCode];
|
|
154
|
+
/**
|
|
155
|
+
* @public
|
|
156
|
+
* @enum
|
|
157
|
+
*/
|
|
158
|
+
export declare const PendingAction: {
|
|
159
|
+
readonly CUSTOMER: "Customer";
|
|
160
|
+
readonly NONE: "None";
|
|
161
|
+
};
|
|
162
|
+
/**
|
|
163
|
+
* @public
|
|
164
|
+
*/
|
|
165
|
+
export type PendingAction = (typeof PendingAction)[keyof typeof PendingAction];
|
|
166
|
+
/**
|
|
167
|
+
* @public
|
|
168
|
+
* @enum
|
|
169
|
+
*/
|
|
170
|
+
export declare const SelfManagedCaseStatus: {
|
|
171
|
+
readonly CONTAINMENT_ERADICATION_AND_RECOVERY: "Containment, Eradication and Recovery";
|
|
172
|
+
readonly DETECTION_AND_ANALYSIS: "Detection and Analysis";
|
|
173
|
+
readonly POST_INCIDENT_ACTIVITIES: "Post-incident Activities";
|
|
174
|
+
readonly SUBMITTED: "Submitted";
|
|
175
|
+
};
|
|
176
|
+
/**
|
|
177
|
+
* @public
|
|
178
|
+
*/
|
|
179
|
+
export type SelfManagedCaseStatus = (typeof SelfManagedCaseStatus)[keyof typeof SelfManagedCaseStatus];
|
|
180
|
+
/**
|
|
181
|
+
* @public
|
|
182
|
+
* @enum
|
|
183
|
+
*/
|
|
184
|
+
export declare const CommunicationType: {
|
|
185
|
+
readonly CASE_ACKNOWLEDGED: "Case Acknowledged";
|
|
186
|
+
readonly CASE_ATTACHMENT_URL_UPLOADED: "Case Attachment Url Uploaded";
|
|
187
|
+
readonly CASE_CLOSED: "Case Closed";
|
|
188
|
+
readonly CASE_COMMENT_ADDED: "Case Comment Added";
|
|
189
|
+
readonly CASE_COMMENT_UPDATED: "Case Comment Updated";
|
|
190
|
+
readonly CASE_CREATED: "Case Created";
|
|
191
|
+
readonly CASE_PENDING_CUSTOMER_ACTION_REMINDER: "Case Pending Customer Action Reminder";
|
|
192
|
+
readonly CASE_UPDATED: "Case Updated";
|
|
193
|
+
readonly CASE_UPDATED_TO_SERVICE_MANAGED: "Case Updated To Service Managed";
|
|
194
|
+
readonly CASE_UPDATE_CASE_STATUS: "Case Status Updated";
|
|
195
|
+
readonly DEREGISTER_DELEGATED_ADMINISTRATOR: "Deregister Delegated Administrator";
|
|
196
|
+
readonly DISABLE_AWS_SERVICE_ACCESS: "Disable AWS Service Access";
|
|
197
|
+
readonly MEMBERSHIP_CANCELLED: "Membership Cancelled";
|
|
198
|
+
readonly MEMBERSHIP_CREATED: "Membership Created";
|
|
199
|
+
readonly MEMBERSHIP_UPDATED: "Membership Updated";
|
|
200
|
+
readonly REGISTER_DELEGATED_ADMINISTRATOR: "Register Delegated Administrator";
|
|
201
|
+
};
|
|
202
|
+
/**
|
|
203
|
+
* @public
|
|
204
|
+
*/
|
|
205
|
+
export type CommunicationType = (typeof CommunicationType)[keyof typeof CommunicationType];
|
|
206
|
+
/**
|
|
207
|
+
* @public
|
|
208
|
+
* @enum
|
|
209
|
+
*/
|
|
210
|
+
export declare const OptInFeatureName: {
|
|
211
|
+
readonly TRIAGE: "Triage";
|
|
212
|
+
};
|
|
213
|
+
/**
|
|
214
|
+
* @public
|
|
215
|
+
*/
|
|
216
|
+
export type OptInFeatureName = (typeof OptInFeatureName)[keyof typeof OptInFeatureName];
|
|
217
|
+
/**
|
|
218
|
+
* @public
|
|
219
|
+
* @enum
|
|
220
|
+
*/
|
|
221
|
+
export declare const CustomerType: {
|
|
222
|
+
readonly ORGANIZATION: "Organization";
|
|
223
|
+
readonly STANDALONE: "Standalone";
|
|
224
|
+
};
|
|
225
|
+
/**
|
|
226
|
+
* @public
|
|
227
|
+
*/
|
|
228
|
+
export type CustomerType = (typeof CustomerType)[keyof typeof CustomerType];
|
|
229
|
+
/**
|
|
230
|
+
* @public
|
|
231
|
+
* @enum
|
|
232
|
+
*/
|
|
233
|
+
export declare const MembershipStatus: {
|
|
234
|
+
readonly ACTIVE: "Active";
|
|
235
|
+
readonly CANCELLED: "Cancelled";
|
|
236
|
+
readonly TERMINATED: "Terminated";
|
|
237
|
+
};
|
|
238
|
+
/**
|
|
239
|
+
* @public
|
|
240
|
+
*/
|
|
241
|
+
export type MembershipStatus = (typeof MembershipStatus)[keyof typeof MembershipStatus];
|
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ValidationExceptionReason } from "./enums";
|
|
3
|
+
import { ValidationExceptionField } from "./models_0";
|
|
4
|
+
import { SecurityIRServiceException as __BaseException } from "./SecurityIRServiceException";
|
|
5
|
+
/**
|
|
6
|
+
* <p/>
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
10
|
+
readonly name: "AccessDeniedException";
|
|
11
|
+
readonly $fault: "client";
|
|
12
|
+
/**
|
|
13
|
+
* @internal
|
|
14
|
+
*/
|
|
15
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* <p/>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
export declare class ConflictException extends __BaseException {
|
|
22
|
+
readonly name: "ConflictException";
|
|
23
|
+
readonly $fault: "client";
|
|
24
|
+
/**
|
|
25
|
+
* <p>The ID of the conflicting resource.</p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
resourceId: string | undefined;
|
|
29
|
+
/**
|
|
30
|
+
* <p>The type of the conflicting resource.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
resourceType: string | undefined;
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* <p/>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
export declare class InternalServerException extends __BaseException {
|
|
44
|
+
readonly name: "InternalServerException";
|
|
45
|
+
readonly $fault: "server";
|
|
46
|
+
$retryable: {};
|
|
47
|
+
/**
|
|
48
|
+
* <p>The number of seconds after which to retry the request.</p>
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
retryAfterSeconds?: number | undefined;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
55
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* <p/>
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
export declare class InvalidTokenException extends __BaseException {
|
|
62
|
+
readonly name: "InvalidTokenException";
|
|
63
|
+
readonly $fault: "client";
|
|
64
|
+
$retryable: {};
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
68
|
+
constructor(opts: __ExceptionOptionType<InvalidTokenException, __BaseException>);
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* <p/>
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
75
|
+
readonly name: "ResourceNotFoundException";
|
|
76
|
+
readonly $fault: "client";
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
80
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* <p/>
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
export declare class SecurityIncidentResponseNotActiveException extends __BaseException {
|
|
87
|
+
readonly name: "SecurityIncidentResponseNotActiveException";
|
|
88
|
+
readonly $fault: "client";
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
92
|
+
constructor(opts: __ExceptionOptionType<SecurityIncidentResponseNotActiveException, __BaseException>);
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* <p/>
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
98
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
99
|
+
readonly name: "ServiceQuotaExceededException";
|
|
100
|
+
readonly $fault: "client";
|
|
101
|
+
/**
|
|
102
|
+
* <p>The ID of the requested resource which lead to the service quota exception.</p>
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
resourceId: string | undefined;
|
|
106
|
+
/**
|
|
107
|
+
* <p>The type of the requested resource which lead to the service quota exception.</p>
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
resourceType: string | undefined;
|
|
111
|
+
/**
|
|
112
|
+
* <p>The service code of the quota.</p>
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
serviceCode: string | undefined;
|
|
116
|
+
/**
|
|
117
|
+
* <p>The code of the quota.</p>
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
120
|
+
quotaCode: string | undefined;
|
|
121
|
+
/**
|
|
122
|
+
* @internal
|
|
123
|
+
*/
|
|
124
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
125
|
+
}
|
|
126
|
+
/**
|
|
127
|
+
* <p/>
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
export declare class ThrottlingException extends __BaseException {
|
|
131
|
+
readonly name: "ThrottlingException";
|
|
132
|
+
readonly $fault: "client";
|
|
133
|
+
$retryable: {
|
|
134
|
+
throttling: boolean;
|
|
135
|
+
};
|
|
136
|
+
/**
|
|
137
|
+
* <p>The service code of the exception.</p>
|
|
138
|
+
* @public
|
|
139
|
+
*/
|
|
140
|
+
serviceCode?: string | undefined;
|
|
141
|
+
/**
|
|
142
|
+
* <p>The quota code of the exception.</p>
|
|
143
|
+
* @public
|
|
144
|
+
*/
|
|
145
|
+
quotaCode?: string | undefined;
|
|
146
|
+
/**
|
|
147
|
+
* <p>The number of seconds after which to retry the request.</p>
|
|
148
|
+
* @public
|
|
149
|
+
*/
|
|
150
|
+
retryAfterSeconds?: number | undefined;
|
|
151
|
+
/**
|
|
152
|
+
* @internal
|
|
153
|
+
*/
|
|
154
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
155
|
+
}
|
|
156
|
+
/**
|
|
157
|
+
* <p/>
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
160
|
+
export declare class ValidationException extends __BaseException {
|
|
161
|
+
readonly name: "ValidationException";
|
|
162
|
+
readonly $fault: "client";
|
|
163
|
+
/**
|
|
164
|
+
* <p>The reason for the exception.</p>
|
|
165
|
+
* @public
|
|
166
|
+
*/
|
|
167
|
+
reason: ValidationExceptionReason | undefined;
|
|
168
|
+
/**
|
|
169
|
+
* <p>The fields which lead to the exception.</p>
|
|
170
|
+
* @public
|
|
171
|
+
*/
|
|
172
|
+
fieldList?: ValidationExceptionField[] | undefined;
|
|
173
|
+
/**
|
|
174
|
+
* @internal
|
|
175
|
+
*/
|
|
176
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
177
|
+
}
|