@aws-sdk/client-comprehendmedical 3.1087.0 → 3.1088.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 +1 -1
- package/dist-types/ts3.4/ComprehendMedical.d.ts +80 -86
- package/dist-types/ts3.4/ComprehendMedicalClient.d.ts +7 -23
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/DescribeEntitiesDetectionV2JobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeICD10CMInferenceJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribePHIDetectionJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeRxNormInferenceJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeSNOMEDCTInferenceJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DetectEntitiesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DetectEntitiesV2Command.d.ts +4 -9
- package/dist-types/ts3.4/commands/DetectPHICommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/InferICD10CMCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/InferRxNormCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/InferSNOMEDCTCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListEntitiesDetectionV2JobsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListICD10CMInferenceJobsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListPHIDetectionJobsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListRxNormInferenceJobsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListSNOMEDCTInferenceJobsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/StartEntitiesDetectionV2JobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartICD10CMInferenceJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartPHIDetectionJobCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartRxNormInferenceJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartSNOMEDCTInferenceJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StopEntitiesDetectionV2JobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StopICD10CMInferenceJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StopPHIDetectionJobCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StopRxNormInferenceJobCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StopSNOMEDCTInferenceJobCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +10 -20
- package/dist-types/ts3.4/models/errors.d.ts +8 -24
- package/dist-types/ts3.4/models/models_0.d.ts +10 -30
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeEntitiesDetectionV2JobResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeEntitiesDetectionV2JobCommandInput
|
|
8
|
-
extends DescribeEntitiesDetectionV2JobRequest {}
|
|
7
|
+
export interface DescribeEntitiesDetectionV2JobCommandInput extends DescribeEntitiesDetectionV2JobRequest {}
|
|
9
8
|
export interface DescribeEntitiesDetectionV2JobCommandOutput
|
|
10
|
-
extends DescribeEntitiesDetectionV2JobResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeEntitiesDetectionV2JobResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeEntitiesDetectionV2JobCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeEntitiesDetectionV2JobCommandInput
|
|
12
|
+
input: DescribeEntitiesDetectionV2JobCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeEntitiesDetectionV2JobCommandInput,
|
|
17
15
|
DescribeEntitiesDetectionV2JobCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeEntitiesDetectionV2JobCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeEntitiesDetectionV2JobCommandInput
|
|
21
|
+
input: DescribeEntitiesDetectionV2JobCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeEntitiesDetectionV2JobCommandInput,
|
|
26
24
|
DescribeEntitiesDetectionV2JobCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeICD10CMInferenceJobResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeICD10CMInferenceJobCommandInput
|
|
8
|
-
extends DescribeICD10CMInferenceJobRequest {}
|
|
7
|
+
export interface DescribeICD10CMInferenceJobCommandInput extends DescribeICD10CMInferenceJobRequest {}
|
|
9
8
|
export interface DescribeICD10CMInferenceJobCommandOutput
|
|
10
|
-
extends DescribeICD10CMInferenceJobResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeICD10CMInferenceJobResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeICD10CMInferenceJobCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeICD10CMInferenceJobCommandInput
|
|
12
|
+
input: DescribeICD10CMInferenceJobCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeICD10CMInferenceJobCommandInput,
|
|
17
15
|
DescribeICD10CMInferenceJobCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeICD10CMInferenceJobCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeICD10CMInferenceJobCommandInput
|
|
21
|
+
input: DescribeICD10CMInferenceJobCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeICD10CMInferenceJobCommandInput,
|
|
26
24
|
DescribeICD10CMInferenceJobCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribePHIDetectionJobResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribePHIDetectionJobCommandInput
|
|
8
|
-
extends DescribePHIDetectionJobRequest {}
|
|
7
|
+
export interface DescribePHIDetectionJobCommandInput extends DescribePHIDetectionJobRequest {}
|
|
9
8
|
export interface DescribePHIDetectionJobCommandOutput
|
|
10
|
-
extends DescribePHIDetectionJobResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribePHIDetectionJobResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribePHIDetectionJobCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribePHIDetectionJobCommandInput
|
|
12
|
+
input: DescribePHIDetectionJobCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribePHIDetectionJobCommandInput,
|
|
17
15
|
DescribePHIDetectionJobCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribePHIDetectionJobCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribePHIDetectionJobCommandInput
|
|
21
|
+
input: DescribePHIDetectionJobCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribePHIDetectionJobCommandInput,
|
|
26
24
|
DescribePHIDetectionJobCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeRxNormInferenceJobResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeRxNormInferenceJobCommandInput
|
|
8
|
-
extends DescribeRxNormInferenceJobRequest {}
|
|
7
|
+
export interface DescribeRxNormInferenceJobCommandInput extends DescribeRxNormInferenceJobRequest {}
|
|
9
8
|
export interface DescribeRxNormInferenceJobCommandOutput
|
|
10
|
-
extends DescribeRxNormInferenceJobResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeRxNormInferenceJobResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeRxNormInferenceJobCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeRxNormInferenceJobCommandInput
|
|
12
|
+
input: DescribeRxNormInferenceJobCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeRxNormInferenceJobCommandInput,
|
|
17
15
|
DescribeRxNormInferenceJobCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeRxNormInferenceJobCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeRxNormInferenceJobCommandInput
|
|
21
|
+
input: DescribeRxNormInferenceJobCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeRxNormInferenceJobCommandInput,
|
|
26
24
|
DescribeRxNormInferenceJobCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeSNOMEDCTInferenceJobResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeSNOMEDCTInferenceJobCommandInput
|
|
8
|
-
extends DescribeSNOMEDCTInferenceJobRequest {}
|
|
7
|
+
export interface DescribeSNOMEDCTInferenceJobCommandInput extends DescribeSNOMEDCTInferenceJobRequest {}
|
|
9
8
|
export interface DescribeSNOMEDCTInferenceJobCommandOutput
|
|
10
|
-
extends DescribeSNOMEDCTInferenceJobResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeSNOMEDCTInferenceJobResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeSNOMEDCTInferenceJobCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeSNOMEDCTInferenceJobCommandInput
|
|
12
|
+
input: DescribeSNOMEDCTInferenceJobCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeSNOMEDCTInferenceJobCommandInput,
|
|
17
15
|
DescribeSNOMEDCTInferenceJobCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeSNOMEDCTInferenceJobCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeSNOMEDCTInferenceJobCommandInput
|
|
21
|
+
input: DescribeSNOMEDCTInferenceJobCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeSNOMEDCTInferenceJobCommandInput,
|
|
26
24
|
DescribeSNOMEDCTInferenceJobCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DetectEntitiesRequest,
|
|
4
|
-
DetectEntitiesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DetectEntitiesRequest, DetectEntitiesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DetectEntitiesCommandInput extends DetectEntitiesRequest {}
|
|
8
|
-
export interface DetectEntitiesCommandOutput
|
|
9
|
-
extends DetectEntitiesResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DetectEntitiesCommandOutput extends DetectEntitiesResponse, __MetadataBearer {}
|
|
11
6
|
declare const DetectEntitiesCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DetectEntitiesCommandInput
|
|
8
|
+
input: DetectEntitiesCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DetectEntitiesCommandInput,
|
|
16
11
|
DetectEntitiesCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DetectEntitiesCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DetectEntitiesCommandInput
|
|
17
|
+
input: DetectEntitiesCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DetectEntitiesCommandInput,
|
|
25
20
|
DetectEntitiesCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DetectEntitiesV2Request,
|
|
4
|
-
DetectEntitiesV2Response,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DetectEntitiesV2Request, DetectEntitiesV2Response } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DetectEntitiesV2CommandInput extends DetectEntitiesV2Request {}
|
|
8
|
-
export interface DetectEntitiesV2CommandOutput
|
|
9
|
-
extends DetectEntitiesV2Response,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DetectEntitiesV2CommandOutput extends DetectEntitiesV2Response, __MetadataBearer {}
|
|
11
6
|
declare const DetectEntitiesV2Command_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DetectEntitiesV2CommandInput
|
|
8
|
+
input: DetectEntitiesV2CommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DetectEntitiesV2CommandInput,
|
|
16
11
|
DetectEntitiesV2CommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DetectEntitiesV2Command_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DetectEntitiesV2CommandInput
|
|
17
|
+
input: DetectEntitiesV2CommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DetectEntitiesV2CommandInput,
|
|
25
20
|
DetectEntitiesV2CommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DetectPHIRequest, DetectPHIResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DetectPHICommandInput extends DetectPHIRequest {}
|
|
5
|
-
export interface DetectPHICommandOutput
|
|
6
|
-
extends DetectPHIResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DetectPHICommandOutput extends DetectPHIResponse, __MetadataBearer {}
|
|
8
6
|
declare const DetectPHICommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: DetectPHICommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
DetectPHICommandInput,
|
|
11
11
|
DetectPHICommandOutput,
|
|
12
12
|
import("..").ComprehendMedicalClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: DetectPHICommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
DetectPHICommandInput,
|
|
18
20
|
DetectPHICommandOutput,
|
|
19
21
|
import("..").ComprehendMedicalClientResolvedConfig,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { InferICD10CMRequest, InferICD10CMResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface InferICD10CMCommandInput extends InferICD10CMRequest {}
|
|
5
|
-
export interface InferICD10CMCommandOutput
|
|
6
|
-
extends InferICD10CMResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface InferICD10CMCommandOutput extends InferICD10CMResponse, __MetadataBearer {}
|
|
8
6
|
declare const InferICD10CMCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: InferICD10CMCommandInput
|
|
8
|
+
input: InferICD10CMCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
InferICD10CMCommandInput,
|
|
13
11
|
InferICD10CMCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const InferICD10CMCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: InferICD10CMCommandInput
|
|
17
|
+
input: InferICD10CMCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
InferICD10CMCommandInput,
|
|
22
20
|
InferICD10CMCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { InferRxNormRequest, InferRxNormResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface InferRxNormCommandInput extends InferRxNormRequest {}
|
|
5
|
-
export interface InferRxNormCommandOutput
|
|
6
|
-
extends InferRxNormResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface InferRxNormCommandOutput extends InferRxNormResponse, __MetadataBearer {}
|
|
8
6
|
declare const InferRxNormCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: InferRxNormCommandInput
|
|
8
|
+
input: InferRxNormCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
InferRxNormCommandInput,
|
|
13
11
|
InferRxNormCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const InferRxNormCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: InferRxNormCommandInput
|
|
17
|
+
input: InferRxNormCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
InferRxNormCommandInput,
|
|
22
20
|
InferRxNormCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
InferSNOMEDCTRequest,
|
|
4
|
-
InferSNOMEDCTResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { InferSNOMEDCTRequest, InferSNOMEDCTResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface InferSNOMEDCTCommandInput extends InferSNOMEDCTRequest {}
|
|
8
|
-
export interface InferSNOMEDCTCommandOutput
|
|
9
|
-
extends InferSNOMEDCTResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface InferSNOMEDCTCommandOutput extends InferSNOMEDCTResponse, __MetadataBearer {}
|
|
11
6
|
declare const InferSNOMEDCTCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: InferSNOMEDCTCommandInput
|
|
8
|
+
input: InferSNOMEDCTCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
InferSNOMEDCTCommandInput,
|
|
16
11
|
InferSNOMEDCTCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const InferSNOMEDCTCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: InferSNOMEDCTCommandInput
|
|
17
|
+
input: InferSNOMEDCTCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
InferSNOMEDCTCommandInput,
|
|
25
20
|
InferSNOMEDCTCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListEntitiesDetectionV2JobsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListEntitiesDetectionV2JobsCommandInput
|
|
8
|
-
extends ListEntitiesDetectionV2JobsRequest {}
|
|
7
|
+
export interface ListEntitiesDetectionV2JobsCommandInput extends ListEntitiesDetectionV2JobsRequest {}
|
|
9
8
|
export interface ListEntitiesDetectionV2JobsCommandOutput
|
|
10
|
-
extends ListEntitiesDetectionV2JobsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListEntitiesDetectionV2JobsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListEntitiesDetectionV2JobsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListEntitiesDetectionV2JobsCommandInput
|
|
12
|
+
input: ListEntitiesDetectionV2JobsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListEntitiesDetectionV2JobsCommandInput,
|
|
17
15
|
ListEntitiesDetectionV2JobsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListICD10CMInferenceJobsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListICD10CMInferenceJobsCommandInput
|
|
8
|
-
extends ListICD10CMInferenceJobsRequest {}
|
|
7
|
+
export interface ListICD10CMInferenceJobsCommandInput extends ListICD10CMInferenceJobsRequest {}
|
|
9
8
|
export interface ListICD10CMInferenceJobsCommandOutput
|
|
10
|
-
extends ListICD10CMInferenceJobsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListICD10CMInferenceJobsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListICD10CMInferenceJobsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListICD10CMInferenceJobsCommandInput
|
|
12
|
+
input: ListICD10CMInferenceJobsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListICD10CMInferenceJobsCommandInput,
|
|
17
15
|
ListICD10CMInferenceJobsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListPHIDetectionJobsRequest,
|
|
4
|
-
ListPHIDetectionJobsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListPHIDetectionJobsRequest, ListPHIDetectionJobsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListPHIDetectionJobsCommandInput
|
|
8
|
-
extends ListPHIDetectionJobsRequest {}
|
|
4
|
+
export interface ListPHIDetectionJobsCommandInput extends ListPHIDetectionJobsRequest {}
|
|
9
5
|
export interface ListPHIDetectionJobsCommandOutput
|
|
10
|
-
extends ListPHIDetectionJobsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListPHIDetectionJobsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListPHIDetectionJobsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListPHIDetectionJobsCommandInput
|
|
9
|
+
input: ListPHIDetectionJobsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListPHIDetectionJobsCommandInput,
|
|
17
12
|
ListPHIDetectionJobsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListRxNormInferenceJobsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListRxNormInferenceJobsCommandInput
|
|
8
|
-
extends ListRxNormInferenceJobsRequest {}
|
|
7
|
+
export interface ListRxNormInferenceJobsCommandInput extends ListRxNormInferenceJobsRequest {}
|
|
9
8
|
export interface ListRxNormInferenceJobsCommandOutput
|
|
10
|
-
extends ListRxNormInferenceJobsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListRxNormInferenceJobsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListRxNormInferenceJobsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListRxNormInferenceJobsCommandInput
|
|
12
|
+
input: ListRxNormInferenceJobsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListRxNormInferenceJobsCommandInput,
|
|
17
15
|
ListRxNormInferenceJobsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListSNOMEDCTInferenceJobsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListSNOMEDCTInferenceJobsCommandInput
|
|
8
|
-
extends ListSNOMEDCTInferenceJobsRequest {}
|
|
7
|
+
export interface ListSNOMEDCTInferenceJobsCommandInput extends ListSNOMEDCTInferenceJobsRequest {}
|
|
9
8
|
export interface ListSNOMEDCTInferenceJobsCommandOutput
|
|
10
|
-
extends ListSNOMEDCTInferenceJobsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListSNOMEDCTInferenceJobsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListSNOMEDCTInferenceJobsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListSNOMEDCTInferenceJobsCommandInput
|
|
12
|
+
input: ListSNOMEDCTInferenceJobsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListSNOMEDCTInferenceJobsCommandInput,
|
|
17
15
|
ListSNOMEDCTInferenceJobsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
StartEntitiesDetectionV2JobResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartEntitiesDetectionV2JobCommandInput
|
|
8
|
-
extends StartEntitiesDetectionV2JobRequest {}
|
|
7
|
+
export interface StartEntitiesDetectionV2JobCommandInput extends StartEntitiesDetectionV2JobRequest {}
|
|
9
8
|
export interface StartEntitiesDetectionV2JobCommandOutput
|
|
10
|
-
extends StartEntitiesDetectionV2JobResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends StartEntitiesDetectionV2JobResponse, __MetadataBearer {}
|
|
12
10
|
declare const StartEntitiesDetectionV2JobCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: StartEntitiesDetectionV2JobCommandInput
|
|
12
|
+
input: StartEntitiesDetectionV2JobCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
StartEntitiesDetectionV2JobCommandInput,
|
|
17
15
|
StartEntitiesDetectionV2JobCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const StartEntitiesDetectionV2JobCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: StartEntitiesDetectionV2JobCommandInput
|
|
21
|
+
input: StartEntitiesDetectionV2JobCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
StartEntitiesDetectionV2JobCommandInput,
|
|
26
24
|
StartEntitiesDetectionV2JobCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
StartICD10CMInferenceJobResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartICD10CMInferenceJobCommandInput
|
|
8
|
-
extends StartICD10CMInferenceJobRequest {}
|
|
7
|
+
export interface StartICD10CMInferenceJobCommandInput extends StartICD10CMInferenceJobRequest {}
|
|
9
8
|
export interface StartICD10CMInferenceJobCommandOutput
|
|
10
|
-
extends StartICD10CMInferenceJobResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends StartICD10CMInferenceJobResponse, __MetadataBearer {}
|
|
12
10
|
declare const StartICD10CMInferenceJobCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: StartICD10CMInferenceJobCommandInput
|
|
12
|
+
input: StartICD10CMInferenceJobCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
StartICD10CMInferenceJobCommandInput,
|
|
17
15
|
StartICD10CMInferenceJobCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const StartICD10CMInferenceJobCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: StartICD10CMInferenceJobCommandInput
|
|
21
|
+
input: StartICD10CMInferenceJobCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
StartICD10CMInferenceJobCommandInput,
|
|
26
24
|
StartICD10CMInferenceJobCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartPHIDetectionJobRequest,
|
|
4
|
-
StartPHIDetectionJobResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartPHIDetectionJobRequest, StartPHIDetectionJobResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartPHIDetectionJobCommandInput
|
|
8
|
-
extends StartPHIDetectionJobRequest {}
|
|
4
|
+
export interface StartPHIDetectionJobCommandInput extends StartPHIDetectionJobRequest {}
|
|
9
5
|
export interface StartPHIDetectionJobCommandOutput
|
|
10
|
-
extends StartPHIDetectionJobResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends StartPHIDetectionJobResponse, __MetadataBearer {}
|
|
12
7
|
declare const StartPHIDetectionJobCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: StartPHIDetectionJobCommandInput
|
|
9
|
+
input: StartPHIDetectionJobCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
StartPHIDetectionJobCommandInput,
|
|
17
12
|
StartPHIDetectionJobCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const StartPHIDetectionJobCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: StartPHIDetectionJobCommandInput
|
|
18
|
+
input: StartPHIDetectionJobCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
StartPHIDetectionJobCommandInput,
|
|
26
21
|
StartPHIDetectionJobCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
StartRxNormInferenceJobResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartRxNormInferenceJobCommandInput
|
|
8
|
-
extends StartRxNormInferenceJobRequest {}
|
|
7
|
+
export interface StartRxNormInferenceJobCommandInput extends StartRxNormInferenceJobRequest {}
|
|
9
8
|
export interface StartRxNormInferenceJobCommandOutput
|
|
10
|
-
extends StartRxNormInferenceJobResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends StartRxNormInferenceJobResponse, __MetadataBearer {}
|
|
12
10
|
declare const StartRxNormInferenceJobCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: StartRxNormInferenceJobCommandInput
|
|
12
|
+
input: StartRxNormInferenceJobCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
StartRxNormInferenceJobCommandInput,
|
|
17
15
|
StartRxNormInferenceJobCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const StartRxNormInferenceJobCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: StartRxNormInferenceJobCommandInput
|
|
21
|
+
input: StartRxNormInferenceJobCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
StartRxNormInferenceJobCommandInput,
|
|
26
24
|
StartRxNormInferenceJobCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
StartSNOMEDCTInferenceJobResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartSNOMEDCTInferenceJobCommandInput
|
|
8
|
-
extends StartSNOMEDCTInferenceJobRequest {}
|
|
7
|
+
export interface StartSNOMEDCTInferenceJobCommandInput extends StartSNOMEDCTInferenceJobRequest {}
|
|
9
8
|
export interface StartSNOMEDCTInferenceJobCommandOutput
|
|
10
|
-
extends StartSNOMEDCTInferenceJobResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends StartSNOMEDCTInferenceJobResponse, __MetadataBearer {}
|
|
12
10
|
declare const StartSNOMEDCTInferenceJobCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: StartSNOMEDCTInferenceJobCommandInput
|
|
12
|
+
input: StartSNOMEDCTInferenceJobCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
StartSNOMEDCTInferenceJobCommandInput,
|
|
17
15
|
StartSNOMEDCTInferenceJobCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const StartSNOMEDCTInferenceJobCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: StartSNOMEDCTInferenceJobCommandInput
|
|
21
|
+
input: StartSNOMEDCTInferenceJobCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
StartSNOMEDCTInferenceJobCommandInput,
|
|
26
24
|
StartSNOMEDCTInferenceJobCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
StopEntitiesDetectionV2JobResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface StopEntitiesDetectionV2JobCommandInput
|
|
8
|
-
extends StopEntitiesDetectionV2JobRequest {}
|
|
7
|
+
export interface StopEntitiesDetectionV2JobCommandInput extends StopEntitiesDetectionV2JobRequest {}
|
|
9
8
|
export interface StopEntitiesDetectionV2JobCommandOutput
|
|
10
|
-
extends StopEntitiesDetectionV2JobResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends StopEntitiesDetectionV2JobResponse, __MetadataBearer {}
|
|
12
10
|
declare const StopEntitiesDetectionV2JobCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: StopEntitiesDetectionV2JobCommandInput
|
|
12
|
+
input: StopEntitiesDetectionV2JobCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
StopEntitiesDetectionV2JobCommandInput,
|
|
17
15
|
StopEntitiesDetectionV2JobCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const StopEntitiesDetectionV2JobCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: StopEntitiesDetectionV2JobCommandInput
|
|
21
|
+
input: StopEntitiesDetectionV2JobCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
StopEntitiesDetectionV2JobCommandInput,
|
|
26
24
|
StopEntitiesDetectionV2JobCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
StopICD10CMInferenceJobResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface StopICD10CMInferenceJobCommandInput
|
|
8
|
-
extends StopICD10CMInferenceJobRequest {}
|
|
7
|
+
export interface StopICD10CMInferenceJobCommandInput extends StopICD10CMInferenceJobRequest {}
|
|
9
8
|
export interface StopICD10CMInferenceJobCommandOutput
|
|
10
|
-
extends StopICD10CMInferenceJobResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends StopICD10CMInferenceJobResponse, __MetadataBearer {}
|
|
12
10
|
declare const StopICD10CMInferenceJobCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: StopICD10CMInferenceJobCommandInput
|
|
12
|
+
input: StopICD10CMInferenceJobCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
StopICD10CMInferenceJobCommandInput,
|
|
17
15
|
StopICD10CMInferenceJobCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const StopICD10CMInferenceJobCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: StopICD10CMInferenceJobCommandInput
|
|
21
|
+
input: StopICD10CMInferenceJobCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
StopICD10CMInferenceJobCommandInput,
|
|
26
24
|
StopICD10CMInferenceJobCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StopPHIDetectionJobRequest,
|
|
4
|
-
StopPHIDetectionJobResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StopPHIDetectionJobRequest, StopPHIDetectionJobResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface StopPHIDetectionJobCommandInput
|
|
8
|
-
extends StopPHIDetectionJobRequest {}
|
|
4
|
+
export interface StopPHIDetectionJobCommandInput extends StopPHIDetectionJobRequest {}
|
|
9
5
|
export interface StopPHIDetectionJobCommandOutput
|
|
10
|
-
extends StopPHIDetectionJobResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends StopPHIDetectionJobResponse, __MetadataBearer {}
|
|
12
7
|
declare const StopPHIDetectionJobCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: StopPHIDetectionJobCommandInput
|
|
9
|
+
input: StopPHIDetectionJobCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
StopPHIDetectionJobCommandInput,
|
|
17
12
|
StopPHIDetectionJobCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const StopPHIDetectionJobCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: StopPHIDetectionJobCommandInput
|
|
18
|
+
input: StopPHIDetectionJobCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
StopPHIDetectionJobCommandInput,
|
|
26
21
|
StopPHIDetectionJobCommandOutput,
|