@aws-sdk/client-medical-imaging 3.373.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.
Files changed (159) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +498 -0
  3. package/dist-cjs/MedicalImaging.js +47 -0
  4. package/dist-cjs/MedicalImagingClient.js +41 -0
  5. package/dist-cjs/commands/CopyImageSetCommand.js +46 -0
  6. package/dist-cjs/commands/CreateDatastoreCommand.js +46 -0
  7. package/dist-cjs/commands/DeleteDatastoreCommand.js +46 -0
  8. package/dist-cjs/commands/DeleteImageSetCommand.js +46 -0
  9. package/dist-cjs/commands/GetDICOMImportJobCommand.js +46 -0
  10. package/dist-cjs/commands/GetDatastoreCommand.js +46 -0
  11. package/dist-cjs/commands/GetImageFrameCommand.js +47 -0
  12. package/dist-cjs/commands/GetImageSetCommand.js +46 -0
  13. package/dist-cjs/commands/GetImageSetMetadataCommand.js +47 -0
  14. package/dist-cjs/commands/ListDICOMImportJobsCommand.js +46 -0
  15. package/dist-cjs/commands/ListDatastoresCommand.js +46 -0
  16. package/dist-cjs/commands/ListImageSetVersionsCommand.js +46 -0
  17. package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
  18. package/dist-cjs/commands/SearchImageSetsCommand.js +47 -0
  19. package/dist-cjs/commands/StartDICOMImportJobCommand.js +46 -0
  20. package/dist-cjs/commands/TagResourceCommand.js +46 -0
  21. package/dist-cjs/commands/UntagResourceCommand.js +46 -0
  22. package/dist-cjs/commands/UpdateImageSetMetadataCommand.js +47 -0
  23. package/dist-cjs/commands/index.js +21 -0
  24. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  25. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  26. package/dist-cjs/endpoint/ruleset.js +7 -0
  27. package/dist-cjs/index.js +11 -0
  28. package/dist-cjs/models/MedicalImagingServiceException.js +12 -0
  29. package/dist-cjs/models/index.js +4 -0
  30. package/dist-cjs/models/models_0.js +248 -0
  31. package/dist-cjs/pagination/Interfaces.js +2 -0
  32. package/dist-cjs/pagination/ListDICOMImportJobsPaginator.js +29 -0
  33. package/dist-cjs/pagination/ListDatastoresPaginator.js +29 -0
  34. package/dist-cjs/pagination/ListImageSetVersionsPaginator.js +29 -0
  35. package/dist-cjs/pagination/SearchImageSetsPaginator.js +29 -0
  36. package/dist-cjs/pagination/index.js +8 -0
  37. package/dist-cjs/protocols/Aws_restJson1.js +1693 -0
  38. package/dist-cjs/runtimeConfig.browser.js +39 -0
  39. package/dist-cjs/runtimeConfig.js +48 -0
  40. package/dist-cjs/runtimeConfig.native.js +15 -0
  41. package/dist-cjs/runtimeConfig.shared.js +23 -0
  42. package/dist-es/MedicalImaging.js +43 -0
  43. package/dist-es/MedicalImagingClient.js +37 -0
  44. package/dist-es/commands/CopyImageSetCommand.js +42 -0
  45. package/dist-es/commands/CreateDatastoreCommand.js +42 -0
  46. package/dist-es/commands/DeleteDatastoreCommand.js +42 -0
  47. package/dist-es/commands/DeleteImageSetCommand.js +42 -0
  48. package/dist-es/commands/GetDICOMImportJobCommand.js +42 -0
  49. package/dist-es/commands/GetDatastoreCommand.js +42 -0
  50. package/dist-es/commands/GetImageFrameCommand.js +43 -0
  51. package/dist-es/commands/GetImageSetCommand.js +42 -0
  52. package/dist-es/commands/GetImageSetMetadataCommand.js +43 -0
  53. package/dist-es/commands/ListDICOMImportJobsCommand.js +42 -0
  54. package/dist-es/commands/ListDatastoresCommand.js +42 -0
  55. package/dist-es/commands/ListImageSetVersionsCommand.js +42 -0
  56. package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
  57. package/dist-es/commands/SearchImageSetsCommand.js +43 -0
  58. package/dist-es/commands/StartDICOMImportJobCommand.js +42 -0
  59. package/dist-es/commands/TagResourceCommand.js +42 -0
  60. package/dist-es/commands/UntagResourceCommand.js +42 -0
  61. package/dist-es/commands/UpdateImageSetMetadataCommand.js +43 -0
  62. package/dist-es/commands/index.js +18 -0
  63. package/dist-es/endpoint/EndpointParameters.js +8 -0
  64. package/dist-es/endpoint/endpointResolver.js +8 -0
  65. package/dist-es/endpoint/ruleset.js +4 -0
  66. package/dist-es/index.js +6 -0
  67. package/dist-es/models/MedicalImagingServiceException.js +8 -0
  68. package/dist-es/models/index.js +1 -0
  69. package/dist-es/models/models_0.js +225 -0
  70. package/dist-es/pagination/Interfaces.js +1 -0
  71. package/dist-es/pagination/ListDICOMImportJobsPaginator.js +25 -0
  72. package/dist-es/pagination/ListDatastoresPaginator.js +25 -0
  73. package/dist-es/pagination/ListImageSetVersionsPaginator.js +25 -0
  74. package/dist-es/pagination/SearchImageSetsPaginator.js +25 -0
  75. package/dist-es/pagination/index.js +5 -0
  76. package/dist-es/protocols/Aws_restJson1.js +1654 -0
  77. package/dist-es/runtimeConfig.browser.js +34 -0
  78. package/dist-es/runtimeConfig.js +43 -0
  79. package/dist-es/runtimeConfig.native.js +11 -0
  80. package/dist-es/runtimeConfig.shared.js +19 -0
  81. package/dist-types/MedicalImaging.d.ts +285 -0
  82. package/dist-types/MedicalImagingClient.d.ts +334 -0
  83. package/dist-types/commands/CopyImageSetCommand.d.ts +122 -0
  84. package/dist-types/commands/CreateDatastoreCommand.d.ts +97 -0
  85. package/dist-types/commands/DeleteDatastoreCommand.d.ts +95 -0
  86. package/dist-types/commands/DeleteImageSetCommand.d.ts +95 -0
  87. package/dist-types/commands/GetDICOMImportJobCommand.d.ts +103 -0
  88. package/dist-types/commands/GetDatastoreCommand.d.ts +96 -0
  89. package/dist-types/commands/GetImageFrameCommand.d.ts +96 -0
  90. package/dist-types/commands/GetImageSetCommand.d.ts +102 -0
  91. package/dist-types/commands/GetImageSetMetadataCommand.d.ts +95 -0
  92. package/dist-types/commands/ListDICOMImportJobsCommand.d.ts +106 -0
  93. package/dist-types/commands/ListDatastoresCommand.d.ts +97 -0
  94. package/dist-types/commands/ListImageSetVersionsCommand.d.ts +106 -0
  95. package/dist-types/commands/ListTagsForResourceCommand.d.ts +90 -0
  96. package/dist-types/commands/SearchImageSetsCommand.d.ts +135 -0
  97. package/dist-types/commands/StartDICOMImportJobCommand.d.ts +104 -0
  98. package/dist-types/commands/TagResourceCommand.d.ts +89 -0
  99. package/dist-types/commands/UntagResourceCommand.d.ts +89 -0
  100. package/dist-types/commands/UpdateImageSetMetadataCommand.d.ts +109 -0
  101. package/dist-types/commands/index.d.ts +18 -0
  102. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  103. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  104. package/dist-types/endpoint/ruleset.d.ts +2 -0
  105. package/dist-types/index.d.ts +160 -0
  106. package/dist-types/models/MedicalImagingServiceException.d.ts +13 -0
  107. package/dist-types/models/index.d.ts +1 -0
  108. package/dist-types/models/models_0.d.ts +1363 -0
  109. package/dist-types/pagination/Interfaces.d.ts +8 -0
  110. package/dist-types/pagination/ListDICOMImportJobsPaginator.d.ts +7 -0
  111. package/dist-types/pagination/ListDatastoresPaginator.d.ts +7 -0
  112. package/dist-types/pagination/ListImageSetVersionsPaginator.d.ts +7 -0
  113. package/dist-types/pagination/SearchImageSetsPaginator.d.ts +7 -0
  114. package/dist-types/pagination/index.d.ts +5 -0
  115. package/dist-types/protocols/Aws_restJson1.d.ts +164 -0
  116. package/dist-types/runtimeConfig.browser.d.ts +43 -0
  117. package/dist-types/runtimeConfig.d.ts +43 -0
  118. package/dist-types/runtimeConfig.native.d.ts +42 -0
  119. package/dist-types/runtimeConfig.shared.d.ts +19 -0
  120. package/dist-types/ts3.4/MedicalImaging.d.ts +313 -0
  121. package/dist-types/ts3.4/MedicalImagingClient.d.ts +223 -0
  122. package/dist-types/ts3.4/commands/CopyImageSetCommand.d.ts +35 -0
  123. package/dist-types/ts3.4/commands/CreateDatastoreCommand.d.ts +38 -0
  124. package/dist-types/ts3.4/commands/DeleteDatastoreCommand.d.ts +38 -0
  125. package/dist-types/ts3.4/commands/DeleteImageSetCommand.d.ts +38 -0
  126. package/dist-types/ts3.4/commands/GetDICOMImportJobCommand.d.ts +39 -0
  127. package/dist-types/ts3.4/commands/GetDatastoreCommand.d.ts +35 -0
  128. package/dist-types/ts3.4/commands/GetImageFrameCommand.d.ts +39 -0
  129. package/dist-types/ts3.4/commands/GetImageSetCommand.d.ts +35 -0
  130. package/dist-types/ts3.4/commands/GetImageSetMetadataCommand.d.ts +43 -0
  131. package/dist-types/ts3.4/commands/ListDICOMImportJobsCommand.d.ts +39 -0
  132. package/dist-types/ts3.4/commands/ListDatastoresCommand.d.ts +38 -0
  133. package/dist-types/ts3.4/commands/ListImageSetVersionsCommand.d.ts +42 -0
  134. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  135. package/dist-types/ts3.4/commands/SearchImageSetsCommand.d.ts +38 -0
  136. package/dist-types/ts3.4/commands/StartDICOMImportJobCommand.d.ts +39 -0
  137. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  138. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
  139. package/dist-types/ts3.4/commands/UpdateImageSetMetadataCommand.d.ts +42 -0
  140. package/dist-types/ts3.4/commands/index.d.ts +18 -0
  141. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
  142. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  143. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  144. package/dist-types/ts3.4/index.d.ts +6 -0
  145. package/dist-types/ts3.4/models/MedicalImagingServiceException.d.ts +8 -0
  146. package/dist-types/ts3.4/models/index.d.ts +1 -0
  147. package/dist-types/ts3.4/models/models_0.d.ts +513 -0
  148. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  149. package/dist-types/ts3.4/pagination/ListDICOMImportJobsPaginator.d.ts +11 -0
  150. package/dist-types/ts3.4/pagination/ListDatastoresPaginator.d.ts +11 -0
  151. package/dist-types/ts3.4/pagination/ListImageSetVersionsPaginator.d.ts +11 -0
  152. package/dist-types/ts3.4/pagination/SearchImageSetsPaginator.d.ts +11 -0
  153. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  154. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +224 -0
  155. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +90 -0
  156. package/dist-types/ts3.4/runtimeConfig.d.ts +90 -0
  157. package/dist-types/ts3.4/runtimeConfig.native.d.ts +81 -0
  158. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
  159. package/package.json +102 -0
@@ -0,0 +1,513 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { Readable } from "stream";
3
+ import { MedicalImagingServiceException as __BaseException } from "./MedicalImagingServiceException";
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+ constructor(
8
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
+ );
10
+ }
11
+ export declare class ConflictException extends __BaseException {
12
+ readonly name: "ConflictException";
13
+ readonly $fault: "client";
14
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
15
+ }
16
+ export interface CopyDestinationImageSet {
17
+ imageSetId: string | undefined;
18
+ latestVersionId: string | undefined;
19
+ }
20
+ export interface CopySourceImageSetInformation {
21
+ latestVersionId: string | undefined;
22
+ }
23
+ export interface CopyImageSetInformation {
24
+ sourceImageSet: CopySourceImageSetInformation | undefined;
25
+ destinationImageSet?: CopyDestinationImageSet;
26
+ }
27
+ export interface CopyImageSetRequest {
28
+ datastoreId: string | undefined;
29
+ sourceImageSetId: string | undefined;
30
+ copyImageSetInformation: CopyImageSetInformation | undefined;
31
+ }
32
+ export declare const ImageSetState: {
33
+ readonly ACTIVE: "ACTIVE";
34
+ readonly DELETED: "DELETED";
35
+ readonly LOCKED: "LOCKED";
36
+ };
37
+ export type ImageSetState = (typeof ImageSetState)[keyof typeof ImageSetState];
38
+ export declare const ImageSetWorkflowStatus: {
39
+ readonly COPIED: "COPIED";
40
+ readonly COPYING: "COPYING";
41
+ readonly COPYING_WITH_READ_ONLY_ACCESS: "COPYING_WITH_READ_ONLY_ACCESS";
42
+ readonly COPY_FAILED: "COPY_FAILED";
43
+ readonly CREATED: "CREATED";
44
+ readonly DELETED: "DELETED";
45
+ readonly DELETING: "DELETING";
46
+ readonly UPDATED: "UPDATED";
47
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
48
+ readonly UPDATING: "UPDATING";
49
+ };
50
+ export type ImageSetWorkflowStatus =
51
+ (typeof ImageSetWorkflowStatus)[keyof typeof ImageSetWorkflowStatus];
52
+ export interface CopyDestinationImageSetProperties {
53
+ imageSetId: string | undefined;
54
+ latestVersionId: string | undefined;
55
+ imageSetState?: ImageSetState | string;
56
+ imageSetWorkflowStatus?: ImageSetWorkflowStatus | string;
57
+ createdAt?: Date;
58
+ updatedAt?: Date;
59
+ imageSetArn?: string;
60
+ }
61
+ export interface CopySourceImageSetProperties {
62
+ imageSetId: string | undefined;
63
+ latestVersionId: string | undefined;
64
+ imageSetState?: ImageSetState | string;
65
+ imageSetWorkflowStatus?: ImageSetWorkflowStatus | string;
66
+ createdAt?: Date;
67
+ updatedAt?: Date;
68
+ imageSetArn?: string;
69
+ }
70
+ export interface CopyImageSetResponse {
71
+ datastoreId: string | undefined;
72
+ sourceImageSetProperties: CopySourceImageSetProperties | undefined;
73
+ destinationImageSetProperties: CopyDestinationImageSetProperties | undefined;
74
+ }
75
+ export declare class InternalServerException extends __BaseException {
76
+ readonly name: "InternalServerException";
77
+ readonly $fault: "server";
78
+ constructor(
79
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
80
+ );
81
+ }
82
+ export declare class ResourceNotFoundException extends __BaseException {
83
+ readonly name: "ResourceNotFoundException";
84
+ readonly $fault: "client";
85
+ constructor(
86
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
87
+ );
88
+ }
89
+ export declare class ServiceQuotaExceededException extends __BaseException {
90
+ readonly name: "ServiceQuotaExceededException";
91
+ readonly $fault: "client";
92
+ constructor(
93
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
94
+ );
95
+ }
96
+ export declare class ThrottlingException extends __BaseException {
97
+ readonly name: "ThrottlingException";
98
+ readonly $fault: "client";
99
+ constructor(
100
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
101
+ );
102
+ }
103
+ export declare class ValidationException extends __BaseException {
104
+ readonly name: "ValidationException";
105
+ readonly $fault: "client";
106
+ constructor(
107
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
108
+ );
109
+ }
110
+ export interface CreateDatastoreRequest {
111
+ datastoreName?: string;
112
+ clientToken?: string;
113
+ tags?: Record<string, string>;
114
+ kmsKeyArn?: string;
115
+ }
116
+ export declare const DatastoreStatus: {
117
+ readonly ACTIVE: "ACTIVE";
118
+ readonly CREATE_FAILED: "CREATE_FAILED";
119
+ readonly CREATING: "CREATING";
120
+ readonly DELETED: "DELETED";
121
+ readonly DELETING: "DELETING";
122
+ };
123
+ export type DatastoreStatus =
124
+ (typeof DatastoreStatus)[keyof typeof DatastoreStatus];
125
+ export interface CreateDatastoreResponse {
126
+ datastoreId: string | undefined;
127
+ datastoreStatus: DatastoreStatus | string | undefined;
128
+ }
129
+ export interface DeleteDatastoreRequest {
130
+ datastoreId: string | undefined;
131
+ }
132
+ export interface DeleteDatastoreResponse {
133
+ datastoreId: string | undefined;
134
+ datastoreStatus: DatastoreStatus | string | undefined;
135
+ }
136
+ export interface GetDatastoreRequest {
137
+ datastoreId: string | undefined;
138
+ }
139
+ export interface DatastoreProperties {
140
+ datastoreId: string | undefined;
141
+ datastoreName: string | undefined;
142
+ datastoreStatus: DatastoreStatus | string | undefined;
143
+ kmsKeyArn?: string;
144
+ datastoreArn?: string;
145
+ createdAt?: Date;
146
+ updatedAt?: Date;
147
+ }
148
+ export interface GetDatastoreResponse {
149
+ datastoreProperties: DatastoreProperties | undefined;
150
+ }
151
+ export interface ListDatastoresRequest {
152
+ datastoreStatus?: DatastoreStatus | string;
153
+ nextToken?: string;
154
+ maxResults?: number;
155
+ }
156
+ export interface DatastoreSummary {
157
+ datastoreId: string | undefined;
158
+ datastoreName: string | undefined;
159
+ datastoreStatus: DatastoreStatus | string | undefined;
160
+ datastoreArn?: string;
161
+ createdAt?: Date;
162
+ updatedAt?: Date;
163
+ }
164
+ export interface ListDatastoresResponse {
165
+ datastoreSummaries?: DatastoreSummary[];
166
+ nextToken?: string;
167
+ }
168
+ export interface DeleteImageSetRequest {
169
+ datastoreId: string | undefined;
170
+ imageSetId: string | undefined;
171
+ }
172
+ export interface DeleteImageSetResponse {
173
+ datastoreId: string | undefined;
174
+ imageSetId: string | undefined;
175
+ imageSetState: ImageSetState | string | undefined;
176
+ imageSetWorkflowStatus: ImageSetWorkflowStatus | string | undefined;
177
+ }
178
+ export interface GetDICOMImportJobRequest {
179
+ datastoreId: string | undefined;
180
+ jobId: string | undefined;
181
+ }
182
+ export declare const JobStatus: {
183
+ readonly COMPLETED: "COMPLETED";
184
+ readonly FAILED: "FAILED";
185
+ readonly IN_PROGRESS: "IN_PROGRESS";
186
+ readonly SUBMITTED: "SUBMITTED";
187
+ };
188
+ export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
189
+ export interface DICOMImportJobProperties {
190
+ jobId: string | undefined;
191
+ jobName: string | undefined;
192
+ jobStatus: JobStatus | string | undefined;
193
+ datastoreId: string | undefined;
194
+ dataAccessRoleArn: string | undefined;
195
+ endedAt?: Date;
196
+ submittedAt?: Date;
197
+ inputS3Uri: string | undefined;
198
+ outputS3Uri: string | undefined;
199
+ message?: string;
200
+ }
201
+ export interface GetDICOMImportJobResponse {
202
+ jobProperties: DICOMImportJobProperties | undefined;
203
+ }
204
+ export interface ImageFrameInformation {
205
+ imageFrameId: string | undefined;
206
+ }
207
+ export interface GetImageFrameRequest {
208
+ datastoreId: string | undefined;
209
+ imageSetId: string | undefined;
210
+ imageFrameInformation: ImageFrameInformation | undefined;
211
+ }
212
+ export interface GetImageFrameResponse {
213
+ imageFrameBlob: Readable | ReadableStream | Blob | undefined;
214
+ contentType?: string;
215
+ }
216
+ export interface GetImageSetRequest {
217
+ datastoreId: string | undefined;
218
+ imageSetId: string | undefined;
219
+ versionId?: string;
220
+ }
221
+ export interface GetImageSetResponse {
222
+ datastoreId: string | undefined;
223
+ imageSetId: string | undefined;
224
+ versionId: string | undefined;
225
+ imageSetState: ImageSetState | string | undefined;
226
+ imageSetWorkflowStatus?: ImageSetWorkflowStatus | string;
227
+ createdAt?: Date;
228
+ updatedAt?: Date;
229
+ deletedAt?: Date;
230
+ message?: string;
231
+ imageSetArn?: string;
232
+ }
233
+ export interface GetImageSetMetadataRequest {
234
+ datastoreId: string | undefined;
235
+ imageSetId: string | undefined;
236
+ versionId?: string;
237
+ }
238
+ export interface GetImageSetMetadataResponse {
239
+ imageSetMetadataBlob: Readable | ReadableStream | Blob | undefined;
240
+ contentType?: string;
241
+ contentEncoding?: string;
242
+ }
243
+ export interface ListDICOMImportJobsRequest {
244
+ datastoreId: string | undefined;
245
+ jobStatus?: JobStatus | string;
246
+ nextToken?: string;
247
+ maxResults?: number;
248
+ }
249
+ export interface DICOMImportJobSummary {
250
+ jobId: string | undefined;
251
+ jobName: string | undefined;
252
+ jobStatus: JobStatus | string | undefined;
253
+ datastoreId: string | undefined;
254
+ dataAccessRoleArn?: string;
255
+ endedAt?: Date;
256
+ submittedAt?: Date;
257
+ message?: string;
258
+ }
259
+ export interface ListDICOMImportJobsResponse {
260
+ jobSummaries: DICOMImportJobSummary[] | undefined;
261
+ nextToken?: string;
262
+ }
263
+ export interface ListImageSetVersionsRequest {
264
+ datastoreId: string | undefined;
265
+ imageSetId: string | undefined;
266
+ nextToken?: string;
267
+ maxResults?: number;
268
+ }
269
+ export interface ImageSetProperties {
270
+ imageSetId: string | undefined;
271
+ versionId: string | undefined;
272
+ imageSetState: ImageSetState | string | undefined;
273
+ ImageSetWorkflowStatus?: ImageSetWorkflowStatus | string;
274
+ createdAt?: Date;
275
+ updatedAt?: Date;
276
+ deletedAt?: Date;
277
+ message?: string;
278
+ }
279
+ export interface ListImageSetVersionsResponse {
280
+ imageSetPropertiesList: ImageSetProperties[] | undefined;
281
+ nextToken?: string;
282
+ }
283
+ export interface ListTagsForResourceRequest {
284
+ resourceArn: string | undefined;
285
+ }
286
+ export interface ListTagsForResourceResponse {
287
+ tags: Record<string, string> | undefined;
288
+ }
289
+ export declare const Operator: {
290
+ readonly BETWEEN: "BETWEEN";
291
+ readonly EQUAL: "EQUAL";
292
+ };
293
+ export type Operator = (typeof Operator)[keyof typeof Operator];
294
+ export interface DICOMStudyDateAndTime {
295
+ DICOMStudyDate: string | undefined;
296
+ DICOMStudyTime?: string;
297
+ }
298
+ export type SearchByAttributeValue =
299
+ | SearchByAttributeValue.DICOMAccessionNumberMember
300
+ | SearchByAttributeValue.DICOMPatientIdMember
301
+ | SearchByAttributeValue.DICOMStudyDateAndTimeMember
302
+ | SearchByAttributeValue.DICOMStudyIdMember
303
+ | SearchByAttributeValue.DICOMStudyInstanceUIDMember
304
+ | SearchByAttributeValue.CreatedAtMember
305
+ | SearchByAttributeValue.$UnknownMember;
306
+ export declare namespace SearchByAttributeValue {
307
+ interface DICOMPatientIdMember {
308
+ DICOMPatientId: string;
309
+ DICOMAccessionNumber?: never;
310
+ DICOMStudyId?: never;
311
+ DICOMStudyInstanceUID?: never;
312
+ createdAt?: never;
313
+ DICOMStudyDateAndTime?: never;
314
+ $unknown?: never;
315
+ }
316
+ interface DICOMAccessionNumberMember {
317
+ DICOMPatientId?: never;
318
+ DICOMAccessionNumber: string;
319
+ DICOMStudyId?: never;
320
+ DICOMStudyInstanceUID?: never;
321
+ createdAt?: never;
322
+ DICOMStudyDateAndTime?: never;
323
+ $unknown?: never;
324
+ }
325
+ interface DICOMStudyIdMember {
326
+ DICOMPatientId?: never;
327
+ DICOMAccessionNumber?: never;
328
+ DICOMStudyId: string;
329
+ DICOMStudyInstanceUID?: never;
330
+ createdAt?: never;
331
+ DICOMStudyDateAndTime?: never;
332
+ $unknown?: never;
333
+ }
334
+ interface DICOMStudyInstanceUIDMember {
335
+ DICOMPatientId?: never;
336
+ DICOMAccessionNumber?: never;
337
+ DICOMStudyId?: never;
338
+ DICOMStudyInstanceUID: string;
339
+ createdAt?: never;
340
+ DICOMStudyDateAndTime?: never;
341
+ $unknown?: never;
342
+ }
343
+ interface CreatedAtMember {
344
+ DICOMPatientId?: never;
345
+ DICOMAccessionNumber?: never;
346
+ DICOMStudyId?: never;
347
+ DICOMStudyInstanceUID?: never;
348
+ createdAt: Date;
349
+ DICOMStudyDateAndTime?: never;
350
+ $unknown?: never;
351
+ }
352
+ interface DICOMStudyDateAndTimeMember {
353
+ DICOMPatientId?: never;
354
+ DICOMAccessionNumber?: never;
355
+ DICOMStudyId?: never;
356
+ DICOMStudyInstanceUID?: never;
357
+ createdAt?: never;
358
+ DICOMStudyDateAndTime: DICOMStudyDateAndTime;
359
+ $unknown?: never;
360
+ }
361
+ interface $UnknownMember {
362
+ DICOMPatientId?: never;
363
+ DICOMAccessionNumber?: never;
364
+ DICOMStudyId?: never;
365
+ DICOMStudyInstanceUID?: never;
366
+ createdAt?: never;
367
+ DICOMStudyDateAndTime?: never;
368
+ $unknown: [string, any];
369
+ }
370
+ interface Visitor<T> {
371
+ DICOMPatientId: (value: string) => T;
372
+ DICOMAccessionNumber: (value: string) => T;
373
+ DICOMStudyId: (value: string) => T;
374
+ DICOMStudyInstanceUID: (value: string) => T;
375
+ createdAt: (value: Date) => T;
376
+ DICOMStudyDateAndTime: (value: DICOMStudyDateAndTime) => T;
377
+ _: (name: string, value: any) => T;
378
+ }
379
+ const visit: <T>(value: SearchByAttributeValue, visitor: Visitor<T>) => T;
380
+ }
381
+ export interface SearchFilter {
382
+ values: SearchByAttributeValue[] | undefined;
383
+ operator: Operator | string | undefined;
384
+ }
385
+ export interface SearchCriteria {
386
+ filters?: SearchFilter[];
387
+ }
388
+ export interface SearchImageSetsRequest {
389
+ datastoreId: string | undefined;
390
+ searchCriteria?: SearchCriteria;
391
+ maxResults?: number;
392
+ nextToken?: string;
393
+ }
394
+ export interface DICOMTags {
395
+ DICOMPatientId?: string;
396
+ DICOMPatientName?: string;
397
+ DICOMPatientBirthDate?: string;
398
+ DICOMPatientSex?: string;
399
+ DICOMStudyInstanceUID?: string;
400
+ DICOMStudyId?: string;
401
+ DICOMStudyDescription?: string;
402
+ DICOMNumberOfStudyRelatedSeries?: number;
403
+ DICOMNumberOfStudyRelatedInstances?: number;
404
+ DICOMAccessionNumber?: string;
405
+ DICOMStudyDate?: string;
406
+ DICOMStudyTime?: string;
407
+ }
408
+ export interface ImageSetsMetadataSummary {
409
+ imageSetId: string | undefined;
410
+ version?: number;
411
+ createdAt?: Date;
412
+ updatedAt?: Date;
413
+ DICOMTags?: DICOMTags;
414
+ }
415
+ export interface SearchImageSetsResponse {
416
+ imageSetsMetadataSummaries: ImageSetsMetadataSummary[] | undefined;
417
+ nextToken?: string;
418
+ }
419
+ export interface StartDICOMImportJobRequest {
420
+ jobName?: string;
421
+ dataAccessRoleArn: string | undefined;
422
+ clientToken?: string;
423
+ datastoreId: string | undefined;
424
+ inputS3Uri: string | undefined;
425
+ outputS3Uri: string | undefined;
426
+ }
427
+ export interface StartDICOMImportJobResponse {
428
+ datastoreId: string | undefined;
429
+ jobId: string | undefined;
430
+ jobStatus: JobStatus | string | undefined;
431
+ submittedAt: Date | undefined;
432
+ }
433
+ export interface TagResourceRequest {
434
+ resourceArn: string | undefined;
435
+ tags: Record<string, string> | undefined;
436
+ }
437
+ export interface TagResourceResponse {}
438
+ export interface UntagResourceRequest {
439
+ resourceArn: string | undefined;
440
+ tagKeys: string[] | undefined;
441
+ }
442
+ export interface UntagResourceResponse {}
443
+ export interface DICOMUpdates {
444
+ removableAttributes?: Uint8Array;
445
+ updatableAttributes?: Uint8Array;
446
+ }
447
+ export type MetadataUpdates =
448
+ | MetadataUpdates.DICOMUpdatesMember
449
+ | MetadataUpdates.$UnknownMember;
450
+ export declare namespace MetadataUpdates {
451
+ interface DICOMUpdatesMember {
452
+ DICOMUpdates: DICOMUpdates;
453
+ $unknown?: never;
454
+ }
455
+ interface $UnknownMember {
456
+ DICOMUpdates?: never;
457
+ $unknown: [string, any];
458
+ }
459
+ interface Visitor<T> {
460
+ DICOMUpdates: (value: DICOMUpdates) => T;
461
+ _: (name: string, value: any) => T;
462
+ }
463
+ const visit: <T>(value: MetadataUpdates, visitor: Visitor<T>) => T;
464
+ }
465
+ export interface UpdateImageSetMetadataRequest {
466
+ datastoreId: string | undefined;
467
+ imageSetId: string | undefined;
468
+ latestVersionId: string | undefined;
469
+ updateImageSetMetadataUpdates: MetadataUpdates | undefined;
470
+ }
471
+ export interface UpdateImageSetMetadataResponse {
472
+ datastoreId: string | undefined;
473
+ imageSetId: string | undefined;
474
+ latestVersionId: string | undefined;
475
+ imageSetState: ImageSetState | string | undefined;
476
+ imageSetWorkflowStatus?: ImageSetWorkflowStatus | string;
477
+ createdAt?: Date;
478
+ updatedAt?: Date;
479
+ message?: string;
480
+ }
481
+ export declare const GetImageFrameResponseFilterSensitiveLog: (
482
+ obj: GetImageFrameResponse
483
+ ) => any;
484
+ export declare const GetImageSetMetadataResponseFilterSensitiveLog: (
485
+ obj: GetImageSetMetadataResponse
486
+ ) => any;
487
+ export declare const DICOMStudyDateAndTimeFilterSensitiveLog: (
488
+ obj: DICOMStudyDateAndTime
489
+ ) => any;
490
+ export declare const SearchByAttributeValueFilterSensitiveLog: (
491
+ obj: SearchByAttributeValue
492
+ ) => any;
493
+ export declare const SearchFilterFilterSensitiveLog: (obj: SearchFilter) => any;
494
+ export declare const SearchCriteriaFilterSensitiveLog: (
495
+ obj: SearchCriteria
496
+ ) => any;
497
+ export declare const SearchImageSetsRequestFilterSensitiveLog: (
498
+ obj: SearchImageSetsRequest
499
+ ) => any;
500
+ export declare const DICOMTagsFilterSensitiveLog: (obj: DICOMTags) => any;
501
+ export declare const ImageSetsMetadataSummaryFilterSensitiveLog: (
502
+ obj: ImageSetsMetadataSummary
503
+ ) => any;
504
+ export declare const SearchImageSetsResponseFilterSensitiveLog: (
505
+ obj: SearchImageSetsResponse
506
+ ) => any;
507
+ export declare const DICOMUpdatesFilterSensitiveLog: (obj: DICOMUpdates) => any;
508
+ export declare const MetadataUpdatesFilterSensitiveLog: (
509
+ obj: MetadataUpdates
510
+ ) => any;
511
+ export declare const UpdateImageSetMetadataRequestFilterSensitiveLog: (
512
+ obj: UpdateImageSetMetadataRequest
513
+ ) => any;
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { MedicalImagingClient } from "../MedicalImagingClient";
3
+ export interface MedicalImagingPaginationConfiguration
4
+ extends PaginationConfiguration {
5
+ client: MedicalImagingClient;
6
+ }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListDICOMImportJobsCommandInput,
4
+ ListDICOMImportJobsCommandOutput,
5
+ } from "../commands/ListDICOMImportJobsCommand";
6
+ import { MedicalImagingPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListDICOMImportJobs(
8
+ config: MedicalImagingPaginationConfiguration,
9
+ input: ListDICOMImportJobsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListDICOMImportJobsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListDatastoresCommandInput,
4
+ ListDatastoresCommandOutput,
5
+ } from "../commands/ListDatastoresCommand";
6
+ import { MedicalImagingPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListDatastores(
8
+ config: MedicalImagingPaginationConfiguration,
9
+ input: ListDatastoresCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListDatastoresCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListImageSetVersionsCommandInput,
4
+ ListImageSetVersionsCommandOutput,
5
+ } from "../commands/ListImageSetVersionsCommand";
6
+ import { MedicalImagingPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListImageSetVersions(
8
+ config: MedicalImagingPaginationConfiguration,
9
+ input: ListImageSetVersionsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListImageSetVersionsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ SearchImageSetsCommandInput,
4
+ SearchImageSetsCommandOutput,
5
+ } from "../commands/SearchImageSetsCommand";
6
+ import { MedicalImagingPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateSearchImageSets(
8
+ config: MedicalImagingPaginationConfiguration,
9
+ input: SearchImageSetsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<SearchImageSetsCommandOutput>;
@@ -0,0 +1,5 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListDICOMImportJobsPaginator";
3
+ export * from "./ListDatastoresPaginator";
4
+ export * from "./ListImageSetVersionsPaginator";
5
+ export * from "./SearchImageSetsPaginator";