@aws-sdk/client-medical-imaging 3.533.0 → 3.540.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/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +0 -3
- package/dist-es/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- package/dist-types/MedicalImaging.d.ts +2 -1
- package/dist-types/MedicalImagingClient.d.ts +1 -1
- package/dist-types/commands/CopyImageSetCommand.d.ts +2 -1
- package/dist-types/commands/CreateDatastoreCommand.d.ts +2 -1
- package/dist-types/commands/DeleteDatastoreCommand.d.ts +2 -1
- package/dist-types/commands/DeleteImageSetCommand.d.ts +2 -1
- package/dist-types/commands/GetDICOMImportJobCommand.d.ts +2 -1
- package/dist-types/commands/GetDatastoreCommand.d.ts +2 -1
- package/dist-types/commands/GetImageFrameCommand.d.ts +2 -1
- package/dist-types/commands/GetImageSetCommand.d.ts +2 -1
- package/dist-types/commands/GetImageSetMetadataCommand.d.ts +2 -1
- package/dist-types/commands/ListDICOMImportJobsCommand.d.ts +2 -1
- package/dist-types/commands/ListDatastoresCommand.d.ts +2 -1
- package/dist-types/commands/ListImageSetVersionsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/SearchImageSetsCommand.d.ts +2 -1
- package/dist-types/commands/StartDICOMImportJobCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateImageSetMetadataCommand.d.ts +2 -1
- package/dist-types/index.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +217 -217
- package/dist-types/ts3.4/MedicalImaging.d.ts +1 -0
- package/dist-types/ts3.4/commands/CopyImageSetCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateDatastoreCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteDatastoreCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteImageSetCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetDICOMImportJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetDatastoreCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetImageFrameCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetImageSetCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetImageSetMetadataCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListDICOMImportJobsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListDatastoresCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListImageSetVersionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/SearchImageSetsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartDICOMImportJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateImageSetMetadataCommand.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +0 -1
- package/package.json +41 -41
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.defaultEndpointResolver = void 0;
|
|
4
|
-
const util_endpoints_1 = require("@
|
|
4
|
+
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
|
+
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
5
6
|
const ruleset_1 = require("./ruleset");
|
|
6
7
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
7
|
-
return (0,
|
|
8
|
+
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
8
9
|
endpointParams: endpointParams,
|
|
9
10
|
logger: context.logger,
|
|
10
11
|
});
|
|
11
12
|
};
|
|
12
13
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
|
+
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -1767,9 +1767,6 @@ var paginateListImageSetVersions = (0, import_core.createPaginator)(MedicalImagi
|
|
|
1767
1767
|
// src/pagination/SearchImageSetsPaginator.ts
|
|
1768
1768
|
|
|
1769
1769
|
var paginateSearchImageSets = (0, import_core.createPaginator)(MedicalImagingClient, SearchImageSetsCommand, "nextToken", "nextToken", "maxResults");
|
|
1770
|
-
|
|
1771
|
-
// src/index.ts
|
|
1772
|
-
var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
1773
1770
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1774
1771
|
|
|
1775
1772
|
0 && (module.exports = {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
|
|
2
|
+
import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
|
|
2
3
|
import { ruleSet } from "./ruleset";
|
|
3
4
|
export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
4
5
|
return resolveEndpoint(ruleSet, {
|
|
@@ -6,3 +7,4 @@ export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
|
6
7
|
logger: context.logger,
|
|
7
8
|
});
|
|
8
9
|
};
|
|
10
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
package/dist-es/index.js
CHANGED
|
@@ -76,6 +76,7 @@ export interface MedicalImaging {
|
|
|
76
76
|
/**
|
|
77
77
|
* @see {@link ListDatastoresCommand}
|
|
78
78
|
*/
|
|
79
|
+
listDatastores(): Promise<ListDatastoresCommandOutput>;
|
|
79
80
|
listDatastores(args: ListDatastoresCommandInput, options?: __HttpHandlerOptions): Promise<ListDatastoresCommandOutput>;
|
|
80
81
|
listDatastores(args: ListDatastoresCommandInput, cb: (err: any, data?: ListDatastoresCommandOutput) => void): void;
|
|
81
82
|
listDatastores(args: ListDatastoresCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDatastoresCommandOutput) => void): void;
|
|
@@ -129,7 +130,6 @@ export interface MedicalImaging {
|
|
|
129
130
|
updateImageSetMetadata(args: UpdateImageSetMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateImageSetMetadataCommandOutput) => void): void;
|
|
130
131
|
}
|
|
131
132
|
/**
|
|
132
|
-
* @public
|
|
133
133
|
* <p>This is the <i>AWS HealthImaging API Reference</i>. AWS HealthImaging is a HIPAA-eligible service that helps health
|
|
134
134
|
* care providers and their medical imaging ISV partners store, transform, and apply machine learning to medical images. For
|
|
135
135
|
* an introduction to the service, see the <a href="https://docs.aws.amazon.com/healthimaging/latest/devguide/what-is.html">
|
|
@@ -281,6 +281,7 @@ export interface MedicalImaging {
|
|
|
281
281
|
* <a href="https://docs.aws.amazon.com/healthimaging/latest/devguide/tag-list-untag-image-set.html">Tagging an image set</a>.</p>
|
|
282
282
|
* </li>
|
|
283
283
|
* </ul>
|
|
284
|
+
* @public
|
|
284
285
|
*/
|
|
285
286
|
export declare class MedicalImaging extends MedicalImagingClient implements MedicalImaging {
|
|
286
287
|
}
|
|
@@ -174,7 +174,6 @@ export type MedicalImagingClientResolvedConfigType = __SmithyResolvedConfigurati
|
|
|
174
174
|
export interface MedicalImagingClientResolvedConfig extends MedicalImagingClientResolvedConfigType {
|
|
175
175
|
}
|
|
176
176
|
/**
|
|
177
|
-
* @public
|
|
178
177
|
* <p>This is the <i>AWS HealthImaging API Reference</i>. AWS HealthImaging is a HIPAA-eligible service that helps health
|
|
179
178
|
* care providers and their medical imaging ISV partners store, transform, and apply machine learning to medical images. For
|
|
180
179
|
* an introduction to the service, see the <a href="https://docs.aws.amazon.com/healthimaging/latest/devguide/what-is.html">
|
|
@@ -326,6 +325,7 @@ export interface MedicalImagingClientResolvedConfig extends MedicalImagingClient
|
|
|
326
325
|
* <a href="https://docs.aws.amazon.com/healthimaging/latest/devguide/tag-list-untag-image-set.html">Tagging an image set</a>.</p>
|
|
327
326
|
* </li>
|
|
328
327
|
* </ul>
|
|
328
|
+
* @public
|
|
329
329
|
*/
|
|
330
330
|
export declare class MedicalImagingClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, MedicalImagingClientResolvedConfig> {
|
|
331
331
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CopyImageSetCommandOutput extends CopyImageSetResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const CopyImageSetCommand_base: {
|
|
24
24
|
new (input: CopyImageSetCommandInput): import("@smithy/smithy-client").CommandImpl<CopyImageSetCommandInput, CopyImageSetCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CopyImageSetCommandInput): import("@smithy/smithy-client").CommandImpl<CopyImageSetCommandInput, CopyImageSetCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Copy an image set.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -102,6 +102,7 @@ declare const CopyImageSetCommand_base: {
|
|
|
102
102
|
* @throws {@link MedicalImagingServiceException}
|
|
103
103
|
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
104
104
|
*
|
|
105
|
+
* @public
|
|
105
106
|
*/
|
|
106
107
|
export declare class CopyImageSetCommand extends CopyImageSetCommand_base {
|
|
107
108
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateDatastoreCommandOutput extends CreateDatastoreResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateDatastoreCommand_base: {
|
|
24
24
|
new (input: CreateDatastoreCommandInput): import("@smithy/smithy-client").CommandImpl<CreateDatastoreCommandInput, CreateDatastoreCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [CreateDatastoreCommandInput]): import("@smithy/smithy-client").CommandImpl<CreateDatastoreCommandInput, CreateDatastoreCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Create a data store.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -77,6 +77,7 @@ declare const CreateDatastoreCommand_base: {
|
|
|
77
77
|
* @throws {@link MedicalImagingServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
79
79
|
*
|
|
80
|
+
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class CreateDatastoreCommand extends CreateDatastoreCommand_base {
|
|
82
83
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteDatastoreCommandOutput extends DeleteDatastoreResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteDatastoreCommand_base: {
|
|
24
24
|
new (input: DeleteDatastoreCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteDatastoreCommandInput, DeleteDatastoreCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteDatastoreCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteDatastoreCommandInput, DeleteDatastoreCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Delete a data store.</p>
|
|
30
30
|
* <note>
|
|
31
31
|
* <p>Before a data store can be deleted, you must first delete all image sets within it.</p>
|
|
@@ -75,6 +75,7 @@ declare const DeleteDatastoreCommand_base: {
|
|
|
75
75
|
* @throws {@link MedicalImagingServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
77
77
|
*
|
|
78
|
+
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class DeleteDatastoreCommand extends DeleteDatastoreCommand_base {
|
|
80
81
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteImageSetCommandOutput extends DeleteImageSetResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteImageSetCommand_base: {
|
|
24
24
|
new (input: DeleteImageSetCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteImageSetCommandInput, DeleteImageSetCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteImageSetCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteImageSetCommandInput, DeleteImageSetCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Delete an image set.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -75,6 +75,7 @@ declare const DeleteImageSetCommand_base: {
|
|
|
75
75
|
* @throws {@link MedicalImagingServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
77
77
|
*
|
|
78
|
+
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class DeleteImageSetCommand extends DeleteImageSetCommand_base {
|
|
80
81
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetDICOMImportJobCommandOutput extends GetDICOMImportJobRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetDICOMImportJobCommand_base: {
|
|
24
24
|
new (input: GetDICOMImportJobCommandInput): import("@smithy/smithy-client").CommandImpl<GetDICOMImportJobCommandInput, GetDICOMImportJobCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetDICOMImportJobCommandInput): import("@smithy/smithy-client").CommandImpl<GetDICOMImportJobCommandInput, GetDICOMImportJobCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Get the import job properties to learn more about the job or job progress.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -83,6 +83,7 @@ declare const GetDICOMImportJobCommand_base: {
|
|
|
83
83
|
* @throws {@link MedicalImagingServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
85
85
|
*
|
|
86
|
+
* @public
|
|
86
87
|
*/
|
|
87
88
|
export declare class GetDICOMImportJobCommand extends GetDICOMImportJobCommand_base {
|
|
88
89
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetDatastoreCommandOutput extends GetDatastoreResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetDatastoreCommand_base: {
|
|
24
24
|
new (input: GetDatastoreCommandInput): import("@smithy/smithy-client").CommandImpl<GetDatastoreCommandInput, GetDatastoreCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetDatastoreCommandInput): import("@smithy/smithy-client").CommandImpl<GetDatastoreCommandInput, GetDatastoreCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Get data store properties.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -76,6 +76,7 @@ declare const GetDatastoreCommand_base: {
|
|
|
76
76
|
* @throws {@link MedicalImagingServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
78
78
|
*
|
|
79
|
+
* @public
|
|
79
80
|
*/
|
|
80
81
|
export declare class GetDatastoreCommand extends GetDatastoreCommand_base {
|
|
81
82
|
}
|
|
@@ -23,10 +23,10 @@ export interface GetImageFrameCommandOutput extends Omit<GetImageFrameResponse,
|
|
|
23
23
|
}
|
|
24
24
|
declare const GetImageFrameCommand_base: {
|
|
25
25
|
new (input: GetImageFrameCommandInput): import("@smithy/smithy-client").CommandImpl<GetImageFrameCommandInput, GetImageFrameCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: GetImageFrameCommandInput): import("@smithy/smithy-client").CommandImpl<GetImageFrameCommandInput, GetImageFrameCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
28
|
};
|
|
28
29
|
/**
|
|
29
|
-
* @public
|
|
30
30
|
* <p>Get an image frame (pixel data) for an image set.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -77,6 +77,7 @@ declare const GetImageFrameCommand_base: {
|
|
|
77
77
|
* @throws {@link MedicalImagingServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
79
79
|
*
|
|
80
|
+
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class GetImageFrameCommand extends GetImageFrameCommand_base {
|
|
82
83
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetImageSetCommandOutput extends GetImageSetResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetImageSetCommand_base: {
|
|
24
24
|
new (input: GetImageSetCommandInput): import("@smithy/smithy-client").CommandImpl<GetImageSetCommandInput, GetImageSetCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetImageSetCommandInput): import("@smithy/smithy-client").CommandImpl<GetImageSetCommandInput, GetImageSetCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Get image set properties.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -82,6 +82,7 @@ declare const GetImageSetCommand_base: {
|
|
|
82
82
|
* @throws {@link MedicalImagingServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
84
84
|
*
|
|
85
|
+
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class GetImageSetCommand extends GetImageSetCommand_base {
|
|
87
88
|
}
|
|
@@ -23,10 +23,10 @@ export interface GetImageSetMetadataCommandOutput extends Omit<GetImageSetMetada
|
|
|
23
23
|
}
|
|
24
24
|
declare const GetImageSetMetadataCommand_base: {
|
|
25
25
|
new (input: GetImageSetMetadataCommandInput): import("@smithy/smithy-client").CommandImpl<GetImageSetMetadataCommandInput, GetImageSetMetadataCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: GetImageSetMetadataCommandInput): import("@smithy/smithy-client").CommandImpl<GetImageSetMetadataCommandInput, GetImageSetMetadataCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
28
|
};
|
|
28
29
|
/**
|
|
29
|
-
* @public
|
|
30
30
|
* <p>Get metadata attributes for an image set.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -76,6 +76,7 @@ declare const GetImageSetMetadataCommand_base: {
|
|
|
76
76
|
* @throws {@link MedicalImagingServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
78
78
|
*
|
|
79
|
+
* @public
|
|
79
80
|
*/
|
|
80
81
|
export declare class GetImageSetMetadataCommand extends GetImageSetMetadataCommand_base {
|
|
81
82
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListDICOMImportJobsCommandOutput extends ListDICOMImportJobsRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListDICOMImportJobsCommand_base: {
|
|
24
24
|
new (input: ListDICOMImportJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListDICOMImportJobsCommandInput, ListDICOMImportJobsCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListDICOMImportJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListDICOMImportJobsCommandInput, ListDICOMImportJobsCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>List import jobs created for a specific data store.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -86,6 +86,7 @@ declare const ListDICOMImportJobsCommand_base: {
|
|
|
86
86
|
* @throws {@link MedicalImagingServiceException}
|
|
87
87
|
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
88
88
|
*
|
|
89
|
+
* @public
|
|
89
90
|
*/
|
|
90
91
|
export declare class ListDICOMImportJobsCommand extends ListDICOMImportJobsCommand_base {
|
|
91
92
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListDatastoresCommandOutput extends ListDatastoresResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListDatastoresCommand_base: {
|
|
24
24
|
new (input: ListDatastoresCommandInput): import("@smithy/smithy-client").CommandImpl<ListDatastoresCommandInput, ListDatastoresCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListDatastoresCommandInput]): import("@smithy/smithy-client").CommandImpl<ListDatastoresCommandInput, ListDatastoresCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>List data stores.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -77,6 +77,7 @@ declare const ListDatastoresCommand_base: {
|
|
|
77
77
|
* @throws {@link MedicalImagingServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
79
79
|
*
|
|
80
|
+
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class ListDatastoresCommand extends ListDatastoresCommand_base {
|
|
82
83
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListImageSetVersionsCommandOutput extends ListImageSetVersionsR
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListImageSetVersionsCommand_base: {
|
|
24
24
|
new (input: ListImageSetVersionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListImageSetVersionsCommandInput, ListImageSetVersionsCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListImageSetVersionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListImageSetVersionsCommandInput, ListImageSetVersionsCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>List image set versions.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -86,6 +86,7 @@ declare const ListImageSetVersionsCommand_base: {
|
|
|
86
86
|
* @throws {@link MedicalImagingServiceException}
|
|
87
87
|
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
88
88
|
*
|
|
89
|
+
* @public
|
|
89
90
|
*/
|
|
90
91
|
export declare class ListImageSetVersionsCommand extends ListImageSetVersionsCommand_base {
|
|
91
92
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all tags associated with a medical imaging resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -70,6 +70,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
70
70
|
* @throws {@link MedicalImagingServiceException}
|
|
71
71
|
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
72
72
|
*
|
|
73
|
+
* @public
|
|
73
74
|
*/
|
|
74
75
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
75
76
|
}
|
|
@@ -22,10 +22,10 @@ export interface SearchImageSetsCommandOutput extends SearchImageSetsResponse, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const SearchImageSetsCommand_base: {
|
|
24
24
|
new (input: SearchImageSetsCommandInput): import("@smithy/smithy-client").CommandImpl<SearchImageSetsCommandInput, SearchImageSetsCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: SearchImageSetsCommandInput): import("@smithy/smithy-client").CommandImpl<SearchImageSetsCommandInput, SearchImageSetsCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Search image sets based on defined input attributes.</p>
|
|
30
30
|
* <note>
|
|
31
31
|
* <p>
|
|
@@ -124,6 +124,7 @@ declare const SearchImageSetsCommand_base: {
|
|
|
124
124
|
* @throws {@link MedicalImagingServiceException}
|
|
125
125
|
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
126
126
|
*
|
|
127
|
+
* @public
|
|
127
128
|
*/
|
|
128
129
|
export declare class SearchImageSetsCommand extends SearchImageSetsCommand_base {
|
|
129
130
|
}
|
|
@@ -22,10 +22,10 @@ export interface StartDICOMImportJobCommandOutput extends StartDICOMImportJobRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const StartDICOMImportJobCommand_base: {
|
|
24
24
|
new (input: StartDICOMImportJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartDICOMImportJobCommandInput, StartDICOMImportJobCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartDICOMImportJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartDICOMImportJobCommandInput, StartDICOMImportJobCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Start importing bulk data into an <code>ACTIVE</code> data store. The import job imports DICOM P10 files
|
|
30
30
|
* found in the S3 prefix specified by the <code>inputS3Uri</code> parameter. The import job stores
|
|
31
31
|
* processing results in the file specified by the <code>outputS3Uri</code> parameter.</p>
|
|
@@ -84,6 +84,7 @@ declare const StartDICOMImportJobCommand_base: {
|
|
|
84
84
|
* @throws {@link MedicalImagingServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
86
86
|
*
|
|
87
|
+
* @public
|
|
87
88
|
*/
|
|
88
89
|
export declare class StartDICOMImportJobCommand extends StartDICOMImportJobCommand_base {
|
|
89
90
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Adds a user-specifed key and value tag to a medical imaging resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -69,6 +69,7 @@ declare const TagResourceCommand_base: {
|
|
|
69
69
|
* @throws {@link MedicalImagingServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
74
75
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes tags from a medical imaging resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -69,6 +69,7 @@ declare const UntagResourceCommand_base: {
|
|
|
69
69
|
* @throws {@link MedicalImagingServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
74
75
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateImageSetMetadataCommandOutput extends UpdateImageSetMetad
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateImageSetMetadataCommand_base: {
|
|
24
24
|
new (input: UpdateImageSetMetadataCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateImageSetMetadataCommandInput, UpdateImageSetMetadataCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateImageSetMetadataCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateImageSetMetadataCommandInput, UpdateImageSetMetadataCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Update image set metadata attributes.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -89,6 +89,7 @@ declare const UpdateImageSetMetadataCommand_base: {
|
|
|
89
89
|
* @throws {@link MedicalImagingServiceException}
|
|
90
90
|
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
91
91
|
*
|
|
92
|
+
* @public
|
|
92
93
|
*/
|
|
93
94
|
export declare class UpdateImageSetMetadataCommand extends UpdateImageSetMetadataCommand_base {
|
|
94
95
|
}
|
package/dist-types/index.d.ts
CHANGED
|
@@ -161,5 +161,4 @@ export { MedicalImagingExtensionConfiguration } from "./extensionConfiguration";
|
|
|
161
161
|
export * from "./commands";
|
|
162
162
|
export * from "./pagination";
|
|
163
163
|
export * from "./models";
|
|
164
|
-
import "@aws-sdk/util-endpoints";
|
|
165
164
|
export { MedicalImagingServiceException } from "./models/MedicalImagingServiceException";
|