@aws-sdk/client-security-ir 3.703.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 (191) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +381 -0
  3. package/dist-cjs/SecurityIR.js +55 -0
  4. package/dist-cjs/SecurityIRClient.js +50 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/BatchGetMemberAccountDetailsCommand.js +26 -0
  8. package/dist-cjs/commands/CancelMembershipCommand.js +26 -0
  9. package/dist-cjs/commands/CloseCaseCommand.js +26 -0
  10. package/dist-cjs/commands/CreateCaseCommand.js +27 -0
  11. package/dist-cjs/commands/CreateCaseCommentCommand.js +27 -0
  12. package/dist-cjs/commands/CreateMembershipCommand.js +27 -0
  13. package/dist-cjs/commands/GetCaseAttachmentDownloadUrlCommand.js +27 -0
  14. package/dist-cjs/commands/GetCaseAttachmentUploadUrlCommand.js +27 -0
  15. package/dist-cjs/commands/GetCaseCommand.js +27 -0
  16. package/dist-cjs/commands/GetMembershipCommand.js +27 -0
  17. package/dist-cjs/commands/ListCaseEditsCommand.js +26 -0
  18. package/dist-cjs/commands/ListCasesCommand.js +27 -0
  19. package/dist-cjs/commands/ListCommentsCommand.js +27 -0
  20. package/dist-cjs/commands/ListMembershipsCommand.js +26 -0
  21. package/dist-cjs/commands/ListTagsForResourceCommand.js +26 -0
  22. package/dist-cjs/commands/TagResourceCommand.js +26 -0
  23. package/dist-cjs/commands/UntagResourceCommand.js +26 -0
  24. package/dist-cjs/commands/UpdateCaseCommand.js +27 -0
  25. package/dist-cjs/commands/UpdateCaseCommentCommand.js +27 -0
  26. package/dist-cjs/commands/UpdateCaseStatusCommand.js +26 -0
  27. package/dist-cjs/commands/UpdateMembershipCommand.js +27 -0
  28. package/dist-cjs/commands/UpdateResolverTypeCommand.js +26 -0
  29. package/dist-cjs/commands/index.js +25 -0
  30. package/dist-cjs/endpoint/EndpointParameters.js +16 -0
  31. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  32. package/dist-cjs/endpoint/ruleset.js +7 -0
  33. package/dist-cjs/extensionConfiguration.js +2 -0
  34. package/dist-cjs/index.js +11 -0
  35. package/dist-cjs/models/SecurityIRServiceException.js +12 -0
  36. package/dist-cjs/models/index.js +4 -0
  37. package/dist-cjs/models/models_0.js +373 -0
  38. package/dist-cjs/pagination/Interfaces.js +2 -0
  39. package/dist-cjs/pagination/ListCaseEditsPaginator.js +7 -0
  40. package/dist-cjs/pagination/ListCasesPaginator.js +7 -0
  41. package/dist-cjs/pagination/ListCommentsPaginator.js +7 -0
  42. package/dist-cjs/pagination/ListMembershipsPaginator.js +7 -0
  43. package/dist-cjs/pagination/index.js +8 -0
  44. package/dist-cjs/protocols/Aws_restJson1.js +956 -0
  45. package/dist-cjs/runtimeConfig.browser.js +39 -0
  46. package/dist-cjs/runtimeConfig.js +50 -0
  47. package/dist-cjs/runtimeConfig.native.js +15 -0
  48. package/dist-cjs/runtimeConfig.shared.js +34 -0
  49. package/dist-cjs/runtimeExtensions.js +25 -0
  50. package/dist-es/SecurityIR.js +51 -0
  51. package/dist-es/SecurityIRClient.js +46 -0
  52. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  53. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  54. package/dist-es/commands/BatchGetMemberAccountDetailsCommand.js +22 -0
  55. package/dist-es/commands/CancelMembershipCommand.js +22 -0
  56. package/dist-es/commands/CloseCaseCommand.js +22 -0
  57. package/dist-es/commands/CreateCaseCommand.js +23 -0
  58. package/dist-es/commands/CreateCaseCommentCommand.js +23 -0
  59. package/dist-es/commands/CreateMembershipCommand.js +23 -0
  60. package/dist-es/commands/GetCaseAttachmentDownloadUrlCommand.js +23 -0
  61. package/dist-es/commands/GetCaseAttachmentUploadUrlCommand.js +23 -0
  62. package/dist-es/commands/GetCaseCommand.js +23 -0
  63. package/dist-es/commands/GetMembershipCommand.js +23 -0
  64. package/dist-es/commands/ListCaseEditsCommand.js +22 -0
  65. package/dist-es/commands/ListCasesCommand.js +23 -0
  66. package/dist-es/commands/ListCommentsCommand.js +23 -0
  67. package/dist-es/commands/ListMembershipsCommand.js +22 -0
  68. package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
  69. package/dist-es/commands/TagResourceCommand.js +22 -0
  70. package/dist-es/commands/UntagResourceCommand.js +22 -0
  71. package/dist-es/commands/UpdateCaseCommand.js +23 -0
  72. package/dist-es/commands/UpdateCaseCommentCommand.js +23 -0
  73. package/dist-es/commands/UpdateCaseStatusCommand.js +22 -0
  74. package/dist-es/commands/UpdateMembershipCommand.js +23 -0
  75. package/dist-es/commands/UpdateResolverTypeCommand.js +22 -0
  76. package/dist-es/commands/index.js +22 -0
  77. package/dist-es/endpoint/EndpointParameters.js +12 -0
  78. package/dist-es/endpoint/endpointResolver.js +14 -0
  79. package/dist-es/endpoint/ruleset.js +4 -0
  80. package/dist-es/extensionConfiguration.js +1 -0
  81. package/dist-es/index.js +6 -0
  82. package/dist-es/models/SecurityIRServiceException.js +8 -0
  83. package/dist-es/models/index.js +1 -0
  84. package/dist-es/models/models_0.js +341 -0
  85. package/dist-es/pagination/Interfaces.js +1 -0
  86. package/dist-es/pagination/ListCaseEditsPaginator.js +4 -0
  87. package/dist-es/pagination/ListCasesPaginator.js +4 -0
  88. package/dist-es/pagination/ListCommentsPaginator.js +4 -0
  89. package/dist-es/pagination/ListMembershipsPaginator.js +4 -0
  90. package/dist-es/pagination/index.js +5 -0
  91. package/dist-es/protocols/Aws_restJson1.js +909 -0
  92. package/dist-es/runtimeConfig.browser.js +34 -0
  93. package/dist-es/runtimeConfig.js +45 -0
  94. package/dist-es/runtimeConfig.native.js +11 -0
  95. package/dist-es/runtimeConfig.shared.js +30 -0
  96. package/dist-es/runtimeExtensions.js +21 -0
  97. package/dist-types/SecurityIR.d.ts +166 -0
  98. package/dist-types/SecurityIRClient.d.ts +191 -0
  99. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  100. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  101. package/dist-types/commands/BatchGetMemberAccountDetailsCommand.d.ts +114 -0
  102. package/dist-types/commands/CancelMembershipCommand.d.ts +98 -0
  103. package/dist-types/commands/CloseCaseCommand.d.ts +99 -0
  104. package/dist-types/commands/CreateCaseCommand.d.ts +130 -0
  105. package/dist-types/commands/CreateCaseCommentCommand.d.ts +100 -0
  106. package/dist-types/commands/CreateMembershipCommand.d.ts +115 -0
  107. package/dist-types/commands/GetCaseAttachmentDownloadUrlCommand.d.ts +99 -0
  108. package/dist-types/commands/GetCaseAttachmentUploadUrlCommand.d.ts +101 -0
  109. package/dist-types/commands/GetCaseCommand.d.ts +143 -0
  110. package/dist-types/commands/GetMembershipCommand.d.ts +120 -0
  111. package/dist-types/commands/ListCaseEditsCommand.d.ts +109 -0
  112. package/dist-types/commands/ListCasesCommand.d.ts +114 -0
  113. package/dist-types/commands/ListCommentsCommand.d.ts +111 -0
  114. package/dist-types/commands/ListMembershipsCommand.d.ts +108 -0
  115. package/dist-types/commands/ListTagsForResourceCommand.d.ts +100 -0
  116. package/dist-types/commands/TagResourceCommand.d.ts +99 -0
  117. package/dist-types/commands/UntagResourceCommand.d.ts +99 -0
  118. package/dist-types/commands/UpdateCaseCommand.d.ts +149 -0
  119. package/dist-types/commands/UpdateCaseCommentCommand.d.ts +101 -0
  120. package/dist-types/commands/UpdateCaseStatusCommand.d.ts +101 -0
  121. package/dist-types/commands/UpdateMembershipCommand.d.ts +110 -0
  122. package/dist-types/commands/UpdateResolverTypeCommand.d.ts +105 -0
  123. package/dist-types/commands/index.d.ts +22 -0
  124. package/dist-types/endpoint/EndpointParameters.d.ts +34 -0
  125. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  126. package/dist-types/endpoint/ruleset.d.ts +2 -0
  127. package/dist-types/extensionConfiguration.d.ts +9 -0
  128. package/dist-types/index.d.ts +14 -0
  129. package/dist-types/models/SecurityIRServiceException.d.ts +14 -0
  130. package/dist-types/models/index.d.ts +1 -0
  131. package/dist-types/models/models_0.d.ts +1734 -0
  132. package/dist-types/pagination/Interfaces.d.ts +8 -0
  133. package/dist-types/pagination/ListCaseEditsPaginator.d.ts +7 -0
  134. package/dist-types/pagination/ListCasesPaginator.d.ts +7 -0
  135. package/dist-types/pagination/ListCommentsPaginator.d.ts +7 -0
  136. package/dist-types/pagination/ListMembershipsPaginator.d.ts +7 -0
  137. package/dist-types/pagination/index.d.ts +5 -0
  138. package/dist-types/protocols/Aws_restJson1.d.ts +200 -0
  139. package/dist-types/runtimeConfig.browser.d.ts +48 -0
  140. package/dist-types/runtimeConfig.d.ts +48 -0
  141. package/dist-types/runtimeConfig.native.d.ts +47 -0
  142. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  143. package/dist-types/runtimeExtensions.d.ts +17 -0
  144. package/dist-types/ts3.4/SecurityIR.d.ts +383 -0
  145. package/dist-types/ts3.4/SecurityIRClient.d.ts +250 -0
  146. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  147. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  148. package/dist-types/ts3.4/commands/BatchGetMemberAccountDetailsCommand.d.ts +51 -0
  149. package/dist-types/ts3.4/commands/CancelMembershipCommand.d.ts +50 -0
  150. package/dist-types/ts3.4/commands/CloseCaseCommand.d.ts +47 -0
  151. package/dist-types/ts3.4/commands/CreateCaseCommand.d.ts +47 -0
  152. package/dist-types/ts3.4/commands/CreateCaseCommentCommand.d.ts +51 -0
  153. package/dist-types/ts3.4/commands/CreateMembershipCommand.d.ts +50 -0
  154. package/dist-types/ts3.4/commands/GetCaseAttachmentDownloadUrlCommand.d.ts +51 -0
  155. package/dist-types/ts3.4/commands/GetCaseAttachmentUploadUrlCommand.d.ts +51 -0
  156. package/dist-types/ts3.4/commands/GetCaseCommand.d.ts +43 -0
  157. package/dist-types/ts3.4/commands/GetMembershipCommand.d.ts +50 -0
  158. package/dist-types/ts3.4/commands/ListCaseEditsCommand.d.ts +50 -0
  159. package/dist-types/ts3.4/commands/ListCasesCommand.d.ts +47 -0
  160. package/dist-types/ts3.4/commands/ListCommentsCommand.d.ts +47 -0
  161. package/dist-types/ts3.4/commands/ListMembershipsCommand.d.ts +50 -0
  162. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  163. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  164. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +47 -0
  165. package/dist-types/ts3.4/commands/UpdateCaseCommand.d.ts +47 -0
  166. package/dist-types/ts3.4/commands/UpdateCaseCommentCommand.d.ts +51 -0
  167. package/dist-types/ts3.4/commands/UpdateCaseStatusCommand.d.ts +50 -0
  168. package/dist-types/ts3.4/commands/UpdateMembershipCommand.d.ts +50 -0
  169. package/dist-types/ts3.4/commands/UpdateResolverTypeCommand.d.ts +51 -0
  170. package/dist-types/ts3.4/commands/index.d.ts +22 -0
  171. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  172. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  173. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  174. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  175. package/dist-types/ts3.4/index.d.ts +9 -0
  176. package/dist-types/ts3.4/models/SecurityIRServiceException.d.ts +9 -0
  177. package/dist-types/ts3.4/models/index.d.ts +1 -0
  178. package/dist-types/ts3.4/models/models_0.d.ts +552 -0
  179. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  180. package/dist-types/ts3.4/pagination/ListCaseEditsPaginator.d.ts +11 -0
  181. package/dist-types/ts3.4/pagination/ListCasesPaginator.d.ts +11 -0
  182. package/dist-types/ts3.4/pagination/ListCommentsPaginator.d.ts +11 -0
  183. package/dist-types/ts3.4/pagination/ListMembershipsPaginator.d.ts +11 -0
  184. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  185. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +269 -0
  186. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +93 -0
  187. package/dist-types/ts3.4/runtimeConfig.d.ts +94 -0
  188. package/dist-types/ts3.4/runtimeConfig.native.d.ts +87 -0
  189. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  190. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  191. package/package.json +103 -0
