@aws-sdk/client-medical-imaging 3.927.0 → 3.929.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1109 -1199
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/MedicalImagingClient.js +2 -0
- package/dist-es/commands/CopyImageSetCommand.js +3 -10
- package/dist-es/commands/CreateDatastoreCommand.js +3 -9
- package/dist-es/commands/DeleteDatastoreCommand.js +3 -9
- package/dist-es/commands/DeleteImageSetCommand.js +3 -9
- package/dist-es/commands/GetDICOMImportJobCommand.js +3 -9
- package/dist-es/commands/GetDatastoreCommand.js +3 -9
- package/dist-es/commands/GetImageFrameCommand.js +3 -10
- package/dist-es/commands/GetImageSetCommand.js +3 -9
- package/dist-es/commands/GetImageSetMetadataCommand.js +3 -10
- package/dist-es/commands/ListDICOMImportJobsCommand.js +3 -9
- package/dist-es/commands/ListDatastoresCommand.js +3 -9
- package/dist-es/commands/ListImageSetVersionsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/SearchImageSetsCommand.js +3 -10
- package/dist-es/commands/StartDICOMImportJobCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateImageSetMetadataCommand.js +3 -10
- package/dist-es/models/models_0.js +8 -110
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1055 -0
- package/dist-types/MedicalImagingClient.d.ts +10 -1
- package/dist-types/commands/CreateDatastoreCommand.d.ts +1 -0
- package/dist-types/commands/GetDatastoreCommand.d.ts +1 -0
- package/dist-types/commands/GetImageSetCommand.d.ts +2 -0
- package/dist-types/commands/SearchImageSetsCommand.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +60 -68
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +112 -0
- package/dist-types/ts3.4/MedicalImagingClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +17 -45
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +118 -0
- package/package.json +5 -6
- package/dist-es/protocols/Aws_restJson1.js +0 -940
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -164
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -224
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,9 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
|
-
var uuid = require('@smithy/uuid');
|
|
20
18
|
|
|
21
19
|
const resolveClientEndpointParameters = (options) => {
|
|
22
20
|
return Object.assign(options, {
|
|
@@ -92,6 +90,7 @@ class MedicalImagingClient extends smithyClient.Client {
|
|
|
92
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
93
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
94
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
95
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
96
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
97
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -111,14 +110,14 @@ class MedicalImagingClient extends smithyClient.Client {
|
|
|
111
110
|
}
|
|
112
111
|
}
|
|
113
112
|
|
|
114
|
-
class MedicalImagingServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let MedicalImagingServiceException$1 = class MedicalImagingServiceException extends smithyClient.ServiceException {
|
|
115
114
|
constructor(options) {
|
|
116
115
|
super(options);
|
|
117
116
|
Object.setPrototypeOf(this, MedicalImagingServiceException.prototype);
|
|
118
117
|
}
|
|
119
|
-
}
|
|
118
|
+
};
|
|
120
119
|
|
|
121
|
-
class AccessDeniedException extends MedicalImagingServiceException {
|
|
120
|
+
let AccessDeniedException$1 = class AccessDeniedException extends MedicalImagingServiceException$1 {
|
|
122
121
|
name = "AccessDeniedException";
|
|
123
122
|
$fault = "client";
|
|
124
123
|
constructor(opts) {
|
|
@@ -129,8 +128,8 @@ class AccessDeniedException extends MedicalImagingServiceException {
|
|
|
129
128
|
});
|
|
130
129
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
130
|
}
|
|
132
|
-
}
|
|
133
|
-
class ConflictException extends MedicalImagingServiceException {
|
|
131
|
+
};
|
|
132
|
+
let ConflictException$1 = class ConflictException extends MedicalImagingServiceException$1 {
|
|
134
133
|
name = "ConflictException";
|
|
135
134
|
$fault = "client";
|
|
136
135
|
constructor(opts) {
|
|
@@ -141,7 +140,7 @@ class ConflictException extends MedicalImagingServiceException {
|
|
|
141
140
|
});
|
|
142
141
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
143
142
|
}
|
|
144
|
-
}
|
|
143
|
+
};
|
|
145
144
|
const ImageSetState = {
|
|
146
145
|
ACTIVE: "ACTIVE",
|
|
147
146
|
DELETED: "DELETED",
|
|
@@ -162,7 +161,7 @@ const ImageSetWorkflowStatus = {
|
|
|
162
161
|
UPDATE_FAILED: "UPDATE_FAILED",
|
|
163
162
|
UPDATING: "UPDATING",
|
|
164
163
|
};
|
|
165
|
-
class InternalServerException extends MedicalImagingServiceException {
|
|
164
|
+
let InternalServerException$1 = class InternalServerException extends MedicalImagingServiceException$1 {
|
|
166
165
|
name = "InternalServerException";
|
|
167
166
|
$fault = "server";
|
|
168
167
|
constructor(opts) {
|
|
@@ -173,8 +172,8 @@ class InternalServerException extends MedicalImagingServiceException {
|
|
|
173
172
|
});
|
|
174
173
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
175
174
|
}
|
|
176
|
-
}
|
|
177
|
-
class ResourceNotFoundException extends MedicalImagingServiceException {
|
|
175
|
+
};
|
|
176
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends MedicalImagingServiceException$1 {
|
|
178
177
|
name = "ResourceNotFoundException";
|
|
179
178
|
$fault = "client";
|
|
180
179
|
constructor(opts) {
|
|
@@ -185,8 +184,8 @@ class ResourceNotFoundException extends MedicalImagingServiceException {
|
|
|
185
184
|
});
|
|
186
185
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
187
186
|
}
|
|
188
|
-
}
|
|
189
|
-
class ServiceQuotaExceededException extends MedicalImagingServiceException {
|
|
187
|
+
};
|
|
188
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends MedicalImagingServiceException$1 {
|
|
190
189
|
name = "ServiceQuotaExceededException";
|
|
191
190
|
$fault = "client";
|
|
192
191
|
constructor(opts) {
|
|
@@ -197,8 +196,8 @@ class ServiceQuotaExceededException extends MedicalImagingServiceException {
|
|
|
197
196
|
});
|
|
198
197
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
199
198
|
}
|
|
200
|
-
}
|
|
201
|
-
class ThrottlingException extends MedicalImagingServiceException {
|
|
199
|
+
};
|
|
200
|
+
let ThrottlingException$1 = class ThrottlingException extends MedicalImagingServiceException$1 {
|
|
202
201
|
name = "ThrottlingException";
|
|
203
202
|
$fault = "client";
|
|
204
203
|
constructor(opts) {
|
|
@@ -209,8 +208,8 @@ class ThrottlingException extends MedicalImagingServiceException {
|
|
|
209
208
|
});
|
|
210
209
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
211
210
|
}
|
|
212
|
-
}
|
|
213
|
-
class ValidationException extends MedicalImagingServiceException {
|
|
211
|
+
};
|
|
212
|
+
let ValidationException$1 = class ValidationException extends MedicalImagingServiceException$1 {
|
|
214
213
|
name = "ValidationException";
|
|
215
214
|
$fault = "client";
|
|
216
215
|
constructor(opts) {
|
|
@@ -221,7 +220,11 @@ class ValidationException extends MedicalImagingServiceException {
|
|
|
221
220
|
});
|
|
222
221
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
223
222
|
}
|
|
224
|
-
}
|
|
223
|
+
};
|
|
224
|
+
const LosslessStorageFormat = {
|
|
225
|
+
HTJ2K: "HTJ2K",
|
|
226
|
+
JPEG_2000_LOSSLESS: "JPEG_2000_LOSSLESS",
|
|
227
|
+
};
|
|
225
228
|
const DatastoreStatus = {
|
|
226
229
|
ACTIVE: "ACTIVE",
|
|
227
230
|
CREATE_FAILED: "CREATE_FAILED",
|
|
@@ -235,6 +238,10 @@ const JobStatus = {
|
|
|
235
238
|
IN_PROGRESS: "IN_PROGRESS",
|
|
236
239
|
SUBMITTED: "SUBMITTED",
|
|
237
240
|
};
|
|
241
|
+
const StorageTier = {
|
|
242
|
+
ARCHIVE_INSTANT_ACCESS: "ARCHIVE_INSTANT_ACCESS",
|
|
243
|
+
FREQUENT_ACCESS: "FREQUENT_ACCESS",
|
|
244
|
+
};
|
|
238
245
|
const Operator = {
|
|
239
246
|
BETWEEN: "BETWEEN",
|
|
240
247
|
EQUAL: "EQUAL",
|
|
@@ -282,1063 +289,1066 @@ exports.MetadataUpdates = void 0;
|
|
|
282
289
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
283
290
|
};
|
|
284
291
|
})(exports.MetadataUpdates || (exports.MetadataUpdates = {}));
|
|
285
|
-
const MetadataCopiesFilterSensitiveLog = (obj) => ({
|
|
286
|
-
...obj,
|
|
287
|
-
...(obj.copiableAttributes && { copiableAttributes: smithyClient.SENSITIVE_STRING }),
|
|
288
|
-
});
|
|
289
|
-
const CopySourceImageSetInformationFilterSensitiveLog = (obj) => ({
|
|
290
|
-
...obj,
|
|
291
|
-
...(obj.DICOMCopies && { DICOMCopies: MetadataCopiesFilterSensitiveLog(obj.DICOMCopies) }),
|
|
292
|
-
});
|
|
293
|
-
const CopyImageSetInformationFilterSensitiveLog = (obj) => ({
|
|
294
|
-
...obj,
|
|
295
|
-
...(obj.sourceImageSet && { sourceImageSet: CopySourceImageSetInformationFilterSensitiveLog(obj.sourceImageSet) }),
|
|
296
|
-
});
|
|
297
|
-
const CopyImageSetRequestFilterSensitiveLog = (obj) => ({
|
|
298
|
-
...obj,
|
|
299
|
-
...(obj.copyImageSetInformation && {
|
|
300
|
-
copyImageSetInformation: CopyImageSetInformationFilterSensitiveLog(obj.copyImageSetInformation),
|
|
301
|
-
}),
|
|
302
|
-
});
|
|
303
|
-
const GetImageFrameResponseFilterSensitiveLog = (obj) => ({
|
|
304
|
-
...obj,
|
|
305
|
-
});
|
|
306
|
-
const GetImageSetMetadataResponseFilterSensitiveLog = (obj) => ({
|
|
307
|
-
...obj,
|
|
308
|
-
});
|
|
309
|
-
const DICOMStudyDateAndTimeFilterSensitiveLog = (obj) => ({
|
|
310
|
-
...obj,
|
|
311
|
-
...(obj.DICOMStudyDate && { DICOMStudyDate: smithyClient.SENSITIVE_STRING }),
|
|
312
|
-
...(obj.DICOMStudyTime && { DICOMStudyTime: smithyClient.SENSITIVE_STRING }),
|
|
313
|
-
});
|
|
314
|
-
const SearchByAttributeValueFilterSensitiveLog = (obj) => {
|
|
315
|
-
if (obj.DICOMPatientId !== undefined)
|
|
316
|
-
return { DICOMPatientId: smithyClient.SENSITIVE_STRING };
|
|
317
|
-
if (obj.DICOMAccessionNumber !== undefined)
|
|
318
|
-
return { DICOMAccessionNumber: smithyClient.SENSITIVE_STRING };
|
|
319
|
-
if (obj.DICOMStudyId !== undefined)
|
|
320
|
-
return { DICOMStudyId: smithyClient.SENSITIVE_STRING };
|
|
321
|
-
if (obj.DICOMStudyInstanceUID !== undefined)
|
|
322
|
-
return { DICOMStudyInstanceUID: smithyClient.SENSITIVE_STRING };
|
|
323
|
-
if (obj.DICOMSeriesInstanceUID !== undefined)
|
|
324
|
-
return { DICOMSeriesInstanceUID: smithyClient.SENSITIVE_STRING };
|
|
325
|
-
if (obj.createdAt !== undefined)
|
|
326
|
-
return { createdAt: obj.createdAt };
|
|
327
|
-
if (obj.updatedAt !== undefined)
|
|
328
|
-
return { updatedAt: obj.updatedAt };
|
|
329
|
-
if (obj.DICOMStudyDateAndTime !== undefined)
|
|
330
|
-
return { DICOMStudyDateAndTime: DICOMStudyDateAndTimeFilterSensitiveLog(obj.DICOMStudyDateAndTime) };
|
|
331
|
-
if (obj.isPrimary !== undefined)
|
|
332
|
-
return { isPrimary: obj.isPrimary };
|
|
333
|
-
if (obj.$unknown !== undefined)
|
|
334
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
335
|
-
};
|
|
336
|
-
const SearchFilterFilterSensitiveLog = (obj) => ({
|
|
337
|
-
...obj,
|
|
338
|
-
...(obj.values && { values: obj.values.map((item) => SearchByAttributeValueFilterSensitiveLog(item)) }),
|
|
339
|
-
});
|
|
340
|
-
const SearchCriteriaFilterSensitiveLog = (obj) => ({
|
|
341
|
-
...obj,
|
|
342
|
-
...(obj.filters && { filters: obj.filters.map((item) => SearchFilterFilterSensitiveLog(item)) }),
|
|
343
|
-
});
|
|
344
|
-
const SearchImageSetsRequestFilterSensitiveLog = (obj) => ({
|
|
345
|
-
...obj,
|
|
346
|
-
...(obj.searchCriteria && { searchCriteria: smithyClient.SENSITIVE_STRING }),
|
|
347
|
-
});
|
|
348
|
-
const DICOMTagsFilterSensitiveLog = (obj) => ({
|
|
349
|
-
...obj,
|
|
350
|
-
...(obj.DICOMPatientId && { DICOMPatientId: smithyClient.SENSITIVE_STRING }),
|
|
351
|
-
...(obj.DICOMPatientName && { DICOMPatientName: smithyClient.SENSITIVE_STRING }),
|
|
352
|
-
...(obj.DICOMPatientBirthDate && { DICOMPatientBirthDate: smithyClient.SENSITIVE_STRING }),
|
|
353
|
-
...(obj.DICOMPatientSex && { DICOMPatientSex: smithyClient.SENSITIVE_STRING }),
|
|
354
|
-
...(obj.DICOMStudyInstanceUID && { DICOMStudyInstanceUID: smithyClient.SENSITIVE_STRING }),
|
|
355
|
-
...(obj.DICOMStudyId && { DICOMStudyId: smithyClient.SENSITIVE_STRING }),
|
|
356
|
-
...(obj.DICOMStudyDescription && { DICOMStudyDescription: smithyClient.SENSITIVE_STRING }),
|
|
357
|
-
...(obj.DICOMAccessionNumber && { DICOMAccessionNumber: smithyClient.SENSITIVE_STRING }),
|
|
358
|
-
...(obj.DICOMSeriesInstanceUID && { DICOMSeriesInstanceUID: smithyClient.SENSITIVE_STRING }),
|
|
359
|
-
...(obj.DICOMSeriesModality && { DICOMSeriesModality: smithyClient.SENSITIVE_STRING }),
|
|
360
|
-
...(obj.DICOMSeriesBodyPart && { DICOMSeriesBodyPart: smithyClient.SENSITIVE_STRING }),
|
|
361
|
-
...(obj.DICOMSeriesNumber && { DICOMSeriesNumber: smithyClient.SENSITIVE_STRING }),
|
|
362
|
-
...(obj.DICOMStudyDate && { DICOMStudyDate: smithyClient.SENSITIVE_STRING }),
|
|
363
|
-
...(obj.DICOMStudyTime && { DICOMStudyTime: smithyClient.SENSITIVE_STRING }),
|
|
364
|
-
});
|
|
365
|
-
const ImageSetsMetadataSummaryFilterSensitiveLog = (obj) => ({
|
|
366
|
-
...obj,
|
|
367
|
-
...(obj.DICOMTags && { DICOMTags: DICOMTagsFilterSensitiveLog(obj.DICOMTags) }),
|
|
368
|
-
});
|
|
369
|
-
const SearchImageSetsResponseFilterSensitiveLog = (obj) => ({
|
|
370
|
-
...obj,
|
|
371
|
-
...(obj.imageSetsMetadataSummaries && {
|
|
372
|
-
imageSetsMetadataSummaries: obj.imageSetsMetadataSummaries.map((item) => ImageSetsMetadataSummaryFilterSensitiveLog(item)),
|
|
373
|
-
}),
|
|
374
|
-
});
|
|
375
|
-
const DICOMUpdatesFilterSensitiveLog = (obj) => ({
|
|
376
|
-
...obj,
|
|
377
|
-
...(obj.removableAttributes && { removableAttributes: smithyClient.SENSITIVE_STRING }),
|
|
378
|
-
...(obj.updatableAttributes && { updatableAttributes: smithyClient.SENSITIVE_STRING }),
|
|
379
|
-
});
|
|
380
|
-
const MetadataUpdatesFilterSensitiveLog = (obj) => {
|
|
381
|
-
if (obj.DICOMUpdates !== undefined)
|
|
382
|
-
return { DICOMUpdates: DICOMUpdatesFilterSensitiveLog(obj.DICOMUpdates) };
|
|
383
|
-
if (obj.revertToVersionId !== undefined)
|
|
384
|
-
return { revertToVersionId: obj.revertToVersionId };
|
|
385
|
-
if (obj.$unknown !== undefined)
|
|
386
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
387
|
-
};
|
|
388
|
-
const UpdateImageSetMetadataRequestFilterSensitiveLog = (obj) => ({
|
|
389
|
-
...obj,
|
|
390
|
-
...(obj.updateImageSetMetadataUpdates && {
|
|
391
|
-
updateImageSetMetadataUpdates: MetadataUpdatesFilterSensitiveLog(obj.updateImageSetMetadataUpdates),
|
|
392
|
-
}),
|
|
393
|
-
});
|
|
394
292
|
|
|
395
|
-
const
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
const
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
const
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
const
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
const
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
const
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
const
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
}
|
|
512
|
-
b.hn(resolvedHostname);
|
|
513
|
-
b.m("POST").h(headers).b(body);
|
|
514
|
-
return b.build();
|
|
515
|
-
};
|
|
516
|
-
const se_GetImageSetCommand = async (input, context) => {
|
|
517
|
-
const b = core.requestBuilder(input, context);
|
|
518
|
-
const headers = {};
|
|
519
|
-
b.bp("/datastore/{datastoreId}/imageSet/{imageSetId}/getImageSet");
|
|
520
|
-
b.p("datastoreId", () => input.datastoreId, "{datastoreId}", false);
|
|
521
|
-
b.p("imageSetId", () => input.imageSetId, "{imageSetId}", false);
|
|
522
|
-
const query = smithyClient.map({
|
|
523
|
-
[_v]: [, input[_vI]],
|
|
524
|
-
});
|
|
525
|
-
let body;
|
|
526
|
-
let { hostname: resolvedHostname } = await context.endpoint();
|
|
527
|
-
if (context.disableHostPrefix !== true) {
|
|
528
|
-
resolvedHostname = "runtime-" + resolvedHostname;
|
|
529
|
-
if (!protocolHttp.isValidHostname(resolvedHostname)) {
|
|
530
|
-
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
|
|
531
|
-
}
|
|
532
|
-
}
|
|
533
|
-
b.hn(resolvedHostname);
|
|
534
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
535
|
-
return b.build();
|
|
536
|
-
};
|
|
537
|
-
const se_GetImageSetMetadataCommand = async (input, context) => {
|
|
538
|
-
const b = core.requestBuilder(input, context);
|
|
539
|
-
const headers = {};
|
|
540
|
-
b.bp("/datastore/{datastoreId}/imageSet/{imageSetId}/getImageSetMetadata");
|
|
541
|
-
b.p("datastoreId", () => input.datastoreId, "{datastoreId}", false);
|
|
542
|
-
b.p("imageSetId", () => input.imageSetId, "{imageSetId}", false);
|
|
543
|
-
const query = smithyClient.map({
|
|
544
|
-
[_v]: [, input[_vI]],
|
|
545
|
-
});
|
|
546
|
-
let body;
|
|
547
|
-
let { hostname: resolvedHostname } = await context.endpoint();
|
|
548
|
-
if (context.disableHostPrefix !== true) {
|
|
549
|
-
resolvedHostname = "runtime-" + resolvedHostname;
|
|
550
|
-
if (!protocolHttp.isValidHostname(resolvedHostname)) {
|
|
551
|
-
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
|
|
552
|
-
}
|
|
553
|
-
}
|
|
554
|
-
b.hn(resolvedHostname);
|
|
555
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
556
|
-
return b.build();
|
|
557
|
-
};
|
|
558
|
-
const se_ListDatastoresCommand = async (input, context) => {
|
|
559
|
-
const b = core.requestBuilder(input, context);
|
|
560
|
-
const headers = {};
|
|
561
|
-
b.bp("/datastore");
|
|
562
|
-
const query = smithyClient.map({
|
|
563
|
-
[_dS]: [, input[_dS]],
|
|
564
|
-
[_nT]: [, input[_nT]],
|
|
565
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
566
|
-
});
|
|
567
|
-
let body;
|
|
568
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
569
|
-
return b.build();
|
|
570
|
-
};
|
|
571
|
-
const se_ListDICOMImportJobsCommand = async (input, context) => {
|
|
572
|
-
const b = core.requestBuilder(input, context);
|
|
573
|
-
const headers = {};
|
|
574
|
-
b.bp("/listDICOMImportJobs/datastore/{datastoreId}");
|
|
575
|
-
b.p("datastoreId", () => input.datastoreId, "{datastoreId}", false);
|
|
576
|
-
const query = smithyClient.map({
|
|
577
|
-
[_jS]: [, input[_jS]],
|
|
578
|
-
[_nT]: [, input[_nT]],
|
|
579
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
580
|
-
});
|
|
581
|
-
let body;
|
|
582
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
583
|
-
return b.build();
|
|
584
|
-
};
|
|
585
|
-
const se_ListImageSetVersionsCommand = async (input, context) => {
|
|
586
|
-
const b = core.requestBuilder(input, context);
|
|
587
|
-
const headers = {};
|
|
588
|
-
b.bp("/datastore/{datastoreId}/imageSet/{imageSetId}/listImageSetVersions");
|
|
589
|
-
b.p("datastoreId", () => input.datastoreId, "{datastoreId}", false);
|
|
590
|
-
b.p("imageSetId", () => input.imageSetId, "{imageSetId}", false);
|
|
591
|
-
const query = smithyClient.map({
|
|
592
|
-
[_nT]: [, input[_nT]],
|
|
593
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
594
|
-
});
|
|
595
|
-
let body;
|
|
596
|
-
let { hostname: resolvedHostname } = await context.endpoint();
|
|
597
|
-
if (context.disableHostPrefix !== true) {
|
|
598
|
-
resolvedHostname = "runtime-" + resolvedHostname;
|
|
599
|
-
if (!protocolHttp.isValidHostname(resolvedHostname)) {
|
|
600
|
-
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
|
|
601
|
-
}
|
|
602
|
-
}
|
|
603
|
-
b.hn(resolvedHostname);
|
|
604
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
605
|
-
return b.build();
|
|
606
|
-
};
|
|
607
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
608
|
-
const b = core.requestBuilder(input, context);
|
|
609
|
-
const headers = {};
|
|
610
|
-
b.bp("/tags/{resourceArn}");
|
|
611
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
612
|
-
let body;
|
|
613
|
-
b.m("GET").h(headers).b(body);
|
|
614
|
-
return b.build();
|
|
615
|
-
};
|
|
616
|
-
const se_SearchImageSetsCommand = async (input, context) => {
|
|
617
|
-
const b = core.requestBuilder(input, context);
|
|
618
|
-
const headers = {
|
|
619
|
-
"content-type": "application/json",
|
|
620
|
-
};
|
|
621
|
-
b.bp("/datastore/{datastoreId}/searchImageSets");
|
|
622
|
-
b.p("datastoreId", () => input.datastoreId, "{datastoreId}", false);
|
|
623
|
-
const query = smithyClient.map({
|
|
624
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
625
|
-
[_nT]: [, input[_nT]],
|
|
626
|
-
});
|
|
627
|
-
let body;
|
|
628
|
-
if (input.searchCriteria !== undefined) {
|
|
629
|
-
body = se_SearchCriteria(input.searchCriteria);
|
|
630
|
-
}
|
|
631
|
-
if (body === undefined) {
|
|
632
|
-
body = {};
|
|
633
|
-
}
|
|
634
|
-
body = JSON.stringify(body);
|
|
635
|
-
let { hostname: resolvedHostname } = await context.endpoint();
|
|
636
|
-
if (context.disableHostPrefix !== true) {
|
|
637
|
-
resolvedHostname = "runtime-" + resolvedHostname;
|
|
638
|
-
if (!protocolHttp.isValidHostname(resolvedHostname)) {
|
|
639
|
-
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
|
|
640
|
-
}
|
|
641
|
-
}
|
|
642
|
-
b.hn(resolvedHostname);
|
|
643
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
644
|
-
return b.build();
|
|
645
|
-
};
|
|
646
|
-
const se_StartDICOMImportJobCommand = async (input, context) => {
|
|
647
|
-
const b = core.requestBuilder(input, context);
|
|
648
|
-
const headers = {
|
|
649
|
-
"content-type": "application/json",
|
|
650
|
-
};
|
|
651
|
-
b.bp("/startDICOMImportJob/datastore/{datastoreId}");
|
|
652
|
-
b.p("datastoreId", () => input.datastoreId, "{datastoreId}", false);
|
|
653
|
-
let body;
|
|
654
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
655
|
-
clientToken: [true, (_) => _ ?? uuid.v4()],
|
|
656
|
-
dataAccessRoleArn: [],
|
|
657
|
-
inputOwnerAccountId: [],
|
|
658
|
-
inputS3Uri: [],
|
|
659
|
-
jobName: [],
|
|
660
|
-
outputS3Uri: [],
|
|
661
|
-
}));
|
|
662
|
-
b.m("POST").h(headers).b(body);
|
|
663
|
-
return b.build();
|
|
664
|
-
};
|
|
665
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
666
|
-
const b = core.requestBuilder(input, context);
|
|
667
|
-
const headers = {
|
|
668
|
-
"content-type": "application/json",
|
|
669
|
-
};
|
|
670
|
-
b.bp("/tags/{resourceArn}");
|
|
671
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
672
|
-
let body;
|
|
673
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
674
|
-
tags: (_) => smithyClient._json(_),
|
|
675
|
-
}));
|
|
676
|
-
b.m("POST").h(headers).b(body);
|
|
677
|
-
return b.build();
|
|
678
|
-
};
|
|
679
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
680
|
-
const b = core.requestBuilder(input, context);
|
|
681
|
-
const headers = {};
|
|
682
|
-
b.bp("/tags/{resourceArn}");
|
|
683
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
684
|
-
const query = smithyClient.map({
|
|
685
|
-
[_tK]: [smithyClient.expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
|
|
686
|
-
});
|
|
687
|
-
let body;
|
|
688
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
689
|
-
return b.build();
|
|
690
|
-
};
|
|
691
|
-
const se_UpdateImageSetMetadataCommand = async (input, context) => {
|
|
692
|
-
const b = core.requestBuilder(input, context);
|
|
693
|
-
const headers = {
|
|
694
|
-
"content-type": "application/json",
|
|
695
|
-
};
|
|
696
|
-
b.bp("/datastore/{datastoreId}/imageSet/{imageSetId}/updateImageSetMetadata");
|
|
697
|
-
b.p("datastoreId", () => input.datastoreId, "{datastoreId}", false);
|
|
698
|
-
b.p("imageSetId", () => input.imageSetId, "{imageSetId}", false);
|
|
699
|
-
const query = smithyClient.map({
|
|
700
|
-
[_lV]: [, smithyClient.expectNonNull(input[_lVI], `latestVersionId`)],
|
|
701
|
-
[_f]: [() => input.force !== void 0, () => input[_f].toString()],
|
|
702
|
-
});
|
|
703
|
-
let body;
|
|
704
|
-
if (input.updateImageSetMetadataUpdates !== undefined) {
|
|
705
|
-
body = se_MetadataUpdates(input.updateImageSetMetadataUpdates, context);
|
|
706
|
-
}
|
|
707
|
-
if (body === undefined) {
|
|
708
|
-
body = {};
|
|
709
|
-
}
|
|
710
|
-
body = JSON.stringify(body);
|
|
711
|
-
let { hostname: resolvedHostname } = await context.endpoint();
|
|
712
|
-
if (context.disableHostPrefix !== true) {
|
|
713
|
-
resolvedHostname = "runtime-" + resolvedHostname;
|
|
714
|
-
if (!protocolHttp.isValidHostname(resolvedHostname)) {
|
|
715
|
-
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
|
|
716
|
-
}
|
|
717
|
-
}
|
|
718
|
-
b.hn(resolvedHostname);
|
|
719
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
720
|
-
return b.build();
|
|
721
|
-
};
|
|
722
|
-
const de_CopyImageSetCommand = async (output, context) => {
|
|
723
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
724
|
-
return de_CommandError(output, context);
|
|
725
|
-
}
|
|
726
|
-
const contents = smithyClient.map({
|
|
727
|
-
$metadata: deserializeMetadata(output),
|
|
728
|
-
});
|
|
729
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
730
|
-
const doc = smithyClient.take(data, {
|
|
731
|
-
datastoreId: smithyClient.expectString,
|
|
732
|
-
destinationImageSetProperties: (_) => de_CopyDestinationImageSetProperties(_),
|
|
733
|
-
sourceImageSetProperties: (_) => de_CopySourceImageSetProperties(_),
|
|
734
|
-
});
|
|
735
|
-
Object.assign(contents, doc);
|
|
736
|
-
return contents;
|
|
737
|
-
};
|
|
738
|
-
const de_CreateDatastoreCommand = async (output, context) => {
|
|
739
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
740
|
-
return de_CommandError(output, context);
|
|
741
|
-
}
|
|
742
|
-
const contents = smithyClient.map({
|
|
743
|
-
$metadata: deserializeMetadata(output),
|
|
744
|
-
});
|
|
745
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
746
|
-
const doc = smithyClient.take(data, {
|
|
747
|
-
datastoreId: smithyClient.expectString,
|
|
748
|
-
datastoreStatus: smithyClient.expectString,
|
|
749
|
-
});
|
|
750
|
-
Object.assign(contents, doc);
|
|
751
|
-
return contents;
|
|
752
|
-
};
|
|
753
|
-
const de_DeleteDatastoreCommand = async (output, context) => {
|
|
754
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
755
|
-
return de_CommandError(output, context);
|
|
756
|
-
}
|
|
757
|
-
const contents = smithyClient.map({
|
|
758
|
-
$metadata: deserializeMetadata(output),
|
|
759
|
-
});
|
|
760
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
761
|
-
const doc = smithyClient.take(data, {
|
|
762
|
-
datastoreId: smithyClient.expectString,
|
|
763
|
-
datastoreStatus: smithyClient.expectString,
|
|
764
|
-
});
|
|
765
|
-
Object.assign(contents, doc);
|
|
766
|
-
return contents;
|
|
767
|
-
};
|
|
768
|
-
const de_DeleteImageSetCommand = async (output, context) => {
|
|
769
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
770
|
-
return de_CommandError(output, context);
|
|
771
|
-
}
|
|
772
|
-
const contents = smithyClient.map({
|
|
773
|
-
$metadata: deserializeMetadata(output),
|
|
774
|
-
});
|
|
775
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
776
|
-
const doc = smithyClient.take(data, {
|
|
777
|
-
datastoreId: smithyClient.expectString,
|
|
778
|
-
imageSetId: smithyClient.expectString,
|
|
779
|
-
imageSetState: smithyClient.expectString,
|
|
780
|
-
imageSetWorkflowStatus: smithyClient.expectString,
|
|
781
|
-
});
|
|
782
|
-
Object.assign(contents, doc);
|
|
783
|
-
return contents;
|
|
784
|
-
};
|
|
785
|
-
const de_GetDatastoreCommand = async (output, context) => {
|
|
786
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
787
|
-
return de_CommandError(output, context);
|
|
788
|
-
}
|
|
789
|
-
const contents = smithyClient.map({
|
|
790
|
-
$metadata: deserializeMetadata(output),
|
|
791
|
-
});
|
|
792
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
793
|
-
const doc = smithyClient.take(data, {
|
|
794
|
-
datastoreProperties: (_) => de_DatastoreProperties(_),
|
|
795
|
-
});
|
|
796
|
-
Object.assign(contents, doc);
|
|
797
|
-
return contents;
|
|
798
|
-
};
|
|
799
|
-
const de_GetDICOMImportJobCommand = async (output, context) => {
|
|
800
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
801
|
-
return de_CommandError(output, context);
|
|
802
|
-
}
|
|
803
|
-
const contents = smithyClient.map({
|
|
804
|
-
$metadata: deserializeMetadata(output),
|
|
805
|
-
});
|
|
806
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
807
|
-
const doc = smithyClient.take(data, {
|
|
808
|
-
jobProperties: (_) => de_DICOMImportJobProperties(_),
|
|
809
|
-
});
|
|
810
|
-
Object.assign(contents, doc);
|
|
811
|
-
return contents;
|
|
812
|
-
};
|
|
813
|
-
const de_GetImageFrameCommand = async (output, context) => {
|
|
814
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
815
|
-
return de_CommandError(output, context);
|
|
816
|
-
}
|
|
817
|
-
const contents = smithyClient.map({
|
|
818
|
-
$metadata: deserializeMetadata(output),
|
|
819
|
-
[_cT]: [, output.headers[_ct]],
|
|
820
|
-
});
|
|
821
|
-
const data = output.body;
|
|
822
|
-
context.sdkStreamMixin(data);
|
|
823
|
-
contents.imageFrameBlob = data;
|
|
824
|
-
return contents;
|
|
825
|
-
};
|
|
826
|
-
const de_GetImageSetCommand = async (output, context) => {
|
|
827
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
828
|
-
return de_CommandError(output, context);
|
|
829
|
-
}
|
|
830
|
-
const contents = smithyClient.map({
|
|
831
|
-
$metadata: deserializeMetadata(output),
|
|
832
|
-
});
|
|
833
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
834
|
-
const doc = smithyClient.take(data, {
|
|
835
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
836
|
-
datastoreId: smithyClient.expectString,
|
|
837
|
-
deletedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
838
|
-
imageSetArn: smithyClient.expectString,
|
|
839
|
-
imageSetId: smithyClient.expectString,
|
|
840
|
-
imageSetState: smithyClient.expectString,
|
|
841
|
-
imageSetWorkflowStatus: smithyClient.expectString,
|
|
842
|
-
isPrimary: smithyClient.expectBoolean,
|
|
843
|
-
message: smithyClient.expectString,
|
|
844
|
-
overrides: smithyClient._json,
|
|
845
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
846
|
-
versionId: smithyClient.expectString,
|
|
847
|
-
});
|
|
848
|
-
Object.assign(contents, doc);
|
|
849
|
-
return contents;
|
|
850
|
-
};
|
|
851
|
-
const de_GetImageSetMetadataCommand = async (output, context) => {
|
|
852
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
853
|
-
return de_CommandError(output, context);
|
|
854
|
-
}
|
|
855
|
-
const contents = smithyClient.map({
|
|
856
|
-
$metadata: deserializeMetadata(output),
|
|
857
|
-
[_cT]: [, output.headers[_ct]],
|
|
858
|
-
[_cE]: [, output.headers[_ce]],
|
|
859
|
-
});
|
|
860
|
-
const data = output.body;
|
|
861
|
-
context.sdkStreamMixin(data);
|
|
862
|
-
contents.imageSetMetadataBlob = data;
|
|
863
|
-
return contents;
|
|
864
|
-
};
|
|
865
|
-
const de_ListDatastoresCommand = async (output, context) => {
|
|
866
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
867
|
-
return de_CommandError(output, context);
|
|
868
|
-
}
|
|
869
|
-
const contents = smithyClient.map({
|
|
870
|
-
$metadata: deserializeMetadata(output),
|
|
871
|
-
});
|
|
872
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
873
|
-
const doc = smithyClient.take(data, {
|
|
874
|
-
datastoreSummaries: (_) => de_DatastoreSummaries(_),
|
|
875
|
-
nextToken: smithyClient.expectString,
|
|
876
|
-
});
|
|
877
|
-
Object.assign(contents, doc);
|
|
878
|
-
return contents;
|
|
879
|
-
};
|
|
880
|
-
const de_ListDICOMImportJobsCommand = async (output, context) => {
|
|
881
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
882
|
-
return de_CommandError(output, context);
|
|
883
|
-
}
|
|
884
|
-
const contents = smithyClient.map({
|
|
885
|
-
$metadata: deserializeMetadata(output),
|
|
886
|
-
});
|
|
887
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
888
|
-
const doc = smithyClient.take(data, {
|
|
889
|
-
jobSummaries: (_) => de_DICOMImportJobSummaries(_),
|
|
890
|
-
nextToken: smithyClient.expectString,
|
|
891
|
-
});
|
|
892
|
-
Object.assign(contents, doc);
|
|
893
|
-
return contents;
|
|
894
|
-
};
|
|
895
|
-
const de_ListImageSetVersionsCommand = async (output, context) => {
|
|
896
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
897
|
-
return de_CommandError(output, context);
|
|
898
|
-
}
|
|
899
|
-
const contents = smithyClient.map({
|
|
900
|
-
$metadata: deserializeMetadata(output),
|
|
901
|
-
});
|
|
902
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
903
|
-
const doc = smithyClient.take(data, {
|
|
904
|
-
imageSetPropertiesList: (_) => de_ImageSetPropertiesList(_),
|
|
905
|
-
nextToken: smithyClient.expectString,
|
|
906
|
-
});
|
|
907
|
-
Object.assign(contents, doc);
|
|
908
|
-
return contents;
|
|
909
|
-
};
|
|
910
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
911
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
912
|
-
return de_CommandError(output, context);
|
|
913
|
-
}
|
|
914
|
-
const contents = smithyClient.map({
|
|
915
|
-
$metadata: deserializeMetadata(output),
|
|
916
|
-
});
|
|
917
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
918
|
-
const doc = smithyClient.take(data, {
|
|
919
|
-
tags: smithyClient._json,
|
|
920
|
-
});
|
|
921
|
-
Object.assign(contents, doc);
|
|
922
|
-
return contents;
|
|
923
|
-
};
|
|
924
|
-
const de_SearchImageSetsCommand = async (output, context) => {
|
|
925
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
926
|
-
return de_CommandError(output, context);
|
|
927
|
-
}
|
|
928
|
-
const contents = smithyClient.map({
|
|
929
|
-
$metadata: deserializeMetadata(output),
|
|
930
|
-
});
|
|
931
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
932
|
-
const doc = smithyClient.take(data, {
|
|
933
|
-
imageSetsMetadataSummaries: (_) => de_ImageSetsMetadataSummaries(_),
|
|
934
|
-
nextToken: smithyClient.expectString,
|
|
935
|
-
sort: smithyClient._json,
|
|
936
|
-
});
|
|
937
|
-
Object.assign(contents, doc);
|
|
938
|
-
return contents;
|
|
939
|
-
};
|
|
940
|
-
const de_StartDICOMImportJobCommand = async (output, context) => {
|
|
941
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
942
|
-
return de_CommandError(output, context);
|
|
943
|
-
}
|
|
944
|
-
const contents = smithyClient.map({
|
|
945
|
-
$metadata: deserializeMetadata(output),
|
|
946
|
-
});
|
|
947
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
948
|
-
const doc = smithyClient.take(data, {
|
|
949
|
-
datastoreId: smithyClient.expectString,
|
|
950
|
-
jobId: smithyClient.expectString,
|
|
951
|
-
jobStatus: smithyClient.expectString,
|
|
952
|
-
submittedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
953
|
-
});
|
|
954
|
-
Object.assign(contents, doc);
|
|
955
|
-
return contents;
|
|
956
|
-
};
|
|
957
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
958
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
959
|
-
return de_CommandError(output, context);
|
|
960
|
-
}
|
|
961
|
-
const contents = smithyClient.map({
|
|
962
|
-
$metadata: deserializeMetadata(output),
|
|
963
|
-
});
|
|
964
|
-
await smithyClient.collectBody(output.body, context);
|
|
965
|
-
return contents;
|
|
966
|
-
};
|
|
967
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
968
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
969
|
-
return de_CommandError(output, context);
|
|
970
|
-
}
|
|
971
|
-
const contents = smithyClient.map({
|
|
972
|
-
$metadata: deserializeMetadata(output),
|
|
973
|
-
});
|
|
974
|
-
await smithyClient.collectBody(output.body, context);
|
|
975
|
-
return contents;
|
|
976
|
-
};
|
|
977
|
-
const de_UpdateImageSetMetadataCommand = async (output, context) => {
|
|
978
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
979
|
-
return de_CommandError(output, context);
|
|
980
|
-
}
|
|
981
|
-
const contents = smithyClient.map({
|
|
982
|
-
$metadata: deserializeMetadata(output),
|
|
983
|
-
});
|
|
984
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
985
|
-
const doc = smithyClient.take(data, {
|
|
986
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
987
|
-
datastoreId: smithyClient.expectString,
|
|
988
|
-
imageSetId: smithyClient.expectString,
|
|
989
|
-
imageSetState: smithyClient.expectString,
|
|
990
|
-
imageSetWorkflowStatus: smithyClient.expectString,
|
|
991
|
-
latestVersionId: smithyClient.expectString,
|
|
992
|
-
message: smithyClient.expectString,
|
|
993
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
994
|
-
});
|
|
995
|
-
Object.assign(contents, doc);
|
|
996
|
-
return contents;
|
|
997
|
-
};
|
|
998
|
-
const de_CommandError = async (output, context) => {
|
|
999
|
-
const parsedOutput = {
|
|
1000
|
-
...output,
|
|
1001
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
1002
|
-
};
|
|
1003
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1004
|
-
switch (errorCode) {
|
|
1005
|
-
case "AccessDeniedException":
|
|
1006
|
-
case "com.amazonaws.medicalimaging#AccessDeniedException":
|
|
1007
|
-
throw await de_AccessDeniedExceptionRes(parsedOutput);
|
|
1008
|
-
case "ConflictException":
|
|
1009
|
-
case "com.amazonaws.medicalimaging#ConflictException":
|
|
1010
|
-
throw await de_ConflictExceptionRes(parsedOutput);
|
|
1011
|
-
case "InternalServerException":
|
|
1012
|
-
case "com.amazonaws.medicalimaging#InternalServerException":
|
|
1013
|
-
throw await de_InternalServerExceptionRes(parsedOutput);
|
|
1014
|
-
case "ResourceNotFoundException":
|
|
1015
|
-
case "com.amazonaws.medicalimaging#ResourceNotFoundException":
|
|
1016
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
1017
|
-
case "ServiceQuotaExceededException":
|
|
1018
|
-
case "com.amazonaws.medicalimaging#ServiceQuotaExceededException":
|
|
1019
|
-
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
|
|
1020
|
-
case "ThrottlingException":
|
|
1021
|
-
case "com.amazonaws.medicalimaging#ThrottlingException":
|
|
1022
|
-
throw await de_ThrottlingExceptionRes(parsedOutput);
|
|
1023
|
-
case "ValidationException":
|
|
1024
|
-
case "com.amazonaws.medicalimaging#ValidationException":
|
|
1025
|
-
throw await de_ValidationExceptionRes(parsedOutput);
|
|
1026
|
-
default:
|
|
1027
|
-
const parsedBody = parsedOutput.body;
|
|
1028
|
-
return throwDefaultError({
|
|
1029
|
-
output,
|
|
1030
|
-
parsedBody,
|
|
1031
|
-
errorCode,
|
|
1032
|
-
});
|
|
1033
|
-
}
|
|
1034
|
-
};
|
|
1035
|
-
const throwDefaultError = smithyClient.withBaseException(MedicalImagingServiceException);
|
|
1036
|
-
const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
1037
|
-
const contents = smithyClient.map({});
|
|
1038
|
-
const data = parsedOutput.body;
|
|
1039
|
-
const doc = smithyClient.take(data, {
|
|
1040
|
-
message: smithyClient.expectString,
|
|
1041
|
-
});
|
|
1042
|
-
Object.assign(contents, doc);
|
|
1043
|
-
const exception = new AccessDeniedException({
|
|
1044
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1045
|
-
...contents,
|
|
1046
|
-
});
|
|
1047
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1048
|
-
};
|
|
1049
|
-
const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
1050
|
-
const contents = smithyClient.map({});
|
|
1051
|
-
const data = parsedOutput.body;
|
|
1052
|
-
const doc = smithyClient.take(data, {
|
|
1053
|
-
message: smithyClient.expectString,
|
|
1054
|
-
});
|
|
1055
|
-
Object.assign(contents, doc);
|
|
1056
|
-
const exception = new ConflictException({
|
|
1057
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1058
|
-
...contents,
|
|
1059
|
-
});
|
|
1060
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1061
|
-
};
|
|
1062
|
-
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
1063
|
-
const contents = smithyClient.map({});
|
|
1064
|
-
const data = parsedOutput.body;
|
|
1065
|
-
const doc = smithyClient.take(data, {
|
|
1066
|
-
message: smithyClient.expectString,
|
|
1067
|
-
});
|
|
1068
|
-
Object.assign(contents, doc);
|
|
1069
|
-
const exception = new InternalServerException({
|
|
1070
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1071
|
-
...contents,
|
|
1072
|
-
});
|
|
1073
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1074
|
-
};
|
|
1075
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
1076
|
-
const contents = smithyClient.map({});
|
|
1077
|
-
const data = parsedOutput.body;
|
|
1078
|
-
const doc = smithyClient.take(data, {
|
|
1079
|
-
message: smithyClient.expectString,
|
|
1080
|
-
});
|
|
1081
|
-
Object.assign(contents, doc);
|
|
1082
|
-
const exception = new ResourceNotFoundException({
|
|
1083
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1084
|
-
...contents,
|
|
1085
|
-
});
|
|
1086
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1087
|
-
};
|
|
1088
|
-
const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
|
|
1089
|
-
const contents = smithyClient.map({});
|
|
1090
|
-
const data = parsedOutput.body;
|
|
1091
|
-
const doc = smithyClient.take(data, {
|
|
1092
|
-
message: smithyClient.expectString,
|
|
1093
|
-
});
|
|
1094
|
-
Object.assign(contents, doc);
|
|
1095
|
-
const exception = new ServiceQuotaExceededException({
|
|
1096
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1097
|
-
...contents,
|
|
1098
|
-
});
|
|
1099
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1100
|
-
};
|
|
1101
|
-
const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
|
|
1102
|
-
const contents = smithyClient.map({});
|
|
1103
|
-
const data = parsedOutput.body;
|
|
1104
|
-
const doc = smithyClient.take(data, {
|
|
1105
|
-
message: smithyClient.expectString,
|
|
1106
|
-
});
|
|
1107
|
-
Object.assign(contents, doc);
|
|
1108
|
-
const exception = new ThrottlingException({
|
|
1109
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1110
|
-
...contents,
|
|
1111
|
-
});
|
|
1112
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1113
|
-
};
|
|
1114
|
-
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
1115
|
-
const contents = smithyClient.map({});
|
|
1116
|
-
const data = parsedOutput.body;
|
|
1117
|
-
const doc = smithyClient.take(data, {
|
|
1118
|
-
message: smithyClient.expectString,
|
|
1119
|
-
});
|
|
1120
|
-
Object.assign(contents, doc);
|
|
1121
|
-
const exception = new ValidationException({
|
|
1122
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1123
|
-
...contents,
|
|
1124
|
-
});
|
|
1125
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1126
|
-
};
|
|
1127
|
-
const se_DICOMUpdates = (input, context) => {
|
|
1128
|
-
return smithyClient.take(input, {
|
|
1129
|
-
removableAttributes: context.base64Encoder,
|
|
1130
|
-
updatableAttributes: context.base64Encoder,
|
|
1131
|
-
});
|
|
1132
|
-
};
|
|
1133
|
-
const se_MetadataUpdates = (input, context) => {
|
|
1134
|
-
return exports.MetadataUpdates.visit(input, {
|
|
1135
|
-
DICOMUpdates: (value) => ({ DICOMUpdates: se_DICOMUpdates(value, context) }),
|
|
1136
|
-
revertToVersionId: (value) => ({ revertToVersionId: value }),
|
|
1137
|
-
_: (name, value) => ({ [name]: value }),
|
|
1138
|
-
});
|
|
1139
|
-
};
|
|
1140
|
-
const se_SearchByAttributeValue = (input, context) => {
|
|
1141
|
-
return exports.SearchByAttributeValue.visit(input, {
|
|
1142
|
-
DICOMAccessionNumber: (value) => ({ DICOMAccessionNumber: value }),
|
|
1143
|
-
DICOMPatientId: (value) => ({ DICOMPatientId: value }),
|
|
1144
|
-
DICOMSeriesInstanceUID: (value) => ({ DICOMSeriesInstanceUID: value }),
|
|
1145
|
-
DICOMStudyDateAndTime: (value) => ({ DICOMStudyDateAndTime: smithyClient._json(value) }),
|
|
1146
|
-
DICOMStudyId: (value) => ({ DICOMStudyId: value }),
|
|
1147
|
-
DICOMStudyInstanceUID: (value) => ({ DICOMStudyInstanceUID: value }),
|
|
1148
|
-
createdAt: (value) => ({ createdAt: value.getTime() / 1_000 }),
|
|
1149
|
-
isPrimary: (value) => ({ isPrimary: value }),
|
|
1150
|
-
updatedAt: (value) => ({ updatedAt: value.getTime() / 1_000 }),
|
|
1151
|
-
_: (name, value) => ({ [name]: value }),
|
|
1152
|
-
});
|
|
1153
|
-
};
|
|
1154
|
-
const se_SearchByAttributeValues = (input, context) => {
|
|
1155
|
-
return input
|
|
1156
|
-
.filter((e) => e != null)
|
|
1157
|
-
.map((entry) => {
|
|
1158
|
-
return se_SearchByAttributeValue(entry);
|
|
1159
|
-
});
|
|
1160
|
-
};
|
|
1161
|
-
const se_SearchCriteria = (input, context) => {
|
|
1162
|
-
return smithyClient.take(input, {
|
|
1163
|
-
filters: (_) => se_SearchFilters(_),
|
|
1164
|
-
sort: smithyClient._json,
|
|
1165
|
-
});
|
|
1166
|
-
};
|
|
1167
|
-
const se_SearchFilter = (input, context) => {
|
|
1168
|
-
return smithyClient.take(input, {
|
|
1169
|
-
operator: [],
|
|
1170
|
-
values: (_) => se_SearchByAttributeValues(_),
|
|
1171
|
-
});
|
|
1172
|
-
};
|
|
1173
|
-
const se_SearchFilters = (input, context) => {
|
|
1174
|
-
return input
|
|
1175
|
-
.filter((e) => e != null)
|
|
1176
|
-
.map((entry) => {
|
|
1177
|
-
return se_SearchFilter(entry);
|
|
1178
|
-
});
|
|
1179
|
-
};
|
|
1180
|
-
const de_CopyDestinationImageSetProperties = (output, context) => {
|
|
1181
|
-
return smithyClient.take(output, {
|
|
1182
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1183
|
-
imageSetArn: smithyClient.expectString,
|
|
1184
|
-
imageSetId: smithyClient.expectString,
|
|
1185
|
-
imageSetState: smithyClient.expectString,
|
|
1186
|
-
imageSetWorkflowStatus: smithyClient.expectString,
|
|
1187
|
-
latestVersionId: smithyClient.expectString,
|
|
1188
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1189
|
-
});
|
|
1190
|
-
};
|
|
1191
|
-
const de_CopySourceImageSetProperties = (output, context) => {
|
|
1192
|
-
return smithyClient.take(output, {
|
|
1193
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1194
|
-
imageSetArn: smithyClient.expectString,
|
|
1195
|
-
imageSetId: smithyClient.expectString,
|
|
1196
|
-
imageSetState: smithyClient.expectString,
|
|
1197
|
-
imageSetWorkflowStatus: smithyClient.expectString,
|
|
1198
|
-
latestVersionId: smithyClient.expectString,
|
|
1199
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1200
|
-
});
|
|
1201
|
-
};
|
|
1202
|
-
const de_DatastoreProperties = (output, context) => {
|
|
1203
|
-
return smithyClient.take(output, {
|
|
1204
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1205
|
-
datastoreArn: smithyClient.expectString,
|
|
1206
|
-
datastoreId: smithyClient.expectString,
|
|
1207
|
-
datastoreName: smithyClient.expectString,
|
|
1208
|
-
datastoreStatus: smithyClient.expectString,
|
|
1209
|
-
kmsKeyArn: smithyClient.expectString,
|
|
1210
|
-
lambdaAuthorizerArn: smithyClient.expectString,
|
|
1211
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1212
|
-
});
|
|
1213
|
-
};
|
|
1214
|
-
const de_DatastoreSummaries = (output, context) => {
|
|
1215
|
-
const retVal = (output || [])
|
|
1216
|
-
.filter((e) => e != null)
|
|
1217
|
-
.map((entry) => {
|
|
1218
|
-
return de_DatastoreSummary(entry);
|
|
1219
|
-
});
|
|
1220
|
-
return retVal;
|
|
1221
|
-
};
|
|
1222
|
-
const de_DatastoreSummary = (output, context) => {
|
|
1223
|
-
return smithyClient.take(output, {
|
|
1224
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1225
|
-
datastoreArn: smithyClient.expectString,
|
|
1226
|
-
datastoreId: smithyClient.expectString,
|
|
1227
|
-
datastoreName: smithyClient.expectString,
|
|
1228
|
-
datastoreStatus: smithyClient.expectString,
|
|
1229
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1230
|
-
});
|
|
1231
|
-
};
|
|
1232
|
-
const de_DICOMImportJobProperties = (output, context) => {
|
|
1233
|
-
return smithyClient.take(output, {
|
|
1234
|
-
dataAccessRoleArn: smithyClient.expectString,
|
|
1235
|
-
datastoreId: smithyClient.expectString,
|
|
1236
|
-
endedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1237
|
-
inputS3Uri: smithyClient.expectString,
|
|
1238
|
-
jobId: smithyClient.expectString,
|
|
1239
|
-
jobName: smithyClient.expectString,
|
|
1240
|
-
jobStatus: smithyClient.expectString,
|
|
1241
|
-
message: smithyClient.expectString,
|
|
1242
|
-
outputS3Uri: smithyClient.expectString,
|
|
1243
|
-
submittedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1244
|
-
});
|
|
1245
|
-
};
|
|
1246
|
-
const de_DICOMImportJobSummaries = (output, context) => {
|
|
1247
|
-
const retVal = (output || [])
|
|
1248
|
-
.filter((e) => e != null)
|
|
1249
|
-
.map((entry) => {
|
|
1250
|
-
return de_DICOMImportJobSummary(entry);
|
|
1251
|
-
});
|
|
1252
|
-
return retVal;
|
|
1253
|
-
};
|
|
1254
|
-
const de_DICOMImportJobSummary = (output, context) => {
|
|
1255
|
-
return smithyClient.take(output, {
|
|
1256
|
-
dataAccessRoleArn: smithyClient.expectString,
|
|
1257
|
-
datastoreId: smithyClient.expectString,
|
|
1258
|
-
endedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1259
|
-
jobId: smithyClient.expectString,
|
|
1260
|
-
jobName: smithyClient.expectString,
|
|
1261
|
-
jobStatus: smithyClient.expectString,
|
|
1262
|
-
message: smithyClient.expectString,
|
|
1263
|
-
submittedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1264
|
-
});
|
|
1265
|
-
};
|
|
1266
|
-
const de_ImageSetProperties = (output, context) => {
|
|
1267
|
-
return smithyClient.take(output, {
|
|
1268
|
-
ImageSetWorkflowStatus: smithyClient.expectString,
|
|
1269
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1270
|
-
deletedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1271
|
-
imageSetId: smithyClient.expectString,
|
|
1272
|
-
imageSetState: smithyClient.expectString,
|
|
1273
|
-
isPrimary: smithyClient.expectBoolean,
|
|
1274
|
-
message: smithyClient.expectString,
|
|
1275
|
-
overrides: smithyClient._json,
|
|
1276
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1277
|
-
versionId: smithyClient.expectString,
|
|
1278
|
-
});
|
|
1279
|
-
};
|
|
1280
|
-
const de_ImageSetPropertiesList = (output, context) => {
|
|
1281
|
-
const retVal = (output || [])
|
|
1282
|
-
.filter((e) => e != null)
|
|
1283
|
-
.map((entry) => {
|
|
1284
|
-
return de_ImageSetProperties(entry);
|
|
1285
|
-
});
|
|
1286
|
-
return retVal;
|
|
1287
|
-
};
|
|
1288
|
-
const de_ImageSetsMetadataSummaries = (output, context) => {
|
|
1289
|
-
const retVal = (output || [])
|
|
1290
|
-
.filter((e) => e != null)
|
|
1291
|
-
.map((entry) => {
|
|
1292
|
-
return de_ImageSetsMetadataSummary(entry);
|
|
1293
|
-
});
|
|
1294
|
-
return retVal;
|
|
1295
|
-
};
|
|
1296
|
-
const de_ImageSetsMetadataSummary = (output, context) => {
|
|
1297
|
-
return smithyClient.take(output, {
|
|
1298
|
-
DICOMTags: smithyClient._json,
|
|
1299
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1300
|
-
imageSetId: smithyClient.expectString,
|
|
1301
|
-
isPrimary: smithyClient.expectBoolean,
|
|
1302
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1303
|
-
version: smithyClient.expectInt32,
|
|
1304
|
-
});
|
|
1305
|
-
};
|
|
1306
|
-
const deserializeMetadata = (output) => ({
|
|
1307
|
-
httpStatusCode: output.statusCode,
|
|
1308
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1309
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1310
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1311
|
-
});
|
|
293
|
+
const _ADE = "AccessDeniedException";
|
|
294
|
+
const _CA = "CopiableAttributes";
|
|
295
|
+
const _CD = "CreateDatastore";
|
|
296
|
+
const _CDIS = "CopyDestinationImageSet";
|
|
297
|
+
const _CDISP = "CopyDestinationImageSetProperties";
|
|
298
|
+
const _CDR = "CreateDatastoreRequest";
|
|
299
|
+
const _CDRr = "CreateDatastoreResponse";
|
|
300
|
+
const _CE = "ConflictException";
|
|
301
|
+
const _CE_ = "Content-Encoding";
|
|
302
|
+
const _CIS = "CopyImageSet";
|
|
303
|
+
const _CISI = "CopyImageSetInformation";
|
|
304
|
+
const _CISR = "CopyImageSetRequest";
|
|
305
|
+
const _CISRo = "CopyImageSetResponse";
|
|
306
|
+
const _CSISI = "CopySourceImageSetInformation";
|
|
307
|
+
const _CSISP = "CopySourceImageSetProperties";
|
|
308
|
+
const _CT = "Content-Type";
|
|
309
|
+
const _DD = "DeleteDatastore";
|
|
310
|
+
const _DDR = "DeleteDatastoreRequest";
|
|
311
|
+
const _DDRe = "DeleteDatastoreResponse";
|
|
312
|
+
const _DICOMA = "DICOMAttribute";
|
|
313
|
+
const _DICOMAN = "DICOMAccessionNumber";
|
|
314
|
+
const _DICOMC = "DICOMCopies";
|
|
315
|
+
const _DICOMIJP = "DICOMImportJobProperties";
|
|
316
|
+
const _DICOMIJS = "DICOMImportJobSummary";
|
|
317
|
+
const _DICOMIJSm = "DICOMImportJobSummaries";
|
|
318
|
+
const _DICOMNOSRI = "DICOMNumberOfStudyRelatedInstances";
|
|
319
|
+
const _DICOMNOSRS = "DICOMNumberOfStudyRelatedSeries";
|
|
320
|
+
const _DICOMPBD = "DICOMPatientBirthDate";
|
|
321
|
+
const _DICOMPI = "DICOMPatientId";
|
|
322
|
+
const _DICOMPN = "DICOMPatientName";
|
|
323
|
+
const _DICOMPS = "DICOMPatientSex";
|
|
324
|
+
const _DICOMSBP = "DICOMSeriesBodyPart";
|
|
325
|
+
const _DICOMSD = "DICOMStudyDate";
|
|
326
|
+
const _DICOMSDAT = "DICOMStudyDateAndTime";
|
|
327
|
+
const _DICOMSDt = "DICOMStudyDescription";
|
|
328
|
+
const _DICOMSI = "DICOMStudyId";
|
|
329
|
+
const _DICOMSIUID = "DICOMSeriesInstanceUID";
|
|
330
|
+
const _DICOMSIUIDt = "DICOMStudyInstanceUID";
|
|
331
|
+
const _DICOMSM = "DICOMSeriesModality";
|
|
332
|
+
const _DICOMSN = "DICOMSeriesNumber";
|
|
333
|
+
const _DICOMST = "DICOMStudyTime";
|
|
334
|
+
const _DICOMT = "DICOMTags";
|
|
335
|
+
const _DICOMU = "DICOMUpdates";
|
|
336
|
+
const _DIS = "DeleteImageSet";
|
|
337
|
+
const _DISR = "DeleteImageSetRequest";
|
|
338
|
+
const _DISRe = "DeleteImageSetResponse";
|
|
339
|
+
const _DP = "DatastoreProperties";
|
|
340
|
+
const _DS = "DatastoreSummary";
|
|
341
|
+
const _DSa = "DatastoreSummaries";
|
|
342
|
+
const _GD = "GetDatastore";
|
|
343
|
+
const _GDICOMIJ = "GetDICOMImportJob";
|
|
344
|
+
const _GDICOMIJR = "GetDICOMImportJobRequest";
|
|
345
|
+
const _GDICOMIJRe = "GetDICOMImportJobResponse";
|
|
346
|
+
const _GDR = "GetDatastoreRequest";
|
|
347
|
+
const _GDRe = "GetDatastoreResponse";
|
|
348
|
+
const _GIF = "GetImageFrame";
|
|
349
|
+
const _GIFR = "GetImageFrameRequest";
|
|
350
|
+
const _GIFRe = "GetImageFrameResponse";
|
|
351
|
+
const _GIS = "GetImageSet";
|
|
352
|
+
const _GISM = "GetImageSetMetadata";
|
|
353
|
+
const _GISMR = "GetImageSetMetadataRequest";
|
|
354
|
+
const _GISMRe = "GetImageSetMetadataResponse";
|
|
355
|
+
const _GISR = "GetImageSetRequest";
|
|
356
|
+
const _GISRe = "GetImageSetResponse";
|
|
357
|
+
const _IFI = "ImageFrameInformation";
|
|
358
|
+
const _ISE = "InternalServerException";
|
|
359
|
+
const _ISMB = "ImageSetMetadataBlob";
|
|
360
|
+
const _ISMS = "ImageSetsMetadataSummary";
|
|
361
|
+
const _ISMSm = "ImageSetsMetadataSummaries";
|
|
362
|
+
const _ISP = "ImageSetProperties";
|
|
363
|
+
const _ISPL = "ImageSetPropertiesList";
|
|
364
|
+
const _ISWS = "ImageSetWorkflowStatus";
|
|
365
|
+
const _LD = "ListDatastores";
|
|
366
|
+
const _LDICOMIJ = "ListDICOMImportJobs";
|
|
367
|
+
const _LDICOMIJR = "ListDICOMImportJobsRequest";
|
|
368
|
+
const _LDICOMIJRi = "ListDICOMImportJobsResponse";
|
|
369
|
+
const _LDR = "ListDatastoresRequest";
|
|
370
|
+
const _LDRi = "ListDatastoresResponse";
|
|
371
|
+
const _LISV = "ListImageSetVersions";
|
|
372
|
+
const _LISVR = "ListImageSetVersionsRequest";
|
|
373
|
+
const _LISVRi = "ListImageSetVersionsResponse";
|
|
374
|
+
const _LTFR = "ListTagsForResource";
|
|
375
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
376
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
377
|
+
const _MC = "MetadataCopies";
|
|
378
|
+
const _MU = "MetadataUpdates";
|
|
379
|
+
const _O = "Overrides";
|
|
380
|
+
const _PB = "PayloadBlob";
|
|
381
|
+
const _RNFE = "ResourceNotFoundException";
|
|
382
|
+
const _S = "Sort";
|
|
383
|
+
const _SBAV = "SearchByAttributeValues";
|
|
384
|
+
const _SBAVe = "SearchByAttributeValue";
|
|
385
|
+
const _SC = "SearchCriteria";
|
|
386
|
+
const _SDICOMIJ = "StartDICOMImportJob";
|
|
387
|
+
const _SDICOMIJR = "StartDICOMImportJobRequest";
|
|
388
|
+
const _SDICOMIJRt = "StartDICOMImportJobResponse";
|
|
389
|
+
const _SF = "SearchFilter";
|
|
390
|
+
const _SFe = "SearchFilters";
|
|
391
|
+
const _SIS = "SearchImageSets";
|
|
392
|
+
const _SISR = "SearchImageSetsRequest";
|
|
393
|
+
const _SISRe = "SearchImageSetsResponse";
|
|
394
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
395
|
+
const _TE = "ThrottlingException";
|
|
396
|
+
const _TR = "TagResource";
|
|
397
|
+
const _TRR = "TagResourceRequest";
|
|
398
|
+
const _TRRa = "TagResourceResponse";
|
|
399
|
+
const _UISM = "UpdateImageSetMetadata";
|
|
400
|
+
const _UISMR = "UpdateImageSetMetadataRequest";
|
|
401
|
+
const _UISMRp = "UpdateImageSetMetadataResponse";
|
|
402
|
+
const _UR = "UntagResource";
|
|
403
|
+
const _URR = "UntagResourceRequest";
|
|
404
|
+
const _URRn = "UntagResourceResponse";
|
|
405
|
+
const _VE = "ValidationException";
|
|
406
|
+
const _c = "client";
|
|
407
|
+
const _cA = "createdAt";
|
|
408
|
+
const _cAo = "copiableAttributes";
|
|
1312
409
|
const _cE = "contentEncoding";
|
|
1313
|
-
const
|
|
1314
|
-
const
|
|
1315
|
-
const
|
|
410
|
+
const _cISI = "copyImageSetInformation";
|
|
411
|
+
const _cT = "clientToken";
|
|
412
|
+
const _cTo = "contentType";
|
|
413
|
+
const _dA = "datastoreArn";
|
|
414
|
+
const _dARA = "dataAccessRoleArn";
|
|
415
|
+
const _dAe = "deletedAt";
|
|
416
|
+
const _dI = "datastoreId";
|
|
417
|
+
const _dIS = "destinationImageSet";
|
|
418
|
+
const _dISP = "destinationImageSetProperties";
|
|
419
|
+
const _dN = "datastoreName";
|
|
420
|
+
const _dP = "datastoreProperties";
|
|
1316
421
|
const _dS = "datastoreStatus";
|
|
422
|
+
const _dSa = "datastoreSummaries";
|
|
423
|
+
const _e = "error";
|
|
424
|
+
const _eA = "endedAt";
|
|
425
|
+
const _en = "endpoint";
|
|
1317
426
|
const _f = "force";
|
|
427
|
+
const _fi = "filters";
|
|
428
|
+
const _fo = "forced";
|
|
429
|
+
const _h = "http";
|
|
430
|
+
const _hE = "httpError";
|
|
431
|
+
const _hH = "httpHeader";
|
|
432
|
+
const _hQ = "httpQuery";
|
|
433
|
+
const _iFB = "imageFrameBlob";
|
|
434
|
+
const _iFI = "imageFrameInformation";
|
|
435
|
+
const _iFIm = "imageFrameId";
|
|
436
|
+
const _iOAI = "inputOwnerAccountId";
|
|
437
|
+
const _iP = "isPrimary";
|
|
438
|
+
const _iSA = "imageSetArn";
|
|
439
|
+
const _iSI = "imageSetId";
|
|
440
|
+
const _iSMB = "imageSetMetadataBlob";
|
|
441
|
+
const _iSMS = "imageSetsMetadataSummaries";
|
|
442
|
+
const _iSPL = "imageSetPropertiesList";
|
|
443
|
+
const _iSS = "imageSetState";
|
|
444
|
+
const _iSU = "inputS3Uri";
|
|
445
|
+
const _iSWS = "imageSetWorkflowStatus";
|
|
446
|
+
const _jI = "jobId";
|
|
447
|
+
const _jN = "jobName";
|
|
448
|
+
const _jP = "jobProperties";
|
|
1318
449
|
const _jS = "jobStatus";
|
|
450
|
+
const _jSo = "jobSummaries";
|
|
451
|
+
const _kKA = "kmsKeyArn";
|
|
452
|
+
const _lAA = "lambdaAuthorizerArn";
|
|
453
|
+
const _lAAa = "lastAccessedAt";
|
|
454
|
+
const _lSF = "losslessStorageFormat";
|
|
1319
455
|
const _lV = "latestVersion";
|
|
1320
456
|
const _lVI = "latestVersionId";
|
|
457
|
+
const _m = "message";
|
|
1321
458
|
const _mR = "maxResults";
|
|
1322
459
|
const _nT = "nextToken";
|
|
460
|
+
const _o = "overrides";
|
|
461
|
+
const _oSU = "outputS3Uri";
|
|
462
|
+
const _op = "operator";
|
|
1323
463
|
const _pTP = "promoteToPrimary";
|
|
464
|
+
const _rA = "removableAttributes";
|
|
465
|
+
const _rAe = "resourceArn";
|
|
466
|
+
const _rTVI = "revertToVersionId";
|
|
467
|
+
const _s = "streaming";
|
|
468
|
+
const _sA = "submittedAt";
|
|
469
|
+
const _sC = "searchCriteria";
|
|
470
|
+
const _sF = "sortField";
|
|
471
|
+
const _sIS = "sourceImageSet";
|
|
472
|
+
const _sISI = "sourceImageSetId";
|
|
473
|
+
const _sISP = "sourceImageSetProperties";
|
|
474
|
+
const _sO = "sortOrder";
|
|
475
|
+
const _sT = "storageTier";
|
|
476
|
+
const _se = "server";
|
|
477
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.medicalimaging";
|
|
478
|
+
const _so = "sort";
|
|
479
|
+
const _t = "tags";
|
|
1324
480
|
const _tK = "tagKeys";
|
|
481
|
+
const _uA = "updatedAt";
|
|
482
|
+
const _uAp = "updatableAttributes";
|
|
483
|
+
const _uISMU = "updateImageSetMetadataUpdates";
|
|
1325
484
|
const _v = "version";
|
|
1326
485
|
const _vI = "versionId";
|
|
486
|
+
const _va = "values";
|
|
487
|
+
const n0 = "com.amazonaws.medicalimaging";
|
|
488
|
+
var CopiableAttributes = [0, n0, _CA, 8, 0];
|
|
489
|
+
var DICOMAccessionNumber = [0, n0, _DICOMAN, 8, 0];
|
|
490
|
+
var DICOMAttribute = [0, n0, _DICOMA, 8, 21];
|
|
491
|
+
var DICOMPatientBirthDate = [0, n0, _DICOMPBD, 8, 0];
|
|
492
|
+
var DICOMPatientId = [0, n0, _DICOMPI, 8, 0];
|
|
493
|
+
var DICOMPatientName = [0, n0, _DICOMPN, 8, 0];
|
|
494
|
+
var DICOMPatientSex = [0, n0, _DICOMPS, 8, 0];
|
|
495
|
+
var DICOMSeriesBodyPart = [0, n0, _DICOMSBP, 8, 0];
|
|
496
|
+
var DICOMSeriesInstanceUID = [0, n0, _DICOMSIUID, 8, 0];
|
|
497
|
+
var DICOMSeriesModality = [0, n0, _DICOMSM, 8, 0];
|
|
498
|
+
var DICOMSeriesNumber = [0, n0, _DICOMSN, 8, 1];
|
|
499
|
+
var DICOMStudyDate = [0, n0, _DICOMSD, 8, 0];
|
|
500
|
+
var DICOMStudyDescription = [0, n0, _DICOMSDt, 8, 0];
|
|
501
|
+
var DICOMStudyId = [0, n0, _DICOMSI, 8, 0];
|
|
502
|
+
var DICOMStudyInstanceUID = [0, n0, _DICOMSIUIDt, 8, 0];
|
|
503
|
+
var DICOMStudyTime = [0, n0, _DICOMST, 8, 0];
|
|
504
|
+
var ImageSetMetadataBlob = [
|
|
505
|
+
0,
|
|
506
|
+
n0,
|
|
507
|
+
_ISMB,
|
|
508
|
+
{
|
|
509
|
+
[_s]: 1,
|
|
510
|
+
},
|
|
511
|
+
42,
|
|
512
|
+
];
|
|
513
|
+
var PayloadBlob = [
|
|
514
|
+
0,
|
|
515
|
+
n0,
|
|
516
|
+
_PB,
|
|
517
|
+
{
|
|
518
|
+
[_s]: 1,
|
|
519
|
+
},
|
|
520
|
+
42,
|
|
521
|
+
];
|
|
522
|
+
var AccessDeniedException = [
|
|
523
|
+
-3,
|
|
524
|
+
n0,
|
|
525
|
+
_ADE,
|
|
526
|
+
{
|
|
527
|
+
[_e]: _c,
|
|
528
|
+
[_hE]: 403,
|
|
529
|
+
},
|
|
530
|
+
[_m],
|
|
531
|
+
[0],
|
|
532
|
+
];
|
|
533
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
534
|
+
var ConflictException = [
|
|
535
|
+
-3,
|
|
536
|
+
n0,
|
|
537
|
+
_CE,
|
|
538
|
+
{
|
|
539
|
+
[_e]: _c,
|
|
540
|
+
[_hE]: 409,
|
|
541
|
+
},
|
|
542
|
+
[_m],
|
|
543
|
+
[0],
|
|
544
|
+
];
|
|
545
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
546
|
+
var CopyDestinationImageSet = [3, n0, _CDIS, 0, [_iSI, _lVI], [0, 0]];
|
|
547
|
+
var CopyDestinationImageSetProperties = [
|
|
548
|
+
3,
|
|
549
|
+
n0,
|
|
550
|
+
_CDISP,
|
|
551
|
+
0,
|
|
552
|
+
[_iSI, _lVI, _iSS, _iSWS, _cA, _uA, _iSA],
|
|
553
|
+
[0, 0, 0, 0, 4, 4, 0],
|
|
554
|
+
];
|
|
555
|
+
var CopyImageSetInformation = [
|
|
556
|
+
3,
|
|
557
|
+
n0,
|
|
558
|
+
_CISI,
|
|
559
|
+
0,
|
|
560
|
+
[_sIS, _dIS],
|
|
561
|
+
[[() => CopySourceImageSetInformation, 0], () => CopyDestinationImageSet],
|
|
562
|
+
];
|
|
563
|
+
var CopyImageSetRequest = [
|
|
564
|
+
3,
|
|
565
|
+
n0,
|
|
566
|
+
_CISR,
|
|
567
|
+
0,
|
|
568
|
+
[_dI, _sISI, _cISI, _f, _pTP],
|
|
569
|
+
[
|
|
570
|
+
[0, 1],
|
|
571
|
+
[0, 1],
|
|
572
|
+
[() => CopyImageSetInformation, 16],
|
|
573
|
+
[
|
|
574
|
+
2,
|
|
575
|
+
{
|
|
576
|
+
[_hQ]: _f,
|
|
577
|
+
},
|
|
578
|
+
],
|
|
579
|
+
[
|
|
580
|
+
2,
|
|
581
|
+
{
|
|
582
|
+
[_hQ]: _pTP,
|
|
583
|
+
},
|
|
584
|
+
],
|
|
585
|
+
],
|
|
586
|
+
];
|
|
587
|
+
var CopyImageSetResponse = [
|
|
588
|
+
3,
|
|
589
|
+
n0,
|
|
590
|
+
_CISRo,
|
|
591
|
+
0,
|
|
592
|
+
[_dI, _sISP, _dISP],
|
|
593
|
+
[0, () => CopySourceImageSetProperties, () => CopyDestinationImageSetProperties],
|
|
594
|
+
];
|
|
595
|
+
var CopySourceImageSetInformation = [
|
|
596
|
+
3,
|
|
597
|
+
n0,
|
|
598
|
+
_CSISI,
|
|
599
|
+
0,
|
|
600
|
+
[_lVI, _DICOMC],
|
|
601
|
+
[0, [() => MetadataCopies, 0]],
|
|
602
|
+
];
|
|
603
|
+
var CopySourceImageSetProperties = [
|
|
604
|
+
3,
|
|
605
|
+
n0,
|
|
606
|
+
_CSISP,
|
|
607
|
+
0,
|
|
608
|
+
[_iSI, _lVI, _iSS, _iSWS, _cA, _uA, _iSA],
|
|
609
|
+
[0, 0, 0, 0, 4, 4, 0],
|
|
610
|
+
];
|
|
611
|
+
var CreateDatastoreRequest = [
|
|
612
|
+
3,
|
|
613
|
+
n0,
|
|
614
|
+
_CDR,
|
|
615
|
+
0,
|
|
616
|
+
[_dN, _cT, _t, _kKA, _lAA, _lSF],
|
|
617
|
+
[0, [0, 4], 128 | 0, 0, 0, 0],
|
|
618
|
+
];
|
|
619
|
+
var CreateDatastoreResponse = [3, n0, _CDRr, 0, [_dI, _dS], [0, 0]];
|
|
620
|
+
var DatastoreProperties = [
|
|
621
|
+
3,
|
|
622
|
+
n0,
|
|
623
|
+
_DP,
|
|
624
|
+
0,
|
|
625
|
+
[_dI, _dN, _dS, _kKA, _lAA, _lSF, _dA, _cA, _uA],
|
|
626
|
+
[0, 0, 0, 0, 0, 0, 0, 4, 4],
|
|
627
|
+
];
|
|
628
|
+
var DatastoreSummary = [
|
|
629
|
+
3,
|
|
630
|
+
n0,
|
|
631
|
+
_DS,
|
|
632
|
+
0,
|
|
633
|
+
[_dI, _dN, _dS, _dA, _cA, _uA],
|
|
634
|
+
[0, 0, 0, 0, 4, 4],
|
|
635
|
+
];
|
|
636
|
+
var DeleteDatastoreRequest = [3, n0, _DDR, 0, [_dI], [[0, 1]]];
|
|
637
|
+
var DeleteDatastoreResponse = [3, n0, _DDRe, 0, [_dI, _dS], [0, 0]];
|
|
638
|
+
var DeleteImageSetRequest = [
|
|
639
|
+
3,
|
|
640
|
+
n0,
|
|
641
|
+
_DISR,
|
|
642
|
+
0,
|
|
643
|
+
[_dI, _iSI],
|
|
644
|
+
[
|
|
645
|
+
[0, 1],
|
|
646
|
+
[0, 1],
|
|
647
|
+
],
|
|
648
|
+
];
|
|
649
|
+
var DeleteImageSetResponse = [3, n0, _DISRe, 0, [_dI, _iSI, _iSS, _iSWS], [0, 0, 0, 0]];
|
|
650
|
+
var DICOMImportJobProperties = [
|
|
651
|
+
3,
|
|
652
|
+
n0,
|
|
653
|
+
_DICOMIJP,
|
|
654
|
+
0,
|
|
655
|
+
[_jI, _jN, _jS, _dI, _dARA, _eA, _sA, _iSU, _oSU, _m],
|
|
656
|
+
[0, 0, 0, 0, 0, 4, 4, 0, 0, 0],
|
|
657
|
+
];
|
|
658
|
+
var DICOMImportJobSummary = [
|
|
659
|
+
3,
|
|
660
|
+
n0,
|
|
661
|
+
_DICOMIJS,
|
|
662
|
+
0,
|
|
663
|
+
[_jI, _jN, _jS, _dI, _dARA, _eA, _sA, _m],
|
|
664
|
+
[0, 0, 0, 0, 0, 4, 4, 0],
|
|
665
|
+
];
|
|
666
|
+
var DICOMStudyDateAndTime = [
|
|
667
|
+
3,
|
|
668
|
+
n0,
|
|
669
|
+
_DICOMSDAT,
|
|
670
|
+
0,
|
|
671
|
+
[_DICOMSD, _DICOMST],
|
|
672
|
+
[
|
|
673
|
+
[() => DICOMStudyDate, 0],
|
|
674
|
+
[() => DICOMStudyTime, 0],
|
|
675
|
+
],
|
|
676
|
+
];
|
|
677
|
+
var DICOMTags = [
|
|
678
|
+
3,
|
|
679
|
+
n0,
|
|
680
|
+
_DICOMT,
|
|
681
|
+
0,
|
|
682
|
+
[
|
|
683
|
+
_DICOMPI,
|
|
684
|
+
_DICOMPN,
|
|
685
|
+
_DICOMPBD,
|
|
686
|
+
_DICOMPS,
|
|
687
|
+
_DICOMSIUIDt,
|
|
688
|
+
_DICOMSI,
|
|
689
|
+
_DICOMSDt,
|
|
690
|
+
_DICOMNOSRS,
|
|
691
|
+
_DICOMNOSRI,
|
|
692
|
+
_DICOMAN,
|
|
693
|
+
_DICOMSIUID,
|
|
694
|
+
_DICOMSM,
|
|
695
|
+
_DICOMSBP,
|
|
696
|
+
_DICOMSN,
|
|
697
|
+
_DICOMSD,
|
|
698
|
+
_DICOMST,
|
|
699
|
+
],
|
|
700
|
+
[
|
|
701
|
+
[() => DICOMPatientId, 0],
|
|
702
|
+
[() => DICOMPatientName, 0],
|
|
703
|
+
[() => DICOMPatientBirthDate, 0],
|
|
704
|
+
[() => DICOMPatientSex, 0],
|
|
705
|
+
[() => DICOMStudyInstanceUID, 0],
|
|
706
|
+
[() => DICOMStudyId, 0],
|
|
707
|
+
[() => DICOMStudyDescription, 0],
|
|
708
|
+
1,
|
|
709
|
+
1,
|
|
710
|
+
[() => DICOMAccessionNumber, 0],
|
|
711
|
+
[() => DICOMSeriesInstanceUID, 0],
|
|
712
|
+
[() => DICOMSeriesModality, 0],
|
|
713
|
+
[() => DICOMSeriesBodyPart, 0],
|
|
714
|
+
[() => DICOMSeriesNumber, 0],
|
|
715
|
+
[() => DICOMStudyDate, 0],
|
|
716
|
+
[() => DICOMStudyTime, 0],
|
|
717
|
+
],
|
|
718
|
+
];
|
|
719
|
+
var DICOMUpdates = [
|
|
720
|
+
3,
|
|
721
|
+
n0,
|
|
722
|
+
_DICOMU,
|
|
723
|
+
0,
|
|
724
|
+
[_rA, _uAp],
|
|
725
|
+
[
|
|
726
|
+
[() => DICOMAttribute, 0],
|
|
727
|
+
[() => DICOMAttribute, 0],
|
|
728
|
+
],
|
|
729
|
+
];
|
|
730
|
+
var GetDatastoreRequest = [3, n0, _GDR, 0, [_dI], [[0, 1]]];
|
|
731
|
+
var GetDatastoreResponse = [3, n0, _GDRe, 0, [_dP], [() => DatastoreProperties]];
|
|
732
|
+
var GetDICOMImportJobRequest = [
|
|
733
|
+
3,
|
|
734
|
+
n0,
|
|
735
|
+
_GDICOMIJR,
|
|
736
|
+
0,
|
|
737
|
+
[_dI, _jI],
|
|
738
|
+
[
|
|
739
|
+
[0, 1],
|
|
740
|
+
[0, 1],
|
|
741
|
+
],
|
|
742
|
+
];
|
|
743
|
+
var GetDICOMImportJobResponse = [
|
|
744
|
+
3,
|
|
745
|
+
n0,
|
|
746
|
+
_GDICOMIJRe,
|
|
747
|
+
0,
|
|
748
|
+
[_jP],
|
|
749
|
+
[() => DICOMImportJobProperties],
|
|
750
|
+
];
|
|
751
|
+
var GetImageFrameRequest = [
|
|
752
|
+
3,
|
|
753
|
+
n0,
|
|
754
|
+
_GIFR,
|
|
755
|
+
0,
|
|
756
|
+
[_dI, _iSI, _iFI],
|
|
757
|
+
[
|
|
758
|
+
[0, 1],
|
|
759
|
+
[0, 1],
|
|
760
|
+
[() => ImageFrameInformation, 16],
|
|
761
|
+
],
|
|
762
|
+
];
|
|
763
|
+
var GetImageFrameResponse = [
|
|
764
|
+
3,
|
|
765
|
+
n0,
|
|
766
|
+
_GIFRe,
|
|
767
|
+
0,
|
|
768
|
+
[_iFB, _cTo],
|
|
769
|
+
[
|
|
770
|
+
[() => PayloadBlob, 16],
|
|
771
|
+
[
|
|
772
|
+
0,
|
|
773
|
+
{
|
|
774
|
+
[_hH]: _CT,
|
|
775
|
+
},
|
|
776
|
+
],
|
|
777
|
+
],
|
|
778
|
+
];
|
|
779
|
+
var GetImageSetMetadataRequest = [
|
|
780
|
+
3,
|
|
781
|
+
n0,
|
|
782
|
+
_GISMR,
|
|
783
|
+
0,
|
|
784
|
+
[_dI, _iSI, _vI],
|
|
785
|
+
[
|
|
786
|
+
[0, 1],
|
|
787
|
+
[0, 1],
|
|
788
|
+
[
|
|
789
|
+
0,
|
|
790
|
+
{
|
|
791
|
+
[_hQ]: _v,
|
|
792
|
+
},
|
|
793
|
+
],
|
|
794
|
+
],
|
|
795
|
+
];
|
|
796
|
+
var GetImageSetMetadataResponse = [
|
|
797
|
+
3,
|
|
798
|
+
n0,
|
|
799
|
+
_GISMRe,
|
|
800
|
+
0,
|
|
801
|
+
[_iSMB, _cTo, _cE],
|
|
802
|
+
[
|
|
803
|
+
[() => ImageSetMetadataBlob, 16],
|
|
804
|
+
[
|
|
805
|
+
0,
|
|
806
|
+
{
|
|
807
|
+
[_hH]: _CT,
|
|
808
|
+
},
|
|
809
|
+
],
|
|
810
|
+
[
|
|
811
|
+
0,
|
|
812
|
+
{
|
|
813
|
+
[_hH]: _CE_,
|
|
814
|
+
},
|
|
815
|
+
],
|
|
816
|
+
],
|
|
817
|
+
];
|
|
818
|
+
var GetImageSetRequest = [
|
|
819
|
+
3,
|
|
820
|
+
n0,
|
|
821
|
+
_GISR,
|
|
822
|
+
0,
|
|
823
|
+
[_dI, _iSI, _vI],
|
|
824
|
+
[
|
|
825
|
+
[0, 1],
|
|
826
|
+
[0, 1],
|
|
827
|
+
[
|
|
828
|
+
0,
|
|
829
|
+
{
|
|
830
|
+
[_hQ]: _v,
|
|
831
|
+
},
|
|
832
|
+
],
|
|
833
|
+
],
|
|
834
|
+
];
|
|
835
|
+
var GetImageSetResponse = [
|
|
836
|
+
3,
|
|
837
|
+
n0,
|
|
838
|
+
_GISRe,
|
|
839
|
+
0,
|
|
840
|
+
[_dI, _iSI, _vI, _iSS, _iSWS, _cA, _uA, _dAe, _m, _iSA, _o, _iP, _lAAa, _sT],
|
|
841
|
+
[0, 0, 0, 0, 0, 4, 4, 4, 0, 0, () => Overrides, 2, 4, 0],
|
|
842
|
+
];
|
|
843
|
+
var ImageFrameInformation = [3, n0, _IFI, 0, [_iFIm], [0]];
|
|
844
|
+
var ImageSetProperties = [
|
|
845
|
+
3,
|
|
846
|
+
n0,
|
|
847
|
+
_ISP,
|
|
848
|
+
0,
|
|
849
|
+
[_iSI, _vI, _iSS, _ISWS, _cA, _uA, _dAe, _m, _o, _iP],
|
|
850
|
+
[0, 0, 0, 0, 4, 4, 4, 0, () => Overrides, 2],
|
|
851
|
+
];
|
|
852
|
+
var ImageSetsMetadataSummary = [
|
|
853
|
+
3,
|
|
854
|
+
n0,
|
|
855
|
+
_ISMS,
|
|
856
|
+
0,
|
|
857
|
+
[_iSI, _v, _cA, _uA, _lAAa, _sT, _DICOMT, _iP],
|
|
858
|
+
[0, 1, 4, 4, 4, 0, [() => DICOMTags, 0], 2],
|
|
859
|
+
];
|
|
860
|
+
var InternalServerException = [
|
|
861
|
+
-3,
|
|
862
|
+
n0,
|
|
863
|
+
_ISE,
|
|
864
|
+
{
|
|
865
|
+
[_e]: _se,
|
|
866
|
+
[_hE]: 500,
|
|
867
|
+
},
|
|
868
|
+
[_m],
|
|
869
|
+
[0],
|
|
870
|
+
];
|
|
871
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
872
|
+
var ListDatastoresRequest = [
|
|
873
|
+
3,
|
|
874
|
+
n0,
|
|
875
|
+
_LDR,
|
|
876
|
+
0,
|
|
877
|
+
[_dS, _nT, _mR],
|
|
878
|
+
[
|
|
879
|
+
[
|
|
880
|
+
0,
|
|
881
|
+
{
|
|
882
|
+
[_hQ]: _dS,
|
|
883
|
+
},
|
|
884
|
+
],
|
|
885
|
+
[
|
|
886
|
+
0,
|
|
887
|
+
{
|
|
888
|
+
[_hQ]: _nT,
|
|
889
|
+
},
|
|
890
|
+
],
|
|
891
|
+
[
|
|
892
|
+
1,
|
|
893
|
+
{
|
|
894
|
+
[_hQ]: _mR,
|
|
895
|
+
},
|
|
896
|
+
],
|
|
897
|
+
],
|
|
898
|
+
];
|
|
899
|
+
var ListDatastoresResponse = [
|
|
900
|
+
3,
|
|
901
|
+
n0,
|
|
902
|
+
_LDRi,
|
|
903
|
+
0,
|
|
904
|
+
[_dSa, _nT],
|
|
905
|
+
[() => DatastoreSummaries, 0],
|
|
906
|
+
];
|
|
907
|
+
var ListDICOMImportJobsRequest = [
|
|
908
|
+
3,
|
|
909
|
+
n0,
|
|
910
|
+
_LDICOMIJR,
|
|
911
|
+
0,
|
|
912
|
+
[_dI, _jS, _nT, _mR],
|
|
913
|
+
[
|
|
914
|
+
[0, 1],
|
|
915
|
+
[
|
|
916
|
+
0,
|
|
917
|
+
{
|
|
918
|
+
[_hQ]: _jS,
|
|
919
|
+
},
|
|
920
|
+
],
|
|
921
|
+
[
|
|
922
|
+
0,
|
|
923
|
+
{
|
|
924
|
+
[_hQ]: _nT,
|
|
925
|
+
},
|
|
926
|
+
],
|
|
927
|
+
[
|
|
928
|
+
1,
|
|
929
|
+
{
|
|
930
|
+
[_hQ]: _mR,
|
|
931
|
+
},
|
|
932
|
+
],
|
|
933
|
+
],
|
|
934
|
+
];
|
|
935
|
+
var ListDICOMImportJobsResponse = [
|
|
936
|
+
3,
|
|
937
|
+
n0,
|
|
938
|
+
_LDICOMIJRi,
|
|
939
|
+
0,
|
|
940
|
+
[_jSo, _nT],
|
|
941
|
+
[() => DICOMImportJobSummaries, 0],
|
|
942
|
+
];
|
|
943
|
+
var ListImageSetVersionsRequest = [
|
|
944
|
+
3,
|
|
945
|
+
n0,
|
|
946
|
+
_LISVR,
|
|
947
|
+
0,
|
|
948
|
+
[_dI, _iSI, _nT, _mR],
|
|
949
|
+
[
|
|
950
|
+
[0, 1],
|
|
951
|
+
[0, 1],
|
|
952
|
+
[
|
|
953
|
+
0,
|
|
954
|
+
{
|
|
955
|
+
[_hQ]: _nT,
|
|
956
|
+
},
|
|
957
|
+
],
|
|
958
|
+
[
|
|
959
|
+
1,
|
|
960
|
+
{
|
|
961
|
+
[_hQ]: _mR,
|
|
962
|
+
},
|
|
963
|
+
],
|
|
964
|
+
],
|
|
965
|
+
];
|
|
966
|
+
var ListImageSetVersionsResponse = [
|
|
967
|
+
3,
|
|
968
|
+
n0,
|
|
969
|
+
_LISVRi,
|
|
970
|
+
0,
|
|
971
|
+
[_iSPL, _nT],
|
|
972
|
+
[() => ImageSetPropertiesList, 0],
|
|
973
|
+
];
|
|
974
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rAe], [[0, 1]]];
|
|
975
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
|
|
976
|
+
var MetadataCopies = [3, n0, _MC, 0, [_cAo], [[() => CopiableAttributes, 0]]];
|
|
977
|
+
var Overrides = [3, n0, _O, 0, [_fo], [2]];
|
|
978
|
+
var ResourceNotFoundException = [
|
|
979
|
+
-3,
|
|
980
|
+
n0,
|
|
981
|
+
_RNFE,
|
|
982
|
+
{
|
|
983
|
+
[_e]: _c,
|
|
984
|
+
[_hE]: 404,
|
|
985
|
+
},
|
|
986
|
+
[_m],
|
|
987
|
+
[0],
|
|
988
|
+
];
|
|
989
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
990
|
+
var SearchCriteria = [3, n0, _SC, 8, [_fi, _so], [[() => SearchFilters, 0], () => Sort]];
|
|
991
|
+
var SearchFilter = [3, n0, _SF, 0, [_va, _op], [[() => SearchByAttributeValues, 0], 0]];
|
|
992
|
+
var SearchImageSetsRequest = [
|
|
993
|
+
3,
|
|
994
|
+
n0,
|
|
995
|
+
_SISR,
|
|
996
|
+
0,
|
|
997
|
+
[_dI, _sC, _mR, _nT],
|
|
998
|
+
[
|
|
999
|
+
[0, 1],
|
|
1000
|
+
[() => SearchCriteria, 16],
|
|
1001
|
+
[
|
|
1002
|
+
1,
|
|
1003
|
+
{
|
|
1004
|
+
[_hQ]: _mR,
|
|
1005
|
+
},
|
|
1006
|
+
],
|
|
1007
|
+
[
|
|
1008
|
+
0,
|
|
1009
|
+
{
|
|
1010
|
+
[_hQ]: _nT,
|
|
1011
|
+
},
|
|
1012
|
+
],
|
|
1013
|
+
],
|
|
1014
|
+
];
|
|
1015
|
+
var SearchImageSetsResponse = [
|
|
1016
|
+
3,
|
|
1017
|
+
n0,
|
|
1018
|
+
_SISRe,
|
|
1019
|
+
0,
|
|
1020
|
+
[_iSMS, _so, _nT],
|
|
1021
|
+
[[() => ImageSetsMetadataSummaries, 0], () => Sort, 0],
|
|
1022
|
+
];
|
|
1023
|
+
var ServiceQuotaExceededException = [
|
|
1024
|
+
-3,
|
|
1025
|
+
n0,
|
|
1026
|
+
_SQEE,
|
|
1027
|
+
{
|
|
1028
|
+
[_e]: _c,
|
|
1029
|
+
[_hE]: 402,
|
|
1030
|
+
},
|
|
1031
|
+
[_m],
|
|
1032
|
+
[0],
|
|
1033
|
+
];
|
|
1034
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
1035
|
+
var Sort = [3, n0, _S, 0, [_sO, _sF], [0, 0]];
|
|
1036
|
+
var StartDICOMImportJobRequest = [
|
|
1037
|
+
3,
|
|
1038
|
+
n0,
|
|
1039
|
+
_SDICOMIJR,
|
|
1040
|
+
0,
|
|
1041
|
+
[_jN, _dARA, _cT, _dI, _iSU, _oSU, _iOAI],
|
|
1042
|
+
[0, 0, [0, 4], [0, 1], 0, 0, 0],
|
|
1043
|
+
];
|
|
1044
|
+
var StartDICOMImportJobResponse = [
|
|
1045
|
+
3,
|
|
1046
|
+
n0,
|
|
1047
|
+
_SDICOMIJRt,
|
|
1048
|
+
0,
|
|
1049
|
+
[_dI, _jI, _jS, _sA],
|
|
1050
|
+
[0, 0, 0, 4],
|
|
1051
|
+
];
|
|
1052
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_rAe, _t], [[0, 1], 128 | 0]];
|
|
1053
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
1054
|
+
var ThrottlingException = [
|
|
1055
|
+
-3,
|
|
1056
|
+
n0,
|
|
1057
|
+
_TE,
|
|
1058
|
+
{
|
|
1059
|
+
[_e]: _c,
|
|
1060
|
+
[_hE]: 429,
|
|
1061
|
+
},
|
|
1062
|
+
[_m],
|
|
1063
|
+
[0],
|
|
1064
|
+
];
|
|
1065
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
1066
|
+
var UntagResourceRequest = [
|
|
1067
|
+
3,
|
|
1068
|
+
n0,
|
|
1069
|
+
_URR,
|
|
1070
|
+
0,
|
|
1071
|
+
[_rAe, _tK],
|
|
1072
|
+
[
|
|
1073
|
+
[0, 1],
|
|
1074
|
+
[
|
|
1075
|
+
64 | 0,
|
|
1076
|
+
{
|
|
1077
|
+
[_hQ]: _tK,
|
|
1078
|
+
},
|
|
1079
|
+
],
|
|
1080
|
+
],
|
|
1081
|
+
];
|
|
1082
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
1083
|
+
var UpdateImageSetMetadataRequest = [
|
|
1084
|
+
3,
|
|
1085
|
+
n0,
|
|
1086
|
+
_UISMR,
|
|
1087
|
+
0,
|
|
1088
|
+
[_dI, _iSI, _lVI, _f, _uISMU],
|
|
1089
|
+
[
|
|
1090
|
+
[0, 1],
|
|
1091
|
+
[0, 1],
|
|
1092
|
+
[
|
|
1093
|
+
0,
|
|
1094
|
+
{
|
|
1095
|
+
[_hQ]: _lV,
|
|
1096
|
+
},
|
|
1097
|
+
],
|
|
1098
|
+
[
|
|
1099
|
+
2,
|
|
1100
|
+
{
|
|
1101
|
+
[_hQ]: _f,
|
|
1102
|
+
},
|
|
1103
|
+
],
|
|
1104
|
+
[() => MetadataUpdates, 16],
|
|
1105
|
+
],
|
|
1106
|
+
];
|
|
1107
|
+
var UpdateImageSetMetadataResponse = [
|
|
1108
|
+
3,
|
|
1109
|
+
n0,
|
|
1110
|
+
_UISMRp,
|
|
1111
|
+
0,
|
|
1112
|
+
[_dI, _iSI, _lVI, _iSS, _iSWS, _cA, _uA, _m],
|
|
1113
|
+
[0, 0, 0, 0, 0, 4, 4, 0],
|
|
1114
|
+
];
|
|
1115
|
+
var ValidationException = [
|
|
1116
|
+
-3,
|
|
1117
|
+
n0,
|
|
1118
|
+
_VE,
|
|
1119
|
+
{
|
|
1120
|
+
[_e]: _c,
|
|
1121
|
+
[_hE]: 400,
|
|
1122
|
+
},
|
|
1123
|
+
[_m],
|
|
1124
|
+
[0],
|
|
1125
|
+
];
|
|
1126
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
1127
|
+
var MedicalImagingServiceException = [-3, _sm, "MedicalImagingServiceException", 0, [], []];
|
|
1128
|
+
schema.TypeRegistry.for(_sm).registerError(MedicalImagingServiceException, MedicalImagingServiceException$1);
|
|
1129
|
+
var DatastoreSummaries = [1, n0, _DSa, 0, () => DatastoreSummary];
|
|
1130
|
+
var DICOMImportJobSummaries = [1, n0, _DICOMIJSm, 0, () => DICOMImportJobSummary];
|
|
1131
|
+
var ImageSetPropertiesList = [1, n0, _ISPL, 0, () => ImageSetProperties];
|
|
1132
|
+
var ImageSetsMetadataSummaries = [1, n0, _ISMSm, 0, [() => ImageSetsMetadataSummary, 0]];
|
|
1133
|
+
var SearchByAttributeValues = [1, n0, _SBAV, 0, [() => SearchByAttributeValue, 0]];
|
|
1134
|
+
var SearchFilters = [1, n0, _SFe, 0, [() => SearchFilter, 0]];
|
|
1135
|
+
var MetadataUpdates = [3, n0, _MU, 0, [_DICOMU, _rTVI], [[() => DICOMUpdates, 0], 0]];
|
|
1136
|
+
var SearchByAttributeValue = [
|
|
1137
|
+
3,
|
|
1138
|
+
n0,
|
|
1139
|
+
_SBAVe,
|
|
1140
|
+
0,
|
|
1141
|
+
[_DICOMPI, _DICOMAN, _DICOMSI, _DICOMSIUIDt, _DICOMSIUID, _cA, _uA, _DICOMSDAT, _iP],
|
|
1142
|
+
[
|
|
1143
|
+
[() => DICOMPatientId, 0],
|
|
1144
|
+
[() => DICOMAccessionNumber, 0],
|
|
1145
|
+
[() => DICOMStudyId, 0],
|
|
1146
|
+
[() => DICOMStudyInstanceUID, 0],
|
|
1147
|
+
[() => DICOMSeriesInstanceUID, 0],
|
|
1148
|
+
4,
|
|
1149
|
+
4,
|
|
1150
|
+
[() => DICOMStudyDateAndTime, 0],
|
|
1151
|
+
2,
|
|
1152
|
+
],
|
|
1153
|
+
];
|
|
1154
|
+
var CopyImageSet = [
|
|
1155
|
+
9,
|
|
1156
|
+
n0,
|
|
1157
|
+
_CIS,
|
|
1158
|
+
{
|
|
1159
|
+
[_h]: ["POST", "/datastore/{datastoreId}/imageSet/{sourceImageSetId}/copyImageSet", 200],
|
|
1160
|
+
[_en]: ["runtime-"],
|
|
1161
|
+
},
|
|
1162
|
+
() => CopyImageSetRequest,
|
|
1163
|
+
() => CopyImageSetResponse,
|
|
1164
|
+
];
|
|
1165
|
+
var CreateDatastore = [
|
|
1166
|
+
9,
|
|
1167
|
+
n0,
|
|
1168
|
+
_CD,
|
|
1169
|
+
{
|
|
1170
|
+
[_h]: ["POST", "/datastore", 200],
|
|
1171
|
+
},
|
|
1172
|
+
() => CreateDatastoreRequest,
|
|
1173
|
+
() => CreateDatastoreResponse,
|
|
1174
|
+
];
|
|
1175
|
+
var DeleteDatastore = [
|
|
1176
|
+
9,
|
|
1177
|
+
n0,
|
|
1178
|
+
_DD,
|
|
1179
|
+
{
|
|
1180
|
+
[_h]: ["DELETE", "/datastore/{datastoreId}", 200],
|
|
1181
|
+
},
|
|
1182
|
+
() => DeleteDatastoreRequest,
|
|
1183
|
+
() => DeleteDatastoreResponse,
|
|
1184
|
+
];
|
|
1185
|
+
var DeleteImageSet = [
|
|
1186
|
+
9,
|
|
1187
|
+
n0,
|
|
1188
|
+
_DIS,
|
|
1189
|
+
{
|
|
1190
|
+
[_h]: ["POST", "/datastore/{datastoreId}/imageSet/{imageSetId}/deleteImageSet", 200],
|
|
1191
|
+
[_en]: ["runtime-"],
|
|
1192
|
+
},
|
|
1193
|
+
() => DeleteImageSetRequest,
|
|
1194
|
+
() => DeleteImageSetResponse,
|
|
1195
|
+
];
|
|
1196
|
+
var GetDatastore = [
|
|
1197
|
+
9,
|
|
1198
|
+
n0,
|
|
1199
|
+
_GD,
|
|
1200
|
+
{
|
|
1201
|
+
[_h]: ["GET", "/datastore/{datastoreId}", 200],
|
|
1202
|
+
},
|
|
1203
|
+
() => GetDatastoreRequest,
|
|
1204
|
+
() => GetDatastoreResponse,
|
|
1205
|
+
];
|
|
1206
|
+
var GetDICOMImportJob = [
|
|
1207
|
+
9,
|
|
1208
|
+
n0,
|
|
1209
|
+
_GDICOMIJ,
|
|
1210
|
+
{
|
|
1211
|
+
[_h]: ["GET", "/getDICOMImportJob/datastore/{datastoreId}/job/{jobId}", 200],
|
|
1212
|
+
},
|
|
1213
|
+
() => GetDICOMImportJobRequest,
|
|
1214
|
+
() => GetDICOMImportJobResponse,
|
|
1215
|
+
];
|
|
1216
|
+
var GetImageFrame = [
|
|
1217
|
+
9,
|
|
1218
|
+
n0,
|
|
1219
|
+
_GIF,
|
|
1220
|
+
{
|
|
1221
|
+
[_h]: ["POST", "/datastore/{datastoreId}/imageSet/{imageSetId}/getImageFrame", 200],
|
|
1222
|
+
[_en]: ["runtime-"],
|
|
1223
|
+
},
|
|
1224
|
+
() => GetImageFrameRequest,
|
|
1225
|
+
() => GetImageFrameResponse,
|
|
1226
|
+
];
|
|
1227
|
+
var GetImageSet = [
|
|
1228
|
+
9,
|
|
1229
|
+
n0,
|
|
1230
|
+
_GIS,
|
|
1231
|
+
{
|
|
1232
|
+
[_h]: ["POST", "/datastore/{datastoreId}/imageSet/{imageSetId}/getImageSet", 200],
|
|
1233
|
+
[_en]: ["runtime-"],
|
|
1234
|
+
},
|
|
1235
|
+
() => GetImageSetRequest,
|
|
1236
|
+
() => GetImageSetResponse,
|
|
1237
|
+
];
|
|
1238
|
+
var GetImageSetMetadata = [
|
|
1239
|
+
9,
|
|
1240
|
+
n0,
|
|
1241
|
+
_GISM,
|
|
1242
|
+
{
|
|
1243
|
+
[_h]: ["POST", "/datastore/{datastoreId}/imageSet/{imageSetId}/getImageSetMetadata", 200],
|
|
1244
|
+
[_en]: ["runtime-"],
|
|
1245
|
+
},
|
|
1246
|
+
() => GetImageSetMetadataRequest,
|
|
1247
|
+
() => GetImageSetMetadataResponse,
|
|
1248
|
+
];
|
|
1249
|
+
var ListDatastores = [
|
|
1250
|
+
9,
|
|
1251
|
+
n0,
|
|
1252
|
+
_LD,
|
|
1253
|
+
{
|
|
1254
|
+
[_h]: ["GET", "/datastore", 200],
|
|
1255
|
+
},
|
|
1256
|
+
() => ListDatastoresRequest,
|
|
1257
|
+
() => ListDatastoresResponse,
|
|
1258
|
+
];
|
|
1259
|
+
var ListDICOMImportJobs = [
|
|
1260
|
+
9,
|
|
1261
|
+
n0,
|
|
1262
|
+
_LDICOMIJ,
|
|
1263
|
+
{
|
|
1264
|
+
[_h]: ["GET", "/listDICOMImportJobs/datastore/{datastoreId}", 200],
|
|
1265
|
+
},
|
|
1266
|
+
() => ListDICOMImportJobsRequest,
|
|
1267
|
+
() => ListDICOMImportJobsResponse,
|
|
1268
|
+
];
|
|
1269
|
+
var ListImageSetVersions = [
|
|
1270
|
+
9,
|
|
1271
|
+
n0,
|
|
1272
|
+
_LISV,
|
|
1273
|
+
{
|
|
1274
|
+
[_h]: ["POST", "/datastore/{datastoreId}/imageSet/{imageSetId}/listImageSetVersions", 200],
|
|
1275
|
+
[_en]: ["runtime-"],
|
|
1276
|
+
},
|
|
1277
|
+
() => ListImageSetVersionsRequest,
|
|
1278
|
+
() => ListImageSetVersionsResponse,
|
|
1279
|
+
];
|
|
1280
|
+
var ListTagsForResource = [
|
|
1281
|
+
9,
|
|
1282
|
+
n0,
|
|
1283
|
+
_LTFR,
|
|
1284
|
+
{
|
|
1285
|
+
[_h]: ["GET", "/tags/{resourceArn}", 200],
|
|
1286
|
+
},
|
|
1287
|
+
() => ListTagsForResourceRequest,
|
|
1288
|
+
() => ListTagsForResourceResponse,
|
|
1289
|
+
];
|
|
1290
|
+
var SearchImageSets = [
|
|
1291
|
+
9,
|
|
1292
|
+
n0,
|
|
1293
|
+
_SIS,
|
|
1294
|
+
{
|
|
1295
|
+
[_h]: ["POST", "/datastore/{datastoreId}/searchImageSets", 200],
|
|
1296
|
+
[_en]: ["runtime-"],
|
|
1297
|
+
},
|
|
1298
|
+
() => SearchImageSetsRequest,
|
|
1299
|
+
() => SearchImageSetsResponse,
|
|
1300
|
+
];
|
|
1301
|
+
var StartDICOMImportJob = [
|
|
1302
|
+
9,
|
|
1303
|
+
n0,
|
|
1304
|
+
_SDICOMIJ,
|
|
1305
|
+
{
|
|
1306
|
+
[_h]: ["POST", "/startDICOMImportJob/datastore/{datastoreId}", 200],
|
|
1307
|
+
},
|
|
1308
|
+
() => StartDICOMImportJobRequest,
|
|
1309
|
+
() => StartDICOMImportJobResponse,
|
|
1310
|
+
];
|
|
1311
|
+
var TagResource = [
|
|
1312
|
+
9,
|
|
1313
|
+
n0,
|
|
1314
|
+
_TR,
|
|
1315
|
+
{
|
|
1316
|
+
[_h]: ["POST", "/tags/{resourceArn}", 200],
|
|
1317
|
+
},
|
|
1318
|
+
() => TagResourceRequest,
|
|
1319
|
+
() => TagResourceResponse,
|
|
1320
|
+
];
|
|
1321
|
+
var UntagResource = [
|
|
1322
|
+
9,
|
|
1323
|
+
n0,
|
|
1324
|
+
_UR,
|
|
1325
|
+
{
|
|
1326
|
+
[_h]: ["DELETE", "/tags/{resourceArn}", 200],
|
|
1327
|
+
},
|
|
1328
|
+
() => UntagResourceRequest,
|
|
1329
|
+
() => UntagResourceResponse,
|
|
1330
|
+
];
|
|
1331
|
+
var UpdateImageSetMetadata = [
|
|
1332
|
+
9,
|
|
1333
|
+
n0,
|
|
1334
|
+
_UISM,
|
|
1335
|
+
{
|
|
1336
|
+
[_h]: ["POST", "/datastore/{datastoreId}/imageSet/{imageSetId}/updateImageSetMetadata", 200],
|
|
1337
|
+
[_en]: ["runtime-"],
|
|
1338
|
+
},
|
|
1339
|
+
() => UpdateImageSetMetadataRequest,
|
|
1340
|
+
() => UpdateImageSetMetadataResponse,
|
|
1341
|
+
];
|
|
1327
1342
|
|
|
1328
1343
|
class CopyImageSetCommand extends smithyClient.Command
|
|
1329
1344
|
.classBuilder()
|
|
1330
1345
|
.ep(commonParams)
|
|
1331
1346
|
.m(function (Command, cs, config, o) {
|
|
1332
|
-
return [
|
|
1333
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1334
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1335
|
-
];
|
|
1347
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1336
1348
|
})
|
|
1337
1349
|
.s("AHIGatewayService", "CopyImageSet", {})
|
|
1338
1350
|
.n("MedicalImagingClient", "CopyImageSetCommand")
|
|
1339
|
-
.
|
|
1340
|
-
.ser(se_CopyImageSetCommand)
|
|
1341
|
-
.de(de_CopyImageSetCommand)
|
|
1351
|
+
.sc(CopyImageSet)
|
|
1342
1352
|
.build() {
|
|
1343
1353
|
}
|
|
1344
1354
|
|
|
@@ -1346,16 +1356,11 @@ class CreateDatastoreCommand extends smithyClient.Command
|
|
|
1346
1356
|
.classBuilder()
|
|
1347
1357
|
.ep(commonParams)
|
|
1348
1358
|
.m(function (Command, cs, config, o) {
|
|
1349
|
-
return [
|
|
1350
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1351
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1352
|
-
];
|
|
1359
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1353
1360
|
})
|
|
1354
1361
|
.s("AHIGatewayService", "CreateDatastore", {})
|
|
1355
1362
|
.n("MedicalImagingClient", "CreateDatastoreCommand")
|
|
1356
|
-
.
|
|
1357
|
-
.ser(se_CreateDatastoreCommand)
|
|
1358
|
-
.de(de_CreateDatastoreCommand)
|
|
1363
|
+
.sc(CreateDatastore)
|
|
1359
1364
|
.build() {
|
|
1360
1365
|
}
|
|
1361
1366
|
|
|
@@ -1363,16 +1368,11 @@ class DeleteDatastoreCommand extends smithyClient.Command
|
|
|
1363
1368
|
.classBuilder()
|
|
1364
1369
|
.ep(commonParams)
|
|
1365
1370
|
.m(function (Command, cs, config, o) {
|
|
1366
|
-
return [
|
|
1367
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1368
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1369
|
-
];
|
|
1371
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1370
1372
|
})
|
|
1371
1373
|
.s("AHIGatewayService", "DeleteDatastore", {})
|
|
1372
1374
|
.n("MedicalImagingClient", "DeleteDatastoreCommand")
|
|
1373
|
-
.
|
|
1374
|
-
.ser(se_DeleteDatastoreCommand)
|
|
1375
|
-
.de(de_DeleteDatastoreCommand)
|
|
1375
|
+
.sc(DeleteDatastore)
|
|
1376
1376
|
.build() {
|
|
1377
1377
|
}
|
|
1378
1378
|
|
|
@@ -1380,16 +1380,11 @@ class DeleteImageSetCommand extends smithyClient.Command
|
|
|
1380
1380
|
.classBuilder()
|
|
1381
1381
|
.ep(commonParams)
|
|
1382
1382
|
.m(function (Command, cs, config, o) {
|
|
1383
|
-
return [
|
|
1384
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1385
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1386
|
-
];
|
|
1383
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1387
1384
|
})
|
|
1388
1385
|
.s("AHIGatewayService", "DeleteImageSet", {})
|
|
1389
1386
|
.n("MedicalImagingClient", "DeleteImageSetCommand")
|
|
1390
|
-
.
|
|
1391
|
-
.ser(se_DeleteImageSetCommand)
|
|
1392
|
-
.de(de_DeleteImageSetCommand)
|
|
1387
|
+
.sc(DeleteImageSet)
|
|
1393
1388
|
.build() {
|
|
1394
1389
|
}
|
|
1395
1390
|
|
|
@@ -1397,16 +1392,11 @@ class GetDatastoreCommand extends smithyClient.Command
|
|
|
1397
1392
|
.classBuilder()
|
|
1398
1393
|
.ep(commonParams)
|
|
1399
1394
|
.m(function (Command, cs, config, o) {
|
|
1400
|
-
return [
|
|
1401
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1402
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1403
|
-
];
|
|
1395
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1404
1396
|
})
|
|
1405
1397
|
.s("AHIGatewayService", "GetDatastore", {})
|
|
1406
1398
|
.n("MedicalImagingClient", "GetDatastoreCommand")
|
|
1407
|
-
.
|
|
1408
|
-
.ser(se_GetDatastoreCommand)
|
|
1409
|
-
.de(de_GetDatastoreCommand)
|
|
1399
|
+
.sc(GetDatastore)
|
|
1410
1400
|
.build() {
|
|
1411
1401
|
}
|
|
1412
1402
|
|
|
@@ -1414,16 +1404,11 @@ class GetDICOMImportJobCommand extends smithyClient.Command
|
|
|
1414
1404
|
.classBuilder()
|
|
1415
1405
|
.ep(commonParams)
|
|
1416
1406
|
.m(function (Command, cs, config, o) {
|
|
1417
|
-
return [
|
|
1418
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1419
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1420
|
-
];
|
|
1407
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1421
1408
|
})
|
|
1422
1409
|
.s("AHIGatewayService", "GetDICOMImportJob", {})
|
|
1423
1410
|
.n("MedicalImagingClient", "GetDICOMImportJobCommand")
|
|
1424
|
-
.
|
|
1425
|
-
.ser(se_GetDICOMImportJobCommand)
|
|
1426
|
-
.de(de_GetDICOMImportJobCommand)
|
|
1411
|
+
.sc(GetDICOMImportJob)
|
|
1427
1412
|
.build() {
|
|
1428
1413
|
}
|
|
1429
1414
|
|
|
@@ -1431,16 +1416,11 @@ class GetImageFrameCommand extends smithyClient.Command
|
|
|
1431
1416
|
.classBuilder()
|
|
1432
1417
|
.ep(commonParams)
|
|
1433
1418
|
.m(function (Command, cs, config, o) {
|
|
1434
|
-
return [
|
|
1435
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1436
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1437
|
-
];
|
|
1419
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1438
1420
|
})
|
|
1439
1421
|
.s("AHIGatewayService", "GetImageFrame", {})
|
|
1440
1422
|
.n("MedicalImagingClient", "GetImageFrameCommand")
|
|
1441
|
-
.
|
|
1442
|
-
.ser(se_GetImageFrameCommand)
|
|
1443
|
-
.de(de_GetImageFrameCommand)
|
|
1423
|
+
.sc(GetImageFrame)
|
|
1444
1424
|
.build() {
|
|
1445
1425
|
}
|
|
1446
1426
|
|
|
@@ -1448,16 +1428,11 @@ class GetImageSetCommand extends smithyClient.Command
|
|
|
1448
1428
|
.classBuilder()
|
|
1449
1429
|
.ep(commonParams)
|
|
1450
1430
|
.m(function (Command, cs, config, o) {
|
|
1451
|
-
return [
|
|
1452
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1453
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1454
|
-
];
|
|
1431
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1455
1432
|
})
|
|
1456
1433
|
.s("AHIGatewayService", "GetImageSet", {})
|
|
1457
1434
|
.n("MedicalImagingClient", "GetImageSetCommand")
|
|
1458
|
-
.
|
|
1459
|
-
.ser(se_GetImageSetCommand)
|
|
1460
|
-
.de(de_GetImageSetCommand)
|
|
1435
|
+
.sc(GetImageSet)
|
|
1461
1436
|
.build() {
|
|
1462
1437
|
}
|
|
1463
1438
|
|
|
@@ -1465,16 +1440,11 @@ class GetImageSetMetadataCommand extends smithyClient.Command
|
|
|
1465
1440
|
.classBuilder()
|
|
1466
1441
|
.ep(commonParams)
|
|
1467
1442
|
.m(function (Command, cs, config, o) {
|
|
1468
|
-
return [
|
|
1469
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1470
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1471
|
-
];
|
|
1443
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1472
1444
|
})
|
|
1473
1445
|
.s("AHIGatewayService", "GetImageSetMetadata", {})
|
|
1474
1446
|
.n("MedicalImagingClient", "GetImageSetMetadataCommand")
|
|
1475
|
-
.
|
|
1476
|
-
.ser(se_GetImageSetMetadataCommand)
|
|
1477
|
-
.de(de_GetImageSetMetadataCommand)
|
|
1447
|
+
.sc(GetImageSetMetadata)
|
|
1478
1448
|
.build() {
|
|
1479
1449
|
}
|
|
1480
1450
|
|
|
@@ -1482,16 +1452,11 @@ class ListDatastoresCommand extends smithyClient.Command
|
|
|
1482
1452
|
.classBuilder()
|
|
1483
1453
|
.ep(commonParams)
|
|
1484
1454
|
.m(function (Command, cs, config, o) {
|
|
1485
|
-
return [
|
|
1486
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1487
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1488
|
-
];
|
|
1455
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1489
1456
|
})
|
|
1490
1457
|
.s("AHIGatewayService", "ListDatastores", {})
|
|
1491
1458
|
.n("MedicalImagingClient", "ListDatastoresCommand")
|
|
1492
|
-
.
|
|
1493
|
-
.ser(se_ListDatastoresCommand)
|
|
1494
|
-
.de(de_ListDatastoresCommand)
|
|
1459
|
+
.sc(ListDatastores)
|
|
1495
1460
|
.build() {
|
|
1496
1461
|
}
|
|
1497
1462
|
|
|
@@ -1499,16 +1464,11 @@ class ListDICOMImportJobsCommand extends smithyClient.Command
|
|
|
1499
1464
|
.classBuilder()
|
|
1500
1465
|
.ep(commonParams)
|
|
1501
1466
|
.m(function (Command, cs, config, o) {
|
|
1502
|
-
return [
|
|
1503
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1504
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1505
|
-
];
|
|
1467
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1506
1468
|
})
|
|
1507
1469
|
.s("AHIGatewayService", "ListDICOMImportJobs", {})
|
|
1508
1470
|
.n("MedicalImagingClient", "ListDICOMImportJobsCommand")
|
|
1509
|
-
.
|
|
1510
|
-
.ser(se_ListDICOMImportJobsCommand)
|
|
1511
|
-
.de(de_ListDICOMImportJobsCommand)
|
|
1471
|
+
.sc(ListDICOMImportJobs)
|
|
1512
1472
|
.build() {
|
|
1513
1473
|
}
|
|
1514
1474
|
|
|
@@ -1516,16 +1476,11 @@ class ListImageSetVersionsCommand extends smithyClient.Command
|
|
|
1516
1476
|
.classBuilder()
|
|
1517
1477
|
.ep(commonParams)
|
|
1518
1478
|
.m(function (Command, cs, config, o) {
|
|
1519
|
-
return [
|
|
1520
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1521
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1522
|
-
];
|
|
1479
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1523
1480
|
})
|
|
1524
1481
|
.s("AHIGatewayService", "ListImageSetVersions", {})
|
|
1525
1482
|
.n("MedicalImagingClient", "ListImageSetVersionsCommand")
|
|
1526
|
-
.
|
|
1527
|
-
.ser(se_ListImageSetVersionsCommand)
|
|
1528
|
-
.de(de_ListImageSetVersionsCommand)
|
|
1483
|
+
.sc(ListImageSetVersions)
|
|
1529
1484
|
.build() {
|
|
1530
1485
|
}
|
|
1531
1486
|
|
|
@@ -1533,16 +1488,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1533
1488
|
.classBuilder()
|
|
1534
1489
|
.ep(commonParams)
|
|
1535
1490
|
.m(function (Command, cs, config, o) {
|
|
1536
|
-
return [
|
|
1537
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1538
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1539
|
-
];
|
|
1491
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1540
1492
|
})
|
|
1541
1493
|
.s("AHIGatewayService", "ListTagsForResource", {})
|
|
1542
1494
|
.n("MedicalImagingClient", "ListTagsForResourceCommand")
|
|
1543
|
-
.
|
|
1544
|
-
.ser(se_ListTagsForResourceCommand)
|
|
1545
|
-
.de(de_ListTagsForResourceCommand)
|
|
1495
|
+
.sc(ListTagsForResource)
|
|
1546
1496
|
.build() {
|
|
1547
1497
|
}
|
|
1548
1498
|
|
|
@@ -1550,16 +1500,11 @@ class SearchImageSetsCommand extends smithyClient.Command
|
|
|
1550
1500
|
.classBuilder()
|
|
1551
1501
|
.ep(commonParams)
|
|
1552
1502
|
.m(function (Command, cs, config, o) {
|
|
1553
|
-
return [
|
|
1554
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1555
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1556
|
-
];
|
|
1503
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1557
1504
|
})
|
|
1558
1505
|
.s("AHIGatewayService", "SearchImageSets", {})
|
|
1559
1506
|
.n("MedicalImagingClient", "SearchImageSetsCommand")
|
|
1560
|
-
.
|
|
1561
|
-
.ser(se_SearchImageSetsCommand)
|
|
1562
|
-
.de(de_SearchImageSetsCommand)
|
|
1507
|
+
.sc(SearchImageSets)
|
|
1563
1508
|
.build() {
|
|
1564
1509
|
}
|
|
1565
1510
|
|
|
@@ -1567,16 +1512,11 @@ class StartDICOMImportJobCommand extends smithyClient.Command
|
|
|
1567
1512
|
.classBuilder()
|
|
1568
1513
|
.ep(commonParams)
|
|
1569
1514
|
.m(function (Command, cs, config, o) {
|
|
1570
|
-
return [
|
|
1571
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1572
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1573
|
-
];
|
|
1515
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1574
1516
|
})
|
|
1575
1517
|
.s("AHIGatewayService", "StartDICOMImportJob", {})
|
|
1576
1518
|
.n("MedicalImagingClient", "StartDICOMImportJobCommand")
|
|
1577
|
-
.
|
|
1578
|
-
.ser(se_StartDICOMImportJobCommand)
|
|
1579
|
-
.de(de_StartDICOMImportJobCommand)
|
|
1519
|
+
.sc(StartDICOMImportJob)
|
|
1580
1520
|
.build() {
|
|
1581
1521
|
}
|
|
1582
1522
|
|
|
@@ -1584,16 +1524,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1584
1524
|
.classBuilder()
|
|
1585
1525
|
.ep(commonParams)
|
|
1586
1526
|
.m(function (Command, cs, config, o) {
|
|
1587
|
-
return [
|
|
1588
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1589
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1590
|
-
];
|
|
1527
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1591
1528
|
})
|
|
1592
1529
|
.s("AHIGatewayService", "TagResource", {})
|
|
1593
1530
|
.n("MedicalImagingClient", "TagResourceCommand")
|
|
1594
|
-
.
|
|
1595
|
-
.ser(se_TagResourceCommand)
|
|
1596
|
-
.de(de_TagResourceCommand)
|
|
1531
|
+
.sc(TagResource)
|
|
1597
1532
|
.build() {
|
|
1598
1533
|
}
|
|
1599
1534
|
|
|
@@ -1601,16 +1536,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1601
1536
|
.classBuilder()
|
|
1602
1537
|
.ep(commonParams)
|
|
1603
1538
|
.m(function (Command, cs, config, o) {
|
|
1604
|
-
return [
|
|
1605
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1606
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1607
|
-
];
|
|
1539
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1608
1540
|
})
|
|
1609
1541
|
.s("AHIGatewayService", "UntagResource", {})
|
|
1610
1542
|
.n("MedicalImagingClient", "UntagResourceCommand")
|
|
1611
|
-
.
|
|
1612
|
-
.ser(se_UntagResourceCommand)
|
|
1613
|
-
.de(de_UntagResourceCommand)
|
|
1543
|
+
.sc(UntagResource)
|
|
1614
1544
|
.build() {
|
|
1615
1545
|
}
|
|
1616
1546
|
|
|
@@ -1618,16 +1548,11 @@ class UpdateImageSetMetadataCommand extends smithyClient.Command
|
|
|
1618
1548
|
.classBuilder()
|
|
1619
1549
|
.ep(commonParams)
|
|
1620
1550
|
.m(function (Command, cs, config, o) {
|
|
1621
|
-
return [
|
|
1622
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1623
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1624
|
-
];
|
|
1551
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1625
1552
|
})
|
|
1626
1553
|
.s("AHIGatewayService", "UpdateImageSetMetadata", {})
|
|
1627
1554
|
.n("MedicalImagingClient", "UpdateImageSetMetadataCommand")
|
|
1628
|
-
.
|
|
1629
|
-
.ser(se_UpdateImageSetMetadataCommand)
|
|
1630
|
-
.de(de_UpdateImageSetMetadataCommand)
|
|
1555
|
+
.sc(UpdateImageSetMetadata)
|
|
1631
1556
|
.build() {
|
|
1632
1557
|
}
|
|
1633
1558
|
|
|
@@ -1671,58 +1596,43 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1671
1596
|
enumerable: true,
|
|
1672
1597
|
get: function () { return smithyClient.Client; }
|
|
1673
1598
|
});
|
|
1674
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
1675
|
-
exports.ConflictException = ConflictException;
|
|
1599
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
1600
|
+
exports.ConflictException = ConflictException$1;
|
|
1676
1601
|
exports.CopyImageSetCommand = CopyImageSetCommand;
|
|
1677
|
-
exports.CopyImageSetInformationFilterSensitiveLog = CopyImageSetInformationFilterSensitiveLog;
|
|
1678
|
-
exports.CopyImageSetRequestFilterSensitiveLog = CopyImageSetRequestFilterSensitiveLog;
|
|
1679
|
-
exports.CopySourceImageSetInformationFilterSensitiveLog = CopySourceImageSetInformationFilterSensitiveLog;
|
|
1680
1602
|
exports.CreateDatastoreCommand = CreateDatastoreCommand;
|
|
1681
|
-
exports.DICOMStudyDateAndTimeFilterSensitiveLog = DICOMStudyDateAndTimeFilterSensitiveLog;
|
|
1682
|
-
exports.DICOMTagsFilterSensitiveLog = DICOMTagsFilterSensitiveLog;
|
|
1683
|
-
exports.DICOMUpdatesFilterSensitiveLog = DICOMUpdatesFilterSensitiveLog;
|
|
1684
1603
|
exports.DatastoreStatus = DatastoreStatus;
|
|
1685
1604
|
exports.DeleteDatastoreCommand = DeleteDatastoreCommand;
|
|
1686
1605
|
exports.DeleteImageSetCommand = DeleteImageSetCommand;
|
|
1687
1606
|
exports.GetDICOMImportJobCommand = GetDICOMImportJobCommand;
|
|
1688
1607
|
exports.GetDatastoreCommand = GetDatastoreCommand;
|
|
1689
1608
|
exports.GetImageFrameCommand = GetImageFrameCommand;
|
|
1690
|
-
exports.GetImageFrameResponseFilterSensitiveLog = GetImageFrameResponseFilterSensitiveLog;
|
|
1691
1609
|
exports.GetImageSetCommand = GetImageSetCommand;
|
|
1692
1610
|
exports.GetImageSetMetadataCommand = GetImageSetMetadataCommand;
|
|
1693
|
-
exports.GetImageSetMetadataResponseFilterSensitiveLog = GetImageSetMetadataResponseFilterSensitiveLog;
|
|
1694
1611
|
exports.ImageSetState = ImageSetState;
|
|
1695
1612
|
exports.ImageSetWorkflowStatus = ImageSetWorkflowStatus;
|
|
1696
|
-
exports.
|
|
1697
|
-
exports.InternalServerException = InternalServerException;
|
|
1613
|
+
exports.InternalServerException = InternalServerException$1;
|
|
1698
1614
|
exports.JobStatus = JobStatus;
|
|
1699
1615
|
exports.ListDICOMImportJobsCommand = ListDICOMImportJobsCommand;
|
|
1700
1616
|
exports.ListDatastoresCommand = ListDatastoresCommand;
|
|
1701
1617
|
exports.ListImageSetVersionsCommand = ListImageSetVersionsCommand;
|
|
1702
1618
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1619
|
+
exports.LosslessStorageFormat = LosslessStorageFormat;
|
|
1703
1620
|
exports.MedicalImaging = MedicalImaging;
|
|
1704
1621
|
exports.MedicalImagingClient = MedicalImagingClient;
|
|
1705
|
-
exports.MedicalImagingServiceException = MedicalImagingServiceException;
|
|
1706
|
-
exports.MetadataCopiesFilterSensitiveLog = MetadataCopiesFilterSensitiveLog;
|
|
1707
|
-
exports.MetadataUpdatesFilterSensitiveLog = MetadataUpdatesFilterSensitiveLog;
|
|
1622
|
+
exports.MedicalImagingServiceException = MedicalImagingServiceException$1;
|
|
1708
1623
|
exports.Operator = Operator;
|
|
1709
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1710
|
-
exports.SearchByAttributeValueFilterSensitiveLog = SearchByAttributeValueFilterSensitiveLog;
|
|
1711
|
-
exports.SearchCriteriaFilterSensitiveLog = SearchCriteriaFilterSensitiveLog;
|
|
1712
|
-
exports.SearchFilterFilterSensitiveLog = SearchFilterFilterSensitiveLog;
|
|
1624
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
1713
1625
|
exports.SearchImageSetsCommand = SearchImageSetsCommand;
|
|
1714
|
-
exports.
|
|
1715
|
-
exports.SearchImageSetsResponseFilterSensitiveLog = SearchImageSetsResponseFilterSensitiveLog;
|
|
1716
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1626
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
1717
1627
|
exports.SortField = SortField;
|
|
1718
1628
|
exports.SortOrder = SortOrder;
|
|
1719
1629
|
exports.StartDICOMImportJobCommand = StartDICOMImportJobCommand;
|
|
1630
|
+
exports.StorageTier = StorageTier;
|
|
1720
1631
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1721
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1632
|
+
exports.ThrottlingException = ThrottlingException$1;
|
|
1722
1633
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1723
1634
|
exports.UpdateImageSetMetadataCommand = UpdateImageSetMetadataCommand;
|
|
1724
|
-
exports.
|
|
1725
|
-
exports.ValidationException = ValidationException;
|
|
1635
|
+
exports.ValidationException = ValidationException$1;
|
|
1726
1636
|
exports.paginateListDICOMImportJobs = paginateListDICOMImportJobs;
|
|
1727
1637
|
exports.paginateListDatastores = paginateListDatastores;
|
|
1728
1638
|
exports.paginateListImageSetVersions = paginateListImageSetVersions;
|