@aws-sdk/client-medical-imaging 3.1077.0 → 3.1079.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 +26 -183
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/CopyImageSetCommand.js +2 -14
- package/dist-es/commands/CreateDatastoreCommand.js +2 -14
- package/dist-es/commands/DeleteDatastoreCommand.js +2 -14
- package/dist-es/commands/DeleteImageSetCommand.js +2 -14
- package/dist-es/commands/GetDICOMImportJobCommand.js +2 -14
- package/dist-es/commands/GetDatastoreCommand.js +2 -14
- package/dist-es/commands/GetImageFrameCommand.js +2 -14
- package/dist-es/commands/GetImageSetCommand.js +2 -14
- package/dist-es/commands/GetImageSetMetadataCommand.js +2 -14
- package/dist-es/commands/ListDICOMImportJobsCommand.js +2 -14
- package/dist-es/commands/ListDatastoresCommand.js +2 -14
- package/dist-es/commands/ListImageSetVersionsCommand.js +2 -14
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
- package/dist-es/commands/SearchImageSetsCommand.js +2 -14
- package/dist-es/commands/StartDICOMImportJobCommand.js +2 -14
- package/dist-es/commands/TagResourceCommand.js +2 -14
- package/dist-es/commands/UntagResourceCommand.js +2 -14
- package/dist-es/commands/UpdateImageSetMetadataCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/CopyImageSetCommand.d.ts +3 -8
- package/dist-types/commands/CreateDatastoreCommand.d.ts +3 -8
- package/dist-types/commands/DeleteDatastoreCommand.d.ts +3 -8
- package/dist-types/commands/DeleteImageSetCommand.d.ts +3 -8
- package/dist-types/commands/GetDICOMImportJobCommand.d.ts +3 -8
- package/dist-types/commands/GetDatastoreCommand.d.ts +3 -8
- package/dist-types/commands/GetImageFrameCommand.d.ts +3 -8
- package/dist-types/commands/GetImageSetCommand.d.ts +3 -8
- package/dist-types/commands/GetImageSetMetadataCommand.d.ts +3 -8
- package/dist-types/commands/ListDICOMImportJobsCommand.d.ts +3 -8
- package/dist-types/commands/ListDatastoresCommand.d.ts +3 -8
- package/dist-types/commands/ListImageSetVersionsCommand.d.ts +3 -8
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
- package/dist-types/commands/SearchImageSetsCommand.d.ts +3 -8
- package/dist-types/commands/StartDICOMImportJobCommand.d.ts +3 -8
- package/dist-types/commands/TagResourceCommand.d.ts +3 -8
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
- package/dist-types/commands/UpdateImageSetMetadataCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/CopyImageSetCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateDatastoreCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteDatastoreCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteImageSetCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetDICOMImportJobCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetDatastoreCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetImageFrameCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetImageSetCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetImageSetMetadataCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListDICOMImportJobsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListDatastoresCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListImageSetVersionsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/SearchImageSetsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/StartDICOMImportJobCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateImageSetMetadataCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +8 -8
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import type { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./MedicalImagingClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
|
|
7
|
+
new (input: I): import("@smithy/core/client").CommandImpl<I, O, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
8
|
+
new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
9
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
15
|
+
/**
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
|
|
4
2
|
import type { CopyImageSetRequest, CopyImageSetResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface CopyImageSetCommandInput extends CopyImageSetRequest {
|
|
|
22
19
|
export interface CopyImageSetCommandOutput extends CopyImageSetResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const CopyImageSetCommand_base: {
|
|
25
|
-
new (input: CopyImageSetCommandInput): import("@smithy/core/client").CommandImpl<CopyImageSetCommandInput, CopyImageSetCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: CopyImageSetCommandInput): import("@smithy/core/client").CommandImpl<CopyImageSetCommandInput, CopyImageSetCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: CopyImageSetCommandInput): import("@smithy/core/client").CommandImpl<CopyImageSetCommandInput, CopyImageSetCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: CopyImageSetCommandInput): import("@smithy/core/client").CommandImpl<CopyImageSetCommandInput, CopyImageSetCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Copy an image set.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
|
|
4
2
|
import type { CreateDatastoreRequest, CreateDatastoreResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface CreateDatastoreCommandInput extends CreateDatastoreRequest {
|
|
|
22
19
|
export interface CreateDatastoreCommandOutput extends CreateDatastoreResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const CreateDatastoreCommand_base: {
|
|
25
|
-
new (input: CreateDatastoreCommandInput): import("@smithy/core/client").CommandImpl<CreateDatastoreCommandInput, CreateDatastoreCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [CreateDatastoreCommandInput]): import("@smithy/core/client").CommandImpl<CreateDatastoreCommandInput, CreateDatastoreCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: CreateDatastoreCommandInput): import("@smithy/core/client").CommandImpl<CreateDatastoreCommandInput, CreateDatastoreCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [CreateDatastoreCommandInput]): import("@smithy/core/client").CommandImpl<CreateDatastoreCommandInput, CreateDatastoreCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Create a data store.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
|
|
4
2
|
import type { DeleteDatastoreRequest, DeleteDatastoreResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface DeleteDatastoreCommandInput extends DeleteDatastoreRequest {
|
|
|
22
19
|
export interface DeleteDatastoreCommandOutput extends DeleteDatastoreResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const DeleteDatastoreCommand_base: {
|
|
25
|
-
new (input: DeleteDatastoreCommandInput): import("@smithy/core/client").CommandImpl<DeleteDatastoreCommandInput, DeleteDatastoreCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: DeleteDatastoreCommandInput): import("@smithy/core/client").CommandImpl<DeleteDatastoreCommandInput, DeleteDatastoreCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: DeleteDatastoreCommandInput): import("@smithy/core/client").CommandImpl<DeleteDatastoreCommandInput, DeleteDatastoreCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: DeleteDatastoreCommandInput): import("@smithy/core/client").CommandImpl<DeleteDatastoreCommandInput, DeleteDatastoreCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Delete a data store.</p> <note> <p>Before a data store can be deleted, you must first delete all image sets within it.</p> </note>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
|
|
4
2
|
import type { DeleteImageSetRequest, DeleteImageSetResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface DeleteImageSetCommandInput extends DeleteImageSetRequest {
|
|
|
22
19
|
export interface DeleteImageSetCommandOutput extends DeleteImageSetResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const DeleteImageSetCommand_base: {
|
|
25
|
-
new (input: DeleteImageSetCommandInput): import("@smithy/core/client").CommandImpl<DeleteImageSetCommandInput, DeleteImageSetCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: DeleteImageSetCommandInput): import("@smithy/core/client").CommandImpl<DeleteImageSetCommandInput, DeleteImageSetCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: DeleteImageSetCommandInput): import("@smithy/core/client").CommandImpl<DeleteImageSetCommandInput, DeleteImageSetCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: DeleteImageSetCommandInput): import("@smithy/core/client").CommandImpl<DeleteImageSetCommandInput, DeleteImageSetCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Delete an image set.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
|
|
4
2
|
import type { GetDICOMImportJobRequest, GetDICOMImportJobResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetDICOMImportJobCommandInput extends GetDICOMImportJobRequest
|
|
|
22
19
|
export interface GetDICOMImportJobCommandOutput extends GetDICOMImportJobResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetDICOMImportJobCommand_base: {
|
|
25
|
-
new (input: GetDICOMImportJobCommandInput): import("@smithy/core/client").CommandImpl<GetDICOMImportJobCommandInput, GetDICOMImportJobCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetDICOMImportJobCommandInput): import("@smithy/core/client").CommandImpl<GetDICOMImportJobCommandInput, GetDICOMImportJobCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetDICOMImportJobCommandInput): import("@smithy/core/client").CommandImpl<GetDICOMImportJobCommandInput, GetDICOMImportJobCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetDICOMImportJobCommandInput): import("@smithy/core/client").CommandImpl<GetDICOMImportJobCommandInput, GetDICOMImportJobCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Get the import job properties to learn more about the job or job progress.</p> <note> <p>The <code>jobStatus</code> refers to the execution of the import job. Therefore, an import job can return a <code>jobStatus</code> as <code>COMPLETED</code> even if validation issues are discovered during the import process. If a <code>jobStatus</code> returns as <code>COMPLETED</code>, we still recommend you review the output manifests written to S3, as they provide details on the success or failure of individual P10 object imports.</p> </note>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
|
|
4
2
|
import type { GetDatastoreRequest, GetDatastoreResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetDatastoreCommandInput extends GetDatastoreRequest {
|
|
|
22
19
|
export interface GetDatastoreCommandOutput extends GetDatastoreResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetDatastoreCommand_base: {
|
|
25
|
-
new (input: GetDatastoreCommandInput): import("@smithy/core/client").CommandImpl<GetDatastoreCommandInput, GetDatastoreCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetDatastoreCommandInput): import("@smithy/core/client").CommandImpl<GetDatastoreCommandInput, GetDatastoreCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetDatastoreCommandInput): import("@smithy/core/client").CommandImpl<GetDatastoreCommandInput, GetDatastoreCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetDatastoreCommandInput): import("@smithy/core/client").CommandImpl<GetDatastoreCommandInput, GetDatastoreCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Get data store properties.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types";
|
|
3
|
-
import type { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
|
|
4
2
|
import type { GetImageFrameRequest, GetImageFrameResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -23,11 +20,9 @@ export interface GetImageFrameCommandOutput extends Omit<GetImageFrameResponse,
|
|
|
23
20
|
imageFrameBlob: StreamingBlobPayloadOutputTypes;
|
|
24
21
|
}
|
|
25
22
|
declare const GetImageFrameCommand_base: {
|
|
26
|
-
new (input: GetImageFrameCommandInput): import("@smithy/core/client").CommandImpl<GetImageFrameCommandInput, GetImageFrameCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
new (input: GetImageFrameCommandInput): import("@smithy/core/client").CommandImpl<GetImageFrameCommandInput, GetImageFrameCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
28
|
-
getEndpointParameterInstructions():
|
|
29
|
-
[x: string]: unknown;
|
|
30
|
-
};
|
|
23
|
+
new (input: GetImageFrameCommandInput): import("@smithy/core/client").CommandImpl<GetImageFrameCommandInput, GetImageFrameCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
new (input: GetImageFrameCommandInput): import("@smithy/core/client").CommandImpl<GetImageFrameCommandInput, GetImageFrameCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
31
26
|
};
|
|
32
27
|
/**
|
|
33
28
|
* <p>Get an image frame (pixel data) for an image set.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
|
|
4
2
|
import type { GetImageSetRequest, GetImageSetResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetImageSetCommandInput extends GetImageSetRequest {
|
|
|
22
19
|
export interface GetImageSetCommandOutput extends GetImageSetResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetImageSetCommand_base: {
|
|
25
|
-
new (input: GetImageSetCommandInput): import("@smithy/core/client").CommandImpl<GetImageSetCommandInput, GetImageSetCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetImageSetCommandInput): import("@smithy/core/client").CommandImpl<GetImageSetCommandInput, GetImageSetCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetImageSetCommandInput): import("@smithy/core/client").CommandImpl<GetImageSetCommandInput, GetImageSetCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetImageSetCommandInput): import("@smithy/core/client").CommandImpl<GetImageSetCommandInput, GetImageSetCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Get image set properties.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types";
|
|
3
|
-
import type { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
|
|
4
2
|
import type { GetImageSetMetadataRequest, GetImageSetMetadataResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -23,11 +20,9 @@ export interface GetImageSetMetadataCommandOutput extends Omit<GetImageSetMetada
|
|
|
23
20
|
imageSetMetadataBlob: StreamingBlobPayloadOutputTypes;
|
|
24
21
|
}
|
|
25
22
|
declare const GetImageSetMetadataCommand_base: {
|
|
26
|
-
new (input: GetImageSetMetadataCommandInput): import("@smithy/core/client").CommandImpl<GetImageSetMetadataCommandInput, GetImageSetMetadataCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
new (input: GetImageSetMetadataCommandInput): import("@smithy/core/client").CommandImpl<GetImageSetMetadataCommandInput, GetImageSetMetadataCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
28
|
-
getEndpointParameterInstructions():
|
|
29
|
-
[x: string]: unknown;
|
|
30
|
-
};
|
|
23
|
+
new (input: GetImageSetMetadataCommandInput): import("@smithy/core/client").CommandImpl<GetImageSetMetadataCommandInput, GetImageSetMetadataCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
new (input: GetImageSetMetadataCommandInput): import("@smithy/core/client").CommandImpl<GetImageSetMetadataCommandInput, GetImageSetMetadataCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
31
26
|
};
|
|
32
27
|
/**
|
|
33
28
|
* <p>Get metadata attributes for an image set.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
|
|
4
2
|
import type { ListDICOMImportJobsRequest, ListDICOMImportJobsResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListDICOMImportJobsCommandInput extends ListDICOMImportJobsRequ
|
|
|
22
19
|
export interface ListDICOMImportJobsCommandOutput extends ListDICOMImportJobsResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListDICOMImportJobsCommand_base: {
|
|
25
|
-
new (input: ListDICOMImportJobsCommandInput): import("@smithy/core/client").CommandImpl<ListDICOMImportJobsCommandInput, ListDICOMImportJobsCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: ListDICOMImportJobsCommandInput): import("@smithy/core/client").CommandImpl<ListDICOMImportJobsCommandInput, ListDICOMImportJobsCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListDICOMImportJobsCommandInput): import("@smithy/core/client").CommandImpl<ListDICOMImportJobsCommandInput, ListDICOMImportJobsCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListDICOMImportJobsCommandInput): import("@smithy/core/client").CommandImpl<ListDICOMImportJobsCommandInput, ListDICOMImportJobsCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>List import jobs created for a specific data store.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
|
|
4
2
|
import type { ListDatastoresRequest, ListDatastoresResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListDatastoresCommandInput extends ListDatastoresRequest {
|
|
|
22
19
|
export interface ListDatastoresCommandOutput extends ListDatastoresResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListDatastoresCommand_base: {
|
|
25
|
-
new (input: ListDatastoresCommandInput): import("@smithy/core/client").CommandImpl<ListDatastoresCommandInput, ListDatastoresCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [ListDatastoresCommandInput]): import("@smithy/core/client").CommandImpl<ListDatastoresCommandInput, ListDatastoresCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListDatastoresCommandInput): import("@smithy/core/client").CommandImpl<ListDatastoresCommandInput, ListDatastoresCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListDatastoresCommandInput]): import("@smithy/core/client").CommandImpl<ListDatastoresCommandInput, ListDatastoresCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>List data stores.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
|
|
4
2
|
import type { ListImageSetVersionsRequest, ListImageSetVersionsResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListImageSetVersionsCommandInput extends ListImageSetVersionsRe
|
|
|
22
19
|
export interface ListImageSetVersionsCommandOutput extends ListImageSetVersionsResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListImageSetVersionsCommand_base: {
|
|
25
|
-
new (input: ListImageSetVersionsCommandInput): import("@smithy/core/client").CommandImpl<ListImageSetVersionsCommandInput, ListImageSetVersionsCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: ListImageSetVersionsCommandInput): import("@smithy/core/client").CommandImpl<ListImageSetVersionsCommandInput, ListImageSetVersionsCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListImageSetVersionsCommandInput): import("@smithy/core/client").CommandImpl<ListImageSetVersionsCommandInput, ListImageSetVersionsCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListImageSetVersionsCommandInput): import("@smithy/core/client").CommandImpl<ListImageSetVersionsCommandInput, ListImageSetVersionsCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>List image set versions.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
|
|
4
2
|
import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
|
|
|
22
19
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListTagsForResourceCommand_base: {
|
|
25
|
-
new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Lists all tags associated with a medical imaging resource.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
|
|
4
2
|
import type { SearchImageSetsRequest, SearchImageSetsResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface SearchImageSetsCommandInput extends SearchImageSetsRequest {
|
|
|
22
19
|
export interface SearchImageSetsCommandOutput extends SearchImageSetsResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const SearchImageSetsCommand_base: {
|
|
25
|
-
new (input: SearchImageSetsCommandInput): import("@smithy/core/client").CommandImpl<SearchImageSetsCommandInput, SearchImageSetsCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: SearchImageSetsCommandInput): import("@smithy/core/client").CommandImpl<SearchImageSetsCommandInput, SearchImageSetsCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: SearchImageSetsCommandInput): import("@smithy/core/client").CommandImpl<SearchImageSetsCommandInput, SearchImageSetsCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: SearchImageSetsCommandInput): import("@smithy/core/client").CommandImpl<SearchImageSetsCommandInput, SearchImageSetsCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Search image sets based on defined input attributes.</p> <note> <p> <code>SearchImageSets</code> accepts a single search query parameter and returns a paginated response of all image sets that have the matching criteria. All date range queries must be input as <code>(lowerBound, upperBound)</code>.</p> <p>By default, <code>SearchImageSets</code> uses the <code>updatedAt</code> field for sorting in descending order from newest to oldest.</p> </note>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
|
|
4
2
|
import type { StartDICOMImportJobRequest, StartDICOMImportJobResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface StartDICOMImportJobCommandInput extends StartDICOMImportJobRequ
|
|
|
22
19
|
export interface StartDICOMImportJobCommandOutput extends StartDICOMImportJobResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const StartDICOMImportJobCommand_base: {
|
|
25
|
-
new (input: StartDICOMImportJobCommandInput): import("@smithy/core/client").CommandImpl<StartDICOMImportJobCommandInput, StartDICOMImportJobCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: StartDICOMImportJobCommandInput): import("@smithy/core/client").CommandImpl<StartDICOMImportJobCommandInput, StartDICOMImportJobCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: StartDICOMImportJobCommandInput): import("@smithy/core/client").CommandImpl<StartDICOMImportJobCommandInput, StartDICOMImportJobCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: StartDICOMImportJobCommandInput): import("@smithy/core/client").CommandImpl<StartDICOMImportJobCommandInput, StartDICOMImportJobCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Start importing bulk data into an <code>ACTIVE</code> data store. The import job imports DICOM P10 files or enhances existing DICOM files with JSON metadata. The <code>importConfiguration</code> parameter specifies the import type. The data is found in the S3 prefix specified by the <code>inputS3Uri</code> parameter. The import job stores processing results in the file specified by the <code>outputS3Uri</code> parameter.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
|
|
4
2
|
import type { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface TagResourceCommandInput extends TagResourceRequest {
|
|
|
22
19
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const TagResourceCommand_base: {
|
|
25
|
-
new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Adds a user-specifed key and value tag to a medical imaging resource.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
|
|
4
2
|
import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
|
22
19
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const UntagResourceCommand_base: {
|
|
25
|
-
new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Removes tags from a medical imaging resource.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
|
|
4
2
|
import type { UpdateImageSetMetadataRequest, UpdateImageSetMetadataResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface UpdateImageSetMetadataCommandInput extends UpdateImageSetMetada
|
|
|
22
19
|
export interface UpdateImageSetMetadataCommandOutput extends UpdateImageSetMetadataResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const UpdateImageSetMetadataCommand_base: {
|
|
25
|
-
new (input: UpdateImageSetMetadataCommandInput): import("@smithy/core/client").CommandImpl<UpdateImageSetMetadataCommandInput, UpdateImageSetMetadataCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: UpdateImageSetMetadataCommandInput): import("@smithy/core/client").CommandImpl<UpdateImageSetMetadataCommandInput, UpdateImageSetMetadataCommandOutput, MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: UpdateImageSetMetadataCommandInput): import("@smithy/core/client").CommandImpl<UpdateImageSetMetadataCommandInput, UpdateImageSetMetadataCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UpdateImageSetMetadataCommandInput): import("@smithy/core/client").CommandImpl<UpdateImageSetMetadataCommandInput, UpdateImageSetMetadataCommandOutput, import("..").MedicalImagingClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Update image set metadata attributes.</p>
|
package/dist-types/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
|
|
|
9
9
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
10
10
|
export type { MedicalImagingExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
12
13
|
export * from "./schemas/schemas_0";
|
|
13
14
|
export * from "./pagination";
|
|
14
15
|
export * from "./models/enums";
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
MedicalImagingClientResolvedConfig,
|
|
4
|
+
ServiceInputTypes,
|
|
5
|
+
ServiceOutputTypes,
|
|
6
|
+
} from "./MedicalImagingClient";
|
|
7
|
+
export declare const command: <
|
|
8
|
+
I extends ServiceInputTypes,
|
|
9
|
+
O extends ServiceOutputTypes
|
|
10
|
+
>(
|
|
11
|
+
added: EndpointParameterInstructions,
|
|
12
|
+
plugins: (
|
|
13
|
+
CommandCtor: any,
|
|
14
|
+
clientStack: any,
|
|
15
|
+
config: any,
|
|
16
|
+
options: any
|
|
17
|
+
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
|
+
op: string,
|
|
19
|
+
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
+
smithyContext?: Record<string, unknown>
|
|
21
|
+
) => {
|
|
22
|
+
new (input: I): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
I,
|
|
24
|
+
O,
|
|
25
|
+
MedicalImagingClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: import("@smithy/types").OptionalParameter<I>
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
I,
|
|
33
|
+
O,
|
|
34
|
+
MedicalImagingClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
+
export declare const _mw0: (
|
|
42
|
+
Command: any,
|
|
43
|
+
cs: any,
|
|
44
|
+
config: any,
|
|
45
|
+
o: any
|
|
46
|
+
) => never[];
|