@@ -0,0 +1,552 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { SecurityIRServiceException as __BaseException } from "./SecurityIRServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
+ );
9
+ }
10
+ export declare const AwsRegion: {
11
+ readonly AF_SOUTH_1: "af-south-1";
12
+ readonly AP_EAST_1: "ap-east-1";
13
+ readonly AP_NORTHEAST_1: "ap-northeast-1";
14
+ readonly AP_NORTHEAST_2: "ap-northeast-2";
15
+ readonly AP_NORTHEAST_3: "ap-northeast-3";
16
+ readonly AP_SOUTHEAST_1: "ap-southeast-1";
17
+ readonly AP_SOUTHEAST_2: "ap-southeast-2";
18
+ readonly AP_SOUTHEAST_3: "ap-southeast-3";
19
+ readonly AP_SOUTHEAST_4: "ap-southeast-4";
20
+ readonly AP_SOUTHEAST_5: "ap-southeast-5";
21
+ readonly AP_SOUTH_1: "ap-south-1";
22
+ readonly AP_SOUTH_2: "ap-south-2";
23
+ readonly CA_CENTRAL_1: "ca-central-1";
24
+ readonly CA_WEST_1: "ca-west-1";
25
+ readonly CN_NORTHWEST_1: "cn-northwest-1";
26
+ readonly CN_NORTH_1: "cn-north-1";
27
+ readonly EU_CENTRAL_1: "eu-central-1";
28
+ readonly EU_CENTRAL_2: "eu-central-2";
29
+ readonly EU_NORTH_1: "eu-north-1";
30
+ readonly EU_SOUTH_1: "eu-south-1";
31
+ readonly EU_SOUTH_2: "eu-south-2";
32
+ readonly EU_WEST_1: "eu-west-1";
33
+ readonly EU_WEST_2: "eu-west-2";
34
+ readonly EU_WEST_3: "eu-west-3";
35
+ readonly IL_CENTRAL_1: "il-central-1";
36
+ readonly ME_CENTRAL_1: "me-central-1";
37
+ readonly ME_SOUTH_1: "me-south-1";
38
+ readonly SA_EAST_1: "sa-east-1";
39
+ readonly US_EAST_1: "us-east-1";
40
+ readonly US_EAST_2: "us-east-2";
41
+ readonly US_WEST_1: "us-west-1";
42
+ readonly US_WEST_2: "us-west-2";
43
+ };
44
+ export type AwsRegion = (typeof AwsRegion)[keyof typeof AwsRegion];
45
+ export interface BatchGetMemberAccountDetailsRequest {
46
+ membershipId: string | undefined;
47
+ accountIds: string[] | undefined;
48
+ }
49
+ export interface GetMembershipAccountDetailError {
50
+ accountId: string | undefined;
51
+ error: string | undefined;
52
+ message: string | undefined;
53
+ }
54
+ export declare const MembershipAccountRelationshipStatus: {
55
+ readonly ASSOCIATED: "Associated";
56
+ readonly DISASSOCIATED: "Disassociated";
57
+ };
58
+ export type MembershipAccountRelationshipStatus =
59
+ (typeof MembershipAccountRelationshipStatus)[keyof typeof MembershipAccountRelationshipStatus];
60
+ export declare const MembershipAccountRelationshipType: {
61
+ readonly ORGANIZATION: "Organization";
62
+ };
63
+ export type MembershipAccountRelationshipType =
64
+ (typeof MembershipAccountRelationshipType)[keyof typeof MembershipAccountRelationshipType];
65
+ export interface GetMembershipAccountDetailItem {
66
+ accountId?: string | undefined;
67
+ relationshipStatus?: MembershipAccountRelationshipStatus | undefined;
68
+ relationshipType?: MembershipAccountRelationshipType | undefined;
69
+ }
70
+ export interface BatchGetMemberAccountDetailsResponse {
71
+ items?: GetMembershipAccountDetailItem[] | undefined;
72
+ errors?: GetMembershipAccountDetailError[] | undefined;
73
+ }
74
+ export declare class ConflictException extends __BaseException {
75
+ readonly name: "ConflictException";
76
+ readonly $fault: "client";
77
+ resourceId: string | undefined;
78
+ resourceType: string | undefined;
79
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
80
+ }
81
+ export declare class InternalServerException extends __BaseException {
82
+ readonly name: "InternalServerException";
83
+ readonly $fault: "server";
84
+ $retryable: {};
85
+ retryAfterSeconds?: number | undefined;
86
+ constructor(
87
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
88
+ );
89
+ }
90
+ export declare class InvalidTokenException extends __BaseException {
91
+ readonly name: "InvalidTokenException";
92
+ readonly $fault: "client";
93
+ $retryable: {};
94
+ constructor(
95
+ opts: __ExceptionOptionType<InvalidTokenException, __BaseException>
96
+ );
97
+ }
98
+ export declare class ResourceNotFoundException extends __BaseException {
99
+ readonly name: "ResourceNotFoundException";
100
+ readonly $fault: "client";
101
+ constructor(
102
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
103
+ );
104
+ }
105
+ export declare class SecurityIncidentResponseNotActiveException extends __BaseException {
106
+ readonly name: "SecurityIncidentResponseNotActiveException";
107
+ readonly $fault: "client";
108
+ constructor(
109
+ opts: __ExceptionOptionType<
110
+ SecurityIncidentResponseNotActiveException,
111
+ __BaseException
112
+ >
113
+ );
114
+ }
115
+ export declare class ServiceQuotaExceededException extends __BaseException {
116
+ readonly name: "ServiceQuotaExceededException";
117
+ readonly $fault: "client";
118
+ resourceId: string | undefined;
119
+ resourceType: string | undefined;
120
+ serviceCode: string | undefined;
121
+ quotaCode: string | undefined;
122
+ constructor(
123
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
124
+ );
125
+ }
126
+ export declare class ThrottlingException extends __BaseException {
127
+ readonly name: "ThrottlingException";
128
+ readonly $fault: "client";
129
+ $retryable: {
130
+ throttling: boolean;
131
+ };
132
+ serviceCode?: string | undefined;
133
+ quotaCode?: string | undefined;
134
+ retryAfterSeconds?: number | undefined;
135
+ constructor(
136
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
137
+ );
138
+ }
139
+ export interface ValidationExceptionField {
140
+ name: string | undefined;
141
+ message: string | undefined;
142
+ }
143
+ export declare const ValidationExceptionReason: {
144
+ readonly CANNOT_PARSE: "CANNOT_PARSE";
145
+ readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
146
+ readonly OTHER: "OTHER";
147
+ readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
148
+ };
149
+ export type ValidationExceptionReason =
150
+ (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
151
+ export declare class ValidationException extends __BaseException {
152
+ readonly name: "ValidationException";
153
+ readonly $fault: "client";
154
+ reason: ValidationExceptionReason | undefined;
155
+ fieldList?: ValidationExceptionField[] | undefined;
156
+ constructor(
157
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
158
+ );
159
+ }
160
+ export interface CancelMembershipRequest {
161
+ membershipId: string | undefined;
162
+ }
163
+ export interface CancelMembershipResponse {
164
+ membershipId: string | undefined;
165
+ }
166
+ export interface CloseCaseRequest {
167
+ caseId: string | undefined;
168
+ }
169
+ export declare const CaseStatus: {
170
+ readonly ACKNOWLEDGED: "Acknowledged";
171
+ readonly CLOSED: "Closed";
172
+ readonly CONTAINMENT_ERADICATION_AND_RECOVERY: "Containment, Eradication and Recovery";
173
+ readonly DETECTION_AND_ANALYSIS: "Detection and Analysis";
174
+ readonly POST_INCIDENT_ACTIVITIES: "Post-incident Activities";
175
+ readonly READY_TO_CLOSE: "Ready to Close";
176
+ readonly SUBMITTED: "Submitted";
177
+ };
178
+ export type CaseStatus = (typeof CaseStatus)[keyof typeof CaseStatus];
179
+ export interface CloseCaseResponse {
180
+ caseStatus?: CaseStatus | undefined;
181
+ closedDate?: Date | undefined;
182
+ }
183
+ export declare const EngagementType: {
184
+ readonly INVESTIGATION: "Investigation";
185
+ readonly SECURITY_INCIDENT: "Security Incident";
186
+ };
187
+ export type EngagementType =
188
+ (typeof EngagementType)[keyof typeof EngagementType];
189
+ export interface ImpactedAwsRegion {
190
+ region: AwsRegion | undefined;
191
+ }
192
+ export declare const ResolverType: {
193
+ readonly AWS: "AWS";
194
+ readonly SELF: "Self";
195
+ };
196
+ export type ResolverType = (typeof ResolverType)[keyof typeof ResolverType];
197
+ export interface ThreatActorIp {
198
+ ipAddress: string | undefined;
199
+ userAgent?: string | undefined;
200
+ }
201
+ export interface Watcher {
202
+ email: string | undefined;
203
+ name?: string | undefined;
204
+ jobTitle?: string | undefined;
205
+ }
206
+ export interface CreateCaseRequest {
207
+ clientToken?: string | undefined;
208
+ resolverType: ResolverType | undefined;
209
+ title: string | undefined;
210
+ description: string | undefined;
211
+ engagementType: EngagementType | undefined;
212
+ reportedIncidentStartDate: Date | undefined;
213
+ impactedAccounts: string[] | undefined;
214
+ watchers: Watcher[] | undefined;
215
+ threatActorIpAddresses?: ThreatActorIp[] | undefined;
216
+ impactedServices?: string[] | undefined;
217
+ impactedAwsRegions?: ImpactedAwsRegion[] | undefined;
218
+ tags?: Record<string, string> | undefined;
219
+ }
220
+ export interface CreateCaseResponse {
221
+ caseId: string | undefined;
222
+ }
223
+ export interface CreateCaseCommentRequest {
224
+ caseId: string | undefined;
225
+ clientToken?: string | undefined;
226
+ body: string | undefined;
227
+ }
228
+ export interface CreateCaseCommentResponse {
229
+ commentId: string | undefined;
230
+ }
231
+ export interface GetCaseRequest {
232
+ caseId: string | undefined;
233
+ }
234
+ export declare const CaseAttachmentStatus: {
235
+ readonly FAILED: "Failed";
236
+ readonly PENDING: "Pending";
237
+ readonly VERIFIED: "Verified";
238
+ };
239
+ export type CaseAttachmentStatus =
240
+ (typeof CaseAttachmentStatus)[keyof typeof CaseAttachmentStatus];
241
+ export interface CaseAttachmentAttributes {
242
+ attachmentId: string | undefined;
243
+ fileName: string | undefined;
244
+ attachmentStatus: CaseAttachmentStatus | undefined;
245
+ creator: string | undefined;
246
+ createdDate: Date | undefined;
247
+ }
248
+ export declare const ClosureCode: {
249
+ readonly DUPLICATE: "Duplicate";
250
+ readonly FALSE_POSITIVE: "False Positive";
251
+ readonly INVESTIGATION_COMPLETED: "Investigation Completed";
252
+ readonly NOT_RESOLVED: "Not Resolved";
253
+ };
254
+ export type ClosureCode = (typeof ClosureCode)[keyof typeof ClosureCode];
255
+ export declare const PendingAction: {
256
+ readonly CUSTOMER: "Customer";
257
+ readonly NONE: "None";
258
+ };
259
+ export type PendingAction = (typeof PendingAction)[keyof typeof PendingAction];
260
+ export interface GetCaseResponse {
261
+ title?: string | undefined;
262
+ caseArn?: string | undefined;
263
+ description?: string | undefined;
264
+ caseStatus?: CaseStatus | undefined;
265
+ engagementType?: EngagementType | undefined;
266
+ reportedIncidentStartDate?: Date | undefined;
267
+ actualIncidentStartDate?: Date | undefined;
268
+ impactedAwsRegions?: ImpactedAwsRegion[] | undefined;
269
+ threatActorIpAddresses?: ThreatActorIp[] | undefined;
270
+ pendingAction?: PendingAction | undefined;
271
+ impactedAccounts?: string[] | undefined;
272
+ watchers?: Watcher[] | undefined;
273
+ createdDate?: Date | undefined;
274
+ lastUpdatedDate?: Date | undefined;
275
+ closureCode?: ClosureCode | undefined;
276
+ resolverType?: ResolverType | undefined;
277
+ impactedServices?: string[] | undefined;
278
+ caseAttachments?: CaseAttachmentAttributes[] | undefined;
279
+ closedDate?: Date | undefined;
280
+ }
281
+ export interface GetCaseAttachmentDownloadUrlRequest {
282
+ caseId: string | undefined;
283
+ attachmentId: string | undefined;
284
+ }
285
+ export interface GetCaseAttachmentDownloadUrlResponse {
286
+ attachmentPresignedUrl: string | undefined;
287
+ }
288
+ export interface GetCaseAttachmentUploadUrlRequest {
289
+ caseId: string | undefined;
290
+ fileName: string | undefined;
291
+ contentLength: number | undefined;
292
+ clientToken?: string | undefined;
293
+ }
294
+ export interface GetCaseAttachmentUploadUrlResponse {
295
+ attachmentPresignedUrl: string | undefined;
296
+ }
297
+ export interface ListCaseEditsRequest {
298
+ nextToken?: string | undefined;
299
+ maxResults?: number | undefined;
300
+ caseId: string | undefined;
301
+ }
302
+ export interface CaseEditItem {
303
+ eventTimestamp?: Date | undefined;
304
+ principal?: string | undefined;
305
+ action?: string | undefined;
306
+ message?: string | undefined;
307
+ }
308
+ export interface ListCaseEditsResponse {
309
+ nextToken?: string | undefined;
310
+ items?: CaseEditItem[] | undefined;
311
+ total?: number | undefined;
312
+ }
313
+ export interface ListCasesRequest {
314
+ nextToken?: string | undefined;
315
+ maxResults?: number | undefined;
316
+ }
317
+ export interface ListCasesItem {
318
+ caseId: string | undefined;
319
+ lastUpdatedDate?: Date | undefined;
320
+ title?: string | undefined;
321
+ caseArn?: string | undefined;
322
+ engagementType?: EngagementType | undefined;
323
+ caseStatus?: CaseStatus | undefined;
324
+ createdDate?: Date | undefined;
325
+ closedDate?: Date | undefined;
326
+ resolverType?: ResolverType | undefined;
327
+ pendingAction?: PendingAction | undefined;
328
+ }
329
+ export interface ListCasesResponse {
330
+ nextToken?: string | undefined;
331
+ items?: ListCasesItem[] | undefined;
332
+ total?: number | undefined;
333
+ }
334
+ export interface ListCommentsRequest {
335
+ nextToken?: string | undefined;
336
+ maxResults?: number | undefined;
337
+ caseId: string | undefined;
338
+ }
339
+ export interface ListCommentsItem {
340
+ commentId: string | undefined;
341
+ createdDate?: Date | undefined;
342
+ lastUpdatedDate?: Date | undefined;
343
+ creator?: string | undefined;
344
+ lastUpdatedBy?: string | undefined;
345
+ body?: string | undefined;
346
+ }
347
+ export interface ListCommentsResponse {
348
+ nextToken?: string | undefined;
349
+ items?: ListCommentsItem[] | undefined;
350
+ total?: number | undefined;
351
+ }
352
+ export interface UpdateCaseRequest {
353
+ caseId: string | undefined;
354
+ title?: string | undefined;
355
+ description?: string | undefined;
356
+ reportedIncidentStartDate?: Date | undefined;
357
+ actualIncidentStartDate?: Date | undefined;
358
+ engagementType?: EngagementType | undefined;
359
+ watchersToAdd?: Watcher[] | undefined;
360
+ watchersToDelete?: Watcher[] | undefined;
361
+ threatActorIpAddressesToAdd?: ThreatActorIp[] | undefined;
362
+ threatActorIpAddressesToDelete?: ThreatActorIp[] | undefined;
363
+ impactedServicesToAdd?: string[] | undefined;
364
+ impactedServicesToDelete?: string[] | undefined;
365
+ impactedAwsRegionsToAdd?: ImpactedAwsRegion[] | undefined;
366
+ impactedAwsRegionsToDelete?: ImpactedAwsRegion[] | undefined;
367
+ impactedAccountsToAdd?: string[] | undefined;
368
+ impactedAccountsToDelete?: string[] | undefined;
369
+ }
370
+ export interface UpdateCaseResponse {}
371
+ export interface UpdateCaseCommentRequest {
372
+ caseId: string | undefined;
373
+ commentId: string | undefined;
374
+ body: string | undefined;
375
+ }
376
+ export interface UpdateCaseCommentResponse {
377
+ commentId: string | undefined;
378
+ body?: string | undefined;
379
+ }
380
+ export declare const SelfManagedCaseStatus: {
381
+ readonly CONTAINMENT_ERADICATION_AND_RECOVERY: "Containment, Eradication and Recovery";
382
+ readonly DETECTION_AND_ANALYSIS: "Detection and Analysis";
383
+ readonly POST_INCIDENT_ACTIVITIES: "Post-incident Activities";
384
+ readonly SUBMITTED: "Submitted";
385
+ };
386
+ export type SelfManagedCaseStatus =
387
+ (typeof SelfManagedCaseStatus)[keyof typeof SelfManagedCaseStatus];
388
+ export interface UpdateCaseStatusRequest {
389
+ caseId: string | undefined;
390
+ caseStatus: SelfManagedCaseStatus | undefined;
391
+ }
392
+ export interface UpdateCaseStatusResponse {
393
+ caseStatus?: SelfManagedCaseStatus | undefined;
394
+ }
395
+ export interface UpdateResolverTypeRequest {
396
+ caseId: string | undefined;
397
+ resolverType: ResolverType | undefined;
398
+ }
399
+ export interface UpdateResolverTypeResponse {
400
+ caseId: string | undefined;
401
+ caseStatus?: CaseStatus | undefined;
402
+ resolverType?: ResolverType | undefined;
403
+ }
404
+ export interface IncidentResponder {
405
+ name: string | undefined;
406
+ jobTitle: string | undefined;
407
+ email: string | undefined;
408
+ }
409
+ export declare const OptInFeatureName: {
410
+ readonly TRIAGE: "Triage";
411
+ };
412
+ export type OptInFeatureName =
413
+ (typeof OptInFeatureName)[keyof typeof OptInFeatureName];
414
+ export interface OptInFeature {
415
+ featureName: OptInFeatureName | undefined;
416
+ isEnabled: boolean | undefined;
417
+ }
418
+ export interface CreateMembershipRequest {
419
+ clientToken?: string | undefined;
420
+ membershipName: string | undefined;
421
+ incidentResponseTeam: IncidentResponder[] | undefined;
422
+ optInFeatures?: OptInFeature[] | undefined;
423
+ tags?: Record<string, string> | undefined;
424
+ }
425
+ export interface CreateMembershipResponse {
426
+ membershipId: string | undefined;
427
+ }
428
+ export declare const CustomerType: {
429
+ readonly ORGANIZATION: "Organization";
430
+ readonly STANDALONE: "Standalone";
431
+ };
432
+ export type CustomerType = (typeof CustomerType)[keyof typeof CustomerType];
433
+ export interface GetMembershipRequest {
434
+ membershipId: string | undefined;
435
+ }
436
+ export declare const MembershipStatus: {
437
+ readonly ACTIVE: "Active";
438
+ readonly CANCELLED: "Cancelled";
439
+ readonly TERMINATED: "Terminated";
440
+ };
441
+ export type MembershipStatus =
442
+ (typeof MembershipStatus)[keyof typeof MembershipStatus];
443
+ export interface GetMembershipResponse {
444
+ membershipId: string | undefined;
445
+ accountId?: string | undefined;
446
+ region?: AwsRegion | undefined;
447
+ membershipName?: string | undefined;
448
+ membershipArn?: string | undefined;
449
+ membershipStatus?: MembershipStatus | undefined;
450
+ membershipActivationTimestamp?: Date | undefined;
451
+ membershipDeactivationTimestamp?: Date | undefined;
452
+ customerType?: CustomerType | undefined;
453
+ numberOfAccountsCovered?: number | undefined;
454
+ incidentResponseTeam?: IncidentResponder[] | undefined;
455
+ optInFeatures?: OptInFeature[] | undefined;
456
+ }
457
+ export interface ListMembershipItem {
458
+ membershipId: string | undefined;
459
+ accountId?: string | undefined;
460
+ region?: AwsRegion | undefined;
461
+ membershipArn?: string | undefined;
462
+ membershipStatus?: MembershipStatus | undefined;
463
+ }
464
+ export interface ListMembershipsRequest {
465
+ nextToken?: string | undefined;
466
+ maxResults?: number | undefined;
467
+ }
468
+ export interface ListMembershipsResponse {
469
+ nextToken?: string | undefined;
470
+ items?: ListMembershipItem[] | undefined;
471
+ }
472
+ export interface ListTagsForResourceInput {
473
+ resourceArn: string | undefined;
474
+ }
475
+ export interface ListTagsForResourceOutput {
476
+ tags: Record<string, string> | undefined;
477
+ }
478
+ export interface UpdateMembershipRequest {
479
+ membershipId: string | undefined;
480
+ membershipName?: string | undefined;
481
+ incidentResponseTeam?: IncidentResponder[] | undefined;
482
+ optInFeatures?: OptInFeature[] | undefined;
483
+ }
484
+ export interface UpdateMembershipResponse {}
485
+ export interface TagResourceInput {
486
+ resourceArn: string | undefined;
487
+ tags: Record<string, string> | undefined;
488
+ }
489
+ export interface TagResourceOutput {}
490
+ export interface UntagResourceInput {
491
+ resourceArn: string | undefined;
492
+ tagKeys: string[] | undefined;
493
+ }
494
+ export interface UntagResourceOutput {}
495
+ export declare const ThreatActorIpFilterSensitiveLog: (
496
+ obj: ThreatActorIp
497
+ ) => any;
498
+ export declare const WatcherFilterSensitiveLog: (obj: Watcher) => any;
499
+ export declare const CreateCaseRequestFilterSensitiveLog: (
500
+ obj: CreateCaseRequest
501
+ ) => any;
502
+ export declare const CreateCaseCommentRequestFilterSensitiveLog: (
503
+ obj: CreateCaseCommentRequest
504
+ ) => any;
505
+ export declare const CaseAttachmentAttributesFilterSensitiveLog: (
506
+ obj: CaseAttachmentAttributes
507
+ ) => any;
508
+ export declare const GetCaseResponseFilterSensitiveLog: (
509
+ obj: GetCaseResponse
510
+ ) => any;
511
+ export declare const GetCaseAttachmentDownloadUrlResponseFilterSensitiveLog: (
512
+ obj: GetCaseAttachmentDownloadUrlResponse
513
+ ) => any;
514
+ export declare const GetCaseAttachmentUploadUrlRequestFilterSensitiveLog: (
515
+ obj: GetCaseAttachmentUploadUrlRequest
516
+ ) => any;
517
+ export declare const GetCaseAttachmentUploadUrlResponseFilterSensitiveLog: (
518
+ obj: GetCaseAttachmentUploadUrlResponse
519
+ ) => any;
520
+ export declare const ListCasesItemFilterSensitiveLog: (
521
+ obj: ListCasesItem
522
+ ) => any;
523
+ export declare const ListCasesResponseFilterSensitiveLog: (
524
+ obj: ListCasesResponse
525
+ ) => any;
526
+ export declare const ListCommentsItemFilterSensitiveLog: (
527
+ obj: ListCommentsItem
528
+ ) => any;
529
+ export declare const ListCommentsResponseFilterSensitiveLog: (
530
+ obj: ListCommentsResponse
531
+ ) => any;
532
+ export declare const UpdateCaseRequestFilterSensitiveLog: (
533
+ obj: UpdateCaseRequest
534
+ ) => any;
535
+ export declare const UpdateCaseCommentRequestFilterSensitiveLog: (
536
+ obj: UpdateCaseCommentRequest
537
+ ) => any;
538
+ export declare const UpdateCaseCommentResponseFilterSensitiveLog: (
539
+ obj: UpdateCaseCommentResponse
540
+ ) => any;
541
+ export declare const IncidentResponderFilterSensitiveLog: (
542
+ obj: IncidentResponder
543
+ ) => any;
544
+ export declare const CreateMembershipRequestFilterSensitiveLog: (
545
+ obj: CreateMembershipRequest
546
+ ) => any;
547
+ export declare const GetMembershipResponseFilterSensitiveLog: (
548
+ obj: GetMembershipResponse
549
+ ) => any;
550
+ export declare const UpdateMembershipRequestFilterSensitiveLog: (
551
+ obj: UpdateMembershipRequest
552
+ ) => any;
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { SecurityIRClient } from "../SecurityIRClient";
3
+ export interface SecurityIRPaginationConfiguration
4
+ extends PaginationConfiguration {
5
+ client: SecurityIRClient;
6
+ }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListCaseEditsCommandInput,
4
+ ListCaseEditsCommandOutput,
5
+ } from "../commands/ListCaseEditsCommand";
6
+ import { SecurityIRPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListCaseEdits: (
8
+ config: SecurityIRPaginationConfiguration,
9
+ input: ListCaseEditsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListCaseEditsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListCasesCommandInput,
4
+ ListCasesCommandOutput,
5
+ } from "../commands/ListCasesCommand";
6
+ import { SecurityIRPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListCases: (
8
+ config: SecurityIRPaginationConfiguration,
9
+ input: ListCasesCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListCasesCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListCommentsCommandInput,
4
+ ListCommentsCommandOutput,
5
+ } from "../commands/ListCommentsCommand";
6
+ import { SecurityIRPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListComments: (
8
+ config: SecurityIRPaginationConfiguration,
9
+ input: ListCommentsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListCommentsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListMembershipsCommandInput,
4
+ ListMembershipsCommandOutput,
5
+ } from "../commands/ListMembershipsCommand";
6
+ import { SecurityIRPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListMemberships: (
8
+ config: SecurityIRPaginationConfiguration,
9
+ input: ListMembershipsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListMembershipsCommandOutput>;
@@ -0,0 +1,5 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListCaseEditsPaginator";
3
+ export * from "./ListCasesPaginator";
4
+ export * from "./ListCommentsPaginator";
5
+ export * from "./ListMembershipsPaginator";