@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,313 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ CopyImageSetCommandInput,
4
+ CopyImageSetCommandOutput,
5
+ } from "./commands/CopyImageSetCommand";
6
+ import {
7
+ CreateDatastoreCommandInput,
8
+ CreateDatastoreCommandOutput,
9
+ } from "./commands/CreateDatastoreCommand";
10
+ import {
11
+ DeleteDatastoreCommandInput,
12
+ DeleteDatastoreCommandOutput,
13
+ } from "./commands/DeleteDatastoreCommand";
14
+ import {
15
+ DeleteImageSetCommandInput,
16
+ DeleteImageSetCommandOutput,
17
+ } from "./commands/DeleteImageSetCommand";
18
+ import {
19
+ GetDatastoreCommandInput,
20
+ GetDatastoreCommandOutput,
21
+ } from "./commands/GetDatastoreCommand";
22
+ import {
23
+ GetDICOMImportJobCommandInput,
24
+ GetDICOMImportJobCommandOutput,
25
+ } from "./commands/GetDICOMImportJobCommand";
26
+ import {
27
+ GetImageFrameCommandInput,
28
+ GetImageFrameCommandOutput,
29
+ } from "./commands/GetImageFrameCommand";
30
+ import {
31
+ GetImageSetCommandInput,
32
+ GetImageSetCommandOutput,
33
+ } from "./commands/GetImageSetCommand";
34
+ import {
35
+ GetImageSetMetadataCommandInput,
36
+ GetImageSetMetadataCommandOutput,
37
+ } from "./commands/GetImageSetMetadataCommand";
38
+ import {
39
+ ListDatastoresCommandInput,
40
+ ListDatastoresCommandOutput,
41
+ } from "./commands/ListDatastoresCommand";
42
+ import {
43
+ ListDICOMImportJobsCommandInput,
44
+ ListDICOMImportJobsCommandOutput,
45
+ } from "./commands/ListDICOMImportJobsCommand";
46
+ import {
47
+ ListImageSetVersionsCommandInput,
48
+ ListImageSetVersionsCommandOutput,
49
+ } from "./commands/ListImageSetVersionsCommand";
50
+ import {
51
+ ListTagsForResourceCommandInput,
52
+ ListTagsForResourceCommandOutput,
53
+ } from "./commands/ListTagsForResourceCommand";
54
+ import {
55
+ SearchImageSetsCommandInput,
56
+ SearchImageSetsCommandOutput,
57
+ } from "./commands/SearchImageSetsCommand";
58
+ import {
59
+ StartDICOMImportJobCommandInput,
60
+ StartDICOMImportJobCommandOutput,
61
+ } from "./commands/StartDICOMImportJobCommand";
62
+ import {
63
+ TagResourceCommandInput,
64
+ TagResourceCommandOutput,
65
+ } from "./commands/TagResourceCommand";
66
+ import {
67
+ UntagResourceCommandInput,
68
+ UntagResourceCommandOutput,
69
+ } from "./commands/UntagResourceCommand";
70
+ import {
71
+ UpdateImageSetMetadataCommandInput,
72
+ UpdateImageSetMetadataCommandOutput,
73
+ } from "./commands/UpdateImageSetMetadataCommand";
74
+ import { MedicalImagingClient } from "./MedicalImagingClient";
75
+ export interface MedicalImaging {
76
+ copyImageSet(
77
+ args: CopyImageSetCommandInput,
78
+ options?: __HttpHandlerOptions
79
+ ): Promise<CopyImageSetCommandOutput>;
80
+ copyImageSet(
81
+ args: CopyImageSetCommandInput,
82
+ cb: (err: any, data?: CopyImageSetCommandOutput) => void
83
+ ): void;
84
+ copyImageSet(
85
+ args: CopyImageSetCommandInput,
86
+ options: __HttpHandlerOptions,
87
+ cb: (err: any, data?: CopyImageSetCommandOutput) => void
88
+ ): void;
89
+ createDatastore(
90
+ args: CreateDatastoreCommandInput,
91
+ options?: __HttpHandlerOptions
92
+ ): Promise<CreateDatastoreCommandOutput>;
93
+ createDatastore(
94
+ args: CreateDatastoreCommandInput,
95
+ cb: (err: any, data?: CreateDatastoreCommandOutput) => void
96
+ ): void;
97
+ createDatastore(
98
+ args: CreateDatastoreCommandInput,
99
+ options: __HttpHandlerOptions,
100
+ cb: (err: any, data?: CreateDatastoreCommandOutput) => void
101
+ ): void;
102
+ deleteDatastore(
103
+ args: DeleteDatastoreCommandInput,
104
+ options?: __HttpHandlerOptions
105
+ ): Promise<DeleteDatastoreCommandOutput>;
106
+ deleteDatastore(
107
+ args: DeleteDatastoreCommandInput,
108
+ cb: (err: any, data?: DeleteDatastoreCommandOutput) => void
109
+ ): void;
110
+ deleteDatastore(
111
+ args: DeleteDatastoreCommandInput,
112
+ options: __HttpHandlerOptions,
113
+ cb: (err: any, data?: DeleteDatastoreCommandOutput) => void
114
+ ): void;
115
+ deleteImageSet(
116
+ args: DeleteImageSetCommandInput,
117
+ options?: __HttpHandlerOptions
118
+ ): Promise<DeleteImageSetCommandOutput>;
119
+ deleteImageSet(
120
+ args: DeleteImageSetCommandInput,
121
+ cb: (err: any, data?: DeleteImageSetCommandOutput) => void
122
+ ): void;
123
+ deleteImageSet(
124
+ args: DeleteImageSetCommandInput,
125
+ options: __HttpHandlerOptions,
126
+ cb: (err: any, data?: DeleteImageSetCommandOutput) => void
127
+ ): void;
128
+ getDatastore(
129
+ args: GetDatastoreCommandInput,
130
+ options?: __HttpHandlerOptions
131
+ ): Promise<GetDatastoreCommandOutput>;
132
+ getDatastore(
133
+ args: GetDatastoreCommandInput,
134
+ cb: (err: any, data?: GetDatastoreCommandOutput) => void
135
+ ): void;
136
+ getDatastore(
137
+ args: GetDatastoreCommandInput,
138
+ options: __HttpHandlerOptions,
139
+ cb: (err: any, data?: GetDatastoreCommandOutput) => void
140
+ ): void;
141
+ getDICOMImportJob(
142
+ args: GetDICOMImportJobCommandInput,
143
+ options?: __HttpHandlerOptions
144
+ ): Promise<GetDICOMImportJobCommandOutput>;
145
+ getDICOMImportJob(
146
+ args: GetDICOMImportJobCommandInput,
147
+ cb: (err: any, data?: GetDICOMImportJobCommandOutput) => void
148
+ ): void;
149
+ getDICOMImportJob(
150
+ args: GetDICOMImportJobCommandInput,
151
+ options: __HttpHandlerOptions,
152
+ cb: (err: any, data?: GetDICOMImportJobCommandOutput) => void
153
+ ): void;
154
+ getImageFrame(
155
+ args: GetImageFrameCommandInput,
156
+ options?: __HttpHandlerOptions
157
+ ): Promise<GetImageFrameCommandOutput>;
158
+ getImageFrame(
159
+ args: GetImageFrameCommandInput,
160
+ cb: (err: any, data?: GetImageFrameCommandOutput) => void
161
+ ): void;
162
+ getImageFrame(
163
+ args: GetImageFrameCommandInput,
164
+ options: __HttpHandlerOptions,
165
+ cb: (err: any, data?: GetImageFrameCommandOutput) => void
166
+ ): void;
167
+ getImageSet(
168
+ args: GetImageSetCommandInput,
169
+ options?: __HttpHandlerOptions
170
+ ): Promise<GetImageSetCommandOutput>;
171
+ getImageSet(
172
+ args: GetImageSetCommandInput,
173
+ cb: (err: any, data?: GetImageSetCommandOutput) => void
174
+ ): void;
175
+ getImageSet(
176
+ args: GetImageSetCommandInput,
177
+ options: __HttpHandlerOptions,
178
+ cb: (err: any, data?: GetImageSetCommandOutput) => void
179
+ ): void;
180
+ getImageSetMetadata(
181
+ args: GetImageSetMetadataCommandInput,
182
+ options?: __HttpHandlerOptions
183
+ ): Promise<GetImageSetMetadataCommandOutput>;
184
+ getImageSetMetadata(
185
+ args: GetImageSetMetadataCommandInput,
186
+ cb: (err: any, data?: GetImageSetMetadataCommandOutput) => void
187
+ ): void;
188
+ getImageSetMetadata(
189
+ args: GetImageSetMetadataCommandInput,
190
+ options: __HttpHandlerOptions,
191
+ cb: (err: any, data?: GetImageSetMetadataCommandOutput) => void
192
+ ): void;
193
+ listDatastores(
194
+ args: ListDatastoresCommandInput,
195
+ options?: __HttpHandlerOptions
196
+ ): Promise<ListDatastoresCommandOutput>;
197
+ listDatastores(
198
+ args: ListDatastoresCommandInput,
199
+ cb: (err: any, data?: ListDatastoresCommandOutput) => void
200
+ ): void;
201
+ listDatastores(
202
+ args: ListDatastoresCommandInput,
203
+ options: __HttpHandlerOptions,
204
+ cb: (err: any, data?: ListDatastoresCommandOutput) => void
205
+ ): void;
206
+ listDICOMImportJobs(
207
+ args: ListDICOMImportJobsCommandInput,
208
+ options?: __HttpHandlerOptions
209
+ ): Promise<ListDICOMImportJobsCommandOutput>;
210
+ listDICOMImportJobs(
211
+ args: ListDICOMImportJobsCommandInput,
212
+ cb: (err: any, data?: ListDICOMImportJobsCommandOutput) => void
213
+ ): void;
214
+ listDICOMImportJobs(
215
+ args: ListDICOMImportJobsCommandInput,
216
+ options: __HttpHandlerOptions,
217
+ cb: (err: any, data?: ListDICOMImportJobsCommandOutput) => void
218
+ ): void;
219
+ listImageSetVersions(
220
+ args: ListImageSetVersionsCommandInput,
221
+ options?: __HttpHandlerOptions
222
+ ): Promise<ListImageSetVersionsCommandOutput>;
223
+ listImageSetVersions(
224
+ args: ListImageSetVersionsCommandInput,
225
+ cb: (err: any, data?: ListImageSetVersionsCommandOutput) => void
226
+ ): void;
227
+ listImageSetVersions(
228
+ args: ListImageSetVersionsCommandInput,
229
+ options: __HttpHandlerOptions,
230
+ cb: (err: any, data?: ListImageSetVersionsCommandOutput) => void
231
+ ): void;
232
+ listTagsForResource(
233
+ args: ListTagsForResourceCommandInput,
234
+ options?: __HttpHandlerOptions
235
+ ): Promise<ListTagsForResourceCommandOutput>;
236
+ listTagsForResource(
237
+ args: ListTagsForResourceCommandInput,
238
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
239
+ ): void;
240
+ listTagsForResource(
241
+ args: ListTagsForResourceCommandInput,
242
+ options: __HttpHandlerOptions,
243
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
244
+ ): void;
245
+ searchImageSets(
246
+ args: SearchImageSetsCommandInput,
247
+ options?: __HttpHandlerOptions
248
+ ): Promise<SearchImageSetsCommandOutput>;
249
+ searchImageSets(
250
+ args: SearchImageSetsCommandInput,
251
+ cb: (err: any, data?: SearchImageSetsCommandOutput) => void
252
+ ): void;
253
+ searchImageSets(
254
+ args: SearchImageSetsCommandInput,
255
+ options: __HttpHandlerOptions,
256
+ cb: (err: any, data?: SearchImageSetsCommandOutput) => void
257
+ ): void;
258
+ startDICOMImportJob(
259
+ args: StartDICOMImportJobCommandInput,
260
+ options?: __HttpHandlerOptions
261
+ ): Promise<StartDICOMImportJobCommandOutput>;
262
+ startDICOMImportJob(
263
+ args: StartDICOMImportJobCommandInput,
264
+ cb: (err: any, data?: StartDICOMImportJobCommandOutput) => void
265
+ ): void;
266
+ startDICOMImportJob(
267
+ args: StartDICOMImportJobCommandInput,
268
+ options: __HttpHandlerOptions,
269
+ cb: (err: any, data?: StartDICOMImportJobCommandOutput) => void
270
+ ): void;
271
+ tagResource(
272
+ args: TagResourceCommandInput,
273
+ options?: __HttpHandlerOptions
274
+ ): Promise<TagResourceCommandOutput>;
275
+ tagResource(
276
+ args: TagResourceCommandInput,
277
+ cb: (err: any, data?: TagResourceCommandOutput) => void
278
+ ): void;
279
+ tagResource(
280
+ args: TagResourceCommandInput,
281
+ options: __HttpHandlerOptions,
282
+ cb: (err: any, data?: TagResourceCommandOutput) => void
283
+ ): void;
284
+ untagResource(
285
+ args: UntagResourceCommandInput,
286
+ options?: __HttpHandlerOptions
287
+ ): Promise<UntagResourceCommandOutput>;
288
+ untagResource(
289
+ args: UntagResourceCommandInput,
290
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
291
+ ): void;
292
+ untagResource(
293
+ args: UntagResourceCommandInput,
294
+ options: __HttpHandlerOptions,
295
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
296
+ ): void;
297
+ updateImageSetMetadata(
298
+ args: UpdateImageSetMetadataCommandInput,
299
+ options?: __HttpHandlerOptions
300
+ ): Promise<UpdateImageSetMetadataCommandOutput>;
301
+ updateImageSetMetadata(
302
+ args: UpdateImageSetMetadataCommandInput,
303
+ cb: (err: any, data?: UpdateImageSetMetadataCommandOutput) => void
304
+ ): void;
305
+ updateImageSetMetadata(
306
+ args: UpdateImageSetMetadataCommandInput,
307
+ options: __HttpHandlerOptions,
308
+ cb: (err: any, data?: UpdateImageSetMetadataCommandOutput) => void
309
+ ): void;
310
+ }
311
+ export declare class MedicalImaging
312
+ extends MedicalImagingClient
313
+ implements MedicalImaging {}
@@ -0,0 +1,223 @@
1
+ import {
2
+ HostHeaderInputConfig,
3
+ HostHeaderResolvedConfig,
4
+ } from "@aws-sdk/middleware-host-header";
5
+ import {
6
+ AwsAuthInputConfig,
7
+ AwsAuthResolvedConfig,
8
+ } from "@aws-sdk/middleware-signing";
9
+ import {
10
+ UserAgentInputConfig,
11
+ UserAgentResolvedConfig,
12
+ } from "@aws-sdk/middleware-user-agent";
13
+ import { Credentials as __Credentials } from "@aws-sdk/types";
14
+ import {
15
+ RegionInputConfig,
16
+ RegionResolvedConfig,
17
+ } from "@smithy/config-resolver";
18
+ import {
19
+ EndpointInputConfig,
20
+ EndpointResolvedConfig,
21
+ } from "@smithy/middleware-endpoint";
22
+ import {
23
+ RetryInputConfig,
24
+ RetryResolvedConfig,
25
+ } from "@smithy/middleware-retry";
26
+ import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
27
+ import {
28
+ Client as __Client,
29
+ DefaultsMode as __DefaultsMode,
30
+ SmithyConfiguration as __SmithyConfiguration,
31
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
32
+ } from "@smithy/smithy-client";
33
+ import {
34
+ BodyLengthCalculator as __BodyLengthCalculator,
35
+ ChecksumConstructor as __ChecksumConstructor,
36
+ Decoder as __Decoder,
37
+ Encoder as __Encoder,
38
+ HashConstructor as __HashConstructor,
39
+ HttpHandlerOptions as __HttpHandlerOptions,
40
+ Logger as __Logger,
41
+ Provider as __Provider,
42
+ Provider,
43
+ SdkStreamMixinInjector as __SdkStreamMixinInjector,
44
+ StreamCollector as __StreamCollector,
45
+ UrlParser as __UrlParser,
46
+ UserAgent as __UserAgent,
47
+ } from "@smithy/types";
48
+ import {
49
+ CopyImageSetCommandInput,
50
+ CopyImageSetCommandOutput,
51
+ } from "./commands/CopyImageSetCommand";
52
+ import {
53
+ CreateDatastoreCommandInput,
54
+ CreateDatastoreCommandOutput,
55
+ } from "./commands/CreateDatastoreCommand";
56
+ import {
57
+ DeleteDatastoreCommandInput,
58
+ DeleteDatastoreCommandOutput,
59
+ } from "./commands/DeleteDatastoreCommand";
60
+ import {
61
+ DeleteImageSetCommandInput,
62
+ DeleteImageSetCommandOutput,
63
+ } from "./commands/DeleteImageSetCommand";
64
+ import {
65
+ GetDatastoreCommandInput,
66
+ GetDatastoreCommandOutput,
67
+ } from "./commands/GetDatastoreCommand";
68
+ import {
69
+ GetDICOMImportJobCommandInput,
70
+ GetDICOMImportJobCommandOutput,
71
+ } from "./commands/GetDICOMImportJobCommand";
72
+ import {
73
+ GetImageFrameCommandInput,
74
+ GetImageFrameCommandOutput,
75
+ } from "./commands/GetImageFrameCommand";
76
+ import {
77
+ GetImageSetCommandInput,
78
+ GetImageSetCommandOutput,
79
+ } from "./commands/GetImageSetCommand";
80
+ import {
81
+ GetImageSetMetadataCommandInput,
82
+ GetImageSetMetadataCommandOutput,
83
+ } from "./commands/GetImageSetMetadataCommand";
84
+ import {
85
+ ListDatastoresCommandInput,
86
+ ListDatastoresCommandOutput,
87
+ } from "./commands/ListDatastoresCommand";
88
+ import {
89
+ ListDICOMImportJobsCommandInput,
90
+ ListDICOMImportJobsCommandOutput,
91
+ } from "./commands/ListDICOMImportJobsCommand";
92
+ import {
93
+ ListImageSetVersionsCommandInput,
94
+ ListImageSetVersionsCommandOutput,
95
+ } from "./commands/ListImageSetVersionsCommand";
96
+ import {
97
+ ListTagsForResourceCommandInput,
98
+ ListTagsForResourceCommandOutput,
99
+ } from "./commands/ListTagsForResourceCommand";
100
+ import {
101
+ SearchImageSetsCommandInput,
102
+ SearchImageSetsCommandOutput,
103
+ } from "./commands/SearchImageSetsCommand";
104
+ import {
105
+ StartDICOMImportJobCommandInput,
106
+ StartDICOMImportJobCommandOutput,
107
+ } from "./commands/StartDICOMImportJobCommand";
108
+ import {
109
+ TagResourceCommandInput,
110
+ TagResourceCommandOutput,
111
+ } from "./commands/TagResourceCommand";
112
+ import {
113
+ UntagResourceCommandInput,
114
+ UntagResourceCommandOutput,
115
+ } from "./commands/UntagResourceCommand";
116
+ import {
117
+ UpdateImageSetMetadataCommandInput,
118
+ UpdateImageSetMetadataCommandOutput,
119
+ } from "./commands/UpdateImageSetMetadataCommand";
120
+ import {
121
+ ClientInputEndpointParameters,
122
+ ClientResolvedEndpointParameters,
123
+ EndpointParameters,
124
+ } from "./endpoint/EndpointParameters";
125
+ export { __Client };
126
+ export type ServiceInputTypes =
127
+ | CopyImageSetCommandInput
128
+ | CreateDatastoreCommandInput
129
+ | DeleteDatastoreCommandInput
130
+ | DeleteImageSetCommandInput
131
+ | GetDICOMImportJobCommandInput
132
+ | GetDatastoreCommandInput
133
+ | GetImageFrameCommandInput
134
+ | GetImageSetCommandInput
135
+ | GetImageSetMetadataCommandInput
136
+ | ListDICOMImportJobsCommandInput
137
+ | ListDatastoresCommandInput
138
+ | ListImageSetVersionsCommandInput
139
+ | ListTagsForResourceCommandInput
140
+ | SearchImageSetsCommandInput
141
+ | StartDICOMImportJobCommandInput
142
+ | TagResourceCommandInput
143
+ | UntagResourceCommandInput
144
+ | UpdateImageSetMetadataCommandInput;
145
+ export type ServiceOutputTypes =
146
+ | CopyImageSetCommandOutput
147
+ | CreateDatastoreCommandOutput
148
+ | DeleteDatastoreCommandOutput
149
+ | DeleteImageSetCommandOutput
150
+ | GetDICOMImportJobCommandOutput
151
+ | GetDatastoreCommandOutput
152
+ | GetImageFrameCommandOutput
153
+ | GetImageSetCommandOutput
154
+ | GetImageSetMetadataCommandOutput
155
+ | ListDICOMImportJobsCommandOutput
156
+ | ListDatastoresCommandOutput
157
+ | ListImageSetVersionsCommandOutput
158
+ | ListTagsForResourceCommandOutput
159
+ | SearchImageSetsCommandOutput
160
+ | StartDICOMImportJobCommandOutput
161
+ | TagResourceCommandOutput
162
+ | UntagResourceCommandOutput
163
+ | UpdateImageSetMetadataCommandOutput;
164
+ export interface ClientDefaults
165
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
166
+ requestHandler?: __HttpHandler;
167
+ sha256?: __ChecksumConstructor | __HashConstructor;
168
+ urlParser?: __UrlParser;
169
+ bodyLengthChecker?: __BodyLengthCalculator;
170
+ streamCollector?: __StreamCollector;
171
+ base64Decoder?: __Decoder;
172
+ base64Encoder?: __Encoder;
173
+ utf8Decoder?: __Decoder;
174
+ utf8Encoder?: __Encoder;
175
+ runtime?: string;
176
+ disableHostPrefix?: boolean;
177
+ serviceId?: string;
178
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
179
+ useFipsEndpoint?: boolean | __Provider<boolean>;
180
+ region?: string | __Provider<string>;
181
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
182
+ defaultUserAgentProvider?: Provider<__UserAgent>;
183
+ maxAttempts?: number | __Provider<number>;
184
+ retryMode?: string | __Provider<string>;
185
+ logger?: __Logger;
186
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
187
+ sdkStreamMixin?: __SdkStreamMixinInjector;
188
+ }
189
+ export type MedicalImagingClientConfigType = Partial<
190
+ __SmithyConfiguration<__HttpHandlerOptions>
191
+ > &
192
+ ClientDefaults &
193
+ RegionInputConfig &
194
+ EndpointInputConfig<EndpointParameters> &
195
+ RetryInputConfig &
196
+ HostHeaderInputConfig &
197
+ AwsAuthInputConfig &
198
+ UserAgentInputConfig &
199
+ ClientInputEndpointParameters;
200
+ export interface MedicalImagingClientConfig
201
+ extends MedicalImagingClientConfigType {}
202
+ export type MedicalImagingClientResolvedConfigType =
203
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
204
+ Required<ClientDefaults> &
205
+ RegionResolvedConfig &
206
+ EndpointResolvedConfig<EndpointParameters> &
207
+ RetryResolvedConfig &
208
+ HostHeaderResolvedConfig &
209
+ AwsAuthResolvedConfig &
210
+ UserAgentResolvedConfig &
211
+ ClientResolvedEndpointParameters;
212
+ export interface MedicalImagingClientResolvedConfig
213
+ extends MedicalImagingClientResolvedConfigType {}
214
+ export declare class MedicalImagingClient extends __Client<
215
+ __HttpHandlerOptions,
216
+ ServiceInputTypes,
217
+ ServiceOutputTypes,
218
+ MedicalImagingClientResolvedConfig
219
+ > {
220
+ readonly config: MedicalImagingClientResolvedConfig;
221
+ constructor(configuration: MedicalImagingClientConfig);
222
+ destroy(): void;
223
+ }
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ MedicalImagingClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MedicalImagingClient";
14
+ import { CopyImageSetRequest, CopyImageSetResponse } from "../models/models_0";
15
+ export { __MetadataBearer, $Command };
16
+ export interface CopyImageSetCommandInput extends CopyImageSetRequest {}
17
+ export interface CopyImageSetCommandOutput
18
+ extends CopyImageSetResponse,
19
+ __MetadataBearer {}
20
+ export declare class CopyImageSetCommand extends $Command<
21
+ CopyImageSetCommandInput,
22
+ CopyImageSetCommandOutput,
23
+ MedicalImagingClientResolvedConfig
24
+ > {
25
+ readonly input: CopyImageSetCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: CopyImageSetCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: MedicalImagingClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<CopyImageSetCommandInput, CopyImageSetCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ MedicalImagingClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MedicalImagingClient";
14
+ import {
15
+ CreateDatastoreRequest,
16
+ CreateDatastoreResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateDatastoreCommandInput extends CreateDatastoreRequest {}
20
+ export interface CreateDatastoreCommandOutput
21
+ extends CreateDatastoreResponse,
22
+ __MetadataBearer {}
23
+ export declare class CreateDatastoreCommand extends $Command<
24
+ CreateDatastoreCommandInput,
25
+ CreateDatastoreCommandOutput,
26
+ MedicalImagingClientResolvedConfig
27
+ > {
28
+ readonly input: CreateDatastoreCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: CreateDatastoreCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MedicalImagingClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<CreateDatastoreCommandInput, CreateDatastoreCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ MedicalImagingClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MedicalImagingClient";
14
+ import {
15
+ DeleteDatastoreRequest,
16
+ DeleteDatastoreResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DeleteDatastoreCommandInput extends DeleteDatastoreRequest {}
20
+ export interface DeleteDatastoreCommandOutput
21
+ extends DeleteDatastoreResponse,
22
+ __MetadataBearer {}
23
+ export declare class DeleteDatastoreCommand extends $Command<
24
+ DeleteDatastoreCommandInput,
25
+ DeleteDatastoreCommandOutput,
26
+ MedicalImagingClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteDatastoreCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: DeleteDatastoreCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MedicalImagingClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DeleteDatastoreCommandInput, DeleteDatastoreCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ MedicalImagingClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MedicalImagingClient";
14
+ import {
15
+ DeleteImageSetRequest,
16
+ DeleteImageSetResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DeleteImageSetCommandInput extends DeleteImageSetRequest {}
20
+ export interface DeleteImageSetCommandOutput
21
+ extends DeleteImageSetResponse,
22
+ __MetadataBearer {}
23
+ export declare class DeleteImageSetCommand extends $Command<
24
+ DeleteImageSetCommandInput,
25
+ DeleteImageSetCommandOutput,
26
+ MedicalImagingClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteImageSetCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: DeleteImageSetCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MedicalImagingClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DeleteImageSetCommandInput, DeleteImageSetCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }