@aws-sdk/client-medical-imaging 3.1077.0 → 3.1078.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
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
MedicalImagingClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../MedicalImagingClient";
|
|
8
2
|
import { CopyImageSetRequest, CopyImageSetResponse } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface CopyImageSetCommandInput extends CopyImageSetRequest {}
|
|
12
5
|
export interface CopyImageSetCommandOutput
|
|
13
6
|
extends CopyImageSetResponse,
|
|
@@ -18,22 +11,20 @@ declare const CopyImageSetCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
CopyImageSetCommandInput,
|
|
20
13
|
CopyImageSetCommandOutput,
|
|
21
|
-
MedicalImagingClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: CopyImageSetCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
CopyImageSetCommandInput,
|
|
29
22
|
CopyImageSetCommandOutput,
|
|
30
|
-
MedicalImagingClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class CopyImageSetCommand extends CopyImageSetCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
MedicalImagingClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../MedicalImagingClient";
|
|
8
2
|
import {
|
|
9
3
|
CreateDatastoreRequest,
|
|
10
4
|
CreateDatastoreResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface CreateDatastoreCommandInput extends CreateDatastoreRequest {}
|
|
15
8
|
export interface CreateDatastoreCommandOutput
|
|
16
9
|
extends CreateDatastoreResponse,
|
|
@@ -21,22 +14,20 @@ declare const CreateDatastoreCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
CreateDatastoreCommandInput,
|
|
23
16
|
CreateDatastoreCommandOutput,
|
|
24
|
-
MedicalImagingClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
...[input]: [] | [CreateDatastoreCommandInput]
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
CreateDatastoreCommandInput,
|
|
32
25
|
CreateDatastoreCommandOutput,
|
|
33
|
-
MedicalImagingClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class CreateDatastoreCommand extends CreateDatastoreCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
MedicalImagingClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../MedicalImagingClient";
|
|
8
2
|
import {
|
|
9
3
|
DeleteDatastoreRequest,
|
|
10
4
|
DeleteDatastoreResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DeleteDatastoreCommandInput extends DeleteDatastoreRequest {}
|
|
15
8
|
export interface DeleteDatastoreCommandOutput
|
|
16
9
|
extends DeleteDatastoreResponse,
|
|
@@ -21,22 +14,20 @@ declare const DeleteDatastoreCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
DeleteDatastoreCommandInput,
|
|
23
16
|
DeleteDatastoreCommandOutput,
|
|
24
|
-
MedicalImagingClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: DeleteDatastoreCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
DeleteDatastoreCommandInput,
|
|
32
25
|
DeleteDatastoreCommandOutput,
|
|
33
|
-
MedicalImagingClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class DeleteDatastoreCommand extends DeleteDatastoreCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
MedicalImagingClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../MedicalImagingClient";
|
|
8
2
|
import {
|
|
9
3
|
DeleteImageSetRequest,
|
|
10
4
|
DeleteImageSetResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DeleteImageSetCommandInput extends DeleteImageSetRequest {}
|
|
15
8
|
export interface DeleteImageSetCommandOutput
|
|
16
9
|
extends DeleteImageSetResponse,
|
|
@@ -21,22 +14,20 @@ declare const DeleteImageSetCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
DeleteImageSetCommandInput,
|
|
23
16
|
DeleteImageSetCommandOutput,
|
|
24
|
-
MedicalImagingClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: DeleteImageSetCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
DeleteImageSetCommandInput,
|
|
32
25
|
DeleteImageSetCommandOutput,
|
|
33
|
-
MedicalImagingClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class DeleteImageSetCommand extends DeleteImageSetCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
MedicalImagingClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../MedicalImagingClient";
|
|
8
2
|
import {
|
|
9
3
|
GetDICOMImportJobRequest,
|
|
10
4
|
GetDICOMImportJobResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetDICOMImportJobCommandInput
|
|
15
8
|
extends GetDICOMImportJobRequest {}
|
|
16
9
|
export interface GetDICOMImportJobCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const GetDICOMImportJobCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
GetDICOMImportJobCommandInput,
|
|
24
17
|
GetDICOMImportJobCommandOutput,
|
|
25
|
-
MedicalImagingClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: GetDICOMImportJobCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
GetDICOMImportJobCommandInput,
|
|
33
26
|
GetDICOMImportJobCommandOutput,
|
|
34
|
-
MedicalImagingClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class GetDICOMImportJobCommand extends GetDICOMImportJobCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
MedicalImagingClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../MedicalImagingClient";
|
|
8
2
|
import { GetDatastoreRequest, GetDatastoreResponse } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface GetDatastoreCommandInput extends GetDatastoreRequest {}
|
|
12
5
|
export interface GetDatastoreCommandOutput
|
|
13
6
|
extends GetDatastoreResponse,
|
|
@@ -18,22 +11,20 @@ declare const GetDatastoreCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
GetDatastoreCommandInput,
|
|
20
13
|
GetDatastoreCommandOutput,
|
|
21
|
-
MedicalImagingClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: GetDatastoreCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
GetDatastoreCommandInput,
|
|
29
22
|
GetDatastoreCommandOutput,
|
|
30
|
-
MedicalImagingClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class GetDatastoreCommand extends GetDatastoreCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,19 +1,12 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import {
|
|
3
2
|
MetadataBearer as __MetadataBearer,
|
|
4
3
|
StreamingBlobPayloadOutputTypes,
|
|
5
4
|
} from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
MedicalImagingClientResolvedConfig,
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
} from "../MedicalImagingClient";
|
|
11
5
|
import {
|
|
12
6
|
GetImageFrameRequest,
|
|
13
7
|
GetImageFrameResponse,
|
|
14
8
|
} from "../models/models_0";
|
|
15
9
|
export { __MetadataBearer };
|
|
16
|
-
export { $Command };
|
|
17
10
|
export interface GetImageFrameCommandInput extends GetImageFrameRequest {}
|
|
18
11
|
export interface GetImageFrameCommandOutput
|
|
19
12
|
extends Pick<
|
|
@@ -29,22 +22,20 @@ declare const GetImageFrameCommand_base: {
|
|
|
29
22
|
): import("@smithy/core/client").CommandImpl<
|
|
30
23
|
GetImageFrameCommandInput,
|
|
31
24
|
GetImageFrameCommandOutput,
|
|
32
|
-
MedicalImagingClientResolvedConfig,
|
|
33
|
-
ServiceInputTypes,
|
|
34
|
-
ServiceOutputTypes
|
|
25
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
26
|
+
import("..").ServiceInputTypes,
|
|
27
|
+
import("..").ServiceOutputTypes
|
|
35
28
|
>;
|
|
36
29
|
new (
|
|
37
30
|
input: GetImageFrameCommandInput
|
|
38
31
|
): import("@smithy/core/client").CommandImpl<
|
|
39
32
|
GetImageFrameCommandInput,
|
|
40
33
|
GetImageFrameCommandOutput,
|
|
41
|
-
MedicalImagingClientResolvedConfig,
|
|
42
|
-
ServiceInputTypes,
|
|
43
|
-
ServiceOutputTypes
|
|
34
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
35
|
+
import("..").ServiceInputTypes,
|
|
36
|
+
import("..").ServiceOutputTypes
|
|
44
37
|
>;
|
|
45
|
-
getEndpointParameterInstructions():
|
|
46
|
-
[x: string]: unknown;
|
|
47
|
-
};
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
48
39
|
};
|
|
49
40
|
export declare class GetImageFrameCommand extends GetImageFrameCommand_base {
|
|
50
41
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
MedicalImagingClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../MedicalImagingClient";
|
|
8
2
|
import { GetImageSetRequest, GetImageSetResponse } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface GetImageSetCommandInput extends GetImageSetRequest {}
|
|
12
5
|
export interface GetImageSetCommandOutput
|
|
13
6
|
extends GetImageSetResponse,
|
|
@@ -18,22 +11,20 @@ declare const GetImageSetCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
GetImageSetCommandInput,
|
|
20
13
|
GetImageSetCommandOutput,
|
|
21
|
-
MedicalImagingClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: GetImageSetCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
GetImageSetCommandInput,
|
|
29
22
|
GetImageSetCommandOutput,
|
|
30
|
-
MedicalImagingClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class GetImageSetCommand extends GetImageSetCommand_base {
|
|
39
30
|
protected static __types: {
|
|
@@ -1,19 +1,12 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import {
|
|
3
2
|
MetadataBearer as __MetadataBearer,
|
|
4
3
|
StreamingBlobPayloadOutputTypes,
|
|
5
4
|
} from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
MedicalImagingClientResolvedConfig,
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
} from "../MedicalImagingClient";
|
|
11
5
|
import {
|
|
12
6
|
GetImageSetMetadataRequest,
|
|
13
7
|
GetImageSetMetadataResponse,
|
|
14
8
|
} from "../models/models_0";
|
|
15
9
|
export { __MetadataBearer };
|
|
16
|
-
export { $Command };
|
|
17
10
|
export interface GetImageSetMetadataCommandInput
|
|
18
11
|
extends GetImageSetMetadataRequest {}
|
|
19
12
|
export interface GetImageSetMetadataCommandOutput
|
|
@@ -30,22 +23,20 @@ declare const GetImageSetMetadataCommand_base: {
|
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
GetImageSetMetadataCommandInput,
|
|
32
25
|
GetImageSetMetadataCommandOutput,
|
|
33
|
-
MedicalImagingClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
30
|
new (
|
|
38
31
|
input: GetImageSetMetadataCommandInput
|
|
39
32
|
): import("@smithy/core/client").CommandImpl<
|
|
40
33
|
GetImageSetMetadataCommandInput,
|
|
41
34
|
GetImageSetMetadataCommandOutput,
|
|
42
|
-
MedicalImagingClientResolvedConfig,
|
|
43
|
-
ServiceInputTypes,
|
|
44
|
-
ServiceOutputTypes
|
|
35
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
36
|
+
import("..").ServiceInputTypes,
|
|
37
|
+
import("..").ServiceOutputTypes
|
|
45
38
|
>;
|
|
46
|
-
getEndpointParameterInstructions():
|
|
47
|
-
[x: string]: unknown;
|
|
48
|
-
};
|
|
39
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
49
40
|
};
|
|
50
41
|
export declare class GetImageSetMetadataCommand extends GetImageSetMetadataCommand_base {
|
|
51
42
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
MedicalImagingClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../MedicalImagingClient";
|
|
8
2
|
import {
|
|
9
3
|
ListDICOMImportJobsRequest,
|
|
10
4
|
ListDICOMImportJobsResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListDICOMImportJobsCommandInput
|
|
15
8
|
extends ListDICOMImportJobsRequest {}
|
|
16
9
|
export interface ListDICOMImportJobsCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListDICOMImportJobsCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListDICOMImportJobsCommandInput,
|
|
24
17
|
ListDICOMImportJobsCommandOutput,
|
|
25
|
-
MedicalImagingClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: ListDICOMImportJobsCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListDICOMImportJobsCommandInput,
|
|
33
26
|
ListDICOMImportJobsCommandOutput,
|
|
34
|
-
MedicalImagingClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListDICOMImportJobsCommand extends ListDICOMImportJobsCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
MedicalImagingClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../MedicalImagingClient";
|
|
8
2
|
import {
|
|
9
3
|
ListDatastoresRequest,
|
|
10
4
|
ListDatastoresResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListDatastoresCommandInput extends ListDatastoresRequest {}
|
|
15
8
|
export interface ListDatastoresCommandOutput
|
|
16
9
|
extends ListDatastoresResponse,
|
|
@@ -21,22 +14,20 @@ declare const ListDatastoresCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
ListDatastoresCommandInput,
|
|
23
16
|
ListDatastoresCommandOutput,
|
|
24
|
-
MedicalImagingClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
...[input]: [] | [ListDatastoresCommandInput]
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
ListDatastoresCommandInput,
|
|
32
25
|
ListDatastoresCommandOutput,
|
|
33
|
-
MedicalImagingClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class ListDatastoresCommand extends ListDatastoresCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
MedicalImagingClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../MedicalImagingClient";
|
|
8
2
|
import {
|
|
9
3
|
ListImageSetVersionsRequest,
|
|
10
4
|
ListImageSetVersionsResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListImageSetVersionsCommandInput
|
|
15
8
|
extends ListImageSetVersionsRequest {}
|
|
16
9
|
export interface ListImageSetVersionsCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListImageSetVersionsCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListImageSetVersionsCommandInput,
|
|
24
17
|
ListImageSetVersionsCommandOutput,
|
|
25
|
-
MedicalImagingClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: ListImageSetVersionsCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListImageSetVersionsCommandInput,
|
|
33
26
|
ListImageSetVersionsCommandOutput,
|
|
34
|
-
MedicalImagingClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListImageSetVersionsCommand extends ListImageSetVersionsCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
MedicalImagingClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../MedicalImagingClient";
|
|
8
2
|
import {
|
|
9
3
|
ListTagsForResourceRequest,
|
|
10
4
|
ListTagsForResourceResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListTagsForResourceCommandInput
|
|
15
8
|
extends ListTagsForResourceRequest {}
|
|
16
9
|
export interface ListTagsForResourceCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListTagsForResourceCommandInput,
|
|
24
17
|
ListTagsForResourceCommandOutput,
|
|
25
|
-
MedicalImagingClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: ListTagsForResourceCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListTagsForResourceCommandInput,
|
|
33
26
|
ListTagsForResourceCommandOutput,
|
|
34
|
-
MedicalImagingClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
MedicalImagingClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../MedicalImagingClient";
|
|
8
2
|
import {
|
|
9
3
|
SearchImageSetsRequest,
|
|
10
4
|
SearchImageSetsResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface SearchImageSetsCommandInput extends SearchImageSetsRequest {}
|
|
15
8
|
export interface SearchImageSetsCommandOutput
|
|
16
9
|
extends SearchImageSetsResponse,
|
|
@@ -21,22 +14,20 @@ declare const SearchImageSetsCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
SearchImageSetsCommandInput,
|
|
23
16
|
SearchImageSetsCommandOutput,
|
|
24
|
-
MedicalImagingClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: SearchImageSetsCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
SearchImageSetsCommandInput,
|
|
32
25
|
SearchImageSetsCommandOutput,
|
|
33
|
-
MedicalImagingClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").MedicalImagingClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class SearchImageSetsCommand extends SearchImageSetsCommand_base {
|
|
42
33
|
protected static __types: {
|