@aws-sdk/client-medical-imaging 3.1087.0 → 3.1088.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/MedicalImaging.d.ts +61 -69
- package/dist-types/ts3.4/MedicalImagingClient.d.ts +8 -24
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CopyImageSetCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateDatastoreCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/DeleteDatastoreCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteImageSetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetDICOMImportJobCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetDatastoreCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetImageFrameCommand.d.ts +6 -14
- package/dist-types/ts3.4/commands/GetImageSetCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetImageSetMetadataCommand.d.ts +7 -13
- package/dist-types/ts3.4/commands/ListDICOMImportJobsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListDatastoresCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListImageSetVersionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/SearchImageSetsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StartDICOMImportJobCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateImageSetMetadataCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +1 -2
- package/dist-types/ts3.4/models/errors.d.ts +8 -24
- package/dist-types/ts3.4/models/models_0.d.ts +1 -3
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -31,10 +31,7 @@ import {
|
|
|
31
31
|
GetImageFrameCommandInput,
|
|
32
32
|
GetImageFrameCommandOutput,
|
|
33
33
|
} from "./commands/GetImageFrameCommand";
|
|
34
|
-
import {
|
|
35
|
-
GetImageSetCommandInput,
|
|
36
|
-
GetImageSetCommandOutput,
|
|
37
|
-
} from "./commands/GetImageSetCommand";
|
|
34
|
+
import { GetImageSetCommandInput, GetImageSetCommandOutput } from "./commands/GetImageSetCommand";
|
|
38
35
|
import {
|
|
39
36
|
GetImageSetMetadataCommandInput,
|
|
40
37
|
GetImageSetMetadataCommandOutput,
|
|
@@ -63,10 +60,7 @@ import {
|
|
|
63
60
|
StartDICOMImportJobCommandInput,
|
|
64
61
|
StartDICOMImportJobCommandOutput,
|
|
65
62
|
} from "./commands/StartDICOMImportJobCommand";
|
|
66
|
-
import {
|
|
67
|
-
TagResourceCommandInput,
|
|
68
|
-
TagResourceCommandOutput,
|
|
69
|
-
} from "./commands/TagResourceCommand";
|
|
63
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
70
64
|
import {
|
|
71
65
|
UntagResourceCommandInput,
|
|
72
66
|
UntagResourceCommandOutput,
|
|
@@ -79,268 +73,266 @@ import { MedicalImagingClient } from "./MedicalImagingClient";
|
|
|
79
73
|
export interface MedicalImaging {
|
|
80
74
|
copyImageSet(
|
|
81
75
|
args: CopyImageSetCommandInput,
|
|
82
|
-
options?: __HttpHandlerOptions
|
|
76
|
+
options?: __HttpHandlerOptions,
|
|
83
77
|
): Promise<CopyImageSetCommandOutput>;
|
|
84
78
|
copyImageSet(
|
|
85
79
|
args: CopyImageSetCommandInput,
|
|
86
|
-
cb: (err: any, data?: CopyImageSetCommandOutput) => void
|
|
80
|
+
cb: (err: any, data?: CopyImageSetCommandOutput) => void,
|
|
87
81
|
): void;
|
|
88
82
|
copyImageSet(
|
|
89
83
|
args: CopyImageSetCommandInput,
|
|
90
84
|
options: __HttpHandlerOptions,
|
|
91
|
-
cb: (err: any, data?: CopyImageSetCommandOutput) => void
|
|
85
|
+
cb: (err: any, data?: CopyImageSetCommandOutput) => void,
|
|
92
86
|
): void;
|
|
93
87
|
createDatastore(
|
|
94
88
|
args: CreateDatastoreCommandInput,
|
|
95
|
-
options?: __HttpHandlerOptions
|
|
89
|
+
options?: __HttpHandlerOptions,
|
|
96
90
|
): Promise<CreateDatastoreCommandOutput>;
|
|
97
91
|
createDatastore(
|
|
98
92
|
args: CreateDatastoreCommandInput,
|
|
99
|
-
cb: (err: any, data?: CreateDatastoreCommandOutput) => void
|
|
93
|
+
cb: (err: any, data?: CreateDatastoreCommandOutput) => void,
|
|
100
94
|
): void;
|
|
101
95
|
createDatastore(
|
|
102
96
|
args: CreateDatastoreCommandInput,
|
|
103
97
|
options: __HttpHandlerOptions,
|
|
104
|
-
cb: (err: any, data?: CreateDatastoreCommandOutput) => void
|
|
98
|
+
cb: (err: any, data?: CreateDatastoreCommandOutput) => void,
|
|
105
99
|
): void;
|
|
106
100
|
deleteDatastore(
|
|
107
101
|
args: DeleteDatastoreCommandInput,
|
|
108
|
-
options?: __HttpHandlerOptions
|
|
102
|
+
options?: __HttpHandlerOptions,
|
|
109
103
|
): Promise<DeleteDatastoreCommandOutput>;
|
|
110
104
|
deleteDatastore(
|
|
111
105
|
args: DeleteDatastoreCommandInput,
|
|
112
|
-
cb: (err: any, data?: DeleteDatastoreCommandOutput) => void
|
|
106
|
+
cb: (err: any, data?: DeleteDatastoreCommandOutput) => void,
|
|
113
107
|
): void;
|
|
114
108
|
deleteDatastore(
|
|
115
109
|
args: DeleteDatastoreCommandInput,
|
|
116
110
|
options: __HttpHandlerOptions,
|
|
117
|
-
cb: (err: any, data?: DeleteDatastoreCommandOutput) => void
|
|
111
|
+
cb: (err: any, data?: DeleteDatastoreCommandOutput) => void,
|
|
118
112
|
): void;
|
|
119
113
|
deleteImageSet(
|
|
120
114
|
args: DeleteImageSetCommandInput,
|
|
121
|
-
options?: __HttpHandlerOptions
|
|
115
|
+
options?: __HttpHandlerOptions,
|
|
122
116
|
): Promise<DeleteImageSetCommandOutput>;
|
|
123
117
|
deleteImageSet(
|
|
124
118
|
args: DeleteImageSetCommandInput,
|
|
125
|
-
cb: (err: any, data?: DeleteImageSetCommandOutput) => void
|
|
119
|
+
cb: (err: any, data?: DeleteImageSetCommandOutput) => void,
|
|
126
120
|
): void;
|
|
127
121
|
deleteImageSet(
|
|
128
122
|
args: DeleteImageSetCommandInput,
|
|
129
123
|
options: __HttpHandlerOptions,
|
|
130
|
-
cb: (err: any, data?: DeleteImageSetCommandOutput) => void
|
|
124
|
+
cb: (err: any, data?: DeleteImageSetCommandOutput) => void,
|
|
131
125
|
): void;
|
|
132
126
|
getDatastore(
|
|
133
127
|
args: GetDatastoreCommandInput,
|
|
134
|
-
options?: __HttpHandlerOptions
|
|
128
|
+
options?: __HttpHandlerOptions,
|
|
135
129
|
): Promise<GetDatastoreCommandOutput>;
|
|
136
130
|
getDatastore(
|
|
137
131
|
args: GetDatastoreCommandInput,
|
|
138
|
-
cb: (err: any, data?: GetDatastoreCommandOutput) => void
|
|
132
|
+
cb: (err: any, data?: GetDatastoreCommandOutput) => void,
|
|
139
133
|
): void;
|
|
140
134
|
getDatastore(
|
|
141
135
|
args: GetDatastoreCommandInput,
|
|
142
136
|
options: __HttpHandlerOptions,
|
|
143
|
-
cb: (err: any, data?: GetDatastoreCommandOutput) => void
|
|
137
|
+
cb: (err: any, data?: GetDatastoreCommandOutput) => void,
|
|
144
138
|
): void;
|
|
145
139
|
getDICOMImportJob(
|
|
146
140
|
args: GetDICOMImportJobCommandInput,
|
|
147
|
-
options?: __HttpHandlerOptions
|
|
141
|
+
options?: __HttpHandlerOptions,
|
|
148
142
|
): Promise<GetDICOMImportJobCommandOutput>;
|
|
149
143
|
getDICOMImportJob(
|
|
150
144
|
args: GetDICOMImportJobCommandInput,
|
|
151
|
-
cb: (err: any, data?: GetDICOMImportJobCommandOutput) => void
|
|
145
|
+
cb: (err: any, data?: GetDICOMImportJobCommandOutput) => void,
|
|
152
146
|
): void;
|
|
153
147
|
getDICOMImportJob(
|
|
154
148
|
args: GetDICOMImportJobCommandInput,
|
|
155
149
|
options: __HttpHandlerOptions,
|
|
156
|
-
cb: (err: any, data?: GetDICOMImportJobCommandOutput) => void
|
|
150
|
+
cb: (err: any, data?: GetDICOMImportJobCommandOutput) => void,
|
|
157
151
|
): void;
|
|
158
152
|
getImageFrame(
|
|
159
153
|
args: GetImageFrameCommandInput,
|
|
160
|
-
options?: __HttpHandlerOptions
|
|
154
|
+
options?: __HttpHandlerOptions,
|
|
161
155
|
): Promise<GetImageFrameCommandOutput>;
|
|
162
156
|
getImageFrame(
|
|
163
157
|
args: GetImageFrameCommandInput,
|
|
164
|
-
cb: (err: any, data?: GetImageFrameCommandOutput) => void
|
|
158
|
+
cb: (err: any, data?: GetImageFrameCommandOutput) => void,
|
|
165
159
|
): void;
|
|
166
160
|
getImageFrame(
|
|
167
161
|
args: GetImageFrameCommandInput,
|
|
168
162
|
options: __HttpHandlerOptions,
|
|
169
|
-
cb: (err: any, data?: GetImageFrameCommandOutput) => void
|
|
163
|
+
cb: (err: any, data?: GetImageFrameCommandOutput) => void,
|
|
170
164
|
): void;
|
|
171
165
|
getImageSet(
|
|
172
166
|
args: GetImageSetCommandInput,
|
|
173
|
-
options?: __HttpHandlerOptions
|
|
167
|
+
options?: __HttpHandlerOptions,
|
|
174
168
|
): Promise<GetImageSetCommandOutput>;
|
|
175
169
|
getImageSet(
|
|
176
170
|
args: GetImageSetCommandInput,
|
|
177
|
-
cb: (err: any, data?: GetImageSetCommandOutput) => void
|
|
171
|
+
cb: (err: any, data?: GetImageSetCommandOutput) => void,
|
|
178
172
|
): void;
|
|
179
173
|
getImageSet(
|
|
180
174
|
args: GetImageSetCommandInput,
|
|
181
175
|
options: __HttpHandlerOptions,
|
|
182
|
-
cb: (err: any, data?: GetImageSetCommandOutput) => void
|
|
176
|
+
cb: (err: any, data?: GetImageSetCommandOutput) => void,
|
|
183
177
|
): void;
|
|
184
178
|
getImageSetMetadata(
|
|
185
179
|
args: GetImageSetMetadataCommandInput,
|
|
186
|
-
options?: __HttpHandlerOptions
|
|
180
|
+
options?: __HttpHandlerOptions,
|
|
187
181
|
): Promise<GetImageSetMetadataCommandOutput>;
|
|
188
182
|
getImageSetMetadata(
|
|
189
183
|
args: GetImageSetMetadataCommandInput,
|
|
190
|
-
cb: (err: any, data?: GetImageSetMetadataCommandOutput) => void
|
|
184
|
+
cb: (err: any, data?: GetImageSetMetadataCommandOutput) => void,
|
|
191
185
|
): void;
|
|
192
186
|
getImageSetMetadata(
|
|
193
187
|
args: GetImageSetMetadataCommandInput,
|
|
194
188
|
options: __HttpHandlerOptions,
|
|
195
|
-
cb: (err: any, data?: GetImageSetMetadataCommandOutput) => void
|
|
189
|
+
cb: (err: any, data?: GetImageSetMetadataCommandOutput) => void,
|
|
196
190
|
): void;
|
|
197
191
|
listDatastores(): Promise<ListDatastoresCommandOutput>;
|
|
198
192
|
listDatastores(
|
|
199
193
|
args: ListDatastoresCommandInput,
|
|
200
|
-
options?: __HttpHandlerOptions
|
|
194
|
+
options?: __HttpHandlerOptions,
|
|
201
195
|
): Promise<ListDatastoresCommandOutput>;
|
|
202
196
|
listDatastores(
|
|
203
197
|
args: ListDatastoresCommandInput,
|
|
204
|
-
cb: (err: any, data?: ListDatastoresCommandOutput) => void
|
|
198
|
+
cb: (err: any, data?: ListDatastoresCommandOutput) => void,
|
|
205
199
|
): void;
|
|
206
200
|
listDatastores(
|
|
207
201
|
args: ListDatastoresCommandInput,
|
|
208
202
|
options: __HttpHandlerOptions,
|
|
209
|
-
cb: (err: any, data?: ListDatastoresCommandOutput) => void
|
|
203
|
+
cb: (err: any, data?: ListDatastoresCommandOutput) => void,
|
|
210
204
|
): void;
|
|
211
205
|
listDICOMImportJobs(
|
|
212
206
|
args: ListDICOMImportJobsCommandInput,
|
|
213
|
-
options?: __HttpHandlerOptions
|
|
207
|
+
options?: __HttpHandlerOptions,
|
|
214
208
|
): Promise<ListDICOMImportJobsCommandOutput>;
|
|
215
209
|
listDICOMImportJobs(
|
|
216
210
|
args: ListDICOMImportJobsCommandInput,
|
|
217
|
-
cb: (err: any, data?: ListDICOMImportJobsCommandOutput) => void
|
|
211
|
+
cb: (err: any, data?: ListDICOMImportJobsCommandOutput) => void,
|
|
218
212
|
): void;
|
|
219
213
|
listDICOMImportJobs(
|
|
220
214
|
args: ListDICOMImportJobsCommandInput,
|
|
221
215
|
options: __HttpHandlerOptions,
|
|
222
|
-
cb: (err: any, data?: ListDICOMImportJobsCommandOutput) => void
|
|
216
|
+
cb: (err: any, data?: ListDICOMImportJobsCommandOutput) => void,
|
|
223
217
|
): void;
|
|
224
218
|
listImageSetVersions(
|
|
225
219
|
args: ListImageSetVersionsCommandInput,
|
|
226
|
-
options?: __HttpHandlerOptions
|
|
220
|
+
options?: __HttpHandlerOptions,
|
|
227
221
|
): Promise<ListImageSetVersionsCommandOutput>;
|
|
228
222
|
listImageSetVersions(
|
|
229
223
|
args: ListImageSetVersionsCommandInput,
|
|
230
|
-
cb: (err: any, data?: ListImageSetVersionsCommandOutput) => void
|
|
224
|
+
cb: (err: any, data?: ListImageSetVersionsCommandOutput) => void,
|
|
231
225
|
): void;
|
|
232
226
|
listImageSetVersions(
|
|
233
227
|
args: ListImageSetVersionsCommandInput,
|
|
234
228
|
options: __HttpHandlerOptions,
|
|
235
|
-
cb: (err: any, data?: ListImageSetVersionsCommandOutput) => void
|
|
229
|
+
cb: (err: any, data?: ListImageSetVersionsCommandOutput) => void,
|
|
236
230
|
): void;
|
|
237
231
|
listTagsForResource(
|
|
238
232
|
args: ListTagsForResourceCommandInput,
|
|
239
|
-
options?: __HttpHandlerOptions
|
|
233
|
+
options?: __HttpHandlerOptions,
|
|
240
234
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
241
235
|
listTagsForResource(
|
|
242
236
|
args: ListTagsForResourceCommandInput,
|
|
243
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
237
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
244
238
|
): void;
|
|
245
239
|
listTagsForResource(
|
|
246
240
|
args: ListTagsForResourceCommandInput,
|
|
247
241
|
options: __HttpHandlerOptions,
|
|
248
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
242
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
249
243
|
): void;
|
|
250
244
|
searchImageSets(
|
|
251
245
|
args: SearchImageSetsCommandInput,
|
|
252
|
-
options?: __HttpHandlerOptions
|
|
246
|
+
options?: __HttpHandlerOptions,
|
|
253
247
|
): Promise<SearchImageSetsCommandOutput>;
|
|
254
248
|
searchImageSets(
|
|
255
249
|
args: SearchImageSetsCommandInput,
|
|
256
|
-
cb: (err: any, data?: SearchImageSetsCommandOutput) => void
|
|
250
|
+
cb: (err: any, data?: SearchImageSetsCommandOutput) => void,
|
|
257
251
|
): void;
|
|
258
252
|
searchImageSets(
|
|
259
253
|
args: SearchImageSetsCommandInput,
|
|
260
254
|
options: __HttpHandlerOptions,
|
|
261
|
-
cb: (err: any, data?: SearchImageSetsCommandOutput) => void
|
|
255
|
+
cb: (err: any, data?: SearchImageSetsCommandOutput) => void,
|
|
262
256
|
): void;
|
|
263
257
|
startDICOMImportJob(
|
|
264
258
|
args: StartDICOMImportJobCommandInput,
|
|
265
|
-
options?: __HttpHandlerOptions
|
|
259
|
+
options?: __HttpHandlerOptions,
|
|
266
260
|
): Promise<StartDICOMImportJobCommandOutput>;
|
|
267
261
|
startDICOMImportJob(
|
|
268
262
|
args: StartDICOMImportJobCommandInput,
|
|
269
|
-
cb: (err: any, data?: StartDICOMImportJobCommandOutput) => void
|
|
263
|
+
cb: (err: any, data?: StartDICOMImportJobCommandOutput) => void,
|
|
270
264
|
): void;
|
|
271
265
|
startDICOMImportJob(
|
|
272
266
|
args: StartDICOMImportJobCommandInput,
|
|
273
267
|
options: __HttpHandlerOptions,
|
|
274
|
-
cb: (err: any, data?: StartDICOMImportJobCommandOutput) => void
|
|
268
|
+
cb: (err: any, data?: StartDICOMImportJobCommandOutput) => void,
|
|
275
269
|
): void;
|
|
276
270
|
tagResource(
|
|
277
271
|
args: TagResourceCommandInput,
|
|
278
|
-
options?: __HttpHandlerOptions
|
|
272
|
+
options?: __HttpHandlerOptions,
|
|
279
273
|
): Promise<TagResourceCommandOutput>;
|
|
280
274
|
tagResource(
|
|
281
275
|
args: TagResourceCommandInput,
|
|
282
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
276
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
283
277
|
): void;
|
|
284
278
|
tagResource(
|
|
285
279
|
args: TagResourceCommandInput,
|
|
286
280
|
options: __HttpHandlerOptions,
|
|
287
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
281
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
288
282
|
): void;
|
|
289
283
|
untagResource(
|
|
290
284
|
args: UntagResourceCommandInput,
|
|
291
|
-
options?: __HttpHandlerOptions
|
|
285
|
+
options?: __HttpHandlerOptions,
|
|
292
286
|
): Promise<UntagResourceCommandOutput>;
|
|
293
287
|
untagResource(
|
|
294
288
|
args: UntagResourceCommandInput,
|
|
295
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
289
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
296
290
|
): void;
|
|
297
291
|
untagResource(
|
|
298
292
|
args: UntagResourceCommandInput,
|
|
299
293
|
options: __HttpHandlerOptions,
|
|
300
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
294
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
301
295
|
): void;
|
|
302
296
|
updateImageSetMetadata(
|
|
303
297
|
args: UpdateImageSetMetadataCommandInput,
|
|
304
|
-
options?: __HttpHandlerOptions
|
|
298
|
+
options?: __HttpHandlerOptions,
|
|
305
299
|
): Promise<UpdateImageSetMetadataCommandOutput>;
|
|
306
300
|
updateImageSetMetadata(
|
|
307
301
|
args: UpdateImageSetMetadataCommandInput,
|
|
308
|
-
cb: (err: any, data?: UpdateImageSetMetadataCommandOutput) => void
|
|
302
|
+
cb: (err: any, data?: UpdateImageSetMetadataCommandOutput) => void,
|
|
309
303
|
): void;
|
|
310
304
|
updateImageSetMetadata(
|
|
311
305
|
args: UpdateImageSetMetadataCommandInput,
|
|
312
306
|
options: __HttpHandlerOptions,
|
|
313
|
-
cb: (err: any, data?: UpdateImageSetMetadataCommandOutput) => void
|
|
307
|
+
cb: (err: any, data?: UpdateImageSetMetadataCommandOutput) => void,
|
|
314
308
|
): void;
|
|
315
309
|
paginateListDatastores(
|
|
316
310
|
args?: ListDatastoresCommandInput,
|
|
317
311
|
paginationConfig?: Pick<
|
|
318
312
|
PaginationConfiguration,
|
|
319
313
|
Exclude<keyof PaginationConfiguration, "client">
|
|
320
|
-
|
|
314
|
+
>,
|
|
321
315
|
): Paginator<ListDatastoresCommandOutput>;
|
|
322
316
|
paginateListDICOMImportJobs(
|
|
323
317
|
args: ListDICOMImportJobsCommandInput,
|
|
324
318
|
paginationConfig?: Pick<
|
|
325
319
|
PaginationConfiguration,
|
|
326
320
|
Exclude<keyof PaginationConfiguration, "client">
|
|
327
|
-
|
|
321
|
+
>,
|
|
328
322
|
): Paginator<ListDICOMImportJobsCommandOutput>;
|
|
329
323
|
paginateListImageSetVersions(
|
|
330
324
|
args: ListImageSetVersionsCommandInput,
|
|
331
325
|
paginationConfig?: Pick<
|
|
332
326
|
PaginationConfiguration,
|
|
333
327
|
Exclude<keyof PaginationConfiguration, "client">
|
|
334
|
-
|
|
328
|
+
>,
|
|
335
329
|
): Paginator<ListImageSetVersionsCommandOutput>;
|
|
336
330
|
paginateSearchImageSets(
|
|
337
331
|
args: SearchImageSetsCommandInput,
|
|
338
332
|
paginationConfig?: Pick<
|
|
339
333
|
PaginationConfiguration,
|
|
340
334
|
Exclude<keyof PaginationConfiguration, "client">
|
|
341
|
-
|
|
335
|
+
>,
|
|
342
336
|
): Paginator<SearchImageSetsCommandOutput>;
|
|
343
337
|
}
|
|
344
|
-
export declare class MedicalImaging
|
|
345
|
-
extends MedicalImagingClient
|
|
346
|
-
implements MedicalImaging {}
|
|
338
|
+
export declare class MedicalImaging extends MedicalImagingClient implements MedicalImaging {}
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -65,10 +62,7 @@ import {
|
|
|
65
62
|
GetImageFrameCommandInput,
|
|
66
63
|
GetImageFrameCommandOutput,
|
|
67
64
|
} from "./commands/GetImageFrameCommand";
|
|
68
|
-
import {
|
|
69
|
-
GetImageSetCommandInput,
|
|
70
|
-
GetImageSetCommandOutput,
|
|
71
|
-
} from "./commands/GetImageSetCommand";
|
|
65
|
+
import { GetImageSetCommandInput, GetImageSetCommandOutput } from "./commands/GetImageSetCommand";
|
|
72
66
|
import {
|
|
73
67
|
GetImageSetMetadataCommandInput,
|
|
74
68
|
GetImageSetMetadataCommandOutput,
|
|
@@ -97,10 +91,7 @@ import {
|
|
|
97
91
|
StartDICOMImportJobCommandInput,
|
|
98
92
|
StartDICOMImportJobCommandOutput,
|
|
99
93
|
} from "./commands/StartDICOMImportJobCommand";
|
|
100
|
-
import {
|
|
101
|
-
TagResourceCommandInput,
|
|
102
|
-
TagResourceCommandOutput,
|
|
103
|
-
} from "./commands/TagResourceCommand";
|
|
94
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
104
95
|
import {
|
|
105
96
|
UntagResourceCommandInput,
|
|
106
97
|
UntagResourceCommandOutput,
|
|
@@ -154,8 +145,7 @@ export type ServiceOutputTypes =
|
|
|
154
145
|
| TagResourceCommandOutput
|
|
155
146
|
| UntagResourceCommandOutput
|
|
156
147
|
| UpdateImageSetMetadataCommandOutput;
|
|
157
|
-
export interface ClientDefaults
|
|
158
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
148
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
159
149
|
requestHandler?: __HttpHandlerUserInput;
|
|
160
150
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
161
151
|
urlParser?: __UrlParser;
|
|
@@ -181,9 +171,7 @@ export interface ClientDefaults
|
|
|
181
171
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
182
172
|
sdkStreamMixin?: __SdkStreamMixinInjector;
|
|
183
173
|
}
|
|
184
|
-
export type MedicalImagingClientConfigType = Partial<
|
|
185
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
186
|
-
> &
|
|
174
|
+
export type MedicalImagingClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
187
175
|
ClientDefaults &
|
|
188
176
|
UserAgentInputConfig &
|
|
189
177
|
RetryInputConfig &
|
|
@@ -192,8 +180,7 @@ export type MedicalImagingClientConfigType = Partial<
|
|
|
192
180
|
EndpointInputConfig<EndpointParameters> &
|
|
193
181
|
HttpAuthSchemeInputConfig &
|
|
194
182
|
ClientInputEndpointParameters;
|
|
195
|
-
export interface MedicalImagingClientConfig
|
|
196
|
-
extends MedicalImagingClientConfigType {}
|
|
183
|
+
export interface MedicalImagingClientConfig extends MedicalImagingClientConfigType {}
|
|
197
184
|
export type MedicalImagingClientResolvedConfigType =
|
|
198
185
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
199
186
|
Required<ClientDefaults> &
|
|
@@ -205,8 +192,7 @@ export type MedicalImagingClientResolvedConfigType =
|
|
|
205
192
|
EndpointResolvedConfig<EndpointParameters> &
|
|
206
193
|
HttpAuthSchemeResolvedConfig &
|
|
207
194
|
ClientResolvedEndpointParameters;
|
|
208
|
-
export interface MedicalImagingClientResolvedConfig
|
|
209
|
-
extends MedicalImagingClientResolvedConfigType {}
|
|
195
|
+
export interface MedicalImagingClientResolvedConfig extends MedicalImagingClientResolvedConfigType {}
|
|
210
196
|
export declare class MedicalImagingClient extends __Client<
|
|
211
197
|
__HttpHandlerOptions,
|
|
212
198
|
ServiceInputTypes,
|
|
@@ -214,8 +200,6 @@ export declare class MedicalImagingClient extends __Client<
|
|
|
214
200
|
MedicalImagingClientResolvedConfig
|
|
215
201
|
> {
|
|
216
202
|
readonly config: MedicalImagingClientResolvedConfig;
|
|
217
|
-
constructor(
|
|
218
|
-
...[configuration]: __CheckOptionalClientConfig<MedicalImagingClientConfig>
|
|
219
|
-
);
|
|
203
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<MedicalImagingClientConfig>);
|
|
220
204
|
destroy(): void;
|
|
221
205
|
}
|
|
@@ -7,17 +7,10 @@ import { MedicalImagingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: MedicalImagingHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: MedicalImagingHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): MedicalImagingHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { MedicalImagingClientResolvedConfig } from "../MedicalImagingClient";
|
|
15
|
-
export interface MedicalImagingHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface MedicalImagingHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface MedicalImagingHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface MedicalImagingHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
MedicalImagingClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
MedicalImagingHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultMedicalImagingHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: MedicalImagingClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<MedicalImagingHttpAuthSchemeParameters>;
|
|
31
|
-
export interface MedicalImagingHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<MedicalImagingHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface MedicalImagingHttpAuthSchemeProvider extends HttpAuthSchemeProvider<MedicalImagingHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultMedicalImagingHttpAuthSchemeProvider: MedicalImagingHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: MedicalImagingHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: MedicalImagingHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./MedicalImagingClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
MedicalImagingClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CopyImageSetRequest, CopyImageSetResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CopyImageSetCommandInput extends CopyImageSetRequest {}
|
|
5
|
-
export interface CopyImageSetCommandOutput
|
|
6
|
-
extends CopyImageSetResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CopyImageSetCommandOutput extends CopyImageSetResponse, __MetadataBearer {}
|
|
8
6
|
declare const CopyImageSetCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CopyImageSetCommandInput
|
|
8
|
+
input: CopyImageSetCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CopyImageSetCommandInput,
|
|
13
11
|
CopyImageSetCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CopyImageSetCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CopyImageSetCommandInput
|
|
17
|
+
input: CopyImageSetCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CopyImageSetCommandInput,
|
|
22
20
|
CopyImageSetCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateDatastoreRequest,
|
|
4
|
-
CreateDatastoreResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateDatastoreRequest, CreateDatastoreResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateDatastoreCommandInput extends CreateDatastoreRequest {}
|
|
8
|
-
export interface CreateDatastoreCommandOutput
|
|
9
|
-
extends CreateDatastoreResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateDatastoreCommandOutput extends CreateDatastoreResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateDatastoreCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateDatastoreCommandInput
|
|
8
|
+
input: CreateDatastoreCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateDatastoreCommandInput,
|
|
16
11
|
CreateDatastoreCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteDatastoreRequest,
|
|
4
|
-
DeleteDatastoreResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteDatastoreRequest, DeleteDatastoreResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteDatastoreCommandInput extends DeleteDatastoreRequest {}
|
|
8
|
-
export interface DeleteDatastoreCommandOutput
|
|
9
|
-
extends DeleteDatastoreResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteDatastoreCommandOutput extends DeleteDatastoreResponse, __MetadataBearer {}
|
|
11
6
|
declare const DeleteDatastoreCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteDatastoreCommandInput
|
|
8
|
+
input: DeleteDatastoreCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteDatastoreCommandInput,
|
|
16
11
|
DeleteDatastoreCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteDatastoreCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteDatastoreCommandInput
|
|
17
|
+
input: DeleteDatastoreCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteDatastoreCommandInput,
|
|
25
20
|
DeleteDatastoreCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteImageSetRequest,
|
|
4
|
-
DeleteImageSetResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteImageSetRequest, DeleteImageSetResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteImageSetCommandInput extends DeleteImageSetRequest {}
|
|
8
|
-
export interface DeleteImageSetCommandOutput
|
|
9
|
-
extends DeleteImageSetResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteImageSetCommandOutput extends DeleteImageSetResponse, __MetadataBearer {}
|
|
11
6
|
declare const DeleteImageSetCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteImageSetCommandInput
|
|
8
|
+
input: DeleteImageSetCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteImageSetCommandInput,
|
|
16
11
|
DeleteImageSetCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteImageSetCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteImageSetCommandInput
|
|
17
|
+
input: DeleteImageSetCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteImageSetCommandInput,
|
|
25
20
|
DeleteImageSetCommandOutput,
|