@aws-sdk/client-comprehendmedical 3.168.0 → 3.170.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/ComprehendMedical.d.ts +472 -135
  3. package/dist-types/ts3.4/ComprehendMedicalClient.d.ts +286 -99
  4. package/dist-types/ts3.4/commands/DescribeEntitiesDetectionV2JobCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/DescribeICD10CMInferenceJobCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/DescribePHIDetectionJobCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/DescribeRxNormInferenceJobCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/DescribeSNOMEDCTInferenceJobCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/DetectEntitiesCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/DetectEntitiesV2Command.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/DetectPHICommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/InferICD10CMCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/InferRxNormCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/InferSNOMEDCTCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/ListEntitiesDetectionV2JobsCommand.d.ts +41 -17
  16. package/dist-types/ts3.4/commands/ListICD10CMInferenceJobsCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/ListPHIDetectionJobsCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/ListRxNormInferenceJobsCommand.d.ts +41 -17
  19. package/dist-types/ts3.4/commands/ListSNOMEDCTInferenceJobsCommand.d.ts +41 -17
  20. package/dist-types/ts3.4/commands/StartEntitiesDetectionV2JobCommand.d.ts +41 -17
  21. package/dist-types/ts3.4/commands/StartICD10CMInferenceJobCommand.d.ts +41 -17
  22. package/dist-types/ts3.4/commands/StartPHIDetectionJobCommand.d.ts +41 -17
  23. package/dist-types/ts3.4/commands/StartRxNormInferenceJobCommand.d.ts +41 -17
  24. package/dist-types/ts3.4/commands/StartSNOMEDCTInferenceJobCommand.d.ts +41 -17
  25. package/dist-types/ts3.4/commands/StopEntitiesDetectionV2JobCommand.d.ts +41 -17
  26. package/dist-types/ts3.4/commands/StopICD10CMInferenceJobCommand.d.ts +41 -17
  27. package/dist-types/ts3.4/commands/StopPHIDetectionJobCommand.d.ts +38 -17
  28. package/dist-types/ts3.4/commands/StopRxNormInferenceJobCommand.d.ts +41 -17
  29. package/dist-types/ts3.4/commands/StopSNOMEDCTInferenceJobCommand.d.ts +41 -17
  30. package/dist-types/ts3.4/commands/index.d.ts +26 -26
  31. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  32. package/dist-types/ts3.4/index.d.ts +5 -5
  33. package/dist-types/ts3.4/models/ComprehendMedicalServiceException.d.ts +8 -6
  34. package/dist-types/ts3.4/models/index.d.ts +1 -1
  35. package/dist-types/ts3.4/models/models_0.d.ts +1097 -1021
  36. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +317 -80
  37. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  38. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  39. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  40. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  41. package/package.json +34 -34
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendMedicalClient";
4
- import { StopSNOMEDCTInferenceJobRequest, StopSNOMEDCTInferenceJobResponse } from "../models/models_0";
5
- export interface StopSNOMEDCTInferenceJobCommandInput extends StopSNOMEDCTInferenceJobRequest {
6
- }
7
- export interface StopSNOMEDCTInferenceJobCommandOutput extends StopSNOMEDCTInferenceJobResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StopSNOMEDCTInferenceJobCommand extends $Command<StopSNOMEDCTInferenceJobCommandInput, StopSNOMEDCTInferenceJobCommandOutput, ComprehendMedicalClientResolvedConfig> {
11
- readonly input: StopSNOMEDCTInferenceJobCommandInput;
12
- constructor(input: StopSNOMEDCTInferenceJobCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ComprehendMedicalClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopSNOMEDCTInferenceJobCommandInput, StopSNOMEDCTInferenceJobCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ComprehendMedicalClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ComprehendMedicalClient";
13
+ import {
14
+ StopSNOMEDCTInferenceJobRequest,
15
+ StopSNOMEDCTInferenceJobResponse,
16
+ } from "../models/models_0";
17
+ export interface StopSNOMEDCTInferenceJobCommandInput
18
+ extends StopSNOMEDCTInferenceJobRequest {}
19
+ export interface StopSNOMEDCTInferenceJobCommandOutput
20
+ extends StopSNOMEDCTInferenceJobResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class StopSNOMEDCTInferenceJobCommand extends $Command<
24
+ StopSNOMEDCTInferenceJobCommandInput,
25
+ StopSNOMEDCTInferenceJobCommandOutput,
26
+ ComprehendMedicalClientResolvedConfig
27
+ > {
28
+ readonly input: StopSNOMEDCTInferenceJobCommandInput;
29
+ constructor(input: StopSNOMEDCTInferenceJobCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ComprehendMedicalClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ StopSNOMEDCTInferenceJobCommandInput,
37
+ StopSNOMEDCTInferenceJobCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,26 +1,26 @@
1
- export * from "./DescribeEntitiesDetectionV2JobCommand";
2
- export * from "./DescribeICD10CMInferenceJobCommand";
3
- export * from "./DescribePHIDetectionJobCommand";
4
- export * from "./DescribeRxNormInferenceJobCommand";
5
- export * from "./DescribeSNOMEDCTInferenceJobCommand";
6
- export * from "./DetectEntitiesCommand";
7
- export * from "./DetectEntitiesV2Command";
8
- export * from "./DetectPHICommand";
9
- export * from "./InferICD10CMCommand";
10
- export * from "./InferRxNormCommand";
11
- export * from "./InferSNOMEDCTCommand";
12
- export * from "./ListEntitiesDetectionV2JobsCommand";
13
- export * from "./ListICD10CMInferenceJobsCommand";
14
- export * from "./ListPHIDetectionJobsCommand";
15
- export * from "./ListRxNormInferenceJobsCommand";
16
- export * from "./ListSNOMEDCTInferenceJobsCommand";
17
- export * from "./StartEntitiesDetectionV2JobCommand";
18
- export * from "./StartICD10CMInferenceJobCommand";
19
- export * from "./StartPHIDetectionJobCommand";
20
- export * from "./StartRxNormInferenceJobCommand";
21
- export * from "./StartSNOMEDCTInferenceJobCommand";
22
- export * from "./StopEntitiesDetectionV2JobCommand";
23
- export * from "./StopICD10CMInferenceJobCommand";
24
- export * from "./StopPHIDetectionJobCommand";
25
- export * from "./StopRxNormInferenceJobCommand";
26
- export * from "./StopSNOMEDCTInferenceJobCommand";
1
+ export * from "./DescribeEntitiesDetectionV2JobCommand";
2
+ export * from "./DescribeICD10CMInferenceJobCommand";
3
+ export * from "./DescribePHIDetectionJobCommand";
4
+ export * from "./DescribeRxNormInferenceJobCommand";
5
+ export * from "./DescribeSNOMEDCTInferenceJobCommand";
6
+ export * from "./DetectEntitiesCommand";
7
+ export * from "./DetectEntitiesV2Command";
8
+ export * from "./DetectPHICommand";
9
+ export * from "./InferICD10CMCommand";
10
+ export * from "./InferRxNormCommand";
11
+ export * from "./InferSNOMEDCTCommand";
12
+ export * from "./ListEntitiesDetectionV2JobsCommand";
13
+ export * from "./ListICD10CMInferenceJobsCommand";
14
+ export * from "./ListPHIDetectionJobsCommand";
15
+ export * from "./ListRxNormInferenceJobsCommand";
16
+ export * from "./ListSNOMEDCTInferenceJobsCommand";
17
+ export * from "./StartEntitiesDetectionV2JobCommand";
18
+ export * from "./StartICD10CMInferenceJobCommand";
19
+ export * from "./StartPHIDetectionJobCommand";
20
+ export * from "./StartRxNormInferenceJobCommand";
21
+ export * from "./StartSNOMEDCTInferenceJobCommand";
22
+ export * from "./StopEntitiesDetectionV2JobCommand";
23
+ export * from "./StopICD10CMInferenceJobCommand";
24
+ export * from "./StopPHIDetectionJobCommand";
25
+ export * from "./StopRxNormInferenceJobCommand";
26
+ export * from "./StopSNOMEDCTInferenceJobCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,5 +1,5 @@
1
- export * from "./ComprehendMedical";
2
- export * from "./ComprehendMedicalClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export { ComprehendMedicalServiceException } from "./models/ComprehendMedicalServiceException";
1
+ export * from "./ComprehendMedical";
2
+ export * from "./ComprehendMedicalClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export { ComprehendMedicalServiceException } from "./models/ComprehendMedicalServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class ComprehendMedicalServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class ComprehendMedicalServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";