@aws-sdk/client-medical-imaging 3.928.0 → 3.930.0

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