@aws-sdk/client-medical-imaging 3.1087.0 → 3.1089.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/MedicalImaging.d.ts +61 -69
- package/dist-types/ts3.4/MedicalImagingClient.d.ts +8 -24
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CopyImageSetCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateDatastoreCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/DeleteDatastoreCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteImageSetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetDICOMImportJobCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetDatastoreCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetImageFrameCommand.d.ts +6 -14
- package/dist-types/ts3.4/commands/GetImageSetCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetImageSetMetadataCommand.d.ts +7 -13
- package/dist-types/ts3.4/commands/ListDICOMImportJobsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListDatastoresCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListImageSetVersionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/SearchImageSetsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StartDICOMImportJobCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateImageSetMetadataCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +1 -2
- package/dist-types/ts3.4/models/errors.d.ts +8 -24
- package/dist-types/ts3.4/models/models_0.d.ts +1 -3
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/package.json +38 -38
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetDICOMImportJobRequest,
|
|
4
|
-
GetDICOMImportJobResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetDICOMImportJobRequest, GetDICOMImportJobResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetDICOMImportJobCommandInput
|
|
8
|
-
extends GetDICOMImportJobRequest {}
|
|
4
|
+
export interface GetDICOMImportJobCommandInput extends GetDICOMImportJobRequest {}
|
|
9
5
|
export interface GetDICOMImportJobCommandOutput
|
|
10
|
-
extends GetDICOMImportJobResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetDICOMImportJobResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetDICOMImportJobCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetDICOMImportJobCommandInput
|
|
9
|
+
input: GetDICOMImportJobCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetDICOMImportJobCommandInput,
|
|
17
12
|
GetDICOMImportJobCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetDICOMImportJobCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetDICOMImportJobCommandInput
|
|
18
|
+
input: GetDICOMImportJobCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetDICOMImportJobCommandInput,
|
|
26
21
|
GetDICOMImportJobCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetDatastoreRequest, GetDatastoreResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetDatastoreCommandInput extends GetDatastoreRequest {}
|
|
5
|
-
export interface GetDatastoreCommandOutput
|
|
6
|
-
extends GetDatastoreResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetDatastoreCommandOutput extends GetDatastoreResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetDatastoreCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetDatastoreCommandInput
|
|
8
|
+
input: GetDatastoreCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetDatastoreCommandInput,
|
|
13
11
|
GetDatastoreCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetDatastoreCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetDatastoreCommandInput
|
|
17
|
+
input: GetDatastoreCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetDatastoreCommandInput,
|
|
22
20
|
GetDatastoreCommandOutput,
|
|
@@ -1,24 +1,16 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
StreamingBlobPayloadOutputTypes,
|
|
4
|
-
} from "@smithy/types";
|
|
5
|
-
import {
|
|
6
|
-
GetImageFrameRequest,
|
|
7
|
-
GetImageFrameResponse,
|
|
8
|
-
} from "../models/models_0";
|
|
1
|
+
import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types";
|
|
2
|
+
import { GetImageFrameRequest, GetImageFrameResponse } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
4
|
export interface GetImageFrameCommandInput extends GetImageFrameRequest {}
|
|
11
5
|
export interface GetImageFrameCommandOutput
|
|
12
|
-
extends
|
|
13
|
-
|
|
14
|
-
Exclude<keyof GetImageFrameResponse, "imageFrameBlob">
|
|
15
|
-
>,
|
|
6
|
+
extends
|
|
7
|
+
Pick<GetImageFrameResponse, Exclude<keyof GetImageFrameResponse, "imageFrameBlob">>,
|
|
16
8
|
__MetadataBearer {
|
|
17
9
|
imageFrameBlob: StreamingBlobPayloadOutputTypes;
|
|
18
10
|
}
|
|
19
11
|
declare const GetImageFrameCommand_base: {
|
|
20
12
|
new (
|
|
21
|
-
input: GetImageFrameCommandInput
|
|
13
|
+
input: GetImageFrameCommandInput,
|
|
22
14
|
): import("@smithy/core/client").CommandImpl<
|
|
23
15
|
GetImageFrameCommandInput,
|
|
24
16
|
GetImageFrameCommandOutput,
|
|
@@ -27,7 +19,7 @@ declare const GetImageFrameCommand_base: {
|
|
|
27
19
|
import("..").ServiceOutputTypes
|
|
28
20
|
>;
|
|
29
21
|
new (
|
|
30
|
-
input: GetImageFrameCommandInput
|
|
22
|
+
input: GetImageFrameCommandInput,
|
|
31
23
|
): import("@smithy/core/client").CommandImpl<
|
|
32
24
|
GetImageFrameCommandInput,
|
|
33
25
|
GetImageFrameCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetImageSetRequest, GetImageSetResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetImageSetCommandInput extends GetImageSetRequest {}
|
|
5
|
-
export interface GetImageSetCommandOutput
|
|
6
|
-
extends GetImageSetResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetImageSetCommandOutput extends GetImageSetResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetImageSetCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetImageSetCommandInput
|
|
8
|
+
input: GetImageSetCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetImageSetCommandInput,
|
|
13
11
|
GetImageSetCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetImageSetCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetImageSetCommandInput
|
|
17
|
+
input: GetImageSetCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetImageSetCommandInput,
|
|
22
20
|
GetImageSetCommandOutput,
|
|
@@ -1,16 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
StreamingBlobPayloadOutputTypes,
|
|
4
|
-
} from "@smithy/types";
|
|
5
|
-
import {
|
|
6
|
-
GetImageSetMetadataRequest,
|
|
7
|
-
GetImageSetMetadataResponse,
|
|
8
|
-
} from "../models/models_0";
|
|
1
|
+
import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types";
|
|
2
|
+
import { GetImageSetMetadataRequest, GetImageSetMetadataResponse } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export interface GetImageSetMetadataCommandInput
|
|
11
|
-
extends GetImageSetMetadataRequest {}
|
|
4
|
+
export interface GetImageSetMetadataCommandInput extends GetImageSetMetadataRequest {}
|
|
12
5
|
export interface GetImageSetMetadataCommandOutput
|
|
13
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
Pick<
|
|
14
8
|
GetImageSetMetadataResponse,
|
|
15
9
|
Exclude<keyof GetImageSetMetadataResponse, "imageSetMetadataBlob">
|
|
16
10
|
>,
|
|
@@ -19,7 +13,7 @@ export interface GetImageSetMetadataCommandOutput
|
|
|
19
13
|
}
|
|
20
14
|
declare const GetImageSetMetadataCommand_base: {
|
|
21
15
|
new (
|
|
22
|
-
input: GetImageSetMetadataCommandInput
|
|
16
|
+
input: GetImageSetMetadataCommandInput,
|
|
23
17
|
): import("@smithy/core/client").CommandImpl<
|
|
24
18
|
GetImageSetMetadataCommandInput,
|
|
25
19
|
GetImageSetMetadataCommandOutput,
|
|
@@ -28,7 +22,7 @@ declare const GetImageSetMetadataCommand_base: {
|
|
|
28
22
|
import("..").ServiceOutputTypes
|
|
29
23
|
>;
|
|
30
24
|
new (
|
|
31
|
-
input: GetImageSetMetadataCommandInput
|
|
25
|
+
input: GetImageSetMetadataCommandInput,
|
|
32
26
|
): import("@smithy/core/client").CommandImpl<
|
|
33
27
|
GetImageSetMetadataCommandInput,
|
|
34
28
|
GetImageSetMetadataCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListDICOMImportJobsRequest,
|
|
4
|
-
ListDICOMImportJobsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListDICOMImportJobsRequest, ListDICOMImportJobsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListDICOMImportJobsCommandInput
|
|
8
|
-
extends ListDICOMImportJobsRequest {}
|
|
4
|
+
export interface ListDICOMImportJobsCommandInput extends ListDICOMImportJobsRequest {}
|
|
9
5
|
export interface ListDICOMImportJobsCommandOutput
|
|
10
|
-
extends ListDICOMImportJobsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListDICOMImportJobsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListDICOMImportJobsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListDICOMImportJobsCommandInput
|
|
9
|
+
input: ListDICOMImportJobsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListDICOMImportJobsCommandInput,
|
|
17
12
|
ListDICOMImportJobsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListDICOMImportJobsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListDICOMImportJobsCommandInput
|
|
18
|
+
input: ListDICOMImportJobsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListDICOMImportJobsCommandInput,
|
|
26
21
|
ListDICOMImportJobsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListDatastoresRequest,
|
|
4
|
-
ListDatastoresResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListDatastoresRequest, ListDatastoresResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListDatastoresCommandInput extends ListDatastoresRequest {}
|
|
8
|
-
export interface ListDatastoresCommandOutput
|
|
9
|
-
extends ListDatastoresResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListDatastoresCommandOutput extends ListDatastoresResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListDatastoresCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListDatastoresCommandInput
|
|
8
|
+
input: ListDatastoresCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListDatastoresCommandInput,
|
|
16
11
|
ListDatastoresCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListImageSetVersionsRequest,
|
|
4
|
-
ListImageSetVersionsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListImageSetVersionsRequest, ListImageSetVersionsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListImageSetVersionsCommandInput
|
|
8
|
-
extends ListImageSetVersionsRequest {}
|
|
4
|
+
export interface ListImageSetVersionsCommandInput extends ListImageSetVersionsRequest {}
|
|
9
5
|
export interface ListImageSetVersionsCommandOutput
|
|
10
|
-
extends ListImageSetVersionsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListImageSetVersionsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListImageSetVersionsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListImageSetVersionsCommandInput
|
|
9
|
+
input: ListImageSetVersionsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListImageSetVersionsCommandInput,
|
|
17
12
|
ListImageSetVersionsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListImageSetVersionsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListImageSetVersionsCommandInput
|
|
18
|
+
input: ListImageSetVersionsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListImageSetVersionsCommandInput,
|
|
26
21
|
ListImageSetVersionsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
SearchImageSetsRequest,
|
|
4
|
-
SearchImageSetsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { SearchImageSetsRequest, SearchImageSetsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface SearchImageSetsCommandInput extends SearchImageSetsRequest {}
|
|
8
|
-
export interface SearchImageSetsCommandOutput
|
|
9
|
-
extends SearchImageSetsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface SearchImageSetsCommandOutput extends SearchImageSetsResponse, __MetadataBearer {}
|
|
11
6
|
declare const SearchImageSetsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: SearchImageSetsCommandInput
|
|
8
|
+
input: SearchImageSetsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
SearchImageSetsCommandInput,
|
|
16
11
|
SearchImageSetsCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const SearchImageSetsCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: SearchImageSetsCommandInput
|
|
17
|
+
input: SearchImageSetsCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
SearchImageSetsCommandInput,
|
|
25
20
|
SearchImageSetsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartDICOMImportJobRequest,
|
|
4
|
-
StartDICOMImportJobResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartDICOMImportJobRequest, StartDICOMImportJobResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartDICOMImportJobCommandInput
|
|
8
|
-
extends StartDICOMImportJobRequest {}
|
|
4
|
+
export interface StartDICOMImportJobCommandInput extends StartDICOMImportJobRequest {}
|
|
9
5
|
export interface StartDICOMImportJobCommandOutput
|
|
10
|
-
extends StartDICOMImportJobResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends StartDICOMImportJobResponse, __MetadataBearer {}
|
|
12
7
|
declare const StartDICOMImportJobCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: StartDICOMImportJobCommandInput
|
|
9
|
+
input: StartDICOMImportJobCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
StartDICOMImportJobCommandInput,
|
|
17
12
|
StartDICOMImportJobCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const StartDICOMImportJobCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: StartDICOMImportJobCommandInput
|
|
18
|
+
input: StartDICOMImportJobCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
StartDICOMImportJobCommandInput,
|
|
26
21
|
StartDICOMImportJobCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateImageSetMetadataRequest,
|
|
4
|
-
UpdateImageSetMetadataResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateImageSetMetadataRequest, UpdateImageSetMetadataResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateImageSetMetadataCommandInput
|
|
8
|
-
extends UpdateImageSetMetadataRequest {}
|
|
4
|
+
export interface UpdateImageSetMetadataCommandInput extends UpdateImageSetMetadataRequest {}
|
|
9
5
|
export interface UpdateImageSetMetadataCommandOutput
|
|
10
|
-
extends UpdateImageSetMetadataResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateImageSetMetadataResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateImageSetMetadataCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateImageSetMetadataCommandInput
|
|
9
|
+
input: UpdateImageSetMetadataCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateImageSetMetadataCommandInput,
|
|
17
12
|
UpdateImageSetMetadataCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateImageSetMetadataCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateImageSetMetadataCommandInput
|
|
18
|
+
input: UpdateImageSetMetadataCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateImageSetMetadataCommandInput,
|
|
26
21
|
UpdateImageSetMetadataCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface MedicalImagingExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -35,8 +35,7 @@ export declare const DatastoreStatus: {
|
|
|
35
35
|
readonly DELETED: "DELETED";
|
|
36
36
|
readonly DELETING: "DELETING";
|
|
37
37
|
};
|
|
38
|
-
export type DatastoreStatus =
|
|
39
|
-
(typeof DatastoreStatus)[keyof typeof DatastoreStatus];
|
|
38
|
+
export type DatastoreStatus = (typeof DatastoreStatus)[keyof typeof DatastoreStatus];
|
|
40
39
|
export declare const JobStatus: {
|
|
41
40
|
readonly COMPLETED: "COMPLETED";
|
|
42
41
|
readonly FAILED: "FAILED";
|
|
@@ -3,9 +3,7 @@ import { MedicalImagingServiceException as __BaseException } from "./MedicalImag
|
|
|
3
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
|
-
constructor(
|
|
7
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
-
);
|
|
6
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
9
7
|
}
|
|
10
8
|
export declare class ConflictException extends __BaseException {
|
|
11
9
|
readonly name: "ConflictException";
|
|
@@ -15,49 +13,35 @@ export declare class ConflictException extends __BaseException {
|
|
|
15
13
|
export declare class InternalServerException extends __BaseException {
|
|
16
14
|
readonly name: "InternalServerException";
|
|
17
15
|
readonly $fault: "server";
|
|
18
|
-
constructor(
|
|
19
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
20
|
-
);
|
|
16
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
21
17
|
}
|
|
22
18
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
23
19
|
readonly name: "ResourceNotFoundException";
|
|
24
20
|
readonly $fault: "client";
|
|
25
|
-
constructor(
|
|
26
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
27
|
-
);
|
|
21
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
28
22
|
}
|
|
29
23
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
30
24
|
readonly name: "ServiceQuotaExceededException";
|
|
31
25
|
readonly $fault: "client";
|
|
32
|
-
constructor(
|
|
33
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
34
|
-
);
|
|
26
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
35
27
|
}
|
|
36
28
|
export declare class ThrottlingException extends __BaseException {
|
|
37
29
|
readonly name: "ThrottlingException";
|
|
38
30
|
readonly $fault: "client";
|
|
39
|
-
constructor(
|
|
40
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
41
|
-
);
|
|
31
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
42
32
|
}
|
|
43
33
|
export declare class ValidationException extends __BaseException {
|
|
44
34
|
readonly name: "ValidationException";
|
|
45
35
|
readonly $fault: "client";
|
|
46
|
-
constructor(
|
|
47
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
48
|
-
);
|
|
36
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
49
37
|
}
|
|
50
38
|
export declare class BadRequestException extends __BaseException {
|
|
51
39
|
readonly name: "BadRequestException";
|
|
52
40
|
readonly $fault: "client";
|
|
53
|
-
constructor(
|
|
54
|
-
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
55
|
-
);
|
|
41
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
56
42
|
}
|
|
57
43
|
export declare class NotAcceptableException extends __BaseException {
|
|
58
44
|
readonly name: "NotAcceptableException";
|
|
59
45
|
readonly $fault: "client";
|
|
60
|
-
constructor(
|
|
61
|
-
opts: __ExceptionOptionType<NotAcceptableException, __BaseException>
|
|
62
|
-
);
|
|
46
|
+
constructor(opts: __ExceptionOptionType<NotAcceptableException, __BaseException>);
|
|
63
47
|
}
|
|
@@ -143,9 +143,7 @@ export declare namespace ImportConfiguration {
|
|
|
143
143
|
$unknown: [string, any];
|
|
144
144
|
}
|
|
145
145
|
interface Visitor<T> {
|
|
146
|
-
dicomJsonMetadataImportConfiguration: (
|
|
147
|
-
value: DicomJsonMetadataImportConfiguration
|
|
148
|
-
) => T;
|
|
146
|
+
dicomJsonMetadataImportConfiguration: (value: DicomJsonMetadataImportConfiguration) => T;
|
|
149
147
|
_: (name: string, value: any) => T;
|
|
150
148
|
}
|
|
151
149
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { MedicalImagingClient } from "../MedicalImagingClient";
|
|
3
|
-
export interface MedicalImagingPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface MedicalImagingPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: MedicalImagingClient;
|
|
6
5
|
}
|
|
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider:
|
|
10
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((
|
|
12
|
-
_: unknown
|
|
13
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
12
|
defaultUserAgentProvider: (
|
|
15
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
16
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
-
requestHandler:
|
|
20
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
21
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
22
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
19
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
21
|
) => Promise<Uint8Array>;
|
|
30
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
31
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -54,13 +46,8 @@ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
|
|
|
54
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
47
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
56
48
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
57
|
-
userAgentAppId?:
|
|
58
|
-
|
|
59
|
-
| undefined
|
|
60
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
61
|
-
retryStrategy?:
|
|
62
|
-
| import("@smithy/types").RetryStrategy
|
|
63
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
49
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
64
51
|
endpoint?:
|
|
65
52
|
| ((
|
|
66
53
|
| string
|
|
@@ -82,7 +69,7 @@ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
|
|
|
82
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
83
70
|
context?: {
|
|
84
71
|
logger?: import("@smithy/types").Logger;
|
|
85
|
-
}
|
|
72
|
+
},
|
|
86
73
|
) => import("@smithy/types").EndpointV2;
|
|
87
74
|
tls?: boolean;
|
|
88
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -95,13 +82,13 @@ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
|
|
|
95
82
|
signer?:
|
|
96
83
|
| import("@smithy/types").RequestSigner
|
|
97
84
|
| ((
|
|
98
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
85
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
99
86
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
100
87
|
signingEscapePath?: boolean;
|
|
101
88
|
systemClockOffset?: number;
|
|
102
89
|
signingRegion?: string;
|
|
103
90
|
signerConstructor?: new (
|
|
104
91
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
105
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
92
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
106
93
|
) => import("@smithy/types").RequestSigner;
|
|
107
94
|
};
|