@aws-sdk/client-security-ir 3.1075.0 → 3.1077.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 +1184 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -29
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/SecurityIRServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -138
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -850
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
const {
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultSecurityIRHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "security-ir",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultSecurityIRHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -29,6 +66,1027 @@ const commonParams = {
|
|
|
29
66
|
Region: { type: "builtInParams", name: "region" },
|
|
30
67
|
};
|
|
31
68
|
|
|
69
|
+
var version = "3.1076.0";
|
|
70
|
+
var packageInfo = {
|
|
71
|
+
version: version};
|
|
72
|
+
|
|
73
|
+
const a = "isSet", b = { "ref": "Endpoint" }, c = [{ "ref": "Region" }];
|
|
74
|
+
const _data = {
|
|
75
|
+
conditions: [
|
|
76
|
+
[a, [b]],
|
|
77
|
+
[a, c],
|
|
78
|
+
["aws.partition", c, "PartitionResult"],
|
|
79
|
+
["booleanEquals", [{ ref: "UseFIPS" }, true]]
|
|
80
|
+
],
|
|
81
|
+
results: [
|
|
82
|
+
[-1],
|
|
83
|
+
[-1, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
84
|
+
[b, {}],
|
|
85
|
+
["https://security-ir-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
|
|
86
|
+
["https://security-ir.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
|
|
87
|
+
[-1, "Invalid Configuration: Missing Region"]
|
|
88
|
+
]
|
|
89
|
+
};
|
|
90
|
+
const root = 2;
|
|
91
|
+
const r = 100_000_000;
|
|
92
|
+
const nodes = new Int32Array([
|
|
93
|
+
-1, 1, -1,
|
|
94
|
+
0, 6, 3,
|
|
95
|
+
1, 4, r + 5,
|
|
96
|
+
2, 5, r + 5,
|
|
97
|
+
3, r + 3, r + 4,
|
|
98
|
+
3, r + 1, r + 2,
|
|
99
|
+
]);
|
|
100
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
101
|
+
|
|
102
|
+
const cache = new EndpointCache({
|
|
103
|
+
size: 50,
|
|
104
|
+
params: ["Endpoint", "Region", "UseFIPS"],
|
|
105
|
+
});
|
|
106
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
107
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
108
|
+
endpointParams: endpointParams,
|
|
109
|
+
logger: context.logger,
|
|
110
|
+
}));
|
|
111
|
+
};
|
|
112
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
113
|
+
|
|
114
|
+
class SecurityIRServiceException extends ServiceException {
|
|
115
|
+
constructor(options) {
|
|
116
|
+
super(options);
|
|
117
|
+
Object.setPrototypeOf(this, SecurityIRServiceException.prototype);
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
class AccessDeniedException extends SecurityIRServiceException {
|
|
122
|
+
name = "AccessDeniedException";
|
|
123
|
+
$fault = "client";
|
|
124
|
+
constructor(opts) {
|
|
125
|
+
super({
|
|
126
|
+
name: "AccessDeniedException",
|
|
127
|
+
$fault: "client",
|
|
128
|
+
...opts,
|
|
129
|
+
});
|
|
130
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
class ConflictException extends SecurityIRServiceException {
|
|
134
|
+
name = "ConflictException";
|
|
135
|
+
$fault = "client";
|
|
136
|
+
resourceId;
|
|
137
|
+
resourceType;
|
|
138
|
+
constructor(opts) {
|
|
139
|
+
super({
|
|
140
|
+
name: "ConflictException",
|
|
141
|
+
$fault: "client",
|
|
142
|
+
...opts,
|
|
143
|
+
});
|
|
144
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
145
|
+
this.resourceId = opts.resourceId;
|
|
146
|
+
this.resourceType = opts.resourceType;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
class InternalServerException extends SecurityIRServiceException {
|
|
150
|
+
name = "InternalServerException";
|
|
151
|
+
$fault = "server";
|
|
152
|
+
$retryable = {};
|
|
153
|
+
retryAfterSeconds;
|
|
154
|
+
constructor(opts) {
|
|
155
|
+
super({
|
|
156
|
+
name: "InternalServerException",
|
|
157
|
+
$fault: "server",
|
|
158
|
+
...opts,
|
|
159
|
+
});
|
|
160
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
161
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
class InvalidTokenException extends SecurityIRServiceException {
|
|
165
|
+
name = "InvalidTokenException";
|
|
166
|
+
$fault = "client";
|
|
167
|
+
$retryable = {};
|
|
168
|
+
constructor(opts) {
|
|
169
|
+
super({
|
|
170
|
+
name: "InvalidTokenException",
|
|
171
|
+
$fault: "client",
|
|
172
|
+
...opts,
|
|
173
|
+
});
|
|
174
|
+
Object.setPrototypeOf(this, InvalidTokenException.prototype);
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
class ResourceNotFoundException extends SecurityIRServiceException {
|
|
178
|
+
name = "ResourceNotFoundException";
|
|
179
|
+
$fault = "client";
|
|
180
|
+
constructor(opts) {
|
|
181
|
+
super({
|
|
182
|
+
name: "ResourceNotFoundException",
|
|
183
|
+
$fault: "client",
|
|
184
|
+
...opts,
|
|
185
|
+
});
|
|
186
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
class SecurityIncidentResponseNotActiveException extends SecurityIRServiceException {
|
|
190
|
+
name = "SecurityIncidentResponseNotActiveException";
|
|
191
|
+
$fault = "client";
|
|
192
|
+
constructor(opts) {
|
|
193
|
+
super({
|
|
194
|
+
name: "SecurityIncidentResponseNotActiveException",
|
|
195
|
+
$fault: "client",
|
|
196
|
+
...opts,
|
|
197
|
+
});
|
|
198
|
+
Object.setPrototypeOf(this, SecurityIncidentResponseNotActiveException.prototype);
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
class ServiceQuotaExceededException extends SecurityIRServiceException {
|
|
202
|
+
name = "ServiceQuotaExceededException";
|
|
203
|
+
$fault = "client";
|
|
204
|
+
resourceId;
|
|
205
|
+
resourceType;
|
|
206
|
+
serviceCode;
|
|
207
|
+
quotaCode;
|
|
208
|
+
constructor(opts) {
|
|
209
|
+
super({
|
|
210
|
+
name: "ServiceQuotaExceededException",
|
|
211
|
+
$fault: "client",
|
|
212
|
+
...opts,
|
|
213
|
+
});
|
|
214
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
215
|
+
this.resourceId = opts.resourceId;
|
|
216
|
+
this.resourceType = opts.resourceType;
|
|
217
|
+
this.serviceCode = opts.serviceCode;
|
|
218
|
+
this.quotaCode = opts.quotaCode;
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
class ThrottlingException extends SecurityIRServiceException {
|
|
222
|
+
name = "ThrottlingException";
|
|
223
|
+
$fault = "client";
|
|
224
|
+
$retryable = {
|
|
225
|
+
throttling: true,
|
|
226
|
+
};
|
|
227
|
+
serviceCode;
|
|
228
|
+
quotaCode;
|
|
229
|
+
retryAfterSeconds;
|
|
230
|
+
constructor(opts) {
|
|
231
|
+
super({
|
|
232
|
+
name: "ThrottlingException",
|
|
233
|
+
$fault: "client",
|
|
234
|
+
...opts,
|
|
235
|
+
});
|
|
236
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
237
|
+
this.serviceCode = opts.serviceCode;
|
|
238
|
+
this.quotaCode = opts.quotaCode;
|
|
239
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
class ValidationException extends SecurityIRServiceException {
|
|
243
|
+
name = "ValidationException";
|
|
244
|
+
$fault = "client";
|
|
245
|
+
reason;
|
|
246
|
+
fieldList;
|
|
247
|
+
constructor(opts) {
|
|
248
|
+
super({
|
|
249
|
+
name: "ValidationException",
|
|
250
|
+
$fault: "client",
|
|
251
|
+
...opts,
|
|
252
|
+
});
|
|
253
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
254
|
+
this.reason = opts.reason;
|
|
255
|
+
this.fieldList = opts.fieldList;
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
const _ADE = "AccessDeniedException";
|
|
260
|
+
const _BGMAD = "BatchGetMemberAccountDetails";
|
|
261
|
+
const _BGMADR = "BatchGetMemberAccountDetailsRequest";
|
|
262
|
+
const _BGMADRa = "BatchGetMemberAccountDetailsResponse";
|
|
263
|
+
const _CAA = "CaseAttachmentAttributes";
|
|
264
|
+
const _CAL = "CaseAttachmentsList";
|
|
265
|
+
const _CB = "CommentBody";
|
|
266
|
+
const _CC = "CloseCase";
|
|
267
|
+
const _CCC = "CreateCaseComment";
|
|
268
|
+
const _CCCR = "CreateCaseCommentRequest";
|
|
269
|
+
const _CCCRr = "CreateCaseCommentResponse";
|
|
270
|
+
const _CCR = "CloseCaseRequest";
|
|
271
|
+
const _CCRl = "CloseCaseResponse";
|
|
272
|
+
const _CCRr = "CreateCaseRequest";
|
|
273
|
+
const _CCRre = "CreateCaseResponse";
|
|
274
|
+
const _CCr = "CreateCase";
|
|
275
|
+
const _CD = "CaseDescription";
|
|
276
|
+
const _CE = "ConflictException";
|
|
277
|
+
const _CEI = "CaseEditItem";
|
|
278
|
+
const _CEIa = "CaseEditItems";
|
|
279
|
+
const _CM = "CaseMetadata";
|
|
280
|
+
const _CME = "CaseMetadataEntry";
|
|
281
|
+
const _CMR = "CancelMembershipRequest";
|
|
282
|
+
const _CMRa = "CancelMembershipResponse";
|
|
283
|
+
const _CMRr = "CreateMembershipRequest";
|
|
284
|
+
const _CMRre = "CreateMembershipResponse";
|
|
285
|
+
const _CMa = "CancelMembership";
|
|
286
|
+
const _CMr = "CreateMembership";
|
|
287
|
+
const _CT = "CaseTitle";
|
|
288
|
+
const _EA = "EmailAddress";
|
|
289
|
+
const _FN = "FileName";
|
|
290
|
+
const _GC = "GetCase";
|
|
291
|
+
const _GCADU = "GetCaseAttachmentDownloadUrl";
|
|
292
|
+
const _GCADUR = "GetCaseAttachmentDownloadUrlRequest";
|
|
293
|
+
const _GCADURe = "GetCaseAttachmentDownloadUrlResponse";
|
|
294
|
+
const _GCAUU = "GetCaseAttachmentUploadUrl";
|
|
295
|
+
const _GCAUUR = "GetCaseAttachmentUploadUrlRequest";
|
|
296
|
+
const _GCAUURe = "GetCaseAttachmentUploadUrlResponse";
|
|
297
|
+
const _GCR = "GetCaseRequest";
|
|
298
|
+
const _GCRe = "GetCaseResponse";
|
|
299
|
+
const _GM = "GetMembership";
|
|
300
|
+
const _GMADE = "GetMembershipAccountDetailError";
|
|
301
|
+
const _GMADEe = "GetMembershipAccountDetailErrors";
|
|
302
|
+
const _GMADI = "GetMembershipAccountDetailItem";
|
|
303
|
+
const _GMADIe = "GetMembershipAccountDetailItems";
|
|
304
|
+
const _GMR = "GetMembershipRequest";
|
|
305
|
+
const _GMRe = "GetMembershipResponse";
|
|
306
|
+
const _IA = "InvestigationAction";
|
|
307
|
+
const _IAL = "InvestigationActionList";
|
|
308
|
+
const _IAR = "ImpactedAwsRegion";
|
|
309
|
+
const _IARL = "ImpactedAwsRegionList";
|
|
310
|
+
const _IF = "InvestigationFeedback";
|
|
311
|
+
const _IPA = "IPAddress";
|
|
312
|
+
const _IR = "IncidentResponder";
|
|
313
|
+
const _IRN = "IncidentResponderName";
|
|
314
|
+
const _IRT = "IncidentResponseTeam";
|
|
315
|
+
const _ISE = "InternalServerException";
|
|
316
|
+
const _ITE = "InvalidTokenException";
|
|
317
|
+
const _JT = "JobTitle";
|
|
318
|
+
const _LC = "ListCases";
|
|
319
|
+
const _LCE = "ListCaseEdits";
|
|
320
|
+
const _LCER = "ListCaseEditsRequest";
|
|
321
|
+
const _LCERi = "ListCaseEditsResponse";
|
|
322
|
+
const _LCI = "ListCasesItem";
|
|
323
|
+
const _LCIi = "ListCommentsItem";
|
|
324
|
+
const _LCIis = "ListCasesItems";
|
|
325
|
+
const _LCIist = "ListCommentsItems";
|
|
326
|
+
const _LCR = "ListCasesRequest";
|
|
327
|
+
const _LCRi = "ListCasesResponse";
|
|
328
|
+
const _LCRis = "ListCommentsRequest";
|
|
329
|
+
const _LCRist = "ListCommentsResponse";
|
|
330
|
+
const _LCi = "ListComments";
|
|
331
|
+
const _LI = "ListInvestigations";
|
|
332
|
+
const _LIR = "ListInvestigationsRequest";
|
|
333
|
+
const _LIRi = "ListInvestigationsResponse";
|
|
334
|
+
const _LM = "ListMemberships";
|
|
335
|
+
const _LMI = "ListMembershipItem";
|
|
336
|
+
const _LMIi = "ListMembershipItems";
|
|
337
|
+
const _LMR = "ListMembershipsRequest";
|
|
338
|
+
const _LMRi = "ListMembershipsResponse";
|
|
339
|
+
const _LTFR = "ListTagsForResource";
|
|
340
|
+
const _LTFRI = "ListTagsForResourceInput";
|
|
341
|
+
const _LTFRO = "ListTagsForResourceOutput";
|
|
342
|
+
const _MAC = "MembershipAccountsConfigurations";
|
|
343
|
+
const _MACU = "MembershipAccountsConfigurationsUpdate";
|
|
344
|
+
const _MN = "MembershipName";
|
|
345
|
+
const _OIF = "OptInFeature";
|
|
346
|
+
const _OIFp = "OptInFeatures";
|
|
347
|
+
const _PN = "PersonName";
|
|
348
|
+
const _RA = "Retry-After";
|
|
349
|
+
const _RNFE = "ResourceNotFoundException";
|
|
350
|
+
const _SF = "SendFeedback";
|
|
351
|
+
const _SFR = "SendFeedbackRequest";
|
|
352
|
+
const _SFRe = "SendFeedbackResponse";
|
|
353
|
+
const _SIRNAE = "SecurityIncidentResponseNotActiveException";
|
|
354
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
355
|
+
const _TAI = "ThreatActorIp";
|
|
356
|
+
const _TAIL = "ThreatActorIpList";
|
|
357
|
+
const _TE = "ThrottlingException";
|
|
358
|
+
const _TR = "TagResource";
|
|
359
|
+
const _TRI = "TagResourceInput";
|
|
360
|
+
const _TRO = "TagResourceOutput";
|
|
361
|
+
const _U = "Url";
|
|
362
|
+
const _UC = "UpdateCase";
|
|
363
|
+
const _UCC = "UpdateCaseComment";
|
|
364
|
+
const _UCCR = "UpdateCaseCommentRequest";
|
|
365
|
+
const _UCCRp = "UpdateCaseCommentResponse";
|
|
366
|
+
const _UCR = "UpdateCaseRequest";
|
|
367
|
+
const _UCRp = "UpdateCaseResponse";
|
|
368
|
+
const _UCS = "UpdateCaseStatus";
|
|
369
|
+
const _UCSR = "UpdateCaseStatusRequest";
|
|
370
|
+
const _UCSRp = "UpdateCaseStatusResponse";
|
|
371
|
+
const _UM = "UpdateMembership";
|
|
372
|
+
const _UMR = "UpdateMembershipRequest";
|
|
373
|
+
const _UMRp = "UpdateMembershipResponse";
|
|
374
|
+
const _UR = "UntagResource";
|
|
375
|
+
const _URI = "UntagResourceInput";
|
|
376
|
+
const _URO = "UntagResourceOutput";
|
|
377
|
+
const _URT = "UpdateResolverType";
|
|
378
|
+
const _URTR = "UpdateResolverTypeRequest";
|
|
379
|
+
const _URTRp = "UpdateResolverTypeResponse";
|
|
380
|
+
const _VE = "ValidationException";
|
|
381
|
+
const _VEF = "ValidationExceptionField";
|
|
382
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
383
|
+
const _W = "Watcher";
|
|
384
|
+
const _Wa = "Watchers";
|
|
385
|
+
const _a = "action";
|
|
386
|
+
const _aI = "accountIds";
|
|
387
|
+
const _aISD = "actualIncidentStartDate";
|
|
388
|
+
const _aIc = "accountId";
|
|
389
|
+
const _aIt = "attachmentId";
|
|
390
|
+
const _aPU = "attachmentPresignedUrl";
|
|
391
|
+
const _aS = "attachmentStatus";
|
|
392
|
+
const _aT = "actionType";
|
|
393
|
+
const _b = "body";
|
|
394
|
+
const _c = "client";
|
|
395
|
+
const _cA = "caseArn";
|
|
396
|
+
const _cAa = "caseAttachments";
|
|
397
|
+
const _cC = "closureCode";
|
|
398
|
+
const _cD = "createdDate";
|
|
399
|
+
const _cDl = "closedDate";
|
|
400
|
+
const _cEO = "coverEntireOrganization";
|
|
401
|
+
const _cI = "caseId";
|
|
402
|
+
const _cIo = "commentId";
|
|
403
|
+
const _cL = "contentLength";
|
|
404
|
+
const _cM = "caseMetadata";
|
|
405
|
+
const _cP = "communicationPreferences";
|
|
406
|
+
const _cS = "caseStatus";
|
|
407
|
+
const _cT = "clientToken";
|
|
408
|
+
const _cTu = "customerType";
|
|
409
|
+
const _co = "content";
|
|
410
|
+
const _com = "comment";
|
|
411
|
+
const _cr = "creator";
|
|
412
|
+
const _d = "description";
|
|
413
|
+
const _e = "error";
|
|
414
|
+
const _eT = "eventTimestamp";
|
|
415
|
+
const _eTn = "engagementType";
|
|
416
|
+
const _em = "email";
|
|
417
|
+
const _er = "errors";
|
|
418
|
+
const _f = "feedback";
|
|
419
|
+
const _fL = "fieldList";
|
|
420
|
+
const _fN = "fileName";
|
|
421
|
+
const _fNe = "featureName";
|
|
422
|
+
const _h = "http";
|
|
423
|
+
const _hE = "httpError";
|
|
424
|
+
const _hH = "httpHeader";
|
|
425
|
+
const _hQ = "httpQuery";
|
|
426
|
+
const _i = "items";
|
|
427
|
+
const _iA = "impactedAccounts";
|
|
428
|
+
const _iAR = "impactedAwsRegions";
|
|
429
|
+
const _iARTA = "impactedAwsRegionsToAdd";
|
|
430
|
+
const _iARTD = "impactedAwsRegionsToDelete";
|
|
431
|
+
const _iATA = "impactedAccountsToAdd";
|
|
432
|
+
const _iATD = "impactedAccountsToDelete";
|
|
433
|
+
const _iAn = "investigationActions";
|
|
434
|
+
const _iAp = "ipAddress";
|
|
435
|
+
const _iE = "isEnabled";
|
|
436
|
+
const _iI = "investigationId";
|
|
437
|
+
const _iRT = "incidentResponseTeam";
|
|
438
|
+
const _iS = "impactedServices";
|
|
439
|
+
const _iSTA = "impactedServicesToAdd";
|
|
440
|
+
const _iSTD = "impactedServicesToDelete";
|
|
441
|
+
const _jT = "jobTitle";
|
|
442
|
+
const _k = "key";
|
|
443
|
+
const _lU = "lastUpdated";
|
|
444
|
+
const _lUB = "lastUpdatedBy";
|
|
445
|
+
const _lUD = "lastUpdatedDate";
|
|
446
|
+
const _m = "message";
|
|
447
|
+
const _mA = "membershipArn";
|
|
448
|
+
const _mAC = "membershipAccountsConfigurations";
|
|
449
|
+
const _mACU = "membershipAccountsConfigurationsUpdate";
|
|
450
|
+
const _mAT = "membershipActivationTimestamp";
|
|
451
|
+
const _mDT = "membershipDeactivationTimestamp";
|
|
452
|
+
const _mI = "membershipId";
|
|
453
|
+
const _mN = "membershipName";
|
|
454
|
+
const _mR = "maxResults";
|
|
455
|
+
const _mS = "membershipStatus";
|
|
456
|
+
const _n = "name";
|
|
457
|
+
const _nOAC = "numberOfAccountsCovered";
|
|
458
|
+
const _nT = "nextToken";
|
|
459
|
+
const _oIF = "optInFeatures";
|
|
460
|
+
const _oU = "organizationalUnits";
|
|
461
|
+
const _oUTA = "organizationalUnitsToAdd";
|
|
462
|
+
const _oUTR = "organizationalUnitsToRemove";
|
|
463
|
+
const _p = "principal";
|
|
464
|
+
const _pA = "pendingAction";
|
|
465
|
+
const _qC = "quotaCode";
|
|
466
|
+
const _r = "reason";
|
|
467
|
+
const _rA = "resourceArn";
|
|
468
|
+
const _rAS = "retryAfterSeconds";
|
|
469
|
+
const _rI = "resourceId";
|
|
470
|
+
const _rISD = "reportedIncidentStartDate";
|
|
471
|
+
const _rIe = "resultId";
|
|
472
|
+
const _rS = "relationshipStatus";
|
|
473
|
+
const _rT = "resourceType";
|
|
474
|
+
const _rTe = "resolverType";
|
|
475
|
+
const _rTel = "relationshipType";
|
|
476
|
+
const _re = "region";
|
|
477
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.securityir";
|
|
478
|
+
const _sA = "submittedAt";
|
|
479
|
+
const _sC = "serviceCode";
|
|
480
|
+
const _se = "server";
|
|
481
|
+
const _st = "status";
|
|
482
|
+
const _t = "title";
|
|
483
|
+
const _tAIA = "threatActorIpAddresses";
|
|
484
|
+
const _tAIATA = "threatActorIpAddressesToAdd";
|
|
485
|
+
const _tAIATD = "threatActorIpAddressesToDelete";
|
|
486
|
+
const _tK = "tagKeys";
|
|
487
|
+
const _ta = "tags";
|
|
488
|
+
const _to = "total";
|
|
489
|
+
const _u = "usefulness";
|
|
490
|
+
const _uA = "userAgent";
|
|
491
|
+
const _uMC = "undoMembershipCancellation";
|
|
492
|
+
const _v = "value";
|
|
493
|
+
const _w = "watchers";
|
|
494
|
+
const _wTA = "watchersToAdd";
|
|
495
|
+
const _wTD = "watchersToDelete";
|
|
496
|
+
const n0 = "com.amazonaws.securityir";
|
|
497
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
498
|
+
var SecurityIRServiceException$ = [-3, _s, "SecurityIRServiceException", 0, [], []];
|
|
499
|
+
_s_registry.registerError(SecurityIRServiceException$, SecurityIRServiceException);
|
|
500
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
501
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
502
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
503
|
+
[_m],
|
|
504
|
+
[0], 1
|
|
505
|
+
];
|
|
506
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
507
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
508
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
509
|
+
[_m, _rI, _rT],
|
|
510
|
+
[0, 0, 0], 3
|
|
511
|
+
];
|
|
512
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
513
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
514
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
515
|
+
[_m, _rAS],
|
|
516
|
+
[0, [1, { [_hH]: _RA }]], 1
|
|
517
|
+
];
|
|
518
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
519
|
+
var InvalidTokenException$ = [-3, n0, _ITE,
|
|
520
|
+
{ [_e]: _c, [_hE]: 423 },
|
|
521
|
+
[_m],
|
|
522
|
+
[0], 1
|
|
523
|
+
];
|
|
524
|
+
n0_registry.registerError(InvalidTokenException$, InvalidTokenException);
|
|
525
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
526
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
527
|
+
[_m],
|
|
528
|
+
[0], 1
|
|
529
|
+
];
|
|
530
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
531
|
+
var SecurityIncidentResponseNotActiveException$ = [-3, n0, _SIRNAE,
|
|
532
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
533
|
+
[_m],
|
|
534
|
+
[0], 1
|
|
535
|
+
];
|
|
536
|
+
n0_registry.registerError(SecurityIncidentResponseNotActiveException$, SecurityIncidentResponseNotActiveException);
|
|
537
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
538
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
539
|
+
[_m, _rI, _rT, _sC, _qC],
|
|
540
|
+
[0, 0, 0, 0, 0], 5
|
|
541
|
+
];
|
|
542
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
543
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
544
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
545
|
+
[_m, _sC, _qC, _rAS],
|
|
546
|
+
[0, 0, 0, [1, { [_hH]: _RA }]], 1
|
|
547
|
+
];
|
|
548
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
549
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
550
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
551
|
+
[_m, _r, _fL],
|
|
552
|
+
[0, 0, () => ValidationExceptionFieldList], 2
|
|
553
|
+
];
|
|
554
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
555
|
+
const errorTypeRegistries = [
|
|
556
|
+
_s_registry,
|
|
557
|
+
n0_registry,
|
|
558
|
+
];
|
|
559
|
+
var CaseDescription = [0, n0, _CD, 8, 0];
|
|
560
|
+
var CaseTitle = [0, n0, _CT, 8, 0];
|
|
561
|
+
var CommentBody = [0, n0, _CB, 8, 0];
|
|
562
|
+
var EmailAddress = [0, n0, _EA, 8, 0];
|
|
563
|
+
var FileName = [0, n0, _FN, 8, 0];
|
|
564
|
+
var IncidentResponderName = [0, n0, _IRN, 8, 0];
|
|
565
|
+
var IPAddress = [0, n0, _IPA, 8, 0];
|
|
566
|
+
var JobTitle = [0, n0, _JT, 8, 0];
|
|
567
|
+
var MembershipName = [0, n0, _MN, 8, 0];
|
|
568
|
+
var PersonName = [0, n0, _PN, 8, 0];
|
|
569
|
+
var Url = [0, n0, _U, 8, 0];
|
|
570
|
+
var BatchGetMemberAccountDetailsRequest$ = [3, n0, _BGMADR,
|
|
571
|
+
0,
|
|
572
|
+
[_mI, _aI],
|
|
573
|
+
[[0, 1], 64 | 0], 2
|
|
574
|
+
];
|
|
575
|
+
var BatchGetMemberAccountDetailsResponse$ = [3, n0, _BGMADRa,
|
|
576
|
+
0,
|
|
577
|
+
[_i, _er],
|
|
578
|
+
[() => GetMembershipAccountDetailItems, () => GetMembershipAccountDetailErrors]
|
|
579
|
+
];
|
|
580
|
+
var CancelMembershipRequest$ = [3, n0, _CMR,
|
|
581
|
+
0,
|
|
582
|
+
[_mI],
|
|
583
|
+
[[0, 1]], 1
|
|
584
|
+
];
|
|
585
|
+
var CancelMembershipResponse$ = [3, n0, _CMRa,
|
|
586
|
+
0,
|
|
587
|
+
[_mI],
|
|
588
|
+
[0], 1
|
|
589
|
+
];
|
|
590
|
+
var CaseAttachmentAttributes$ = [3, n0, _CAA,
|
|
591
|
+
0,
|
|
592
|
+
[_aIt, _fN, _aS, _cr, _cD],
|
|
593
|
+
[0, [() => FileName, 0], 0, 0, 4], 5
|
|
594
|
+
];
|
|
595
|
+
var CaseEditItem$ = [3, n0, _CEI,
|
|
596
|
+
0,
|
|
597
|
+
[_eT, _p, _a, _m],
|
|
598
|
+
[4, 0, 0, 0]
|
|
599
|
+
];
|
|
600
|
+
var CaseMetadataEntry$ = [3, n0, _CME,
|
|
601
|
+
0,
|
|
602
|
+
[_k, _v],
|
|
603
|
+
[0, 0], 2
|
|
604
|
+
];
|
|
605
|
+
var CloseCaseRequest$ = [3, n0, _CCR,
|
|
606
|
+
0,
|
|
607
|
+
[_cI],
|
|
608
|
+
[[0, 1]], 1
|
|
609
|
+
];
|
|
610
|
+
var CloseCaseResponse$ = [3, n0, _CCRl,
|
|
611
|
+
0,
|
|
612
|
+
[_cS, _cDl],
|
|
613
|
+
[0, 4]
|
|
614
|
+
];
|
|
615
|
+
var CreateCaseCommentRequest$ = [3, n0, _CCCR,
|
|
616
|
+
0,
|
|
617
|
+
[_cI, _b, _cT],
|
|
618
|
+
[[0, 1], [() => CommentBody, 0], [0, 4]], 2
|
|
619
|
+
];
|
|
620
|
+
var CreateCaseCommentResponse$ = [3, n0, _CCCRr,
|
|
621
|
+
0,
|
|
622
|
+
[_cIo],
|
|
623
|
+
[0], 1
|
|
624
|
+
];
|
|
625
|
+
var CreateCaseRequest$ = [3, n0, _CCRr,
|
|
626
|
+
0,
|
|
627
|
+
[_rTe, _t, _d, _eTn, _rISD, _iA, _w, _cT, _tAIA, _iS, _iAR, _ta],
|
|
628
|
+
[0, [() => CaseTitle, 0], [() => CaseDescription, 0], 0, 4, 64 | 0, [() => Watchers, 0], [0, 4], [() => ThreatActorIpList, 0], 64 | 0, () => ImpactedAwsRegionList, 128 | 0], 7
|
|
629
|
+
];
|
|
630
|
+
var CreateCaseResponse$ = [3, n0, _CCRre,
|
|
631
|
+
0,
|
|
632
|
+
[_cI],
|
|
633
|
+
[0], 1
|
|
634
|
+
];
|
|
635
|
+
var CreateMembershipRequest$ = [3, n0, _CMRr,
|
|
636
|
+
0,
|
|
637
|
+
[_mN, _iRT, _cT, _oIF, _ta, _cEO],
|
|
638
|
+
[[() => MembershipName, 0], [() => IncidentResponseTeam, 0], [0, 4], () => OptInFeatures, 128 | 0, 2], 2
|
|
639
|
+
];
|
|
640
|
+
var CreateMembershipResponse$ = [3, n0, _CMRre,
|
|
641
|
+
0,
|
|
642
|
+
[_mI],
|
|
643
|
+
[0], 1
|
|
644
|
+
];
|
|
645
|
+
var GetCaseAttachmentDownloadUrlRequest$ = [3, n0, _GCADUR,
|
|
646
|
+
0,
|
|
647
|
+
[_cI, _aIt],
|
|
648
|
+
[[0, 1], [0, 1]], 2
|
|
649
|
+
];
|
|
650
|
+
var GetCaseAttachmentDownloadUrlResponse$ = [3, n0, _GCADURe,
|
|
651
|
+
0,
|
|
652
|
+
[_aPU],
|
|
653
|
+
[[() => Url, 0]], 1
|
|
654
|
+
];
|
|
655
|
+
var GetCaseAttachmentUploadUrlRequest$ = [3, n0, _GCAUUR,
|
|
656
|
+
0,
|
|
657
|
+
[_cI, _fN, _cL, _cT],
|
|
658
|
+
[[0, 1], [() => FileName, 0], 1, [0, 4]], 3
|
|
659
|
+
];
|
|
660
|
+
var GetCaseAttachmentUploadUrlResponse$ = [3, n0, _GCAUURe,
|
|
661
|
+
0,
|
|
662
|
+
[_aPU],
|
|
663
|
+
[[() => Url, 0]], 1
|
|
664
|
+
];
|
|
665
|
+
var GetCaseRequest$ = [3, n0, _GCR,
|
|
666
|
+
0,
|
|
667
|
+
[_cI],
|
|
668
|
+
[[0, 1]], 1
|
|
669
|
+
];
|
|
670
|
+
var GetCaseResponse$ = [3, n0, _GCRe,
|
|
671
|
+
0,
|
|
672
|
+
[_t, _cA, _d, _cS, _eTn, _rISD, _aISD, _iAR, _tAIA, _pA, _iA, _w, _cD, _lUD, _cC, _rTe, _iS, _cAa, _cDl, _cM],
|
|
673
|
+
[[() => CaseTitle, 0], 0, [() => CaseDescription, 0], 0, 0, 4, 4, () => ImpactedAwsRegionList, [() => ThreatActorIpList, 0], 0, 64 | 0, [() => Watchers, 0], 4, 4, 0, 0, 64 | 0, [() => CaseAttachmentsList, 0], 4, () => CaseMetadata]
|
|
674
|
+
];
|
|
675
|
+
var GetMembershipAccountDetailError$ = [3, n0, _GMADE,
|
|
676
|
+
0,
|
|
677
|
+
[_aIc, _e, _m],
|
|
678
|
+
[0, 0, 0], 3
|
|
679
|
+
];
|
|
680
|
+
var GetMembershipAccountDetailItem$ = [3, n0, _GMADI,
|
|
681
|
+
0,
|
|
682
|
+
[_aIc, _rS, _rTel],
|
|
683
|
+
[0, 0, 0]
|
|
684
|
+
];
|
|
685
|
+
var GetMembershipRequest$ = [3, n0, _GMR,
|
|
686
|
+
0,
|
|
687
|
+
[_mI],
|
|
688
|
+
[[0, 1]], 1
|
|
689
|
+
];
|
|
690
|
+
var GetMembershipResponse$ = [3, n0, _GMRe,
|
|
691
|
+
0,
|
|
692
|
+
[_mI, _aIc, _re, _mN, _mA, _mS, _mAT, _mDT, _cTu, _nOAC, _iRT, _oIF, _mAC],
|
|
693
|
+
[0, 0, 0, [() => MembershipName, 0], 0, 0, 4, 4, 0, 1, [() => IncidentResponseTeam, 0], () => OptInFeatures, () => MembershipAccountsConfigurations$], 1
|
|
694
|
+
];
|
|
695
|
+
var ImpactedAwsRegion$ = [3, n0, _IAR,
|
|
696
|
+
0,
|
|
697
|
+
[_re],
|
|
698
|
+
[0], 1
|
|
699
|
+
];
|
|
700
|
+
var IncidentResponder$ = [3, n0, _IR,
|
|
701
|
+
0,
|
|
702
|
+
[_n, _jT, _em, _cP],
|
|
703
|
+
[[() => IncidentResponderName, 0], [() => JobTitle, 0], [() => EmailAddress, 0], 64 | 0], 3
|
|
704
|
+
];
|
|
705
|
+
var InvestigationAction$ = [3, n0, _IA,
|
|
706
|
+
0,
|
|
707
|
+
[_iI, _aT, _t, _co, _st, _lU, _f],
|
|
708
|
+
[0, 0, 0, 0, 0, 4, () => InvestigationFeedback$], 6
|
|
709
|
+
];
|
|
710
|
+
var InvestigationFeedback$ = [3, n0, _IF,
|
|
711
|
+
0,
|
|
712
|
+
[_u, _com, _sA],
|
|
713
|
+
[0, 0, 4]
|
|
714
|
+
];
|
|
715
|
+
var ListCaseEditsRequest$ = [3, n0, _LCER,
|
|
716
|
+
0,
|
|
717
|
+
[_cI, _nT, _mR],
|
|
718
|
+
[[0, 1], 0, 1], 1
|
|
719
|
+
];
|
|
720
|
+
var ListCaseEditsResponse$ = [3, n0, _LCERi,
|
|
721
|
+
0,
|
|
722
|
+
[_nT, _i, _to],
|
|
723
|
+
[0, () => CaseEditItems, 1]
|
|
724
|
+
];
|
|
725
|
+
var ListCasesItem$ = [3, n0, _LCI,
|
|
726
|
+
0,
|
|
727
|
+
[_cI, _lUD, _t, _cA, _eTn, _cS, _cD, _cDl, _rTe, _pA],
|
|
728
|
+
[0, 4, [() => CaseTitle, 0], 0, 0, 0, 4, 4, 0, 0], 1
|
|
729
|
+
];
|
|
730
|
+
var ListCasesRequest$ = [3, n0, _LCR,
|
|
731
|
+
0,
|
|
732
|
+
[_nT, _mR],
|
|
733
|
+
[0, 1]
|
|
734
|
+
];
|
|
735
|
+
var ListCasesResponse$ = [3, n0, _LCRi,
|
|
736
|
+
0,
|
|
737
|
+
[_nT, _i, _to],
|
|
738
|
+
[0, [() => ListCasesItems, 0], 1]
|
|
739
|
+
];
|
|
740
|
+
var ListCommentsItem$ = [3, n0, _LCIi,
|
|
741
|
+
0,
|
|
742
|
+
[_cIo, _cD, _lUD, _cr, _lUB, _b],
|
|
743
|
+
[0, 4, 4, 0, 0, [() => CommentBody, 0]], 1
|
|
744
|
+
];
|
|
745
|
+
var ListCommentsRequest$ = [3, n0, _LCRis,
|
|
746
|
+
0,
|
|
747
|
+
[_cI, _nT, _mR],
|
|
748
|
+
[[0, 1], 0, 1], 1
|
|
749
|
+
];
|
|
750
|
+
var ListCommentsResponse$ = [3, n0, _LCRist,
|
|
751
|
+
0,
|
|
752
|
+
[_nT, _i, _to],
|
|
753
|
+
[0, [() => ListCommentsItems, 0], 1]
|
|
754
|
+
];
|
|
755
|
+
var ListInvestigationsRequest$ = [3, n0, _LIR,
|
|
756
|
+
0,
|
|
757
|
+
[_cI, _nT, _mR],
|
|
758
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
759
|
+
];
|
|
760
|
+
var ListInvestigationsResponse$ = [3, n0, _LIRi,
|
|
761
|
+
0,
|
|
762
|
+
[_iAn, _nT],
|
|
763
|
+
[() => InvestigationActionList, 0], 1
|
|
764
|
+
];
|
|
765
|
+
var ListMembershipItem$ = [3, n0, _LMI,
|
|
766
|
+
0,
|
|
767
|
+
[_mI, _aIc, _re, _mA, _mS],
|
|
768
|
+
[0, 0, 0, 0, 0], 1
|
|
769
|
+
];
|
|
770
|
+
var ListMembershipsRequest$ = [3, n0, _LMR,
|
|
771
|
+
0,
|
|
772
|
+
[_nT, _mR],
|
|
773
|
+
[0, 1]
|
|
774
|
+
];
|
|
775
|
+
var ListMembershipsResponse$ = [3, n0, _LMRi,
|
|
776
|
+
0,
|
|
777
|
+
[_nT, _i],
|
|
778
|
+
[0, () => ListMembershipItems]
|
|
779
|
+
];
|
|
780
|
+
var ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
781
|
+
0,
|
|
782
|
+
[_rA],
|
|
783
|
+
[[0, 1]], 1
|
|
784
|
+
];
|
|
785
|
+
var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
786
|
+
0,
|
|
787
|
+
[_ta],
|
|
788
|
+
[128 | 0], 1
|
|
789
|
+
];
|
|
790
|
+
var MembershipAccountsConfigurations$ = [3, n0, _MAC,
|
|
791
|
+
0,
|
|
792
|
+
[_cEO, _oU],
|
|
793
|
+
[2, 64 | 0]
|
|
794
|
+
];
|
|
795
|
+
var MembershipAccountsConfigurationsUpdate$ = [3, n0, _MACU,
|
|
796
|
+
0,
|
|
797
|
+
[_cEO, _oUTA, _oUTR],
|
|
798
|
+
[2, 64 | 0, 64 | 0]
|
|
799
|
+
];
|
|
800
|
+
var OptInFeature$ = [3, n0, _OIF,
|
|
801
|
+
0,
|
|
802
|
+
[_fNe, _iE],
|
|
803
|
+
[0, 2], 2
|
|
804
|
+
];
|
|
805
|
+
var SendFeedbackRequest$ = [3, n0, _SFR,
|
|
806
|
+
0,
|
|
807
|
+
[_cI, _rIe, _u, _com],
|
|
808
|
+
[[0, 1], [0, 1], 0, 0], 3
|
|
809
|
+
];
|
|
810
|
+
var SendFeedbackResponse$ = [3, n0, _SFRe,
|
|
811
|
+
0,
|
|
812
|
+
[],
|
|
813
|
+
[]
|
|
814
|
+
];
|
|
815
|
+
var TagResourceInput$ = [3, n0, _TRI,
|
|
816
|
+
0,
|
|
817
|
+
[_rA, _ta],
|
|
818
|
+
[[0, 1], 128 | 0], 2
|
|
819
|
+
];
|
|
820
|
+
var TagResourceOutput$ = [3, n0, _TRO,
|
|
821
|
+
0,
|
|
822
|
+
[],
|
|
823
|
+
[]
|
|
824
|
+
];
|
|
825
|
+
var ThreatActorIp$ = [3, n0, _TAI,
|
|
826
|
+
0,
|
|
827
|
+
[_iAp, _uA],
|
|
828
|
+
[[() => IPAddress, 0], 0], 1
|
|
829
|
+
];
|
|
830
|
+
var UntagResourceInput$ = [3, n0, _URI,
|
|
831
|
+
0,
|
|
832
|
+
[_rA, _tK],
|
|
833
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
834
|
+
];
|
|
835
|
+
var UntagResourceOutput$ = [3, n0, _URO,
|
|
836
|
+
0,
|
|
837
|
+
[],
|
|
838
|
+
[]
|
|
839
|
+
];
|
|
840
|
+
var UpdateCaseCommentRequest$ = [3, n0, _UCCR,
|
|
841
|
+
0,
|
|
842
|
+
[_cI, _cIo, _b],
|
|
843
|
+
[[0, 1], [0, 1], [() => CommentBody, 0]], 3
|
|
844
|
+
];
|
|
845
|
+
var UpdateCaseCommentResponse$ = [3, n0, _UCCRp,
|
|
846
|
+
0,
|
|
847
|
+
[_cIo, _b],
|
|
848
|
+
[0, [() => CommentBody, 0]], 1
|
|
849
|
+
];
|
|
850
|
+
var UpdateCaseRequest$ = [3, n0, _UCR,
|
|
851
|
+
0,
|
|
852
|
+
[_cI, _t, _d, _rISD, _aISD, _eTn, _wTA, _wTD, _tAIATA, _tAIATD, _iSTA, _iSTD, _iARTA, _iARTD, _iATA, _iATD, _cM],
|
|
853
|
+
[[0, 1], [() => CaseTitle, 0], [() => CaseDescription, 0], 4, 4, 0, [() => Watchers, 0], [() => Watchers, 0], [() => ThreatActorIpList, 0], [() => ThreatActorIpList, 0], 64 | 0, 64 | 0, () => ImpactedAwsRegionList, () => ImpactedAwsRegionList, 64 | 0, 64 | 0, () => CaseMetadata], 1
|
|
854
|
+
];
|
|
855
|
+
var UpdateCaseResponse$ = [3, n0, _UCRp,
|
|
856
|
+
0,
|
|
857
|
+
[],
|
|
858
|
+
[]
|
|
859
|
+
];
|
|
860
|
+
var UpdateCaseStatusRequest$ = [3, n0, _UCSR,
|
|
861
|
+
0,
|
|
862
|
+
[_cI, _cS],
|
|
863
|
+
[[0, 1], 0], 2
|
|
864
|
+
];
|
|
865
|
+
var UpdateCaseStatusResponse$ = [3, n0, _UCSRp,
|
|
866
|
+
0,
|
|
867
|
+
[_cS],
|
|
868
|
+
[0]
|
|
869
|
+
];
|
|
870
|
+
var UpdateMembershipRequest$ = [3, n0, _UMR,
|
|
871
|
+
0,
|
|
872
|
+
[_mI, _mN, _iRT, _oIF, _mACU, _uMC],
|
|
873
|
+
[[0, 1], [() => MembershipName, 0], [() => IncidentResponseTeam, 0], () => OptInFeatures, () => MembershipAccountsConfigurationsUpdate$, 2], 1
|
|
874
|
+
];
|
|
875
|
+
var UpdateMembershipResponse$ = [3, n0, _UMRp,
|
|
876
|
+
0,
|
|
877
|
+
[],
|
|
878
|
+
[]
|
|
879
|
+
];
|
|
880
|
+
var UpdateResolverTypeRequest$ = [3, n0, _URTR,
|
|
881
|
+
0,
|
|
882
|
+
[_cI, _rTe],
|
|
883
|
+
[[0, 1], 0], 2
|
|
884
|
+
];
|
|
885
|
+
var UpdateResolverTypeResponse$ = [3, n0, _URTRp,
|
|
886
|
+
0,
|
|
887
|
+
[_cI, _cS, _rTe],
|
|
888
|
+
[0, 0, 0], 1
|
|
889
|
+
];
|
|
890
|
+
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
891
|
+
0,
|
|
892
|
+
[_n, _m],
|
|
893
|
+
[0, 0], 2
|
|
894
|
+
];
|
|
895
|
+
var Watcher$ = [3, n0, _W,
|
|
896
|
+
0,
|
|
897
|
+
[_em, _n, _jT],
|
|
898
|
+
[[() => EmailAddress, 0], [() => PersonName, 0], [() => JobTitle, 0]], 1
|
|
899
|
+
];
|
|
900
|
+
var CaseAttachmentsList = [1, n0, _CAL,
|
|
901
|
+
0, [() => CaseAttachmentAttributes$,
|
|
902
|
+
0]
|
|
903
|
+
];
|
|
904
|
+
var CaseEditItems = [1, n0, _CEIa,
|
|
905
|
+
0, () => CaseEditItem$
|
|
906
|
+
];
|
|
907
|
+
var CaseMetadata = [1, n0, _CM,
|
|
908
|
+
0, () => CaseMetadataEntry$
|
|
909
|
+
];
|
|
910
|
+
var GetMembershipAccountDetailErrors = [1, n0, _GMADEe,
|
|
911
|
+
0, () => GetMembershipAccountDetailError$
|
|
912
|
+
];
|
|
913
|
+
var GetMembershipAccountDetailItems = [1, n0, _GMADIe,
|
|
914
|
+
0, () => GetMembershipAccountDetailItem$
|
|
915
|
+
];
|
|
916
|
+
var ImpactedAwsRegionList = [1, n0, _IARL,
|
|
917
|
+
0, () => ImpactedAwsRegion$
|
|
918
|
+
];
|
|
919
|
+
var IncidentResponseTeam = [1, n0, _IRT,
|
|
920
|
+
0, [() => IncidentResponder$,
|
|
921
|
+
0]
|
|
922
|
+
];
|
|
923
|
+
var InvestigationActionList = [1, n0, _IAL,
|
|
924
|
+
0, () => InvestigationAction$
|
|
925
|
+
];
|
|
926
|
+
var ListCasesItems = [1, n0, _LCIis,
|
|
927
|
+
0, [() => ListCasesItem$,
|
|
928
|
+
0]
|
|
929
|
+
];
|
|
930
|
+
var ListCommentsItems = [1, n0, _LCIist,
|
|
931
|
+
0, [() => ListCommentsItem$,
|
|
932
|
+
0]
|
|
933
|
+
];
|
|
934
|
+
var ListMembershipItems = [1, n0, _LMIi,
|
|
935
|
+
0, () => ListMembershipItem$
|
|
936
|
+
];
|
|
937
|
+
var OptInFeatures = [1, n0, _OIFp,
|
|
938
|
+
0, () => OptInFeature$
|
|
939
|
+
];
|
|
940
|
+
var ThreatActorIpList = [1, n0, _TAIL,
|
|
941
|
+
0, [() => ThreatActorIp$,
|
|
942
|
+
0]
|
|
943
|
+
];
|
|
944
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
945
|
+
0, () => ValidationExceptionField$
|
|
946
|
+
];
|
|
947
|
+
var Watchers = [1, n0, _Wa,
|
|
948
|
+
0, [() => Watcher$,
|
|
949
|
+
0]
|
|
950
|
+
];
|
|
951
|
+
var BatchGetMemberAccountDetails$ = [9, n0, _BGMAD,
|
|
952
|
+
{ [_h]: ["POST", "/v1/membership/{membershipId}/batch-member-details", 200] }, () => BatchGetMemberAccountDetailsRequest$, () => BatchGetMemberAccountDetailsResponse$
|
|
953
|
+
];
|
|
954
|
+
var CancelMembership$ = [9, n0, _CMa,
|
|
955
|
+
{ [_h]: ["PUT", "/v1/membership/{membershipId}", 200] }, () => CancelMembershipRequest$, () => CancelMembershipResponse$
|
|
956
|
+
];
|
|
957
|
+
var CloseCase$ = [9, n0, _CC,
|
|
958
|
+
{ [_h]: ["POST", "/v1/cases/{caseId}/close-case", 200] }, () => CloseCaseRequest$, () => CloseCaseResponse$
|
|
959
|
+
];
|
|
960
|
+
var CreateCase$ = [9, n0, _CCr,
|
|
961
|
+
{ [_h]: ["POST", "/v1/create-case", 201] }, () => CreateCaseRequest$, () => CreateCaseResponse$
|
|
962
|
+
];
|
|
963
|
+
var CreateCaseComment$ = [9, n0, _CCC,
|
|
964
|
+
{ [_h]: ["POST", "/v1/cases/{caseId}/create-comment", 201] }, () => CreateCaseCommentRequest$, () => CreateCaseCommentResponse$
|
|
965
|
+
];
|
|
966
|
+
var CreateMembership$ = [9, n0, _CMr,
|
|
967
|
+
{ [_h]: ["POST", "/v1/membership", 201] }, () => CreateMembershipRequest$, () => CreateMembershipResponse$
|
|
968
|
+
];
|
|
969
|
+
var GetCase$ = [9, n0, _GC,
|
|
970
|
+
{ [_h]: ["GET", "/v1/cases/{caseId}/get-case", 200] }, () => GetCaseRequest$, () => GetCaseResponse$
|
|
971
|
+
];
|
|
972
|
+
var GetCaseAttachmentDownloadUrl$ = [9, n0, _GCADU,
|
|
973
|
+
{ [_h]: ["GET", "/v1/cases/{caseId}/get-presigned-url/{attachmentId}", 201] }, () => GetCaseAttachmentDownloadUrlRequest$, () => GetCaseAttachmentDownloadUrlResponse$
|
|
974
|
+
];
|
|
975
|
+
var GetCaseAttachmentUploadUrl$ = [9, n0, _GCAUU,
|
|
976
|
+
{ [_h]: ["POST", "/v1/cases/{caseId}/get-presigned-url", 201] }, () => GetCaseAttachmentUploadUrlRequest$, () => GetCaseAttachmentUploadUrlResponse$
|
|
977
|
+
];
|
|
978
|
+
var GetMembership$ = [9, n0, _GM,
|
|
979
|
+
{ [_h]: ["GET", "/v1/membership/{membershipId}", 200] }, () => GetMembershipRequest$, () => GetMembershipResponse$
|
|
980
|
+
];
|
|
981
|
+
var ListCaseEdits$ = [9, n0, _LCE,
|
|
982
|
+
{ [_h]: ["POST", "/v1/cases/{caseId}/list-case-edits", 200] }, () => ListCaseEditsRequest$, () => ListCaseEditsResponse$
|
|
983
|
+
];
|
|
984
|
+
var ListCases$ = [9, n0, _LC,
|
|
985
|
+
{ [_h]: ["POST", "/v1/list-cases", 200] }, () => ListCasesRequest$, () => ListCasesResponse$
|
|
986
|
+
];
|
|
987
|
+
var ListComments$ = [9, n0, _LCi,
|
|
988
|
+
{ [_h]: ["POST", "/v1/cases/{caseId}/list-comments", 200] }, () => ListCommentsRequest$, () => ListCommentsResponse$
|
|
989
|
+
];
|
|
990
|
+
var ListInvestigations$ = [9, n0, _LI,
|
|
991
|
+
{ [_h]: ["GET", "/v1/cases/{caseId}/list-investigations", 200] }, () => ListInvestigationsRequest$, () => ListInvestigationsResponse$
|
|
992
|
+
];
|
|
993
|
+
var ListMemberships$ = [9, n0, _LM,
|
|
994
|
+
{ [_h]: ["POST", "/v1/memberships", 200] }, () => ListMembershipsRequest$, () => ListMembershipsResponse$
|
|
995
|
+
];
|
|
996
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
997
|
+
{ [_h]: ["GET", "/v1/tags/{resourceArn}", 200] }, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
|
|
998
|
+
];
|
|
999
|
+
var SendFeedback$ = [9, n0, _SF,
|
|
1000
|
+
{ [_h]: ["POST", "/v1/cases/{caseId}/feedback/{resultId}/send-feedback", 200] }, () => SendFeedbackRequest$, () => SendFeedbackResponse$
|
|
1001
|
+
];
|
|
1002
|
+
var TagResource$ = [9, n0, _TR,
|
|
1003
|
+
{ [_h]: ["POST", "/v1/tags/{resourceArn}", 204] }, () => TagResourceInput$, () => TagResourceOutput$
|
|
1004
|
+
];
|
|
1005
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1006
|
+
{ [_h]: ["DELETE", "/v1/tags/{resourceArn}", 200] }, () => UntagResourceInput$, () => UntagResourceOutput$
|
|
1007
|
+
];
|
|
1008
|
+
var UpdateCase$ = [9, n0, _UC,
|
|
1009
|
+
{ [_h]: ["POST", "/v1/cases/{caseId}/update-case", 200] }, () => UpdateCaseRequest$, () => UpdateCaseResponse$
|
|
1010
|
+
];
|
|
1011
|
+
var UpdateCaseComment$ = [9, n0, _UCC,
|
|
1012
|
+
{ [_h]: ["PUT", "/v1/cases/{caseId}/update-case-comment/{commentId}", 200] }, () => UpdateCaseCommentRequest$, () => UpdateCaseCommentResponse$
|
|
1013
|
+
];
|
|
1014
|
+
var UpdateCaseStatus$ = [9, n0, _UCS,
|
|
1015
|
+
{ [_h]: ["POST", "/v1/cases/{caseId}/update-case-status", 201] }, () => UpdateCaseStatusRequest$, () => UpdateCaseStatusResponse$
|
|
1016
|
+
];
|
|
1017
|
+
var UpdateMembership$ = [9, n0, _UM,
|
|
1018
|
+
{ [_h]: ["PUT", "/v1/membership/{membershipId}/update-membership", 200] }, () => UpdateMembershipRequest$, () => UpdateMembershipResponse$
|
|
1019
|
+
];
|
|
1020
|
+
var UpdateResolverType$ = [9, n0, _URT,
|
|
1021
|
+
{ [_h]: ["POST", "/v1/cases/{caseId}/update-resolver-type", 200] }, () => UpdateResolverTypeRequest$, () => UpdateResolverTypeResponse$
|
|
1022
|
+
];
|
|
1023
|
+
|
|
1024
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1025
|
+
return {
|
|
1026
|
+
apiVersion: "2018-05-10",
|
|
1027
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1028
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1029
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1030
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1031
|
+
extensions: config?.extensions ?? [],
|
|
1032
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultSecurityIRHttpAuthSchemeProvider,
|
|
1033
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1034
|
+
{
|
|
1035
|
+
schemeId: "aws.auth#sigv4",
|
|
1036
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1037
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1038
|
+
},
|
|
1039
|
+
],
|
|
1040
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1041
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1042
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1043
|
+
defaultNamespace: "com.amazonaws.securityir",
|
|
1044
|
+
errorTypeRegistries,
|
|
1045
|
+
version: "2018-05-10",
|
|
1046
|
+
serviceTarget: "SecurityIncidentResponse",
|
|
1047
|
+
},
|
|
1048
|
+
serviceId: config?.serviceId ?? "Security IR",
|
|
1049
|
+
sha256: config?.sha256 ?? Sha256,
|
|
1050
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1051
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1052
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1053
|
+
};
|
|
1054
|
+
};
|
|
1055
|
+
|
|
1056
|
+
const getRuntimeConfig = (config) => {
|
|
1057
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1058
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1059
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1060
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1061
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1062
|
+
const loaderConfig = {
|
|
1063
|
+
profile: config?.profile,
|
|
1064
|
+
logger: clientSharedValues.logger,
|
|
1065
|
+
};
|
|
1066
|
+
return {
|
|
1067
|
+
...clientSharedValues,
|
|
1068
|
+
...config,
|
|
1069
|
+
runtime: "node",
|
|
1070
|
+
defaultsMode,
|
|
1071
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1072
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1073
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1074
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1075
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1076
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1077
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1078
|
+
retryMode: config?.retryMode ??
|
|
1079
|
+
loadConfig({
|
|
1080
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1081
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1082
|
+
}, config),
|
|
1083
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1084
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1085
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1086
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1087
|
+
};
|
|
1088
|
+
};
|
|
1089
|
+
|
|
32
1090
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
33
1091
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
34
1092
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -583,50 +1641,161 @@ const MembershipStatus = {
|
|
|
583
1641
|
TERMINATED: "Terminated",
|
|
584
1642
|
};
|
|
585
1643
|
|
|
1644
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1645
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
586
1646
|
exports.ActionType = ActionType;
|
|
587
1647
|
exports.AwsRegion = AwsRegion;
|
|
1648
|
+
exports.BatchGetMemberAccountDetails$ = BatchGetMemberAccountDetails$;
|
|
588
1649
|
exports.BatchGetMemberAccountDetailsCommand = BatchGetMemberAccountDetailsCommand;
|
|
1650
|
+
exports.BatchGetMemberAccountDetailsRequest$ = BatchGetMemberAccountDetailsRequest$;
|
|
1651
|
+
exports.BatchGetMemberAccountDetailsResponse$ = BatchGetMemberAccountDetailsResponse$;
|
|
1652
|
+
exports.CancelMembership$ = CancelMembership$;
|
|
589
1653
|
exports.CancelMembershipCommand = CancelMembershipCommand;
|
|
1654
|
+
exports.CancelMembershipRequest$ = CancelMembershipRequest$;
|
|
1655
|
+
exports.CancelMembershipResponse$ = CancelMembershipResponse$;
|
|
1656
|
+
exports.CaseAttachmentAttributes$ = CaseAttachmentAttributes$;
|
|
590
1657
|
exports.CaseAttachmentStatus = CaseAttachmentStatus;
|
|
1658
|
+
exports.CaseEditItem$ = CaseEditItem$;
|
|
1659
|
+
exports.CaseMetadataEntry$ = CaseMetadataEntry$;
|
|
591
1660
|
exports.CaseStatus = CaseStatus;
|
|
1661
|
+
exports.CloseCase$ = CloseCase$;
|
|
592
1662
|
exports.CloseCaseCommand = CloseCaseCommand;
|
|
1663
|
+
exports.CloseCaseRequest$ = CloseCaseRequest$;
|
|
1664
|
+
exports.CloseCaseResponse$ = CloseCaseResponse$;
|
|
593
1665
|
exports.ClosureCode = ClosureCode;
|
|
594
1666
|
exports.CommunicationType = CommunicationType;
|
|
1667
|
+
exports.ConflictException = ConflictException;
|
|
1668
|
+
exports.ConflictException$ = ConflictException$;
|
|
1669
|
+
exports.CreateCase$ = CreateCase$;
|
|
595
1670
|
exports.CreateCaseCommand = CreateCaseCommand;
|
|
1671
|
+
exports.CreateCaseComment$ = CreateCaseComment$;
|
|
596
1672
|
exports.CreateCaseCommentCommand = CreateCaseCommentCommand;
|
|
1673
|
+
exports.CreateCaseCommentRequest$ = CreateCaseCommentRequest$;
|
|
1674
|
+
exports.CreateCaseCommentResponse$ = CreateCaseCommentResponse$;
|
|
1675
|
+
exports.CreateCaseRequest$ = CreateCaseRequest$;
|
|
1676
|
+
exports.CreateCaseResponse$ = CreateCaseResponse$;
|
|
1677
|
+
exports.CreateMembership$ = CreateMembership$;
|
|
597
1678
|
exports.CreateMembershipCommand = CreateMembershipCommand;
|
|
1679
|
+
exports.CreateMembershipRequest$ = CreateMembershipRequest$;
|
|
1680
|
+
exports.CreateMembershipResponse$ = CreateMembershipResponse$;
|
|
598
1681
|
exports.CustomerType = CustomerType;
|
|
599
1682
|
exports.EngagementType = EngagementType;
|
|
600
1683
|
exports.ExecutionStatus = ExecutionStatus;
|
|
1684
|
+
exports.GetCase$ = GetCase$;
|
|
1685
|
+
exports.GetCaseAttachmentDownloadUrl$ = GetCaseAttachmentDownloadUrl$;
|
|
601
1686
|
exports.GetCaseAttachmentDownloadUrlCommand = GetCaseAttachmentDownloadUrlCommand;
|
|
1687
|
+
exports.GetCaseAttachmentDownloadUrlRequest$ = GetCaseAttachmentDownloadUrlRequest$;
|
|
1688
|
+
exports.GetCaseAttachmentDownloadUrlResponse$ = GetCaseAttachmentDownloadUrlResponse$;
|
|
1689
|
+
exports.GetCaseAttachmentUploadUrl$ = GetCaseAttachmentUploadUrl$;
|
|
602
1690
|
exports.GetCaseAttachmentUploadUrlCommand = GetCaseAttachmentUploadUrlCommand;
|
|
1691
|
+
exports.GetCaseAttachmentUploadUrlRequest$ = GetCaseAttachmentUploadUrlRequest$;
|
|
1692
|
+
exports.GetCaseAttachmentUploadUrlResponse$ = GetCaseAttachmentUploadUrlResponse$;
|
|
603
1693
|
exports.GetCaseCommand = GetCaseCommand;
|
|
1694
|
+
exports.GetCaseRequest$ = GetCaseRequest$;
|
|
1695
|
+
exports.GetCaseResponse$ = GetCaseResponse$;
|
|
1696
|
+
exports.GetMembership$ = GetMembership$;
|
|
1697
|
+
exports.GetMembershipAccountDetailError$ = GetMembershipAccountDetailError$;
|
|
1698
|
+
exports.GetMembershipAccountDetailItem$ = GetMembershipAccountDetailItem$;
|
|
604
1699
|
exports.GetMembershipCommand = GetMembershipCommand;
|
|
1700
|
+
exports.GetMembershipRequest$ = GetMembershipRequest$;
|
|
1701
|
+
exports.GetMembershipResponse$ = GetMembershipResponse$;
|
|
1702
|
+
exports.ImpactedAwsRegion$ = ImpactedAwsRegion$;
|
|
1703
|
+
exports.IncidentResponder$ = IncidentResponder$;
|
|
1704
|
+
exports.InternalServerException = InternalServerException;
|
|
1705
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1706
|
+
exports.InvalidTokenException = InvalidTokenException;
|
|
1707
|
+
exports.InvalidTokenException$ = InvalidTokenException$;
|
|
1708
|
+
exports.InvestigationAction$ = InvestigationAction$;
|
|
1709
|
+
exports.InvestigationFeedback$ = InvestigationFeedback$;
|
|
1710
|
+
exports.ListCaseEdits$ = ListCaseEdits$;
|
|
605
1711
|
exports.ListCaseEditsCommand = ListCaseEditsCommand;
|
|
1712
|
+
exports.ListCaseEditsRequest$ = ListCaseEditsRequest$;
|
|
1713
|
+
exports.ListCaseEditsResponse$ = ListCaseEditsResponse$;
|
|
1714
|
+
exports.ListCases$ = ListCases$;
|
|
606
1715
|
exports.ListCasesCommand = ListCasesCommand;
|
|
1716
|
+
exports.ListCasesItem$ = ListCasesItem$;
|
|
1717
|
+
exports.ListCasesRequest$ = ListCasesRequest$;
|
|
1718
|
+
exports.ListCasesResponse$ = ListCasesResponse$;
|
|
1719
|
+
exports.ListComments$ = ListComments$;
|
|
607
1720
|
exports.ListCommentsCommand = ListCommentsCommand;
|
|
1721
|
+
exports.ListCommentsItem$ = ListCommentsItem$;
|
|
1722
|
+
exports.ListCommentsRequest$ = ListCommentsRequest$;
|
|
1723
|
+
exports.ListCommentsResponse$ = ListCommentsResponse$;
|
|
1724
|
+
exports.ListInvestigations$ = ListInvestigations$;
|
|
608
1725
|
exports.ListInvestigationsCommand = ListInvestigationsCommand;
|
|
1726
|
+
exports.ListInvestigationsRequest$ = ListInvestigationsRequest$;
|
|
1727
|
+
exports.ListInvestigationsResponse$ = ListInvestigationsResponse$;
|
|
1728
|
+
exports.ListMembershipItem$ = ListMembershipItem$;
|
|
1729
|
+
exports.ListMemberships$ = ListMemberships$;
|
|
609
1730
|
exports.ListMembershipsCommand = ListMembershipsCommand;
|
|
1731
|
+
exports.ListMembershipsRequest$ = ListMembershipsRequest$;
|
|
1732
|
+
exports.ListMembershipsResponse$ = ListMembershipsResponse$;
|
|
1733
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
610
1734
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1735
|
+
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
1736
|
+
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
611
1737
|
exports.MembershipAccountRelationshipStatus = MembershipAccountRelationshipStatus;
|
|
612
1738
|
exports.MembershipAccountRelationshipType = MembershipAccountRelationshipType;
|
|
1739
|
+
exports.MembershipAccountsConfigurations$ = MembershipAccountsConfigurations$;
|
|
1740
|
+
exports.MembershipAccountsConfigurationsUpdate$ = MembershipAccountsConfigurationsUpdate$;
|
|
613
1741
|
exports.MembershipStatus = MembershipStatus;
|
|
1742
|
+
exports.OptInFeature$ = OptInFeature$;
|
|
614
1743
|
exports.OptInFeatureName = OptInFeatureName;
|
|
615
1744
|
exports.PendingAction = PendingAction;
|
|
616
1745
|
exports.ResolverType = ResolverType;
|
|
1746
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1747
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
617
1748
|
exports.SecurityIR = SecurityIR;
|
|
618
1749
|
exports.SecurityIRClient = SecurityIRClient;
|
|
1750
|
+
exports.SecurityIRServiceException = SecurityIRServiceException;
|
|
1751
|
+
exports.SecurityIRServiceException$ = SecurityIRServiceException$;
|
|
1752
|
+
exports.SecurityIncidentResponseNotActiveException = SecurityIncidentResponseNotActiveException;
|
|
1753
|
+
exports.SecurityIncidentResponseNotActiveException$ = SecurityIncidentResponseNotActiveException$;
|
|
619
1754
|
exports.SelfManagedCaseStatus = SelfManagedCaseStatus;
|
|
1755
|
+
exports.SendFeedback$ = SendFeedback$;
|
|
620
1756
|
exports.SendFeedbackCommand = SendFeedbackCommand;
|
|
1757
|
+
exports.SendFeedbackRequest$ = SendFeedbackRequest$;
|
|
1758
|
+
exports.SendFeedbackResponse$ = SendFeedbackResponse$;
|
|
1759
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1760
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1761
|
+
exports.TagResource$ = TagResource$;
|
|
621
1762
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1763
|
+
exports.TagResourceInput$ = TagResourceInput$;
|
|
1764
|
+
exports.TagResourceOutput$ = TagResourceOutput$;
|
|
1765
|
+
exports.ThreatActorIp$ = ThreatActorIp$;
|
|
1766
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1767
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1768
|
+
exports.UntagResource$ = UntagResource$;
|
|
622
1769
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1770
|
+
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
1771
|
+
exports.UntagResourceOutput$ = UntagResourceOutput$;
|
|
1772
|
+
exports.UpdateCase$ = UpdateCase$;
|
|
623
1773
|
exports.UpdateCaseCommand = UpdateCaseCommand;
|
|
1774
|
+
exports.UpdateCaseComment$ = UpdateCaseComment$;
|
|
624
1775
|
exports.UpdateCaseCommentCommand = UpdateCaseCommentCommand;
|
|
1776
|
+
exports.UpdateCaseCommentRequest$ = UpdateCaseCommentRequest$;
|
|
1777
|
+
exports.UpdateCaseCommentResponse$ = UpdateCaseCommentResponse$;
|
|
1778
|
+
exports.UpdateCaseRequest$ = UpdateCaseRequest$;
|
|
1779
|
+
exports.UpdateCaseResponse$ = UpdateCaseResponse$;
|
|
1780
|
+
exports.UpdateCaseStatus$ = UpdateCaseStatus$;
|
|
625
1781
|
exports.UpdateCaseStatusCommand = UpdateCaseStatusCommand;
|
|
1782
|
+
exports.UpdateCaseStatusRequest$ = UpdateCaseStatusRequest$;
|
|
1783
|
+
exports.UpdateCaseStatusResponse$ = UpdateCaseStatusResponse$;
|
|
1784
|
+
exports.UpdateMembership$ = UpdateMembership$;
|
|
626
1785
|
exports.UpdateMembershipCommand = UpdateMembershipCommand;
|
|
1786
|
+
exports.UpdateMembershipRequest$ = UpdateMembershipRequest$;
|
|
1787
|
+
exports.UpdateMembershipResponse$ = UpdateMembershipResponse$;
|
|
1788
|
+
exports.UpdateResolverType$ = UpdateResolverType$;
|
|
627
1789
|
exports.UpdateResolverTypeCommand = UpdateResolverTypeCommand;
|
|
1790
|
+
exports.UpdateResolverTypeRequest$ = UpdateResolverTypeRequest$;
|
|
1791
|
+
exports.UpdateResolverTypeResponse$ = UpdateResolverTypeResponse$;
|
|
628
1792
|
exports.UsefulnessRating = UsefulnessRating;
|
|
1793
|
+
exports.ValidationException = ValidationException;
|
|
1794
|
+
exports.ValidationException$ = ValidationException$;
|
|
1795
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
629
1796
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
1797
|
+
exports.Watcher$ = Watcher$;
|
|
1798
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
630
1799
|
exports.paginateListCaseEdits = paginateListCaseEdits;
|
|
631
1800
|
exports.paginateListCases = paginateListCases;
|
|
632
1801
|
exports.paginateListComments = paginateListComments;
|