@aws-sdk/client-comprehendmedical 3.986.0 → 3.988.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 +45 -989
- package/dist-cjs/models/ComprehendMedicalServiceException.js +12 -0
- package/dist-cjs/models/errors.js +124 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +738 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +58 -52
- package/dist-types/schemas/schemas_0.d.ts +16 -9
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -9
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var ComprehendMedicalServiceException = require('./models/ComprehendMedicalServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,851 +113,6 @@ class ComprehendMedicalClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class ComprehendMedicalServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, ComprehendMedicalServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class InternalServerException extends ComprehendMedicalServiceException {
|
|
121
|
-
name = "InternalServerException";
|
|
122
|
-
$fault = "server";
|
|
123
|
-
Message;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "InternalServerException",
|
|
127
|
-
$fault: "server",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
131
|
-
this.Message = opts.Message;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class InvalidRequestException extends ComprehendMedicalServiceException {
|
|
135
|
-
name = "InvalidRequestException";
|
|
136
|
-
$fault = "client";
|
|
137
|
-
Message;
|
|
138
|
-
constructor(opts) {
|
|
139
|
-
super({
|
|
140
|
-
name: "InvalidRequestException",
|
|
141
|
-
$fault: "client",
|
|
142
|
-
...opts,
|
|
143
|
-
});
|
|
144
|
-
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
145
|
-
this.Message = opts.Message;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class ResourceNotFoundException extends ComprehendMedicalServiceException {
|
|
149
|
-
name = "ResourceNotFoundException";
|
|
150
|
-
$fault = "client";
|
|
151
|
-
Message;
|
|
152
|
-
constructor(opts) {
|
|
153
|
-
super({
|
|
154
|
-
name: "ResourceNotFoundException",
|
|
155
|
-
$fault: "client",
|
|
156
|
-
...opts,
|
|
157
|
-
});
|
|
158
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
159
|
-
this.Message = opts.Message;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
class TooManyRequestsException extends ComprehendMedicalServiceException {
|
|
163
|
-
name = "TooManyRequestsException";
|
|
164
|
-
$fault = "client";
|
|
165
|
-
Message;
|
|
166
|
-
constructor(opts) {
|
|
167
|
-
super({
|
|
168
|
-
name: "TooManyRequestsException",
|
|
169
|
-
$fault: "client",
|
|
170
|
-
...opts,
|
|
171
|
-
});
|
|
172
|
-
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
173
|
-
this.Message = opts.Message;
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
class InvalidEncodingException extends ComprehendMedicalServiceException {
|
|
177
|
-
name = "InvalidEncodingException";
|
|
178
|
-
$fault = "client";
|
|
179
|
-
Message;
|
|
180
|
-
constructor(opts) {
|
|
181
|
-
super({
|
|
182
|
-
name: "InvalidEncodingException",
|
|
183
|
-
$fault: "client",
|
|
184
|
-
...opts,
|
|
185
|
-
});
|
|
186
|
-
Object.setPrototypeOf(this, InvalidEncodingException.prototype);
|
|
187
|
-
this.Message = opts.Message;
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
class ServiceUnavailableException extends ComprehendMedicalServiceException {
|
|
191
|
-
name = "ServiceUnavailableException";
|
|
192
|
-
$fault = "server";
|
|
193
|
-
Message;
|
|
194
|
-
constructor(opts) {
|
|
195
|
-
super({
|
|
196
|
-
name: "ServiceUnavailableException",
|
|
197
|
-
$fault: "server",
|
|
198
|
-
...opts,
|
|
199
|
-
});
|
|
200
|
-
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
201
|
-
this.Message = opts.Message;
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
class TextSizeLimitExceededException extends ComprehendMedicalServiceException {
|
|
205
|
-
name = "TextSizeLimitExceededException";
|
|
206
|
-
$fault = "client";
|
|
207
|
-
Message;
|
|
208
|
-
constructor(opts) {
|
|
209
|
-
super({
|
|
210
|
-
name: "TextSizeLimitExceededException",
|
|
211
|
-
$fault: "client",
|
|
212
|
-
...opts,
|
|
213
|
-
});
|
|
214
|
-
Object.setPrototypeOf(this, TextSizeLimitExceededException.prototype);
|
|
215
|
-
this.Message = opts.Message;
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
class ValidationException extends ComprehendMedicalServiceException {
|
|
219
|
-
name = "ValidationException";
|
|
220
|
-
$fault = "client";
|
|
221
|
-
Message;
|
|
222
|
-
constructor(opts) {
|
|
223
|
-
super({
|
|
224
|
-
name: "ValidationException",
|
|
225
|
-
$fault: "client",
|
|
226
|
-
...opts,
|
|
227
|
-
});
|
|
228
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
229
|
-
this.Message = opts.Message;
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
const _A = "Attribute";
|
|
234
|
-
const _AL = "AttributeList";
|
|
235
|
-
const _At = "Attributes";
|
|
236
|
-
const _BO = "BeginOffset";
|
|
237
|
-
const _C = "Category";
|
|
238
|
-
const _CMAJF = "ComprehendMedicalAsyncJobFilter";
|
|
239
|
-
const _CMAJP = "ComprehendMedicalAsyncJobProperties";
|
|
240
|
-
const _CMAJPL = "ComprehendMedicalAsyncJobPropertiesList";
|
|
241
|
-
const _CRT = "ClientRequestToken";
|
|
242
|
-
const _Ch = "Characters";
|
|
243
|
-
const _Co = "Code";
|
|
244
|
-
const _D = "Description";
|
|
245
|
-
const _DARA = "DataAccessRoleArn";
|
|
246
|
-
const _DE = "DetectEntities";
|
|
247
|
-
const _DEDVJ = "DescribeEntitiesDetectionV2Job";
|
|
248
|
-
const _DEDVJR = "DescribeEntitiesDetectionV2JobRequest";
|
|
249
|
-
const _DEDVJRe = "DescribeEntitiesDetectionV2JobResponse";
|
|
250
|
-
const _DER = "DetectEntitiesRequest";
|
|
251
|
-
const _DERe = "DetectEntitiesResponse";
|
|
252
|
-
const _DEV = "DetectEntitiesV2";
|
|
253
|
-
const _DEVR = "DetectEntitiesV2Request";
|
|
254
|
-
const _DEVRe = "DetectEntitiesV2Response";
|
|
255
|
-
const _DICDCMIJ = "DescribeICD10CMInferenceJob";
|
|
256
|
-
const _DICDCMIJR = "DescribeICD10CMInferenceJobRequest";
|
|
257
|
-
const _DICDCMIJRe = "DescribeICD10CMInferenceJobResponse";
|
|
258
|
-
const _DPHI = "DetectPHI";
|
|
259
|
-
const _DPHIDJ = "DescribePHIDetectionJob";
|
|
260
|
-
const _DPHIDJR = "DescribePHIDetectionJobRequest";
|
|
261
|
-
const _DPHIDJRe = "DescribePHIDetectionJobResponse";
|
|
262
|
-
const _DPHIR = "DetectPHIRequest";
|
|
263
|
-
const _DPHIRe = "DetectPHIResponse";
|
|
264
|
-
const _DRNIJ = "DescribeRxNormInferenceJob";
|
|
265
|
-
const _DRNIJR = "DescribeRxNormInferenceJobRequest";
|
|
266
|
-
const _DRNIJRe = "DescribeRxNormInferenceJobResponse";
|
|
267
|
-
const _DSNOMEDCTIJ = "DescribeSNOMEDCTInferenceJob";
|
|
268
|
-
const _DSNOMEDCTIJR = "DescribeSNOMEDCTInferenceJobRequest";
|
|
269
|
-
const _DSNOMEDCTIJRe = "DescribeSNOMEDCTInferenceJobResponse";
|
|
270
|
-
const _E = "Entities";
|
|
271
|
-
const _EL = "EntityList";
|
|
272
|
-
const _EO = "EndOffset";
|
|
273
|
-
const _ET = "EndTime";
|
|
274
|
-
const _ETx = "ExpirationTime";
|
|
275
|
-
const _Ed = "Edition";
|
|
276
|
-
const _En = "Entity";
|
|
277
|
-
const _F = "Filter";
|
|
278
|
-
const _I = "Id";
|
|
279
|
-
const _ICDCMA = "ICD10CMAttribute";
|
|
280
|
-
const _ICDCMAL = "ICD10CMAttributeList";
|
|
281
|
-
const _ICDCMC = "ICD10CMConcept";
|
|
282
|
-
const _ICDCMCL = "ICD10CMConceptList";
|
|
283
|
-
const _ICDCMCo = "ICD10CMConcepts";
|
|
284
|
-
const _ICDCME = "ICD10CMEntity";
|
|
285
|
-
const _ICDCMEL = "ICD10CMEntityList";
|
|
286
|
-
const _ICDCMT = "ICD10CMTrait";
|
|
287
|
-
const _ICDCMTL = "ICD10CMTraitList";
|
|
288
|
-
const _IDC = "InputDataConfig";
|
|
289
|
-
const _IEE = "InvalidEncodingException";
|
|
290
|
-
const _IICDCM = "InferICD10CM";
|
|
291
|
-
const _IICDCMR = "InferICD10CMRequest";
|
|
292
|
-
const _IICDCMRn = "InferICD10CMResponse";
|
|
293
|
-
const _IRE = "InvalidRequestException";
|
|
294
|
-
const _IRN = "InferRxNorm";
|
|
295
|
-
const _IRNR = "InferRxNormRequest";
|
|
296
|
-
const _IRNRn = "InferRxNormResponse";
|
|
297
|
-
const _ISE = "InternalServerException";
|
|
298
|
-
const _ISNOMEDCT = "InferSNOMEDCT";
|
|
299
|
-
const _ISNOMEDCTR = "InferSNOMEDCTRequest";
|
|
300
|
-
const _ISNOMEDCTRn = "InferSNOMEDCTResponse";
|
|
301
|
-
const _JI = "JobId";
|
|
302
|
-
const _JN = "JobName";
|
|
303
|
-
const _JS = "JobStatus";
|
|
304
|
-
const _KMSK = "KMSKey";
|
|
305
|
-
const _L = "Language";
|
|
306
|
-
const _LC = "LanguageCode";
|
|
307
|
-
const _LEDVJ = "ListEntitiesDetectionV2Jobs";
|
|
308
|
-
const _LEDVJR = "ListEntitiesDetectionV2JobsRequest";
|
|
309
|
-
const _LEDVJRi = "ListEntitiesDetectionV2JobsResponse";
|
|
310
|
-
const _LICDCMIJ = "ListICD10CMInferenceJobs";
|
|
311
|
-
const _LICDCMIJR = "ListICD10CMInferenceJobsRequest";
|
|
312
|
-
const _LICDCMIJRi = "ListICD10CMInferenceJobsResponse";
|
|
313
|
-
const _LPHIDJ = "ListPHIDetectionJobs";
|
|
314
|
-
const _LPHIDJR = "ListPHIDetectionJobsRequest";
|
|
315
|
-
const _LPHIDJRi = "ListPHIDetectionJobsResponse";
|
|
316
|
-
const _LRNIJ = "ListRxNormInferenceJobs";
|
|
317
|
-
const _LRNIJR = "ListRxNormInferenceJobsRequest";
|
|
318
|
-
const _LRNIJRi = "ListRxNormInferenceJobsResponse";
|
|
319
|
-
const _LSNOMEDCTIJ = "ListSNOMEDCTInferenceJobs";
|
|
320
|
-
const _LSNOMEDCTIJR = "ListSNOMEDCTInferenceJobsRequest";
|
|
321
|
-
const _LSNOMEDCTIJRi = "ListSNOMEDCTInferenceJobsResponse";
|
|
322
|
-
const _M = "Message";
|
|
323
|
-
const _MFP = "ManifestFilePath";
|
|
324
|
-
const _MR = "MaxResults";
|
|
325
|
-
const _MV = "ModelVersion";
|
|
326
|
-
const _N = "Name";
|
|
327
|
-
const _NT = "NextToken";
|
|
328
|
-
const _ODC = "OutputDataConfig";
|
|
329
|
-
const _OTC = "OriginalTextCharacters";
|
|
330
|
-
const _PT = "PaginationToken";
|
|
331
|
-
const _RNA = "RxNormAttribute";
|
|
332
|
-
const _RNAL = "RxNormAttributeList";
|
|
333
|
-
const _RNC = "RxNormConcept";
|
|
334
|
-
const _RNCL = "RxNormConceptList";
|
|
335
|
-
const _RNCx = "RxNormConcepts";
|
|
336
|
-
const _RNE = "RxNormEntity";
|
|
337
|
-
const _RNEL = "RxNormEntityList";
|
|
338
|
-
const _RNFE = "ResourceNotFoundException";
|
|
339
|
-
const _RNT = "RxNormTrait";
|
|
340
|
-
const _RNTL = "RxNormTraitList";
|
|
341
|
-
const _RS = "RelationshipScore";
|
|
342
|
-
const _RT = "RelationshipType";
|
|
343
|
-
const _S = "Score";
|
|
344
|
-
const _SB = "S3Bucket";
|
|
345
|
-
const _SEDVJ = "StartEntitiesDetectionV2Job";
|
|
346
|
-
const _SEDVJR = "StartEntitiesDetectionV2JobRequest";
|
|
347
|
-
const _SEDVJRt = "StartEntitiesDetectionV2JobResponse";
|
|
348
|
-
const _SEDVJRto = "StopEntitiesDetectionV2JobRequest";
|
|
349
|
-
const _SEDVJRtop = "StopEntitiesDetectionV2JobResponse";
|
|
350
|
-
const _SEDVJt = "StopEntitiesDetectionV2Job";
|
|
351
|
-
const _SICDCMIJ = "StartICD10CMInferenceJob";
|
|
352
|
-
const _SICDCMIJR = "StartICD10CMInferenceJobRequest";
|
|
353
|
-
const _SICDCMIJRt = "StartICD10CMInferenceJobResponse";
|
|
354
|
-
const _SICDCMIJRto = "StopICD10CMInferenceJobRequest";
|
|
355
|
-
const _SICDCMIJRtop = "StopICD10CMInferenceJobResponse";
|
|
356
|
-
const _SICDCMIJt = "StopICD10CMInferenceJob";
|
|
357
|
-
const _SK = "S3Key";
|
|
358
|
-
const _SNOMEDCTA = "SNOMEDCTAttribute";
|
|
359
|
-
const _SNOMEDCTAL = "SNOMEDCTAttributeList";
|
|
360
|
-
const _SNOMEDCTC = "SNOMEDCTConcepts";
|
|
361
|
-
const _SNOMEDCTCL = "SNOMEDCTConceptList";
|
|
362
|
-
const _SNOMEDCTCo = "SNOMEDCTConcept";
|
|
363
|
-
const _SNOMEDCTD = "SNOMEDCTDetails";
|
|
364
|
-
const _SNOMEDCTE = "SNOMEDCTEntity";
|
|
365
|
-
const _SNOMEDCTEL = "SNOMEDCTEntityList";
|
|
366
|
-
const _SNOMEDCTT = "SNOMEDCTTrait";
|
|
367
|
-
const _SNOMEDCTTL = "SNOMEDCTTraitList";
|
|
368
|
-
const _SPHIDJ = "StartPHIDetectionJob";
|
|
369
|
-
const _SPHIDJR = "StartPHIDetectionJobRequest";
|
|
370
|
-
const _SPHIDJRt = "StartPHIDetectionJobResponse";
|
|
371
|
-
const _SPHIDJRto = "StopPHIDetectionJobRequest";
|
|
372
|
-
const _SPHIDJRtop = "StopPHIDetectionJobResponse";
|
|
373
|
-
const _SPHIDJt = "StopPHIDetectionJob";
|
|
374
|
-
const _SRNIJ = "StartRxNormInferenceJob";
|
|
375
|
-
const _SRNIJR = "StartRxNormInferenceJobRequest";
|
|
376
|
-
const _SRNIJRt = "StartRxNormInferenceJobResponse";
|
|
377
|
-
const _SRNIJRto = "StopRxNormInferenceJobRequest";
|
|
378
|
-
const _SRNIJRtop = "StopRxNormInferenceJobResponse";
|
|
379
|
-
const _SRNIJt = "StopRxNormInferenceJob";
|
|
380
|
-
const _SSNOMEDCTIJ = "StartSNOMEDCTInferenceJob";
|
|
381
|
-
const _SSNOMEDCTIJR = "StartSNOMEDCTInferenceJobRequest";
|
|
382
|
-
const _SSNOMEDCTIJRt = "StartSNOMEDCTInferenceJobResponse";
|
|
383
|
-
const _SSNOMEDCTIJRto = "StopSNOMEDCTInferenceJobRequest";
|
|
384
|
-
const _SSNOMEDCTIJRtop = "StopSNOMEDCTInferenceJobResponse";
|
|
385
|
-
const _SSNOMEDCTIJt = "StopSNOMEDCTInferenceJob";
|
|
386
|
-
const _ST = "SubmitTime";
|
|
387
|
-
const _STA = "SubmitTimeAfter";
|
|
388
|
-
const _STB = "SubmitTimeBefore";
|
|
389
|
-
const _SUE = "ServiceUnavailableException";
|
|
390
|
-
const _T = "Type";
|
|
391
|
-
const _TL = "TraitList";
|
|
392
|
-
const _TMRE = "TooManyRequestsException";
|
|
393
|
-
const _TSLEE = "TextSizeLimitExceededException";
|
|
394
|
-
const _Te = "Text";
|
|
395
|
-
const _Tr = "Traits";
|
|
396
|
-
const _Tra = "Trait";
|
|
397
|
-
const _UA = "UnmappedAttributes";
|
|
398
|
-
const _UAL = "UnmappedAttributeList";
|
|
399
|
-
const _UAn = "UnmappedAttribute";
|
|
400
|
-
const _VD = "VersionDate";
|
|
401
|
-
const _VE = "ValidationException";
|
|
402
|
-
const _c = "client";
|
|
403
|
-
const _e = "error";
|
|
404
|
-
const _hE = "httpError";
|
|
405
|
-
const _s = "server";
|
|
406
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.comprehendmedical";
|
|
407
|
-
const n0 = "com.amazonaws.comprehendmedical";
|
|
408
|
-
var Attribute$ = [3, n0, _A,
|
|
409
|
-
0,
|
|
410
|
-
[_T, _S, _RS, _RT, _I, _BO, _EO, _Te, _C, _Tr],
|
|
411
|
-
[0, 1, 1, 0, 1, 1, 1, 0, 0, () => TraitList]
|
|
412
|
-
];
|
|
413
|
-
var Characters$ = [3, n0, _Ch,
|
|
414
|
-
0,
|
|
415
|
-
[_OTC],
|
|
416
|
-
[1]
|
|
417
|
-
];
|
|
418
|
-
var ComprehendMedicalAsyncJobFilter$ = [3, n0, _CMAJF,
|
|
419
|
-
0,
|
|
420
|
-
[_JN, _JS, _STB, _STA],
|
|
421
|
-
[0, 0, 4, 4]
|
|
422
|
-
];
|
|
423
|
-
var ComprehendMedicalAsyncJobProperties$ = [3, n0, _CMAJP,
|
|
424
|
-
0,
|
|
425
|
-
[_JI, _JN, _JS, _M, _ST, _ET, _ETx, _IDC, _ODC, _LC, _DARA, _MFP, _KMSK, _MV],
|
|
426
|
-
[0, 0, 0, 0, 4, 4, 4, () => InputDataConfig$, () => OutputDataConfig$, 0, 0, 0, 0, 0]
|
|
427
|
-
];
|
|
428
|
-
var DescribeEntitiesDetectionV2JobRequest$ = [3, n0, _DEDVJR,
|
|
429
|
-
0,
|
|
430
|
-
[_JI],
|
|
431
|
-
[0], 1
|
|
432
|
-
];
|
|
433
|
-
var DescribeEntitiesDetectionV2JobResponse$ = [3, n0, _DEDVJRe,
|
|
434
|
-
0,
|
|
435
|
-
[_CMAJP],
|
|
436
|
-
[() => ComprehendMedicalAsyncJobProperties$]
|
|
437
|
-
];
|
|
438
|
-
var DescribeICD10CMInferenceJobRequest$ = [3, n0, _DICDCMIJR,
|
|
439
|
-
0,
|
|
440
|
-
[_JI],
|
|
441
|
-
[0], 1
|
|
442
|
-
];
|
|
443
|
-
var DescribeICD10CMInferenceJobResponse$ = [3, n0, _DICDCMIJRe,
|
|
444
|
-
0,
|
|
445
|
-
[_CMAJP],
|
|
446
|
-
[() => ComprehendMedicalAsyncJobProperties$]
|
|
447
|
-
];
|
|
448
|
-
var DescribePHIDetectionJobRequest$ = [3, n0, _DPHIDJR,
|
|
449
|
-
0,
|
|
450
|
-
[_JI],
|
|
451
|
-
[0], 1
|
|
452
|
-
];
|
|
453
|
-
var DescribePHIDetectionJobResponse$ = [3, n0, _DPHIDJRe,
|
|
454
|
-
0,
|
|
455
|
-
[_CMAJP],
|
|
456
|
-
[() => ComprehendMedicalAsyncJobProperties$]
|
|
457
|
-
];
|
|
458
|
-
var DescribeRxNormInferenceJobRequest$ = [3, n0, _DRNIJR,
|
|
459
|
-
0,
|
|
460
|
-
[_JI],
|
|
461
|
-
[0], 1
|
|
462
|
-
];
|
|
463
|
-
var DescribeRxNormInferenceJobResponse$ = [3, n0, _DRNIJRe,
|
|
464
|
-
0,
|
|
465
|
-
[_CMAJP],
|
|
466
|
-
[() => ComprehendMedicalAsyncJobProperties$]
|
|
467
|
-
];
|
|
468
|
-
var DescribeSNOMEDCTInferenceJobRequest$ = [3, n0, _DSNOMEDCTIJR,
|
|
469
|
-
0,
|
|
470
|
-
[_JI],
|
|
471
|
-
[0], 1
|
|
472
|
-
];
|
|
473
|
-
var DescribeSNOMEDCTInferenceJobResponse$ = [3, n0, _DSNOMEDCTIJRe,
|
|
474
|
-
0,
|
|
475
|
-
[_CMAJP],
|
|
476
|
-
[() => ComprehendMedicalAsyncJobProperties$]
|
|
477
|
-
];
|
|
478
|
-
var DetectEntitiesRequest$ = [3, n0, _DER,
|
|
479
|
-
0,
|
|
480
|
-
[_Te],
|
|
481
|
-
[0], 1
|
|
482
|
-
];
|
|
483
|
-
var DetectEntitiesResponse$ = [3, n0, _DERe,
|
|
484
|
-
0,
|
|
485
|
-
[_E, _MV, _UA, _PT],
|
|
486
|
-
[() => EntityList, 0, () => UnmappedAttributeList, 0], 2
|
|
487
|
-
];
|
|
488
|
-
var DetectEntitiesV2Request$ = [3, n0, _DEVR,
|
|
489
|
-
0,
|
|
490
|
-
[_Te],
|
|
491
|
-
[0], 1
|
|
492
|
-
];
|
|
493
|
-
var DetectEntitiesV2Response$ = [3, n0, _DEVRe,
|
|
494
|
-
0,
|
|
495
|
-
[_E, _MV, _UA, _PT],
|
|
496
|
-
[() => EntityList, 0, () => UnmappedAttributeList, 0], 2
|
|
497
|
-
];
|
|
498
|
-
var DetectPHIRequest$ = [3, n0, _DPHIR,
|
|
499
|
-
0,
|
|
500
|
-
[_Te],
|
|
501
|
-
[0], 1
|
|
502
|
-
];
|
|
503
|
-
var DetectPHIResponse$ = [3, n0, _DPHIRe,
|
|
504
|
-
0,
|
|
505
|
-
[_E, _MV, _PT],
|
|
506
|
-
[() => EntityList, 0, 0], 2
|
|
507
|
-
];
|
|
508
|
-
var Entity$ = [3, n0, _En,
|
|
509
|
-
0,
|
|
510
|
-
[_I, _BO, _EO, _S, _Te, _C, _T, _Tr, _At],
|
|
511
|
-
[1, 1, 1, 1, 0, 0, 0, () => TraitList, () => AttributeList]
|
|
512
|
-
];
|
|
513
|
-
var ICD10CMAttribute$ = [3, n0, _ICDCMA,
|
|
514
|
-
0,
|
|
515
|
-
[_T, _S, _RS, _I, _BO, _EO, _Te, _Tr, _C, _RT],
|
|
516
|
-
[0, 1, 1, 1, 1, 1, 0, () => ICD10CMTraitList, 0, 0]
|
|
517
|
-
];
|
|
518
|
-
var ICD10CMConcept$ = [3, n0, _ICDCMC,
|
|
519
|
-
0,
|
|
520
|
-
[_D, _Co, _S],
|
|
521
|
-
[0, 0, 1]
|
|
522
|
-
];
|
|
523
|
-
var ICD10CMEntity$ = [3, n0, _ICDCME,
|
|
524
|
-
0,
|
|
525
|
-
[_I, _Te, _C, _T, _S, _BO, _EO, _At, _Tr, _ICDCMCo],
|
|
526
|
-
[1, 0, 0, 0, 1, 1, 1, () => ICD10CMAttributeList, () => ICD10CMTraitList, () => ICD10CMConceptList]
|
|
527
|
-
];
|
|
528
|
-
var ICD10CMTrait$ = [3, n0, _ICDCMT,
|
|
529
|
-
0,
|
|
530
|
-
[_N, _S],
|
|
531
|
-
[0, 1]
|
|
532
|
-
];
|
|
533
|
-
var InferICD10CMRequest$ = [3, n0, _IICDCMR,
|
|
534
|
-
0,
|
|
535
|
-
[_Te],
|
|
536
|
-
[0], 1
|
|
537
|
-
];
|
|
538
|
-
var InferICD10CMResponse$ = [3, n0, _IICDCMRn,
|
|
539
|
-
0,
|
|
540
|
-
[_E, _PT, _MV],
|
|
541
|
-
[() => ICD10CMEntityList, 0, 0], 1
|
|
542
|
-
];
|
|
543
|
-
var InferRxNormRequest$ = [3, n0, _IRNR,
|
|
544
|
-
0,
|
|
545
|
-
[_Te],
|
|
546
|
-
[0], 1
|
|
547
|
-
];
|
|
548
|
-
var InferRxNormResponse$ = [3, n0, _IRNRn,
|
|
549
|
-
0,
|
|
550
|
-
[_E, _PT, _MV],
|
|
551
|
-
[() => RxNormEntityList, 0, 0], 1
|
|
552
|
-
];
|
|
553
|
-
var InferSNOMEDCTRequest$ = [3, n0, _ISNOMEDCTR,
|
|
554
|
-
0,
|
|
555
|
-
[_Te],
|
|
556
|
-
[0], 1
|
|
557
|
-
];
|
|
558
|
-
var InferSNOMEDCTResponse$ = [3, n0, _ISNOMEDCTRn,
|
|
559
|
-
0,
|
|
560
|
-
[_E, _PT, _MV, _SNOMEDCTD, _Ch],
|
|
561
|
-
[() => SNOMEDCTEntityList, 0, 0, () => SNOMEDCTDetails$, () => Characters$], 1
|
|
562
|
-
];
|
|
563
|
-
var InputDataConfig$ = [3, n0, _IDC,
|
|
564
|
-
0,
|
|
565
|
-
[_SB, _SK],
|
|
566
|
-
[0, 0], 1
|
|
567
|
-
];
|
|
568
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
569
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
570
|
-
[_M],
|
|
571
|
-
[0]
|
|
572
|
-
];
|
|
573
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
574
|
-
var InvalidEncodingException$ = [-3, n0, _IEE,
|
|
575
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
576
|
-
[_M],
|
|
577
|
-
[0]
|
|
578
|
-
];
|
|
579
|
-
schema.TypeRegistry.for(n0).registerError(InvalidEncodingException$, InvalidEncodingException);
|
|
580
|
-
var InvalidRequestException$ = [-3, n0, _IRE,
|
|
581
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
582
|
-
[_M],
|
|
583
|
-
[0]
|
|
584
|
-
];
|
|
585
|
-
schema.TypeRegistry.for(n0).registerError(InvalidRequestException$, InvalidRequestException);
|
|
586
|
-
var ListEntitiesDetectionV2JobsRequest$ = [3, n0, _LEDVJR,
|
|
587
|
-
0,
|
|
588
|
-
[_F, _NT, _MR],
|
|
589
|
-
[() => ComprehendMedicalAsyncJobFilter$, 0, 1]
|
|
590
|
-
];
|
|
591
|
-
var ListEntitiesDetectionV2JobsResponse$ = [3, n0, _LEDVJRi,
|
|
592
|
-
0,
|
|
593
|
-
[_CMAJPL, _NT],
|
|
594
|
-
[() => ComprehendMedicalAsyncJobPropertiesList, 0]
|
|
595
|
-
];
|
|
596
|
-
var ListICD10CMInferenceJobsRequest$ = [3, n0, _LICDCMIJR,
|
|
597
|
-
0,
|
|
598
|
-
[_F, _NT, _MR],
|
|
599
|
-
[() => ComprehendMedicalAsyncJobFilter$, 0, 1]
|
|
600
|
-
];
|
|
601
|
-
var ListICD10CMInferenceJobsResponse$ = [3, n0, _LICDCMIJRi,
|
|
602
|
-
0,
|
|
603
|
-
[_CMAJPL, _NT],
|
|
604
|
-
[() => ComprehendMedicalAsyncJobPropertiesList, 0]
|
|
605
|
-
];
|
|
606
|
-
var ListPHIDetectionJobsRequest$ = [3, n0, _LPHIDJR,
|
|
607
|
-
0,
|
|
608
|
-
[_F, _NT, _MR],
|
|
609
|
-
[() => ComprehendMedicalAsyncJobFilter$, 0, 1]
|
|
610
|
-
];
|
|
611
|
-
var ListPHIDetectionJobsResponse$ = [3, n0, _LPHIDJRi,
|
|
612
|
-
0,
|
|
613
|
-
[_CMAJPL, _NT],
|
|
614
|
-
[() => ComprehendMedicalAsyncJobPropertiesList, 0]
|
|
615
|
-
];
|
|
616
|
-
var ListRxNormInferenceJobsRequest$ = [3, n0, _LRNIJR,
|
|
617
|
-
0,
|
|
618
|
-
[_F, _NT, _MR],
|
|
619
|
-
[() => ComprehendMedicalAsyncJobFilter$, 0, 1]
|
|
620
|
-
];
|
|
621
|
-
var ListRxNormInferenceJobsResponse$ = [3, n0, _LRNIJRi,
|
|
622
|
-
0,
|
|
623
|
-
[_CMAJPL, _NT],
|
|
624
|
-
[() => ComprehendMedicalAsyncJobPropertiesList, 0]
|
|
625
|
-
];
|
|
626
|
-
var ListSNOMEDCTInferenceJobsRequest$ = [3, n0, _LSNOMEDCTIJR,
|
|
627
|
-
0,
|
|
628
|
-
[_F, _NT, _MR],
|
|
629
|
-
[() => ComprehendMedicalAsyncJobFilter$, 0, 1]
|
|
630
|
-
];
|
|
631
|
-
var ListSNOMEDCTInferenceJobsResponse$ = [3, n0, _LSNOMEDCTIJRi,
|
|
632
|
-
0,
|
|
633
|
-
[_CMAJPL, _NT],
|
|
634
|
-
[() => ComprehendMedicalAsyncJobPropertiesList, 0]
|
|
635
|
-
];
|
|
636
|
-
var OutputDataConfig$ = [3, n0, _ODC,
|
|
637
|
-
0,
|
|
638
|
-
[_SB, _SK],
|
|
639
|
-
[0, 0], 1
|
|
640
|
-
];
|
|
641
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
642
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
643
|
-
[_M],
|
|
644
|
-
[0]
|
|
645
|
-
];
|
|
646
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
647
|
-
var RxNormAttribute$ = [3, n0, _RNA,
|
|
648
|
-
0,
|
|
649
|
-
[_T, _S, _RS, _I, _BO, _EO, _Te, _Tr],
|
|
650
|
-
[0, 1, 1, 1, 1, 1, 0, () => RxNormTraitList]
|
|
651
|
-
];
|
|
652
|
-
var RxNormConcept$ = [3, n0, _RNC,
|
|
653
|
-
0,
|
|
654
|
-
[_D, _Co, _S],
|
|
655
|
-
[0, 0, 1]
|
|
656
|
-
];
|
|
657
|
-
var RxNormEntity$ = [3, n0, _RNE,
|
|
658
|
-
0,
|
|
659
|
-
[_I, _Te, _C, _T, _S, _BO, _EO, _At, _Tr, _RNCx],
|
|
660
|
-
[1, 0, 0, 0, 1, 1, 1, () => RxNormAttributeList, () => RxNormTraitList, () => RxNormConceptList]
|
|
661
|
-
];
|
|
662
|
-
var RxNormTrait$ = [3, n0, _RNT,
|
|
663
|
-
0,
|
|
664
|
-
[_N, _S],
|
|
665
|
-
[0, 1]
|
|
666
|
-
];
|
|
667
|
-
var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
668
|
-
{ [_e]: _s, [_hE]: 503 },
|
|
669
|
-
[_M],
|
|
670
|
-
[0]
|
|
671
|
-
];
|
|
672
|
-
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
673
|
-
var SNOMEDCTAttribute$ = [3, n0, _SNOMEDCTA,
|
|
674
|
-
0,
|
|
675
|
-
[_C, _T, _S, _RS, _RT, _I, _BO, _EO, _Te, _Tr, _SNOMEDCTC],
|
|
676
|
-
[0, 0, 1, 1, 0, 1, 1, 1, 0, () => SNOMEDCTTraitList, () => SNOMEDCTConceptList]
|
|
677
|
-
];
|
|
678
|
-
var SNOMEDCTConcept$ = [3, n0, _SNOMEDCTCo,
|
|
679
|
-
0,
|
|
680
|
-
[_D, _Co, _S],
|
|
681
|
-
[0, 0, 1]
|
|
682
|
-
];
|
|
683
|
-
var SNOMEDCTDetails$ = [3, n0, _SNOMEDCTD,
|
|
684
|
-
0,
|
|
685
|
-
[_Ed, _L, _VD],
|
|
686
|
-
[0, 0, 0]
|
|
687
|
-
];
|
|
688
|
-
var SNOMEDCTEntity$ = [3, n0, _SNOMEDCTE,
|
|
689
|
-
0,
|
|
690
|
-
[_I, _Te, _C, _T, _S, _BO, _EO, _At, _Tr, _SNOMEDCTC],
|
|
691
|
-
[1, 0, 0, 0, 1, 1, 1, () => SNOMEDCTAttributeList, () => SNOMEDCTTraitList, () => SNOMEDCTConceptList]
|
|
692
|
-
];
|
|
693
|
-
var SNOMEDCTTrait$ = [3, n0, _SNOMEDCTT,
|
|
694
|
-
0,
|
|
695
|
-
[_N, _S],
|
|
696
|
-
[0, 1]
|
|
697
|
-
];
|
|
698
|
-
var StartEntitiesDetectionV2JobRequest$ = [3, n0, _SEDVJR,
|
|
699
|
-
0,
|
|
700
|
-
[_IDC, _ODC, _DARA, _LC, _JN, _CRT, _KMSK],
|
|
701
|
-
[() => InputDataConfig$, () => OutputDataConfig$, 0, 0, 0, [0, 4], 0], 4
|
|
702
|
-
];
|
|
703
|
-
var StartEntitiesDetectionV2JobResponse$ = [3, n0, _SEDVJRt,
|
|
704
|
-
0,
|
|
705
|
-
[_JI],
|
|
706
|
-
[0]
|
|
707
|
-
];
|
|
708
|
-
var StartICD10CMInferenceJobRequest$ = [3, n0, _SICDCMIJR,
|
|
709
|
-
0,
|
|
710
|
-
[_IDC, _ODC, _DARA, _LC, _JN, _CRT, _KMSK],
|
|
711
|
-
[() => InputDataConfig$, () => OutputDataConfig$, 0, 0, 0, [0, 4], 0], 4
|
|
712
|
-
];
|
|
713
|
-
var StartICD10CMInferenceJobResponse$ = [3, n0, _SICDCMIJRt,
|
|
714
|
-
0,
|
|
715
|
-
[_JI],
|
|
716
|
-
[0]
|
|
717
|
-
];
|
|
718
|
-
var StartPHIDetectionJobRequest$ = [3, n0, _SPHIDJR,
|
|
719
|
-
0,
|
|
720
|
-
[_IDC, _ODC, _DARA, _LC, _JN, _CRT, _KMSK],
|
|
721
|
-
[() => InputDataConfig$, () => OutputDataConfig$, 0, 0, 0, [0, 4], 0], 4
|
|
722
|
-
];
|
|
723
|
-
var StartPHIDetectionJobResponse$ = [3, n0, _SPHIDJRt,
|
|
724
|
-
0,
|
|
725
|
-
[_JI],
|
|
726
|
-
[0]
|
|
727
|
-
];
|
|
728
|
-
var StartRxNormInferenceJobRequest$ = [3, n0, _SRNIJR,
|
|
729
|
-
0,
|
|
730
|
-
[_IDC, _ODC, _DARA, _LC, _JN, _CRT, _KMSK],
|
|
731
|
-
[() => InputDataConfig$, () => OutputDataConfig$, 0, 0, 0, [0, 4], 0], 4
|
|
732
|
-
];
|
|
733
|
-
var StartRxNormInferenceJobResponse$ = [3, n0, _SRNIJRt,
|
|
734
|
-
0,
|
|
735
|
-
[_JI],
|
|
736
|
-
[0]
|
|
737
|
-
];
|
|
738
|
-
var StartSNOMEDCTInferenceJobRequest$ = [3, n0, _SSNOMEDCTIJR,
|
|
739
|
-
0,
|
|
740
|
-
[_IDC, _ODC, _DARA, _LC, _JN, _CRT, _KMSK],
|
|
741
|
-
[() => InputDataConfig$, () => OutputDataConfig$, 0, 0, 0, [0, 4], 0], 4
|
|
742
|
-
];
|
|
743
|
-
var StartSNOMEDCTInferenceJobResponse$ = [3, n0, _SSNOMEDCTIJRt,
|
|
744
|
-
0,
|
|
745
|
-
[_JI],
|
|
746
|
-
[0]
|
|
747
|
-
];
|
|
748
|
-
var StopEntitiesDetectionV2JobRequest$ = [3, n0, _SEDVJRto,
|
|
749
|
-
0,
|
|
750
|
-
[_JI],
|
|
751
|
-
[0], 1
|
|
752
|
-
];
|
|
753
|
-
var StopEntitiesDetectionV2JobResponse$ = [3, n0, _SEDVJRtop,
|
|
754
|
-
0,
|
|
755
|
-
[_JI],
|
|
756
|
-
[0]
|
|
757
|
-
];
|
|
758
|
-
var StopICD10CMInferenceJobRequest$ = [3, n0, _SICDCMIJRto,
|
|
759
|
-
0,
|
|
760
|
-
[_JI],
|
|
761
|
-
[0], 1
|
|
762
|
-
];
|
|
763
|
-
var StopICD10CMInferenceJobResponse$ = [3, n0, _SICDCMIJRtop,
|
|
764
|
-
0,
|
|
765
|
-
[_JI],
|
|
766
|
-
[0]
|
|
767
|
-
];
|
|
768
|
-
var StopPHIDetectionJobRequest$ = [3, n0, _SPHIDJRto,
|
|
769
|
-
0,
|
|
770
|
-
[_JI],
|
|
771
|
-
[0], 1
|
|
772
|
-
];
|
|
773
|
-
var StopPHIDetectionJobResponse$ = [3, n0, _SPHIDJRtop,
|
|
774
|
-
0,
|
|
775
|
-
[_JI],
|
|
776
|
-
[0]
|
|
777
|
-
];
|
|
778
|
-
var StopRxNormInferenceJobRequest$ = [3, n0, _SRNIJRto,
|
|
779
|
-
0,
|
|
780
|
-
[_JI],
|
|
781
|
-
[0], 1
|
|
782
|
-
];
|
|
783
|
-
var StopRxNormInferenceJobResponse$ = [3, n0, _SRNIJRtop,
|
|
784
|
-
0,
|
|
785
|
-
[_JI],
|
|
786
|
-
[0]
|
|
787
|
-
];
|
|
788
|
-
var StopSNOMEDCTInferenceJobRequest$ = [3, n0, _SSNOMEDCTIJRto,
|
|
789
|
-
0,
|
|
790
|
-
[_JI],
|
|
791
|
-
[0], 1
|
|
792
|
-
];
|
|
793
|
-
var StopSNOMEDCTInferenceJobResponse$ = [3, n0, _SSNOMEDCTIJRtop,
|
|
794
|
-
0,
|
|
795
|
-
[_JI],
|
|
796
|
-
[0]
|
|
797
|
-
];
|
|
798
|
-
var TextSizeLimitExceededException$ = [-3, n0, _TSLEE,
|
|
799
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
800
|
-
[_M],
|
|
801
|
-
[0]
|
|
802
|
-
];
|
|
803
|
-
schema.TypeRegistry.for(n0).registerError(TextSizeLimitExceededException$, TextSizeLimitExceededException);
|
|
804
|
-
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
805
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
806
|
-
[_M],
|
|
807
|
-
[0]
|
|
808
|
-
];
|
|
809
|
-
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
810
|
-
var Trait$ = [3, n0, _Tra,
|
|
811
|
-
0,
|
|
812
|
-
[_N, _S],
|
|
813
|
-
[0, 1]
|
|
814
|
-
];
|
|
815
|
-
var UnmappedAttribute$ = [3, n0, _UAn,
|
|
816
|
-
0,
|
|
817
|
-
[_T, _A],
|
|
818
|
-
[0, () => Attribute$]
|
|
819
|
-
];
|
|
820
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
821
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
822
|
-
[_M],
|
|
823
|
-
[0]
|
|
824
|
-
];
|
|
825
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
826
|
-
var ComprehendMedicalServiceException$ = [-3, _sm, "ComprehendMedicalServiceException", 0, [], []];
|
|
827
|
-
schema.TypeRegistry.for(_sm).registerError(ComprehendMedicalServiceException$, ComprehendMedicalServiceException);
|
|
828
|
-
var AttributeList = [1, n0, _AL,
|
|
829
|
-
0, () => Attribute$
|
|
830
|
-
];
|
|
831
|
-
var ComprehendMedicalAsyncJobPropertiesList = [1, n0, _CMAJPL,
|
|
832
|
-
0, () => ComprehendMedicalAsyncJobProperties$
|
|
833
|
-
];
|
|
834
|
-
var EntityList = [1, n0, _EL,
|
|
835
|
-
0, () => Entity$
|
|
836
|
-
];
|
|
837
|
-
var ICD10CMAttributeList = [1, n0, _ICDCMAL,
|
|
838
|
-
0, () => ICD10CMAttribute$
|
|
839
|
-
];
|
|
840
|
-
var ICD10CMConceptList = [1, n0, _ICDCMCL,
|
|
841
|
-
0, () => ICD10CMConcept$
|
|
842
|
-
];
|
|
843
|
-
var ICD10CMEntityList = [1, n0, _ICDCMEL,
|
|
844
|
-
0, () => ICD10CMEntity$
|
|
845
|
-
];
|
|
846
|
-
var ICD10CMTraitList = [1, n0, _ICDCMTL,
|
|
847
|
-
0, () => ICD10CMTrait$
|
|
848
|
-
];
|
|
849
|
-
var RxNormAttributeList = [1, n0, _RNAL,
|
|
850
|
-
0, () => RxNormAttribute$
|
|
851
|
-
];
|
|
852
|
-
var RxNormConceptList = [1, n0, _RNCL,
|
|
853
|
-
0, () => RxNormConcept$
|
|
854
|
-
];
|
|
855
|
-
var RxNormEntityList = [1, n0, _RNEL,
|
|
856
|
-
0, () => RxNormEntity$
|
|
857
|
-
];
|
|
858
|
-
var RxNormTraitList = [1, n0, _RNTL,
|
|
859
|
-
0, () => RxNormTrait$
|
|
860
|
-
];
|
|
861
|
-
var SNOMEDCTAttributeList = [1, n0, _SNOMEDCTAL,
|
|
862
|
-
0, () => SNOMEDCTAttribute$
|
|
863
|
-
];
|
|
864
|
-
var SNOMEDCTConceptList = [1, n0, _SNOMEDCTCL,
|
|
865
|
-
0, () => SNOMEDCTConcept$
|
|
866
|
-
];
|
|
867
|
-
var SNOMEDCTEntityList = [1, n0, _SNOMEDCTEL,
|
|
868
|
-
0, () => SNOMEDCTEntity$
|
|
869
|
-
];
|
|
870
|
-
var SNOMEDCTTraitList = [1, n0, _SNOMEDCTTL,
|
|
871
|
-
0, () => SNOMEDCTTrait$
|
|
872
|
-
];
|
|
873
|
-
var TraitList = [1, n0, _TL,
|
|
874
|
-
0, () => Trait$
|
|
875
|
-
];
|
|
876
|
-
var UnmappedAttributeList = [1, n0, _UAL,
|
|
877
|
-
0, () => UnmappedAttribute$
|
|
878
|
-
];
|
|
879
|
-
var DescribeEntitiesDetectionV2Job$ = [9, n0, _DEDVJ,
|
|
880
|
-
0, () => DescribeEntitiesDetectionV2JobRequest$, () => DescribeEntitiesDetectionV2JobResponse$
|
|
881
|
-
];
|
|
882
|
-
var DescribeICD10CMInferenceJob$ = [9, n0, _DICDCMIJ,
|
|
883
|
-
0, () => DescribeICD10CMInferenceJobRequest$, () => DescribeICD10CMInferenceJobResponse$
|
|
884
|
-
];
|
|
885
|
-
var DescribePHIDetectionJob$ = [9, n0, _DPHIDJ,
|
|
886
|
-
0, () => DescribePHIDetectionJobRequest$, () => DescribePHIDetectionJobResponse$
|
|
887
|
-
];
|
|
888
|
-
var DescribeRxNormInferenceJob$ = [9, n0, _DRNIJ,
|
|
889
|
-
0, () => DescribeRxNormInferenceJobRequest$, () => DescribeRxNormInferenceJobResponse$
|
|
890
|
-
];
|
|
891
|
-
var DescribeSNOMEDCTInferenceJob$ = [9, n0, _DSNOMEDCTIJ,
|
|
892
|
-
0, () => DescribeSNOMEDCTInferenceJobRequest$, () => DescribeSNOMEDCTInferenceJobResponse$
|
|
893
|
-
];
|
|
894
|
-
var DetectEntities$ = [9, n0, _DE,
|
|
895
|
-
0, () => DetectEntitiesRequest$, () => DetectEntitiesResponse$
|
|
896
|
-
];
|
|
897
|
-
var DetectEntitiesV2$ = [9, n0, _DEV,
|
|
898
|
-
0, () => DetectEntitiesV2Request$, () => DetectEntitiesV2Response$
|
|
899
|
-
];
|
|
900
|
-
var DetectPHI$ = [9, n0, _DPHI,
|
|
901
|
-
0, () => DetectPHIRequest$, () => DetectPHIResponse$
|
|
902
|
-
];
|
|
903
|
-
var InferICD10CM$ = [9, n0, _IICDCM,
|
|
904
|
-
0, () => InferICD10CMRequest$, () => InferICD10CMResponse$
|
|
905
|
-
];
|
|
906
|
-
var InferRxNorm$ = [9, n0, _IRN,
|
|
907
|
-
0, () => InferRxNormRequest$, () => InferRxNormResponse$
|
|
908
|
-
];
|
|
909
|
-
var InferSNOMEDCT$ = [9, n0, _ISNOMEDCT,
|
|
910
|
-
0, () => InferSNOMEDCTRequest$, () => InferSNOMEDCTResponse$
|
|
911
|
-
];
|
|
912
|
-
var ListEntitiesDetectionV2Jobs$ = [9, n0, _LEDVJ,
|
|
913
|
-
0, () => ListEntitiesDetectionV2JobsRequest$, () => ListEntitiesDetectionV2JobsResponse$
|
|
914
|
-
];
|
|
915
|
-
var ListICD10CMInferenceJobs$ = [9, n0, _LICDCMIJ,
|
|
916
|
-
0, () => ListICD10CMInferenceJobsRequest$, () => ListICD10CMInferenceJobsResponse$
|
|
917
|
-
];
|
|
918
|
-
var ListPHIDetectionJobs$ = [9, n0, _LPHIDJ,
|
|
919
|
-
0, () => ListPHIDetectionJobsRequest$, () => ListPHIDetectionJobsResponse$
|
|
920
|
-
];
|
|
921
|
-
var ListRxNormInferenceJobs$ = [9, n0, _LRNIJ,
|
|
922
|
-
0, () => ListRxNormInferenceJobsRequest$, () => ListRxNormInferenceJobsResponse$
|
|
923
|
-
];
|
|
924
|
-
var ListSNOMEDCTInferenceJobs$ = [9, n0, _LSNOMEDCTIJ,
|
|
925
|
-
0, () => ListSNOMEDCTInferenceJobsRequest$, () => ListSNOMEDCTInferenceJobsResponse$
|
|
926
|
-
];
|
|
927
|
-
var StartEntitiesDetectionV2Job$ = [9, n0, _SEDVJ,
|
|
928
|
-
0, () => StartEntitiesDetectionV2JobRequest$, () => StartEntitiesDetectionV2JobResponse$
|
|
929
|
-
];
|
|
930
|
-
var StartICD10CMInferenceJob$ = [9, n0, _SICDCMIJ,
|
|
931
|
-
0, () => StartICD10CMInferenceJobRequest$, () => StartICD10CMInferenceJobResponse$
|
|
932
|
-
];
|
|
933
|
-
var StartPHIDetectionJob$ = [9, n0, _SPHIDJ,
|
|
934
|
-
0, () => StartPHIDetectionJobRequest$, () => StartPHIDetectionJobResponse$
|
|
935
|
-
];
|
|
936
|
-
var StartRxNormInferenceJob$ = [9, n0, _SRNIJ,
|
|
937
|
-
0, () => StartRxNormInferenceJobRequest$, () => StartRxNormInferenceJobResponse$
|
|
938
|
-
];
|
|
939
|
-
var StartSNOMEDCTInferenceJob$ = [9, n0, _SSNOMEDCTIJ,
|
|
940
|
-
0, () => StartSNOMEDCTInferenceJobRequest$, () => StartSNOMEDCTInferenceJobResponse$
|
|
941
|
-
];
|
|
942
|
-
var StopEntitiesDetectionV2Job$ = [9, n0, _SEDVJt,
|
|
943
|
-
0, () => StopEntitiesDetectionV2JobRequest$, () => StopEntitiesDetectionV2JobResponse$
|
|
944
|
-
];
|
|
945
|
-
var StopICD10CMInferenceJob$ = [9, n0, _SICDCMIJt,
|
|
946
|
-
0, () => StopICD10CMInferenceJobRequest$, () => StopICD10CMInferenceJobResponse$
|
|
947
|
-
];
|
|
948
|
-
var StopPHIDetectionJob$ = [9, n0, _SPHIDJt,
|
|
949
|
-
0, () => StopPHIDetectionJobRequest$, () => StopPHIDetectionJobResponse$
|
|
950
|
-
];
|
|
951
|
-
var StopRxNormInferenceJob$ = [9, n0, _SRNIJt,
|
|
952
|
-
0, () => StopRxNormInferenceJobRequest$, () => StopRxNormInferenceJobResponse$
|
|
953
|
-
];
|
|
954
|
-
var StopSNOMEDCTInferenceJob$ = [9, n0, _SSNOMEDCTIJt,
|
|
955
|
-
0, () => StopSNOMEDCTInferenceJobRequest$, () => StopSNOMEDCTInferenceJobResponse$
|
|
956
|
-
];
|
|
957
|
-
|
|
958
116
|
class DescribeEntitiesDetectionV2JobCommand extends smithyClient.Command
|
|
959
117
|
.classBuilder()
|
|
960
118
|
.ep(commonParams)
|
|
@@ -963,7 +121,7 @@ class DescribeEntitiesDetectionV2JobCommand extends smithyClient.Command
|
|
|
963
121
|
})
|
|
964
122
|
.s("ComprehendMedical_20181030", "DescribeEntitiesDetectionV2Job", {})
|
|
965
123
|
.n("ComprehendMedicalClient", "DescribeEntitiesDetectionV2JobCommand")
|
|
966
|
-
.sc(DescribeEntitiesDetectionV2Job$)
|
|
124
|
+
.sc(schemas_0.DescribeEntitiesDetectionV2Job$)
|
|
967
125
|
.build() {
|
|
968
126
|
}
|
|
969
127
|
|
|
@@ -975,7 +133,7 @@ class DescribeICD10CMInferenceJobCommand extends smithyClient.Command
|
|
|
975
133
|
})
|
|
976
134
|
.s("ComprehendMedical_20181030", "DescribeICD10CMInferenceJob", {})
|
|
977
135
|
.n("ComprehendMedicalClient", "DescribeICD10CMInferenceJobCommand")
|
|
978
|
-
.sc(DescribeICD10CMInferenceJob$)
|
|
136
|
+
.sc(schemas_0.DescribeICD10CMInferenceJob$)
|
|
979
137
|
.build() {
|
|
980
138
|
}
|
|
981
139
|
|
|
@@ -987,7 +145,7 @@ class DescribePHIDetectionJobCommand extends smithyClient.Command
|
|
|
987
145
|
})
|
|
988
146
|
.s("ComprehendMedical_20181030", "DescribePHIDetectionJob", {})
|
|
989
147
|
.n("ComprehendMedicalClient", "DescribePHIDetectionJobCommand")
|
|
990
|
-
.sc(DescribePHIDetectionJob$)
|
|
148
|
+
.sc(schemas_0.DescribePHIDetectionJob$)
|
|
991
149
|
.build() {
|
|
992
150
|
}
|
|
993
151
|
|
|
@@ -999,7 +157,7 @@ class DescribeRxNormInferenceJobCommand extends smithyClient.Command
|
|
|
999
157
|
})
|
|
1000
158
|
.s("ComprehendMedical_20181030", "DescribeRxNormInferenceJob", {})
|
|
1001
159
|
.n("ComprehendMedicalClient", "DescribeRxNormInferenceJobCommand")
|
|
1002
|
-
.sc(DescribeRxNormInferenceJob$)
|
|
160
|
+
.sc(schemas_0.DescribeRxNormInferenceJob$)
|
|
1003
161
|
.build() {
|
|
1004
162
|
}
|
|
1005
163
|
|
|
@@ -1011,7 +169,7 @@ class DescribeSNOMEDCTInferenceJobCommand extends smithyClient.Command
|
|
|
1011
169
|
})
|
|
1012
170
|
.s("ComprehendMedical_20181030", "DescribeSNOMEDCTInferenceJob", {})
|
|
1013
171
|
.n("ComprehendMedicalClient", "DescribeSNOMEDCTInferenceJobCommand")
|
|
1014
|
-
.sc(DescribeSNOMEDCTInferenceJob$)
|
|
172
|
+
.sc(schemas_0.DescribeSNOMEDCTInferenceJob$)
|
|
1015
173
|
.build() {
|
|
1016
174
|
}
|
|
1017
175
|
|
|
@@ -1023,7 +181,7 @@ class DetectEntitiesCommand extends smithyClient.Command
|
|
|
1023
181
|
})
|
|
1024
182
|
.s("ComprehendMedical_20181030", "DetectEntities", {})
|
|
1025
183
|
.n("ComprehendMedicalClient", "DetectEntitiesCommand")
|
|
1026
|
-
.sc(DetectEntities$)
|
|
184
|
+
.sc(schemas_0.DetectEntities$)
|
|
1027
185
|
.build() {
|
|
1028
186
|
}
|
|
1029
187
|
|
|
@@ -1035,7 +193,7 @@ class DetectEntitiesV2Command extends smithyClient.Command
|
|
|
1035
193
|
})
|
|
1036
194
|
.s("ComprehendMedical_20181030", "DetectEntitiesV2", {})
|
|
1037
195
|
.n("ComprehendMedicalClient", "DetectEntitiesV2Command")
|
|
1038
|
-
.sc(DetectEntitiesV2$)
|
|
196
|
+
.sc(schemas_0.DetectEntitiesV2$)
|
|
1039
197
|
.build() {
|
|
1040
198
|
}
|
|
1041
199
|
|
|
@@ -1047,7 +205,7 @@ class DetectPHICommand extends smithyClient.Command
|
|
|
1047
205
|
})
|
|
1048
206
|
.s("ComprehendMedical_20181030", "DetectPHI", {})
|
|
1049
207
|
.n("ComprehendMedicalClient", "DetectPHICommand")
|
|
1050
|
-
.sc(DetectPHI$)
|
|
208
|
+
.sc(schemas_0.DetectPHI$)
|
|
1051
209
|
.build() {
|
|
1052
210
|
}
|
|
1053
211
|
|
|
@@ -1059,7 +217,7 @@ class InferICD10CMCommand extends smithyClient.Command
|
|
|
1059
217
|
})
|
|
1060
218
|
.s("ComprehendMedical_20181030", "InferICD10CM", {})
|
|
1061
219
|
.n("ComprehendMedicalClient", "InferICD10CMCommand")
|
|
1062
|
-
.sc(InferICD10CM$)
|
|
220
|
+
.sc(schemas_0.InferICD10CM$)
|
|
1063
221
|
.build() {
|
|
1064
222
|
}
|
|
1065
223
|
|
|
@@ -1071,7 +229,7 @@ class InferRxNormCommand extends smithyClient.Command
|
|
|
1071
229
|
})
|
|
1072
230
|
.s("ComprehendMedical_20181030", "InferRxNorm", {})
|
|
1073
231
|
.n("ComprehendMedicalClient", "InferRxNormCommand")
|
|
1074
|
-
.sc(InferRxNorm$)
|
|
232
|
+
.sc(schemas_0.InferRxNorm$)
|
|
1075
233
|
.build() {
|
|
1076
234
|
}
|
|
1077
235
|
|
|
@@ -1083,7 +241,7 @@ class InferSNOMEDCTCommand extends smithyClient.Command
|
|
|
1083
241
|
})
|
|
1084
242
|
.s("ComprehendMedical_20181030", "InferSNOMEDCT", {})
|
|
1085
243
|
.n("ComprehendMedicalClient", "InferSNOMEDCTCommand")
|
|
1086
|
-
.sc(InferSNOMEDCT$)
|
|
244
|
+
.sc(schemas_0.InferSNOMEDCT$)
|
|
1087
245
|
.build() {
|
|
1088
246
|
}
|
|
1089
247
|
|
|
@@ -1095,7 +253,7 @@ class ListEntitiesDetectionV2JobsCommand extends smithyClient.Command
|
|
|
1095
253
|
})
|
|
1096
254
|
.s("ComprehendMedical_20181030", "ListEntitiesDetectionV2Jobs", {})
|
|
1097
255
|
.n("ComprehendMedicalClient", "ListEntitiesDetectionV2JobsCommand")
|
|
1098
|
-
.sc(ListEntitiesDetectionV2Jobs$)
|
|
256
|
+
.sc(schemas_0.ListEntitiesDetectionV2Jobs$)
|
|
1099
257
|
.build() {
|
|
1100
258
|
}
|
|
1101
259
|
|
|
@@ -1107,7 +265,7 @@ class ListICD10CMInferenceJobsCommand extends smithyClient.Command
|
|
|
1107
265
|
})
|
|
1108
266
|
.s("ComprehendMedical_20181030", "ListICD10CMInferenceJobs", {})
|
|
1109
267
|
.n("ComprehendMedicalClient", "ListICD10CMInferenceJobsCommand")
|
|
1110
|
-
.sc(ListICD10CMInferenceJobs$)
|
|
268
|
+
.sc(schemas_0.ListICD10CMInferenceJobs$)
|
|
1111
269
|
.build() {
|
|
1112
270
|
}
|
|
1113
271
|
|
|
@@ -1119,7 +277,7 @@ class ListPHIDetectionJobsCommand extends smithyClient.Command
|
|
|
1119
277
|
})
|
|
1120
278
|
.s("ComprehendMedical_20181030", "ListPHIDetectionJobs", {})
|
|
1121
279
|
.n("ComprehendMedicalClient", "ListPHIDetectionJobsCommand")
|
|
1122
|
-
.sc(ListPHIDetectionJobs$)
|
|
280
|
+
.sc(schemas_0.ListPHIDetectionJobs$)
|
|
1123
281
|
.build() {
|
|
1124
282
|
}
|
|
1125
283
|
|
|
@@ -1131,7 +289,7 @@ class ListRxNormInferenceJobsCommand extends smithyClient.Command
|
|
|
1131
289
|
})
|
|
1132
290
|
.s("ComprehendMedical_20181030", "ListRxNormInferenceJobs", {})
|
|
1133
291
|
.n("ComprehendMedicalClient", "ListRxNormInferenceJobsCommand")
|
|
1134
|
-
.sc(ListRxNormInferenceJobs$)
|
|
292
|
+
.sc(schemas_0.ListRxNormInferenceJobs$)
|
|
1135
293
|
.build() {
|
|
1136
294
|
}
|
|
1137
295
|
|
|
@@ -1143,7 +301,7 @@ class ListSNOMEDCTInferenceJobsCommand extends smithyClient.Command
|
|
|
1143
301
|
})
|
|
1144
302
|
.s("ComprehendMedical_20181030", "ListSNOMEDCTInferenceJobs", {})
|
|
1145
303
|
.n("ComprehendMedicalClient", "ListSNOMEDCTInferenceJobsCommand")
|
|
1146
|
-
.sc(ListSNOMEDCTInferenceJobs$)
|
|
304
|
+
.sc(schemas_0.ListSNOMEDCTInferenceJobs$)
|
|
1147
305
|
.build() {
|
|
1148
306
|
}
|
|
1149
307
|
|
|
@@ -1155,7 +313,7 @@ class StartEntitiesDetectionV2JobCommand extends smithyClient.Command
|
|
|
1155
313
|
})
|
|
1156
314
|
.s("ComprehendMedical_20181030", "StartEntitiesDetectionV2Job", {})
|
|
1157
315
|
.n("ComprehendMedicalClient", "StartEntitiesDetectionV2JobCommand")
|
|
1158
|
-
.sc(StartEntitiesDetectionV2Job$)
|
|
316
|
+
.sc(schemas_0.StartEntitiesDetectionV2Job$)
|
|
1159
317
|
.build() {
|
|
1160
318
|
}
|
|
1161
319
|
|
|
@@ -1167,7 +325,7 @@ class StartICD10CMInferenceJobCommand extends smithyClient.Command
|
|
|
1167
325
|
})
|
|
1168
326
|
.s("ComprehendMedical_20181030", "StartICD10CMInferenceJob", {})
|
|
1169
327
|
.n("ComprehendMedicalClient", "StartICD10CMInferenceJobCommand")
|
|
1170
|
-
.sc(StartICD10CMInferenceJob$)
|
|
328
|
+
.sc(schemas_0.StartICD10CMInferenceJob$)
|
|
1171
329
|
.build() {
|
|
1172
330
|
}
|
|
1173
331
|
|
|
@@ -1179,7 +337,7 @@ class StartPHIDetectionJobCommand extends smithyClient.Command
|
|
|
1179
337
|
})
|
|
1180
338
|
.s("ComprehendMedical_20181030", "StartPHIDetectionJob", {})
|
|
1181
339
|
.n("ComprehendMedicalClient", "StartPHIDetectionJobCommand")
|
|
1182
|
-
.sc(StartPHIDetectionJob$)
|
|
340
|
+
.sc(schemas_0.StartPHIDetectionJob$)
|
|
1183
341
|
.build() {
|
|
1184
342
|
}
|
|
1185
343
|
|
|
@@ -1191,7 +349,7 @@ class StartRxNormInferenceJobCommand extends smithyClient.Command
|
|
|
1191
349
|
})
|
|
1192
350
|
.s("ComprehendMedical_20181030", "StartRxNormInferenceJob", {})
|
|
1193
351
|
.n("ComprehendMedicalClient", "StartRxNormInferenceJobCommand")
|
|
1194
|
-
.sc(StartRxNormInferenceJob$)
|
|
352
|
+
.sc(schemas_0.StartRxNormInferenceJob$)
|
|
1195
353
|
.build() {
|
|
1196
354
|
}
|
|
1197
355
|
|
|
@@ -1203,7 +361,7 @@ class StartSNOMEDCTInferenceJobCommand extends smithyClient.Command
|
|
|
1203
361
|
})
|
|
1204
362
|
.s("ComprehendMedical_20181030", "StartSNOMEDCTInferenceJob", {})
|
|
1205
363
|
.n("ComprehendMedicalClient", "StartSNOMEDCTInferenceJobCommand")
|
|
1206
|
-
.sc(StartSNOMEDCTInferenceJob$)
|
|
364
|
+
.sc(schemas_0.StartSNOMEDCTInferenceJob$)
|
|
1207
365
|
.build() {
|
|
1208
366
|
}
|
|
1209
367
|
|
|
@@ -1215,7 +373,7 @@ class StopEntitiesDetectionV2JobCommand extends smithyClient.Command
|
|
|
1215
373
|
})
|
|
1216
374
|
.s("ComprehendMedical_20181030", "StopEntitiesDetectionV2Job", {})
|
|
1217
375
|
.n("ComprehendMedicalClient", "StopEntitiesDetectionV2JobCommand")
|
|
1218
|
-
.sc(StopEntitiesDetectionV2Job$)
|
|
376
|
+
.sc(schemas_0.StopEntitiesDetectionV2Job$)
|
|
1219
377
|
.build() {
|
|
1220
378
|
}
|
|
1221
379
|
|
|
@@ -1227,7 +385,7 @@ class StopICD10CMInferenceJobCommand extends smithyClient.Command
|
|
|
1227
385
|
})
|
|
1228
386
|
.s("ComprehendMedical_20181030", "StopICD10CMInferenceJob", {})
|
|
1229
387
|
.n("ComprehendMedicalClient", "StopICD10CMInferenceJobCommand")
|
|
1230
|
-
.sc(StopICD10CMInferenceJob$)
|
|
388
|
+
.sc(schemas_0.StopICD10CMInferenceJob$)
|
|
1231
389
|
.build() {
|
|
1232
390
|
}
|
|
1233
391
|
|
|
@@ -1239,7 +397,7 @@ class StopPHIDetectionJobCommand extends smithyClient.Command
|
|
|
1239
397
|
})
|
|
1240
398
|
.s("ComprehendMedical_20181030", "StopPHIDetectionJob", {})
|
|
1241
399
|
.n("ComprehendMedicalClient", "StopPHIDetectionJobCommand")
|
|
1242
|
-
.sc(StopPHIDetectionJob$)
|
|
400
|
+
.sc(schemas_0.StopPHIDetectionJob$)
|
|
1243
401
|
.build() {
|
|
1244
402
|
}
|
|
1245
403
|
|
|
@@ -1251,7 +409,7 @@ class StopRxNormInferenceJobCommand extends smithyClient.Command
|
|
|
1251
409
|
})
|
|
1252
410
|
.s("ComprehendMedical_20181030", "StopRxNormInferenceJob", {})
|
|
1253
411
|
.n("ComprehendMedicalClient", "StopRxNormInferenceJobCommand")
|
|
1254
|
-
.sc(StopRxNormInferenceJob$)
|
|
412
|
+
.sc(schemas_0.StopRxNormInferenceJob$)
|
|
1255
413
|
.build() {
|
|
1256
414
|
}
|
|
1257
415
|
|
|
@@ -1263,7 +421,7 @@ class StopSNOMEDCTInferenceJobCommand extends smithyClient.Command
|
|
|
1263
421
|
})
|
|
1264
422
|
.s("ComprehendMedical_20181030", "StopSNOMEDCTInferenceJob", {})
|
|
1265
423
|
.n("ComprehendMedicalClient", "StopSNOMEDCTInferenceJobCommand")
|
|
1266
|
-
.sc(StopSNOMEDCTInferenceJob$)
|
|
424
|
+
.sc(schemas_0.StopSNOMEDCTInferenceJob$)
|
|
1267
425
|
.build() {
|
|
1268
426
|
}
|
|
1269
427
|
|
|
@@ -1500,169 +658,67 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1500
658
|
enumerable: true,
|
|
1501
659
|
get: function () { return smithyClient.Client; }
|
|
1502
660
|
});
|
|
1503
|
-
exports
|
|
661
|
+
Object.defineProperty(exports, "ComprehendMedicalServiceException", {
|
|
662
|
+
enumerable: true,
|
|
663
|
+
get: function () { return ComprehendMedicalServiceException.ComprehendMedicalServiceException; }
|
|
664
|
+
});
|
|
1504
665
|
exports.AttributeName = AttributeName;
|
|
1505
|
-
exports.Characters$ = Characters$;
|
|
1506
666
|
exports.ComprehendMedical = ComprehendMedical;
|
|
1507
|
-
exports.ComprehendMedicalAsyncJobFilter$ = ComprehendMedicalAsyncJobFilter$;
|
|
1508
|
-
exports.ComprehendMedicalAsyncJobProperties$ = ComprehendMedicalAsyncJobProperties$;
|
|
1509
667
|
exports.ComprehendMedicalClient = ComprehendMedicalClient;
|
|
1510
|
-
exports.ComprehendMedicalServiceException = ComprehendMedicalServiceException;
|
|
1511
|
-
exports.ComprehendMedicalServiceException$ = ComprehendMedicalServiceException$;
|
|
1512
|
-
exports.DescribeEntitiesDetectionV2Job$ = DescribeEntitiesDetectionV2Job$;
|
|
1513
668
|
exports.DescribeEntitiesDetectionV2JobCommand = DescribeEntitiesDetectionV2JobCommand;
|
|
1514
|
-
exports.DescribeEntitiesDetectionV2JobRequest$ = DescribeEntitiesDetectionV2JobRequest$;
|
|
1515
|
-
exports.DescribeEntitiesDetectionV2JobResponse$ = DescribeEntitiesDetectionV2JobResponse$;
|
|
1516
|
-
exports.DescribeICD10CMInferenceJob$ = DescribeICD10CMInferenceJob$;
|
|
1517
669
|
exports.DescribeICD10CMInferenceJobCommand = DescribeICD10CMInferenceJobCommand;
|
|
1518
|
-
exports.DescribeICD10CMInferenceJobRequest$ = DescribeICD10CMInferenceJobRequest$;
|
|
1519
|
-
exports.DescribeICD10CMInferenceJobResponse$ = DescribeICD10CMInferenceJobResponse$;
|
|
1520
|
-
exports.DescribePHIDetectionJob$ = DescribePHIDetectionJob$;
|
|
1521
670
|
exports.DescribePHIDetectionJobCommand = DescribePHIDetectionJobCommand;
|
|
1522
|
-
exports.DescribePHIDetectionJobRequest$ = DescribePHIDetectionJobRequest$;
|
|
1523
|
-
exports.DescribePHIDetectionJobResponse$ = DescribePHIDetectionJobResponse$;
|
|
1524
|
-
exports.DescribeRxNormInferenceJob$ = DescribeRxNormInferenceJob$;
|
|
1525
671
|
exports.DescribeRxNormInferenceJobCommand = DescribeRxNormInferenceJobCommand;
|
|
1526
|
-
exports.DescribeRxNormInferenceJobRequest$ = DescribeRxNormInferenceJobRequest$;
|
|
1527
|
-
exports.DescribeRxNormInferenceJobResponse$ = DescribeRxNormInferenceJobResponse$;
|
|
1528
|
-
exports.DescribeSNOMEDCTInferenceJob$ = DescribeSNOMEDCTInferenceJob$;
|
|
1529
672
|
exports.DescribeSNOMEDCTInferenceJobCommand = DescribeSNOMEDCTInferenceJobCommand;
|
|
1530
|
-
exports.DescribeSNOMEDCTInferenceJobRequest$ = DescribeSNOMEDCTInferenceJobRequest$;
|
|
1531
|
-
exports.DescribeSNOMEDCTInferenceJobResponse$ = DescribeSNOMEDCTInferenceJobResponse$;
|
|
1532
|
-
exports.DetectEntities$ = DetectEntities$;
|
|
1533
673
|
exports.DetectEntitiesCommand = DetectEntitiesCommand;
|
|
1534
|
-
exports.DetectEntitiesRequest$ = DetectEntitiesRequest$;
|
|
1535
|
-
exports.DetectEntitiesResponse$ = DetectEntitiesResponse$;
|
|
1536
|
-
exports.DetectEntitiesV2$ = DetectEntitiesV2$;
|
|
1537
674
|
exports.DetectEntitiesV2Command = DetectEntitiesV2Command;
|
|
1538
|
-
exports.DetectEntitiesV2Request$ = DetectEntitiesV2Request$;
|
|
1539
|
-
exports.DetectEntitiesV2Response$ = DetectEntitiesV2Response$;
|
|
1540
|
-
exports.DetectPHI$ = DetectPHI$;
|
|
1541
675
|
exports.DetectPHICommand = DetectPHICommand;
|
|
1542
|
-
exports.DetectPHIRequest$ = DetectPHIRequest$;
|
|
1543
|
-
exports.DetectPHIResponse$ = DetectPHIResponse$;
|
|
1544
|
-
exports.Entity$ = Entity$;
|
|
1545
676
|
exports.EntitySubType = EntitySubType;
|
|
1546
677
|
exports.EntityType = EntityType;
|
|
1547
|
-
exports.ICD10CMAttribute$ = ICD10CMAttribute$;
|
|
1548
678
|
exports.ICD10CMAttributeType = ICD10CMAttributeType;
|
|
1549
|
-
exports.ICD10CMConcept$ = ICD10CMConcept$;
|
|
1550
|
-
exports.ICD10CMEntity$ = ICD10CMEntity$;
|
|
1551
679
|
exports.ICD10CMEntityCategory = ICD10CMEntityCategory;
|
|
1552
680
|
exports.ICD10CMEntityType = ICD10CMEntityType;
|
|
1553
681
|
exports.ICD10CMRelationshipType = ICD10CMRelationshipType;
|
|
1554
|
-
exports.ICD10CMTrait$ = ICD10CMTrait$;
|
|
1555
682
|
exports.ICD10CMTraitName = ICD10CMTraitName;
|
|
1556
|
-
exports.InferICD10CM$ = InferICD10CM$;
|
|
1557
683
|
exports.InferICD10CMCommand = InferICD10CMCommand;
|
|
1558
|
-
exports.InferICD10CMRequest$ = InferICD10CMRequest$;
|
|
1559
|
-
exports.InferICD10CMResponse$ = InferICD10CMResponse$;
|
|
1560
|
-
exports.InferRxNorm$ = InferRxNorm$;
|
|
1561
684
|
exports.InferRxNormCommand = InferRxNormCommand;
|
|
1562
|
-
exports.InferRxNormRequest$ = InferRxNormRequest$;
|
|
1563
|
-
exports.InferRxNormResponse$ = InferRxNormResponse$;
|
|
1564
|
-
exports.InferSNOMEDCT$ = InferSNOMEDCT$;
|
|
1565
685
|
exports.InferSNOMEDCTCommand = InferSNOMEDCTCommand;
|
|
1566
|
-
exports.InferSNOMEDCTRequest$ = InferSNOMEDCTRequest$;
|
|
1567
|
-
exports.InferSNOMEDCTResponse$ = InferSNOMEDCTResponse$;
|
|
1568
|
-
exports.InputDataConfig$ = InputDataConfig$;
|
|
1569
|
-
exports.InternalServerException = InternalServerException;
|
|
1570
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1571
|
-
exports.InvalidEncodingException = InvalidEncodingException;
|
|
1572
|
-
exports.InvalidEncodingException$ = InvalidEncodingException$;
|
|
1573
|
-
exports.InvalidRequestException = InvalidRequestException;
|
|
1574
|
-
exports.InvalidRequestException$ = InvalidRequestException$;
|
|
1575
686
|
exports.JobStatus = JobStatus;
|
|
1576
687
|
exports.LanguageCode = LanguageCode;
|
|
1577
|
-
exports.ListEntitiesDetectionV2Jobs$ = ListEntitiesDetectionV2Jobs$;
|
|
1578
688
|
exports.ListEntitiesDetectionV2JobsCommand = ListEntitiesDetectionV2JobsCommand;
|
|
1579
|
-
exports.ListEntitiesDetectionV2JobsRequest$ = ListEntitiesDetectionV2JobsRequest$;
|
|
1580
|
-
exports.ListEntitiesDetectionV2JobsResponse$ = ListEntitiesDetectionV2JobsResponse$;
|
|
1581
|
-
exports.ListICD10CMInferenceJobs$ = ListICD10CMInferenceJobs$;
|
|
1582
689
|
exports.ListICD10CMInferenceJobsCommand = ListICD10CMInferenceJobsCommand;
|
|
1583
|
-
exports.ListICD10CMInferenceJobsRequest$ = ListICD10CMInferenceJobsRequest$;
|
|
1584
|
-
exports.ListICD10CMInferenceJobsResponse$ = ListICD10CMInferenceJobsResponse$;
|
|
1585
|
-
exports.ListPHIDetectionJobs$ = ListPHIDetectionJobs$;
|
|
1586
690
|
exports.ListPHIDetectionJobsCommand = ListPHIDetectionJobsCommand;
|
|
1587
|
-
exports.ListPHIDetectionJobsRequest$ = ListPHIDetectionJobsRequest$;
|
|
1588
|
-
exports.ListPHIDetectionJobsResponse$ = ListPHIDetectionJobsResponse$;
|
|
1589
|
-
exports.ListRxNormInferenceJobs$ = ListRxNormInferenceJobs$;
|
|
1590
691
|
exports.ListRxNormInferenceJobsCommand = ListRxNormInferenceJobsCommand;
|
|
1591
|
-
exports.ListRxNormInferenceJobsRequest$ = ListRxNormInferenceJobsRequest$;
|
|
1592
|
-
exports.ListRxNormInferenceJobsResponse$ = ListRxNormInferenceJobsResponse$;
|
|
1593
|
-
exports.ListSNOMEDCTInferenceJobs$ = ListSNOMEDCTInferenceJobs$;
|
|
1594
692
|
exports.ListSNOMEDCTInferenceJobsCommand = ListSNOMEDCTInferenceJobsCommand;
|
|
1595
|
-
exports.ListSNOMEDCTInferenceJobsRequest$ = ListSNOMEDCTInferenceJobsRequest$;
|
|
1596
|
-
exports.ListSNOMEDCTInferenceJobsResponse$ = ListSNOMEDCTInferenceJobsResponse$;
|
|
1597
|
-
exports.OutputDataConfig$ = OutputDataConfig$;
|
|
1598
693
|
exports.RelationshipType = RelationshipType;
|
|
1599
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1600
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1601
|
-
exports.RxNormAttribute$ = RxNormAttribute$;
|
|
1602
694
|
exports.RxNormAttributeType = RxNormAttributeType;
|
|
1603
|
-
exports.RxNormConcept$ = RxNormConcept$;
|
|
1604
|
-
exports.RxNormEntity$ = RxNormEntity$;
|
|
1605
695
|
exports.RxNormEntityCategory = RxNormEntityCategory;
|
|
1606
696
|
exports.RxNormEntityType = RxNormEntityType;
|
|
1607
|
-
exports.RxNormTrait$ = RxNormTrait$;
|
|
1608
697
|
exports.RxNormTraitName = RxNormTraitName;
|
|
1609
|
-
exports.SNOMEDCTAttribute$ = SNOMEDCTAttribute$;
|
|
1610
698
|
exports.SNOMEDCTAttributeType = SNOMEDCTAttributeType;
|
|
1611
|
-
exports.SNOMEDCTConcept$ = SNOMEDCTConcept$;
|
|
1612
|
-
exports.SNOMEDCTDetails$ = SNOMEDCTDetails$;
|
|
1613
|
-
exports.SNOMEDCTEntity$ = SNOMEDCTEntity$;
|
|
1614
699
|
exports.SNOMEDCTEntityCategory = SNOMEDCTEntityCategory;
|
|
1615
700
|
exports.SNOMEDCTEntityType = SNOMEDCTEntityType;
|
|
1616
701
|
exports.SNOMEDCTRelationshipType = SNOMEDCTRelationshipType;
|
|
1617
|
-
exports.SNOMEDCTTrait$ = SNOMEDCTTrait$;
|
|
1618
702
|
exports.SNOMEDCTTraitName = SNOMEDCTTraitName;
|
|
1619
|
-
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
1620
|
-
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
1621
|
-
exports.StartEntitiesDetectionV2Job$ = StartEntitiesDetectionV2Job$;
|
|
1622
703
|
exports.StartEntitiesDetectionV2JobCommand = StartEntitiesDetectionV2JobCommand;
|
|
1623
|
-
exports.StartEntitiesDetectionV2JobRequest$ = StartEntitiesDetectionV2JobRequest$;
|
|
1624
|
-
exports.StartEntitiesDetectionV2JobResponse$ = StartEntitiesDetectionV2JobResponse$;
|
|
1625
|
-
exports.StartICD10CMInferenceJob$ = StartICD10CMInferenceJob$;
|
|
1626
704
|
exports.StartICD10CMInferenceJobCommand = StartICD10CMInferenceJobCommand;
|
|
1627
|
-
exports.StartICD10CMInferenceJobRequest$ = StartICD10CMInferenceJobRequest$;
|
|
1628
|
-
exports.StartICD10CMInferenceJobResponse$ = StartICD10CMInferenceJobResponse$;
|
|
1629
|
-
exports.StartPHIDetectionJob$ = StartPHIDetectionJob$;
|
|
1630
705
|
exports.StartPHIDetectionJobCommand = StartPHIDetectionJobCommand;
|
|
1631
|
-
exports.StartPHIDetectionJobRequest$ = StartPHIDetectionJobRequest$;
|
|
1632
|
-
exports.StartPHIDetectionJobResponse$ = StartPHIDetectionJobResponse$;
|
|
1633
|
-
exports.StartRxNormInferenceJob$ = StartRxNormInferenceJob$;
|
|
1634
706
|
exports.StartRxNormInferenceJobCommand = StartRxNormInferenceJobCommand;
|
|
1635
|
-
exports.StartRxNormInferenceJobRequest$ = StartRxNormInferenceJobRequest$;
|
|
1636
|
-
exports.StartRxNormInferenceJobResponse$ = StartRxNormInferenceJobResponse$;
|
|
1637
|
-
exports.StartSNOMEDCTInferenceJob$ = StartSNOMEDCTInferenceJob$;
|
|
1638
707
|
exports.StartSNOMEDCTInferenceJobCommand = StartSNOMEDCTInferenceJobCommand;
|
|
1639
|
-
exports.StartSNOMEDCTInferenceJobRequest$ = StartSNOMEDCTInferenceJobRequest$;
|
|
1640
|
-
exports.StartSNOMEDCTInferenceJobResponse$ = StartSNOMEDCTInferenceJobResponse$;
|
|
1641
|
-
exports.StopEntitiesDetectionV2Job$ = StopEntitiesDetectionV2Job$;
|
|
1642
708
|
exports.StopEntitiesDetectionV2JobCommand = StopEntitiesDetectionV2JobCommand;
|
|
1643
|
-
exports.StopEntitiesDetectionV2JobRequest$ = StopEntitiesDetectionV2JobRequest$;
|
|
1644
|
-
exports.StopEntitiesDetectionV2JobResponse$ = StopEntitiesDetectionV2JobResponse$;
|
|
1645
|
-
exports.StopICD10CMInferenceJob$ = StopICD10CMInferenceJob$;
|
|
1646
709
|
exports.StopICD10CMInferenceJobCommand = StopICD10CMInferenceJobCommand;
|
|
1647
|
-
exports.StopICD10CMInferenceJobRequest$ = StopICD10CMInferenceJobRequest$;
|
|
1648
|
-
exports.StopICD10CMInferenceJobResponse$ = StopICD10CMInferenceJobResponse$;
|
|
1649
|
-
exports.StopPHIDetectionJob$ = StopPHIDetectionJob$;
|
|
1650
710
|
exports.StopPHIDetectionJobCommand = StopPHIDetectionJobCommand;
|
|
1651
|
-
exports.StopPHIDetectionJobRequest$ = StopPHIDetectionJobRequest$;
|
|
1652
|
-
exports.StopPHIDetectionJobResponse$ = StopPHIDetectionJobResponse$;
|
|
1653
|
-
exports.StopRxNormInferenceJob$ = StopRxNormInferenceJob$;
|
|
1654
711
|
exports.StopRxNormInferenceJobCommand = StopRxNormInferenceJobCommand;
|
|
1655
|
-
exports.StopRxNormInferenceJobRequest$ = StopRxNormInferenceJobRequest$;
|
|
1656
|
-
exports.StopRxNormInferenceJobResponse$ = StopRxNormInferenceJobResponse$;
|
|
1657
|
-
exports.StopSNOMEDCTInferenceJob$ = StopSNOMEDCTInferenceJob$;
|
|
1658
712
|
exports.StopSNOMEDCTInferenceJobCommand = StopSNOMEDCTInferenceJobCommand;
|
|
1659
|
-
|
|
1660
|
-
exports.
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
exports.
|
|
1667
|
-
|
|
1668
|
-
|
|
713
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
714
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
715
|
+
enumerable: true,
|
|
716
|
+
get: function () { return schemas_0[k]; }
|
|
717
|
+
});
|
|
718
|
+
});
|
|
719
|
+
Object.keys(errors).forEach(function (k) {
|
|
720
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
721
|
+
enumerable: true,
|
|
722
|
+
get: function () { return errors[k]; }
|
|
723
|
+
});
|
|
724
|
+
});
|