@aws-sdk/client-comprehendmedical 3.952.0 → 3.954.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 +369 -253
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/DescribeEntitiesDetectionV2JobCommand.js +2 -2
- package/dist-es/commands/DescribeICD10CMInferenceJobCommand.js +2 -2
- package/dist-es/commands/DescribePHIDetectionJobCommand.js +2 -2
- package/dist-es/commands/DescribeRxNormInferenceJobCommand.js +2 -2
- package/dist-es/commands/DescribeSNOMEDCTInferenceJobCommand.js +2 -2
- package/dist-es/commands/DetectEntitiesCommand.js +2 -2
- package/dist-es/commands/DetectEntitiesV2Command.js +2 -2
- package/dist-es/commands/DetectPHICommand.js +2 -2
- package/dist-es/commands/InferICD10CMCommand.js +2 -2
- package/dist-es/commands/InferRxNormCommand.js +2 -2
- package/dist-es/commands/InferSNOMEDCTCommand.js +2 -2
- package/dist-es/commands/ListEntitiesDetectionV2JobsCommand.js +2 -2
- package/dist-es/commands/ListICD10CMInferenceJobsCommand.js +2 -2
- package/dist-es/commands/ListPHIDetectionJobsCommand.js +2 -2
- package/dist-es/commands/ListRxNormInferenceJobsCommand.js +2 -2
- package/dist-es/commands/ListSNOMEDCTInferenceJobsCommand.js +2 -2
- package/dist-es/commands/StartEntitiesDetectionV2JobCommand.js +2 -2
- package/dist-es/commands/StartICD10CMInferenceJobCommand.js +2 -2
- package/dist-es/commands/StartPHIDetectionJobCommand.js +2 -2
- package/dist-es/commands/StartRxNormInferenceJobCommand.js +2 -2
- package/dist-es/commands/StartSNOMEDCTInferenceJobCommand.js +2 -2
- package/dist-es/commands/StopEntitiesDetectionV2JobCommand.js +2 -2
- package/dist-es/commands/StopICD10CMInferenceJobCommand.js +2 -2
- package/dist-es/commands/StopPHIDetectionJobCommand.js +2 -2
- package/dist-es/commands/StopRxNormInferenceJobCommand.js +2 -2
- package/dist-es/commands/StopSNOMEDCTInferenceJobCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +212 -205
- package/dist-types/ComprehendMedicalClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +110 -127
- package/dist-types/ts3.4/ComprehendMedicalClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +109 -127
- package/package.json +34 -34
|
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.comprehendmedical",
|
|
32
|
+
version: "2018-10-30",
|
|
33
|
+
serviceTarget: "ComprehendMedical_20181030",
|
|
34
|
+
},
|
|
35
35
|
serviceId: config?.serviceId ?? "ComprehendMedical",
|
|
36
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeEntitiesDetectionV2Job } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeEntitiesDetectionV2Job$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeEntitiesDetectionV2JobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeEntitiesDetectionV2JobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "DescribeEntitiesDetectionV2Job", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "DescribeEntitiesDetectionV2JobCommand")
|
|
14
|
-
.sc(DescribeEntitiesDetectionV2Job)
|
|
14
|
+
.sc(DescribeEntitiesDetectionV2Job$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeICD10CMInferenceJob } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeICD10CMInferenceJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeICD10CMInferenceJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeICD10CMInferenceJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "DescribeICD10CMInferenceJob", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "DescribeICD10CMInferenceJobCommand")
|
|
14
|
-
.sc(DescribeICD10CMInferenceJob)
|
|
14
|
+
.sc(DescribeICD10CMInferenceJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribePHIDetectionJob } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribePHIDetectionJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribePHIDetectionJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribePHIDetectionJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "DescribePHIDetectionJob", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "DescribePHIDetectionJobCommand")
|
|
14
|
-
.sc(DescribePHIDetectionJob)
|
|
14
|
+
.sc(DescribePHIDetectionJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeRxNormInferenceJob } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeRxNormInferenceJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeRxNormInferenceJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeRxNormInferenceJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "DescribeRxNormInferenceJob", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "DescribeRxNormInferenceJobCommand")
|
|
14
|
-
.sc(DescribeRxNormInferenceJob)
|
|
14
|
+
.sc(DescribeRxNormInferenceJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeSNOMEDCTInferenceJob } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeSNOMEDCTInferenceJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeSNOMEDCTInferenceJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeSNOMEDCTInferenceJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "DescribeSNOMEDCTInferenceJob", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "DescribeSNOMEDCTInferenceJobCommand")
|
|
14
|
-
.sc(DescribeSNOMEDCTInferenceJob)
|
|
14
|
+
.sc(DescribeSNOMEDCTInferenceJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DetectEntities } from "../schemas/schemas_0";
|
|
4
|
+
import { DetectEntities$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DetectEntitiesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DetectEntitiesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "DetectEntities", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "DetectEntitiesCommand")
|
|
14
|
-
.sc(DetectEntities)
|
|
14
|
+
.sc(DetectEntities$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DetectEntitiesV2 } from "../schemas/schemas_0";
|
|
4
|
+
import { DetectEntitiesV2$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DetectEntitiesV2Command extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DetectEntitiesV2Command extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "DetectEntitiesV2", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "DetectEntitiesV2Command")
|
|
14
|
-
.sc(DetectEntitiesV2)
|
|
14
|
+
.sc(DetectEntitiesV2$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DetectPHI } from "../schemas/schemas_0";
|
|
4
|
+
import { DetectPHI$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DetectPHICommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DetectPHICommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "DetectPHI", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "DetectPHICommand")
|
|
14
|
-
.sc(DetectPHI)
|
|
14
|
+
.sc(DetectPHI$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { InferICD10CM } from "../schemas/schemas_0";
|
|
4
|
+
import { InferICD10CM$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class InferICD10CMCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class InferICD10CMCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "InferICD10CM", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "InferICD10CMCommand")
|
|
14
|
-
.sc(InferICD10CM)
|
|
14
|
+
.sc(InferICD10CM$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { InferRxNorm } from "../schemas/schemas_0";
|
|
4
|
+
import { InferRxNorm$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class InferRxNormCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class InferRxNormCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "InferRxNorm", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "InferRxNormCommand")
|
|
14
|
-
.sc(InferRxNorm)
|
|
14
|
+
.sc(InferRxNorm$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { InferSNOMEDCT } from "../schemas/schemas_0";
|
|
4
|
+
import { InferSNOMEDCT$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class InferSNOMEDCTCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class InferSNOMEDCTCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "InferSNOMEDCT", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "InferSNOMEDCTCommand")
|
|
14
|
-
.sc(InferSNOMEDCT)
|
|
14
|
+
.sc(InferSNOMEDCT$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListEntitiesDetectionV2Jobs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListEntitiesDetectionV2Jobs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListEntitiesDetectionV2JobsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListEntitiesDetectionV2JobsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "ListEntitiesDetectionV2Jobs", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "ListEntitiesDetectionV2JobsCommand")
|
|
14
|
-
.sc(ListEntitiesDetectionV2Jobs)
|
|
14
|
+
.sc(ListEntitiesDetectionV2Jobs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListICD10CMInferenceJobs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListICD10CMInferenceJobs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListICD10CMInferenceJobsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListICD10CMInferenceJobsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "ListICD10CMInferenceJobs", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "ListICD10CMInferenceJobsCommand")
|
|
14
|
-
.sc(ListICD10CMInferenceJobs)
|
|
14
|
+
.sc(ListICD10CMInferenceJobs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListPHIDetectionJobs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPHIDetectionJobs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPHIDetectionJobsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPHIDetectionJobsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "ListPHIDetectionJobs", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "ListPHIDetectionJobsCommand")
|
|
14
|
-
.sc(ListPHIDetectionJobs)
|
|
14
|
+
.sc(ListPHIDetectionJobs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListRxNormInferenceJobs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRxNormInferenceJobs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRxNormInferenceJobsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRxNormInferenceJobsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "ListRxNormInferenceJobs", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "ListRxNormInferenceJobsCommand")
|
|
14
|
-
.sc(ListRxNormInferenceJobs)
|
|
14
|
+
.sc(ListRxNormInferenceJobs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListSNOMEDCTInferenceJobs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSNOMEDCTInferenceJobs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSNOMEDCTInferenceJobsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSNOMEDCTInferenceJobsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "ListSNOMEDCTInferenceJobs", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "ListSNOMEDCTInferenceJobsCommand")
|
|
14
|
-
.sc(ListSNOMEDCTInferenceJobs)
|
|
14
|
+
.sc(ListSNOMEDCTInferenceJobs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartEntitiesDetectionV2Job } from "../schemas/schemas_0";
|
|
4
|
+
import { StartEntitiesDetectionV2Job$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartEntitiesDetectionV2JobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartEntitiesDetectionV2JobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "StartEntitiesDetectionV2Job", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "StartEntitiesDetectionV2JobCommand")
|
|
14
|
-
.sc(StartEntitiesDetectionV2Job)
|
|
14
|
+
.sc(StartEntitiesDetectionV2Job$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartICD10CMInferenceJob } from "../schemas/schemas_0";
|
|
4
|
+
import { StartICD10CMInferenceJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartICD10CMInferenceJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartICD10CMInferenceJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "StartICD10CMInferenceJob", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "StartICD10CMInferenceJobCommand")
|
|
14
|
-
.sc(StartICD10CMInferenceJob)
|
|
14
|
+
.sc(StartICD10CMInferenceJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartPHIDetectionJob } from "../schemas/schemas_0";
|
|
4
|
+
import { StartPHIDetectionJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartPHIDetectionJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartPHIDetectionJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "StartPHIDetectionJob", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "StartPHIDetectionJobCommand")
|
|
14
|
-
.sc(StartPHIDetectionJob)
|
|
14
|
+
.sc(StartPHIDetectionJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartRxNormInferenceJob } from "../schemas/schemas_0";
|
|
4
|
+
import { StartRxNormInferenceJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartRxNormInferenceJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartRxNormInferenceJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "StartRxNormInferenceJob", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "StartRxNormInferenceJobCommand")
|
|
14
|
-
.sc(StartRxNormInferenceJob)
|
|
14
|
+
.sc(StartRxNormInferenceJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartSNOMEDCTInferenceJob } from "../schemas/schemas_0";
|
|
4
|
+
import { StartSNOMEDCTInferenceJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartSNOMEDCTInferenceJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartSNOMEDCTInferenceJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "StartSNOMEDCTInferenceJob", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "StartSNOMEDCTInferenceJobCommand")
|
|
14
|
-
.sc(StartSNOMEDCTInferenceJob)
|
|
14
|
+
.sc(StartSNOMEDCTInferenceJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StopEntitiesDetectionV2Job } from "../schemas/schemas_0";
|
|
4
|
+
import { StopEntitiesDetectionV2Job$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopEntitiesDetectionV2JobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopEntitiesDetectionV2JobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "StopEntitiesDetectionV2Job", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "StopEntitiesDetectionV2JobCommand")
|
|
14
|
-
.sc(StopEntitiesDetectionV2Job)
|
|
14
|
+
.sc(StopEntitiesDetectionV2Job$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StopICD10CMInferenceJob } from "../schemas/schemas_0";
|
|
4
|
+
import { StopICD10CMInferenceJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopICD10CMInferenceJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopICD10CMInferenceJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "StopICD10CMInferenceJob", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "StopICD10CMInferenceJobCommand")
|
|
14
|
-
.sc(StopICD10CMInferenceJob)
|
|
14
|
+
.sc(StopICD10CMInferenceJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StopPHIDetectionJob } from "../schemas/schemas_0";
|
|
4
|
+
import { StopPHIDetectionJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopPHIDetectionJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopPHIDetectionJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "StopPHIDetectionJob", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "StopPHIDetectionJobCommand")
|
|
14
|
-
.sc(StopPHIDetectionJob)
|
|
14
|
+
.sc(StopPHIDetectionJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StopRxNormInferenceJob } from "../schemas/schemas_0";
|
|
4
|
+
import { StopRxNormInferenceJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopRxNormInferenceJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopRxNormInferenceJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "StopRxNormInferenceJob", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "StopRxNormInferenceJobCommand")
|
|
14
|
-
.sc(StopRxNormInferenceJob)
|
|
14
|
+
.sc(StopRxNormInferenceJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StopSNOMEDCTInferenceJob } from "../schemas/schemas_0";
|
|
4
|
+
import { StopSNOMEDCTInferenceJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopSNOMEDCTInferenceJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopSNOMEDCTInferenceJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ComprehendMedical_20181030", "StopSNOMEDCTInferenceJob", {})
|
|
13
13
|
.n("ComprehendMedicalClient", "StopSNOMEDCTInferenceJobCommand")
|
|
14
|
-
.sc(StopSNOMEDCTInferenceJob)
|
|
14
|
+
.sc(StopSNOMEDCTInferenceJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./ComprehendMedicalClient";
|
|
2
2
|
export * from "./ComprehendMedical";
|
|
3
3
|
export * from "./commands";
|
|
4
|
+
export * from "./schemas/schemas_0";
|
|
4
5
|
export * from "./models/enums";
|
|
5
6
|
export * from "./models/errors";
|
|
6
7
|
export { ComprehendMedicalServiceException } from "./models/ComprehendMedicalServiceException";
|
|
@@ -23,12 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.comprehendmedical",
|
|
29
|
+
version: "2018-10-30",
|
|
30
|
+
serviceTarget: "ComprehendMedical_20181030",
|
|
31
|
+
},
|
|
32
32
|
serviceId: config?.serviceId ?? "ComprehendMedical",
|
|
33
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|