@aws-sdk/client-medical-imaging 3.928.0 → 3.930.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 +1109 -1233
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/MedicalImagingClient.js +2 -0
- package/dist-es/commands/CopyImageSetCommand.js +3 -10
- package/dist-es/commands/CreateDatastoreCommand.js +3 -9
- package/dist-es/commands/DeleteDatastoreCommand.js +3 -9
- package/dist-es/commands/DeleteImageSetCommand.js +3 -9
- package/dist-es/commands/GetDICOMImportJobCommand.js +3 -9
- package/dist-es/commands/GetDatastoreCommand.js +3 -9
- package/dist-es/commands/GetImageFrameCommand.js +3 -10
- package/dist-es/commands/GetImageSetCommand.js +3 -9
- package/dist-es/commands/GetImageSetMetadataCommand.js +3 -10
- package/dist-es/commands/ListDICOMImportJobsCommand.js +3 -9
- package/dist-es/commands/ListDatastoresCommand.js +3 -9
- package/dist-es/commands/ListImageSetVersionsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/SearchImageSetsCommand.js +3 -10
- package/dist-es/commands/StartDICOMImportJobCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateImageSetMetadataCommand.js +3 -10
- package/dist-es/models/models_0.js +8 -144
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1055 -0
- package/dist-types/MedicalImagingClient.d.ts +10 -1
- package/dist-types/commands/CreateDatastoreCommand.d.ts +1 -0
- package/dist-types/commands/GetDatastoreCommand.d.ts +1 -0
- package/dist-types/commands/GetImageSetCommand.d.ts +2 -0
- package/dist-types/commands/SearchImageSetsCommand.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +68 -70
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +112 -0
- package/dist-types/ts3.4/MedicalImagingClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +17 -47
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +118 -0
- package/package.json +34 -35
- package/dist-es/protocols/Aws_restJson1.js +0 -940
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -164
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -224
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, SdkStreamMixinInjector as __SdkStreamMixinInjector, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, SdkStreamMixinInjector as __SdkStreamMixinInjector, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { CopyImageSetCommandInput, CopyImageSetCommandOutput } from "./commands/CopyImageSetCommand";
|
|
11
11
|
import { CreateDatastoreCommandInput, CreateDatastoreCommandOutput } from "./commands/CreateDatastoreCommand";
|
|
@@ -159,6 +159,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
159
159
|
* Optional extensions
|
|
160
160
|
*/
|
|
161
161
|
extensions?: RuntimeExtension[];
|
|
162
|
+
/**
|
|
163
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
164
|
+
* may be overridden. A default will always be set by the client.
|
|
165
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
166
|
+
* the client.
|
|
167
|
+
* @alpha
|
|
168
|
+
*
|
|
169
|
+
*/
|
|
170
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
162
171
|
/**
|
|
163
172
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
164
173
|
*/
|
|
@@ -44,6 +44,7 @@ declare const CreateDatastoreCommand_base: {
|
|
|
44
44
|
* },
|
|
45
45
|
* kmsKeyArn: "STRING_VALUE",
|
|
46
46
|
* lambdaAuthorizerArn: "STRING_VALUE",
|
|
47
|
+
* losslessStorageFormat: "HTJ2K" || "JPEG_2000_LOSSLESS",
|
|
47
48
|
* };
|
|
48
49
|
* const command = new CreateDatastoreCommand(input);
|
|
49
50
|
* const response = await client.send(command);
|
|
@@ -48,6 +48,7 @@ declare const GetDatastoreCommand_base: {
|
|
|
48
48
|
* // datastoreStatus: "CREATING" || "CREATE_FAILED" || "ACTIVE" || "DELETING" || "DELETED", // required
|
|
49
49
|
* // kmsKeyArn: "STRING_VALUE",
|
|
50
50
|
* // lambdaAuthorizerArn: "STRING_VALUE",
|
|
51
|
+
* // losslessStorageFormat: "HTJ2K" || "JPEG_2000_LOSSLESS",
|
|
51
52
|
* // datastoreArn: "STRING_VALUE",
|
|
52
53
|
* // createdAt: new Date("TIMESTAMP"),
|
|
53
54
|
* // updatedAt: new Date("TIMESTAMP"),
|
|
@@ -77,6 +77,8 @@ declare const SearchImageSetsCommand_base: {
|
|
|
77
77
|
* // version: Number("int"),
|
|
78
78
|
* // createdAt: new Date("TIMESTAMP"),
|
|
79
79
|
* // updatedAt: new Date("TIMESTAMP"),
|
|
80
|
+
* // lastAccessedAt: new Date("TIMESTAMP"),
|
|
81
|
+
* // storageTier: "FREQUENT_ACCESS" || "ARCHIVE_INSTANT_ACCESS",
|
|
80
82
|
* // DICOMTags: { // DICOMTags
|
|
81
83
|
* // DICOMPatientId: "STRING_VALUE",
|
|
82
84
|
* // DICOMPatientName: "STRING_VALUE",
|
|
@@ -312,6 +312,18 @@ export declare class ValidationException extends __BaseException {
|
|
|
312
312
|
*/
|
|
313
313
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
314
314
|
}
|
|
315
|
+
/**
|
|
316
|
+
* @public
|
|
317
|
+
* @enum
|
|
318
|
+
*/
|
|
319
|
+
export declare const LosslessStorageFormat: {
|
|
320
|
+
readonly HTJ2K: "HTJ2K";
|
|
321
|
+
readonly JPEG_2000_LOSSLESS: "JPEG_2000_LOSSLESS";
|
|
322
|
+
};
|
|
323
|
+
/**
|
|
324
|
+
* @public
|
|
325
|
+
*/
|
|
326
|
+
export type LosslessStorageFormat = (typeof LosslessStorageFormat)[keyof typeof LosslessStorageFormat];
|
|
315
327
|
/**
|
|
316
328
|
* @public
|
|
317
329
|
*/
|
|
@@ -341,6 +353,11 @@ export interface CreateDatastoreRequest {
|
|
|
341
353
|
* @public
|
|
342
354
|
*/
|
|
343
355
|
lambdaAuthorizerArn?: string | undefined;
|
|
356
|
+
/**
|
|
357
|
+
* <p>The lossless storage format for the datastore.</p>
|
|
358
|
+
* @public
|
|
359
|
+
*/
|
|
360
|
+
losslessStorageFormat?: LosslessStorageFormat | undefined;
|
|
344
361
|
}
|
|
345
362
|
/**
|
|
346
363
|
* @public
|
|
@@ -437,6 +454,11 @@ export interface DatastoreProperties {
|
|
|
437
454
|
* @public
|
|
438
455
|
*/
|
|
439
456
|
lambdaAuthorizerArn?: string | undefined;
|
|
457
|
+
/**
|
|
458
|
+
* <p>The datastore's lossless storage format.</p>
|
|
459
|
+
* @public
|
|
460
|
+
*/
|
|
461
|
+
losslessStorageFormat?: LosslessStorageFormat | undefined;
|
|
440
462
|
/**
|
|
441
463
|
* <p>The Amazon Resource Name (ARN) for the data store.</p>
|
|
442
464
|
* @public
|
|
@@ -746,6 +768,24 @@ export interface Overrides {
|
|
|
746
768
|
*/
|
|
747
769
|
forced?: boolean | undefined;
|
|
748
770
|
}
|
|
771
|
+
/**
|
|
772
|
+
* @public
|
|
773
|
+
* @enum
|
|
774
|
+
*/
|
|
775
|
+
export declare const StorageTier: {
|
|
776
|
+
/**
|
|
777
|
+
* Archive instant access storage tier for image sets that are accessed infrequently
|
|
778
|
+
*/
|
|
779
|
+
readonly ARCHIVE_INSTANT_ACCESS: "ARCHIVE_INSTANT_ACCESS";
|
|
780
|
+
/**
|
|
781
|
+
* Frequent access storage tier for image sets that are accessed regularly
|
|
782
|
+
*/
|
|
783
|
+
readonly FREQUENT_ACCESS: "FREQUENT_ACCESS";
|
|
784
|
+
};
|
|
785
|
+
/**
|
|
786
|
+
* @public
|
|
787
|
+
*/
|
|
788
|
+
export type StorageTier = (typeof StorageTier)[keyof typeof StorageTier];
|
|
749
789
|
/**
|
|
750
790
|
* @public
|
|
751
791
|
*/
|
|
@@ -810,6 +850,16 @@ export interface GetImageSetResponse {
|
|
|
810
850
|
* @public
|
|
811
851
|
*/
|
|
812
852
|
isPrimary?: boolean | undefined;
|
|
853
|
+
/**
|
|
854
|
+
* <p>When the image set was last accessed.</p>
|
|
855
|
+
* @public
|
|
856
|
+
*/
|
|
857
|
+
lastAccessedAt?: Date | undefined;
|
|
858
|
+
/**
|
|
859
|
+
* <p>The storage tier of the image set.</p>
|
|
860
|
+
* @public
|
|
861
|
+
*/
|
|
862
|
+
storageTier?: StorageTier | undefined;
|
|
813
863
|
}
|
|
814
864
|
/**
|
|
815
865
|
* @public
|
|
@@ -1249,6 +1299,10 @@ export declare namespace SearchByAttributeValue {
|
|
|
1249
1299
|
isPrimary?: never;
|
|
1250
1300
|
$unknown: [string, any];
|
|
1251
1301
|
}
|
|
1302
|
+
/**
|
|
1303
|
+
* @deprecated unused in schema-serde mode.
|
|
1304
|
+
*
|
|
1305
|
+
*/
|
|
1252
1306
|
interface Visitor<T> {
|
|
1253
1307
|
DICOMPatientId: (value: string) => T;
|
|
1254
1308
|
DICOMAccessionNumber: (value: string) => T;
|
|
@@ -1261,7 +1315,6 @@ export declare namespace SearchByAttributeValue {
|
|
|
1261
1315
|
isPrimary: (value: boolean) => T;
|
|
1262
1316
|
_: (name: string, value: any) => T;
|
|
1263
1317
|
}
|
|
1264
|
-
const visit: <T>(value: SearchByAttributeValue, visitor: Visitor<T>) => T;
|
|
1265
1318
|
}
|
|
1266
1319
|
/**
|
|
1267
1320
|
* <p>The search filter.</p>
|
|
@@ -1472,6 +1525,16 @@ export interface ImageSetsMetadataSummary {
|
|
|
1472
1525
|
* @public
|
|
1473
1526
|
*/
|
|
1474
1527
|
updatedAt?: Date | undefined;
|
|
1528
|
+
/**
|
|
1529
|
+
* <p>When the image set was last accessed.</p>
|
|
1530
|
+
* @public
|
|
1531
|
+
*/
|
|
1532
|
+
lastAccessedAt?: Date | undefined;
|
|
1533
|
+
/**
|
|
1534
|
+
* <p>The image set's storage tier.</p>
|
|
1535
|
+
* @public
|
|
1536
|
+
*/
|
|
1537
|
+
storageTier?: StorageTier | undefined;
|
|
1475
1538
|
/**
|
|
1476
1539
|
* <p>The DICOM tags associated with the image set.</p>
|
|
1477
1540
|
* @public
|
|
@@ -1659,12 +1722,15 @@ export declare namespace MetadataUpdates {
|
|
|
1659
1722
|
revertToVersionId?: never;
|
|
1660
1723
|
$unknown: [string, any];
|
|
1661
1724
|
}
|
|
1725
|
+
/**
|
|
1726
|
+
* @deprecated unused in schema-serde mode.
|
|
1727
|
+
*
|
|
1728
|
+
*/
|
|
1662
1729
|
interface Visitor<T> {
|
|
1663
1730
|
DICOMUpdates: (value: DICOMUpdates) => T;
|
|
1664
1731
|
revertToVersionId: (value: string) => T;
|
|
1665
1732
|
_: (name: string, value: any) => T;
|
|
1666
1733
|
}
|
|
1667
|
-
const visit: <T>(value: MetadataUpdates, visitor: Visitor<T>) => T;
|
|
1668
1734
|
}
|
|
1669
1735
|
/**
|
|
1670
1736
|
* @public
|
|
@@ -1741,71 +1807,3 @@ export interface UpdateImageSetMetadataResponse {
|
|
|
1741
1807
|
*/
|
|
1742
1808
|
message?: string | undefined;
|
|
1743
1809
|
}
|
|
1744
|
-
/**
|
|
1745
|
-
* @internal
|
|
1746
|
-
*/
|
|
1747
|
-
export declare const MetadataCopiesFilterSensitiveLog: (obj: MetadataCopies) => any;
|
|
1748
|
-
/**
|
|
1749
|
-
* @internal
|
|
1750
|
-
*/
|
|
1751
|
-
export declare const CopySourceImageSetInformationFilterSensitiveLog: (obj: CopySourceImageSetInformation) => any;
|
|
1752
|
-
/**
|
|
1753
|
-
* @internal
|
|
1754
|
-
*/
|
|
1755
|
-
export declare const CopyImageSetInformationFilterSensitiveLog: (obj: CopyImageSetInformation) => any;
|
|
1756
|
-
/**
|
|
1757
|
-
* @internal
|
|
1758
|
-
*/
|
|
1759
|
-
export declare const CopyImageSetRequestFilterSensitiveLog: (obj: CopyImageSetRequest) => any;
|
|
1760
|
-
/**
|
|
1761
|
-
* @internal
|
|
1762
|
-
*/
|
|
1763
|
-
export declare const GetImageFrameResponseFilterSensitiveLog: (obj: GetImageFrameResponse) => any;
|
|
1764
|
-
/**
|
|
1765
|
-
* @internal
|
|
1766
|
-
*/
|
|
1767
|
-
export declare const GetImageSetMetadataResponseFilterSensitiveLog: (obj: GetImageSetMetadataResponse) => any;
|
|
1768
|
-
/**
|
|
1769
|
-
* @internal
|
|
1770
|
-
*/
|
|
1771
|
-
export declare const DICOMStudyDateAndTimeFilterSensitiveLog: (obj: DICOMStudyDateAndTime) => any;
|
|
1772
|
-
/**
|
|
1773
|
-
* @internal
|
|
1774
|
-
*/
|
|
1775
|
-
export declare const SearchByAttributeValueFilterSensitiveLog: (obj: SearchByAttributeValue) => any;
|
|
1776
|
-
/**
|
|
1777
|
-
* @internal
|
|
1778
|
-
*/
|
|
1779
|
-
export declare const SearchFilterFilterSensitiveLog: (obj: SearchFilter) => any;
|
|
1780
|
-
/**
|
|
1781
|
-
* @internal
|
|
1782
|
-
*/
|
|
1783
|
-
export declare const SearchCriteriaFilterSensitiveLog: (obj: SearchCriteria) => any;
|
|
1784
|
-
/**
|
|
1785
|
-
* @internal
|
|
1786
|
-
*/
|
|
1787
|
-
export declare const SearchImageSetsRequestFilterSensitiveLog: (obj: SearchImageSetsRequest) => any;
|
|
1788
|
-
/**
|
|
1789
|
-
* @internal
|
|
1790
|
-
*/
|
|
1791
|
-
export declare const DICOMTagsFilterSensitiveLog: (obj: DICOMTags) => any;
|
|
1792
|
-
/**
|
|
1793
|
-
* @internal
|
|
1794
|
-
*/
|
|
1795
|
-
export declare const ImageSetsMetadataSummaryFilterSensitiveLog: (obj: ImageSetsMetadataSummary) => any;
|
|
1796
|
-
/**
|
|
1797
|
-
* @internal
|
|
1798
|
-
*/
|
|
1799
|
-
export declare const SearchImageSetsResponseFilterSensitiveLog: (obj: SearchImageSetsResponse) => any;
|
|
1800
|
-
/**
|
|
1801
|
-
* @internal
|
|
1802
|
-
*/
|
|
1803
|
-
export declare const DICOMUpdatesFilterSensitiveLog: (obj: DICOMUpdates) => any;
|
|
1804
|
-
/**
|
|
1805
|
-
* @internal
|
|
1806
|
-
*/
|
|
1807
|
-
export declare const MetadataUpdatesFilterSensitiveLog: (obj: MetadataUpdates) => any;
|
|
1808
|
-
/**
|
|
1809
|
-
* @internal
|
|
1810
|
-
*/
|
|
1811
|
-
export declare const UpdateImageSetMetadataRequestFilterSensitiveLog: (obj: UpdateImageSetMetadataRequest) => any;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
33
34
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
34
35
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
35
36
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
36
37
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MedicalImagingHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
18
19
|
serviceId: string;
|
|
19
20
|
urlParser: import("@smithy/types").UrlParser;
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var CopiableAttributes: StaticSimpleSchema;
|
|
3
|
+
export declare var DICOMAccessionNumber: StaticSimpleSchema;
|
|
4
|
+
export declare var DICOMAttribute: StaticSimpleSchema;
|
|
5
|
+
export declare var DICOMPatientBirthDate: StaticSimpleSchema;
|
|
6
|
+
export declare var DICOMPatientId: StaticSimpleSchema;
|
|
7
|
+
export declare var DICOMPatientName: StaticSimpleSchema;
|
|
8
|
+
export declare var DICOMPatientSex: StaticSimpleSchema;
|
|
9
|
+
export declare var DICOMSeriesBodyPart: StaticSimpleSchema;
|
|
10
|
+
export declare var DICOMSeriesInstanceUID: StaticSimpleSchema;
|
|
11
|
+
export declare var DICOMSeriesModality: StaticSimpleSchema;
|
|
12
|
+
export declare var DICOMSeriesNumber: StaticSimpleSchema;
|
|
13
|
+
export declare var DICOMStudyDate: StaticSimpleSchema;
|
|
14
|
+
export declare var DICOMStudyDescription: StaticSimpleSchema;
|
|
15
|
+
export declare var DICOMStudyId: StaticSimpleSchema;
|
|
16
|
+
export declare var DICOMStudyInstanceUID: StaticSimpleSchema;
|
|
17
|
+
export declare var DICOMStudyTime: StaticSimpleSchema;
|
|
18
|
+
export declare var ImageSetMetadataBlob: StaticSimpleSchema;
|
|
19
|
+
export declare var PayloadBlob: StaticSimpleSchema;
|
|
20
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
21
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
22
|
+
export declare var CopyDestinationImageSet: StaticStructureSchema;
|
|
23
|
+
export declare var CopyDestinationImageSetProperties: StaticStructureSchema;
|
|
24
|
+
export declare var CopyImageSetInformation: StaticStructureSchema;
|
|
25
|
+
export declare var CopyImageSetRequest: StaticStructureSchema;
|
|
26
|
+
export declare var CopyImageSetResponse: StaticStructureSchema;
|
|
27
|
+
export declare var CopySourceImageSetInformation: StaticStructureSchema;
|
|
28
|
+
export declare var CopySourceImageSetProperties: StaticStructureSchema;
|
|
29
|
+
export declare var CreateDatastoreRequest: StaticStructureSchema;
|
|
30
|
+
export declare var CreateDatastoreResponse: StaticStructureSchema;
|
|
31
|
+
export declare var DatastoreProperties: StaticStructureSchema;
|
|
32
|
+
export declare var DatastoreSummary: StaticStructureSchema;
|
|
33
|
+
export declare var DeleteDatastoreRequest: StaticStructureSchema;
|
|
34
|
+
export declare var DeleteDatastoreResponse: StaticStructureSchema;
|
|
35
|
+
export declare var DeleteImageSetRequest: StaticStructureSchema;
|
|
36
|
+
export declare var DeleteImageSetResponse: StaticStructureSchema;
|
|
37
|
+
export declare var DICOMImportJobProperties: StaticStructureSchema;
|
|
38
|
+
export declare var DICOMImportJobSummary: StaticStructureSchema;
|
|
39
|
+
export declare var DICOMStudyDateAndTime: StaticStructureSchema;
|
|
40
|
+
export declare var DICOMTags: StaticStructureSchema;
|
|
41
|
+
export declare var DICOMUpdates: StaticStructureSchema;
|
|
42
|
+
export declare var GetDatastoreRequest: StaticStructureSchema;
|
|
43
|
+
export declare var GetDatastoreResponse: StaticStructureSchema;
|
|
44
|
+
export declare var GetDICOMImportJobRequest: StaticStructureSchema;
|
|
45
|
+
export declare var GetDICOMImportJobResponse: StaticStructureSchema;
|
|
46
|
+
export declare var GetImageFrameRequest: StaticStructureSchema;
|
|
47
|
+
export declare var GetImageFrameResponse: StaticStructureSchema;
|
|
48
|
+
export declare var GetImageSetMetadataRequest: StaticStructureSchema;
|
|
49
|
+
export declare var GetImageSetMetadataResponse: StaticStructureSchema;
|
|
50
|
+
export declare var GetImageSetRequest: StaticStructureSchema;
|
|
51
|
+
export declare var GetImageSetResponse: StaticStructureSchema;
|
|
52
|
+
export declare var ImageFrameInformation: StaticStructureSchema;
|
|
53
|
+
export declare var ImageSetProperties: StaticStructureSchema;
|
|
54
|
+
export declare var ImageSetsMetadataSummary: StaticStructureSchema;
|
|
55
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
56
|
+
export declare var ListDatastoresRequest: StaticStructureSchema;
|
|
57
|
+
export declare var ListDatastoresResponse: StaticStructureSchema;
|
|
58
|
+
export declare var ListDICOMImportJobsRequest: StaticStructureSchema;
|
|
59
|
+
export declare var ListDICOMImportJobsResponse: StaticStructureSchema;
|
|
60
|
+
export declare var ListImageSetVersionsRequest: StaticStructureSchema;
|
|
61
|
+
export declare var ListImageSetVersionsResponse: StaticStructureSchema;
|
|
62
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
63
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
64
|
+
export declare var MetadataCopies: StaticStructureSchema;
|
|
65
|
+
export declare var Overrides: StaticStructureSchema;
|
|
66
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
67
|
+
export declare var SearchCriteria: StaticStructureSchema;
|
|
68
|
+
export declare var SearchFilter: StaticStructureSchema;
|
|
69
|
+
export declare var SearchImageSetsRequest: StaticStructureSchema;
|
|
70
|
+
export declare var SearchImageSetsResponse: StaticStructureSchema;
|
|
71
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
72
|
+
export declare var Sort: StaticStructureSchema;
|
|
73
|
+
export declare var StartDICOMImportJobRequest: StaticStructureSchema;
|
|
74
|
+
export declare var StartDICOMImportJobResponse: StaticStructureSchema;
|
|
75
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
76
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
77
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
78
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
79
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
80
|
+
export declare var UpdateImageSetMetadataRequest: StaticStructureSchema;
|
|
81
|
+
export declare var UpdateImageSetMetadataResponse: StaticStructureSchema;
|
|
82
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
83
|
+
export declare var __Unit: "unit";
|
|
84
|
+
export declare var MedicalImagingServiceException: StaticErrorSchema;
|
|
85
|
+
export declare var DatastoreSummaries: StaticListSchema;
|
|
86
|
+
export declare var DICOMImportJobSummaries: StaticListSchema;
|
|
87
|
+
export declare var ImageSetPropertiesList: StaticListSchema;
|
|
88
|
+
export declare var ImageSetsMetadataSummaries: StaticListSchema;
|
|
89
|
+
export declare var SearchByAttributeValues: StaticListSchema;
|
|
90
|
+
export declare var SearchFilters: StaticListSchema;
|
|
91
|
+
export declare var TagKeyList: number;
|
|
92
|
+
export declare var TagMap: number;
|
|
93
|
+
export declare var MetadataUpdates: StaticStructureSchema;
|
|
94
|
+
export declare var SearchByAttributeValue: StaticStructureSchema;
|
|
95
|
+
export declare var CopyImageSet: StaticOperationSchema;
|
|
96
|
+
export declare var CreateDatastore: StaticOperationSchema;
|
|
97
|
+
export declare var DeleteDatastore: StaticOperationSchema;
|
|
98
|
+
export declare var DeleteImageSet: StaticOperationSchema;
|
|
99
|
+
export declare var GetDatastore: StaticOperationSchema;
|
|
100
|
+
export declare var GetDICOMImportJob: StaticOperationSchema;
|
|
101
|
+
export declare var GetImageFrame: StaticOperationSchema;
|
|
102
|
+
export declare var GetImageSet: StaticOperationSchema;
|
|
103
|
+
export declare var GetImageSetMetadata: StaticOperationSchema;
|
|
104
|
+
export declare var ListDatastores: StaticOperationSchema;
|
|
105
|
+
export declare var ListDICOMImportJobs: StaticOperationSchema;
|
|
106
|
+
export declare var ListImageSetVersions: StaticOperationSchema;
|
|
107
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
108
|
+
export declare var SearchImageSets: StaticOperationSchema;
|
|
109
|
+
export declare var StartDICOMImportJob: StaticOperationSchema;
|
|
110
|
+
export declare var TagResource: StaticOperationSchema;
|
|
111
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
112
|
+
export declare var UpdateImageSetMetadata: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -187,6 +190,7 @@ export interface ClientDefaults
|
|
|
187
190
|
retryMode?: string | __Provider<string>;
|
|
188
191
|
logger?: __Logger;
|
|
189
192
|
extensions?: RuntimeExtension[];
|
|
193
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
190
194
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
191
195
|
sdkStreamMixin?: __SdkStreamMixinInjector;
|
|
192
196
|
}
|
|
@@ -116,12 +116,19 @@ export declare class ValidationException extends __BaseException {
|
|
|
116
116
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
117
117
|
);
|
|
118
118
|
}
|
|
119
|
+
export declare const LosslessStorageFormat: {
|
|
120
|
+
readonly HTJ2K: "HTJ2K";
|
|
121
|
+
readonly JPEG_2000_LOSSLESS: "JPEG_2000_LOSSLESS";
|
|
122
|
+
};
|
|
123
|
+
export type LosslessStorageFormat =
|
|
124
|
+
(typeof LosslessStorageFormat)[keyof typeof LosslessStorageFormat];
|
|
119
125
|
export interface CreateDatastoreRequest {
|
|
120
126
|
datastoreName?: string | undefined;
|
|
121
127
|
clientToken?: string | undefined;
|
|
122
128
|
tags?: Record<string, string> | undefined;
|
|
123
129
|
kmsKeyArn?: string | undefined;
|
|
124
130
|
lambdaAuthorizerArn?: string | undefined;
|
|
131
|
+
losslessStorageFormat?: LosslessStorageFormat | undefined;
|
|
125
132
|
}
|
|
126
133
|
export declare const DatastoreStatus: {
|
|
127
134
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -152,6 +159,7 @@ export interface DatastoreProperties {
|
|
|
152
159
|
datastoreStatus: DatastoreStatus | undefined;
|
|
153
160
|
kmsKeyArn?: string | undefined;
|
|
154
161
|
lambdaAuthorizerArn?: string | undefined;
|
|
162
|
+
losslessStorageFormat?: LosslessStorageFormat | undefined;
|
|
155
163
|
datastoreArn?: string | undefined;
|
|
156
164
|
createdAt?: Date | undefined;
|
|
157
165
|
updatedAt?: Date | undefined;
|
|
@@ -232,6 +240,11 @@ export interface GetImageSetRequest {
|
|
|
232
240
|
export interface Overrides {
|
|
233
241
|
forced?: boolean | undefined;
|
|
234
242
|
}
|
|
243
|
+
export declare const StorageTier: {
|
|
244
|
+
readonly ARCHIVE_INSTANT_ACCESS: "ARCHIVE_INSTANT_ACCESS";
|
|
245
|
+
readonly FREQUENT_ACCESS: "FREQUENT_ACCESS";
|
|
246
|
+
};
|
|
247
|
+
export type StorageTier = (typeof StorageTier)[keyof typeof StorageTier];
|
|
235
248
|
export interface GetImageSetResponse {
|
|
236
249
|
datastoreId: string | undefined;
|
|
237
250
|
imageSetId: string | undefined;
|
|
@@ -245,6 +258,8 @@ export interface GetImageSetResponse {
|
|
|
245
258
|
imageSetArn?: string | undefined;
|
|
246
259
|
overrides?: Overrides | undefined;
|
|
247
260
|
isPrimary?: boolean | undefined;
|
|
261
|
+
lastAccessedAt?: Date | undefined;
|
|
262
|
+
storageTier?: StorageTier | undefined;
|
|
248
263
|
}
|
|
249
264
|
export interface GetImageSetMetadataRequest {
|
|
250
265
|
datastoreId: string | undefined;
|
|
@@ -457,7 +472,6 @@ export declare namespace SearchByAttributeValue {
|
|
|
457
472
|
isPrimary: (value: boolean) => T;
|
|
458
473
|
_: (name: string, value: any) => T;
|
|
459
474
|
}
|
|
460
|
-
const visit: <T>(value: SearchByAttributeValue, visitor: Visitor<T>) => T;
|
|
461
475
|
}
|
|
462
476
|
export interface SearchFilter {
|
|
463
477
|
values: SearchByAttributeValue[] | undefined;
|
|
@@ -511,6 +525,8 @@ export interface ImageSetsMetadataSummary {
|
|
|
511
525
|
version?: number | undefined;
|
|
512
526
|
createdAt?: Date | undefined;
|
|
513
527
|
updatedAt?: Date | undefined;
|
|
528
|
+
lastAccessedAt?: Date | undefined;
|
|
529
|
+
storageTier?: StorageTier | undefined;
|
|
514
530
|
DICOMTags?: DICOMTags | undefined;
|
|
515
531
|
isPrimary?: boolean | undefined;
|
|
516
532
|
}
|
|
@@ -573,7 +589,6 @@ export declare namespace MetadataUpdates {
|
|
|
573
589
|
revertToVersionId: (value: string) => T;
|
|
574
590
|
_: (name: string, value: any) => T;
|
|
575
591
|
}
|
|
576
|
-
const visit: <T>(value: MetadataUpdates, visitor: Visitor<T>) => T;
|
|
577
592
|
}
|
|
578
593
|
export interface UpdateImageSetMetadataRequest {
|
|
579
594
|
datastoreId: string | undefined;
|
|
@@ -592,48 +607,3 @@ export interface UpdateImageSetMetadataResponse {
|
|
|
592
607
|
updatedAt?: Date | undefined;
|
|
593
608
|
message?: string | undefined;
|
|
594
609
|
}
|
|
595
|
-
export declare const MetadataCopiesFilterSensitiveLog: (
|
|
596
|
-
obj: MetadataCopies
|
|
597
|
-
) => any;
|
|
598
|
-
export declare const CopySourceImageSetInformationFilterSensitiveLog: (
|
|
599
|
-
obj: CopySourceImageSetInformation
|
|
600
|
-
) => any;
|
|
601
|
-
export declare const CopyImageSetInformationFilterSensitiveLog: (
|
|
602
|
-
obj: CopyImageSetInformation
|
|
603
|
-
) => any;
|
|
604
|
-
export declare const CopyImageSetRequestFilterSensitiveLog: (
|
|
605
|
-
obj: CopyImageSetRequest
|
|
606
|
-
) => any;
|
|
607
|
-
export declare const GetImageFrameResponseFilterSensitiveLog: (
|
|
608
|
-
obj: GetImageFrameResponse
|
|
609
|
-
) => any;
|
|
610
|
-
export declare const GetImageSetMetadataResponseFilterSensitiveLog: (
|
|
611
|
-
obj: GetImageSetMetadataResponse
|
|
612
|
-
) => any;
|
|
613
|
-
export declare const DICOMStudyDateAndTimeFilterSensitiveLog: (
|
|
614
|
-
obj: DICOMStudyDateAndTime
|
|
615
|
-
) => any;
|
|
616
|
-
export declare const SearchByAttributeValueFilterSensitiveLog: (
|
|
617
|
-
obj: SearchByAttributeValue
|
|
618
|
-
) => any;
|
|
619
|
-
export declare const SearchFilterFilterSensitiveLog: (obj: SearchFilter) => any;
|
|
620
|
-
export declare const SearchCriteriaFilterSensitiveLog: (
|
|
621
|
-
obj: SearchCriteria
|
|
622
|
-
) => any;
|
|
623
|
-
export declare const SearchImageSetsRequestFilterSensitiveLog: (
|
|
624
|
-
obj: SearchImageSetsRequest
|
|
625
|
-
) => any;
|
|
626
|
-
export declare const DICOMTagsFilterSensitiveLog: (obj: DICOMTags) => any;
|
|
627
|
-
export declare const ImageSetsMetadataSummaryFilterSensitiveLog: (
|
|
628
|
-
obj: ImageSetsMetadataSummary
|
|
629
|
-
) => any;
|
|
630
|
-
export declare const SearchImageSetsResponseFilterSensitiveLog: (
|
|
631
|
-
obj: SearchImageSetsResponse
|
|
632
|
-
) => any;
|
|
633
|
-
export declare const DICOMUpdatesFilterSensitiveLog: (obj: DICOMUpdates) => any;
|
|
634
|
-
export declare const MetadataUpdatesFilterSensitiveLog: (
|
|
635
|
-
obj: MetadataUpdates
|
|
636
|
-
) => any;
|
|
637
|
-
export declare const UpdateImageSetMetadataRequestFilterSensitiveLog: (
|
|
638
|
-
obj: UpdateImageSetMetadataRequest
|
|
639
|
-
) => any;
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
42
46
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
43
47
|
userAgentAppId?:
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
42
46
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
43
47
|
retryStrategy?:
|
|
@@ -37,6 +37,10 @@ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
|
|
|
37
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
38
|
logger: import("@smithy/types").Logger;
|
|
39
39
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
41
|
+
import("@smithy/types").HttpRequest,
|
|
42
|
+
import("@smithy/types").HttpResponse
|
|
43
|
+
>;
|
|
40
44
|
defaultsMode:
|
|
41
45
|
| import("@smithy/smithy-client").DefaultsMode
|
|
42
46
|
| import("@smithy/types").Provider<
|
|
@@ -14,6 +14,10 @@ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MedicalImagingHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
18
|
+
import("@smithy/types").HttpRequest,
|
|
19
|
+
import("@smithy/types").HttpResponse
|
|
20
|
+
>;
|
|
17
21
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
18
22
|
serviceId: string;
|
|
19
23
|
urlParser: import("@smithy/types").UrlParser;
|