@aws-sdk/client-medical-imaging 3.716.0 → 3.723.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +131 -99
- package/dist-es/MedicalImagingClient.js +1 -0
- package/dist-es/models/models_0.js +14 -14
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +44 -44
package/dist-cjs/index.js
CHANGED
|
@@ -179,7 +179,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
179
179
|
}, "resolveRuntimeExtensions");
|
|
180
180
|
|
|
181
181
|
// src/MedicalImagingClient.ts
|
|
182
|
-
var
|
|
182
|
+
var MedicalImagingClient = class extends import_smithy_client.Client {
|
|
183
|
+
static {
|
|
184
|
+
__name(this, "MedicalImagingClient");
|
|
185
|
+
}
|
|
186
|
+
/**
|
|
187
|
+
* The resolved configuration of MedicalImagingClient class. This is resolved and normalized from the {@link MedicalImagingClientConfig | constructor configuration interface}.
|
|
188
|
+
*/
|
|
189
|
+
config;
|
|
183
190
|
constructor(...[configuration]) {
|
|
184
191
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
185
192
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -189,7 +196,7 @@ var _MedicalImagingClient = class _MedicalImagingClient extends import_smithy_cl
|
|
|
189
196
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
190
197
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
191
198
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
192
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
199
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
193
200
|
super(_config_8);
|
|
194
201
|
this.config = _config_8;
|
|
195
202
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -217,8 +224,6 @@ var _MedicalImagingClient = class _MedicalImagingClient extends import_smithy_cl
|
|
|
217
224
|
super.destroy();
|
|
218
225
|
}
|
|
219
226
|
};
|
|
220
|
-
__name(_MedicalImagingClient, "MedicalImagingClient");
|
|
221
|
-
var MedicalImagingClient = _MedicalImagingClient;
|
|
222
227
|
|
|
223
228
|
// src/MedicalImaging.ts
|
|
224
229
|
|
|
@@ -233,7 +238,10 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
233
238
|
|
|
234
239
|
// src/models/MedicalImagingServiceException.ts
|
|
235
240
|
|
|
236
|
-
var
|
|
241
|
+
var MedicalImagingServiceException = class _MedicalImagingServiceException extends import_smithy_client.ServiceException {
|
|
242
|
+
static {
|
|
243
|
+
__name(this, "MedicalImagingServiceException");
|
|
244
|
+
}
|
|
237
245
|
/**
|
|
238
246
|
* @internal
|
|
239
247
|
*/
|
|
@@ -242,11 +250,14 @@ var _MedicalImagingServiceException = class _MedicalImagingServiceException exte
|
|
|
242
250
|
Object.setPrototypeOf(this, _MedicalImagingServiceException.prototype);
|
|
243
251
|
}
|
|
244
252
|
};
|
|
245
|
-
__name(_MedicalImagingServiceException, "MedicalImagingServiceException");
|
|
246
|
-
var MedicalImagingServiceException = _MedicalImagingServiceException;
|
|
247
253
|
|
|
248
254
|
// src/models/models_0.ts
|
|
249
|
-
var
|
|
255
|
+
var AccessDeniedException = class _AccessDeniedException extends MedicalImagingServiceException {
|
|
256
|
+
static {
|
|
257
|
+
__name(this, "AccessDeniedException");
|
|
258
|
+
}
|
|
259
|
+
name = "AccessDeniedException";
|
|
260
|
+
$fault = "client";
|
|
250
261
|
/**
|
|
251
262
|
* @internal
|
|
252
263
|
*/
|
|
@@ -256,14 +267,15 @@ var _AccessDeniedException = class _AccessDeniedException extends MedicalImaging
|
|
|
256
267
|
$fault: "client",
|
|
257
268
|
...opts
|
|
258
269
|
});
|
|
259
|
-
this.name = "AccessDeniedException";
|
|
260
|
-
this.$fault = "client";
|
|
261
270
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
262
271
|
}
|
|
263
272
|
};
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
273
|
+
var ConflictException = class _ConflictException extends MedicalImagingServiceException {
|
|
274
|
+
static {
|
|
275
|
+
__name(this, "ConflictException");
|
|
276
|
+
}
|
|
277
|
+
name = "ConflictException";
|
|
278
|
+
$fault = "client";
|
|
267
279
|
/**
|
|
268
280
|
* @internal
|
|
269
281
|
*/
|
|
@@ -273,13 +285,9 @@ var _ConflictException = class _ConflictException extends MedicalImagingServiceE
|
|
|
273
285
|
$fault: "client",
|
|
274
286
|
...opts
|
|
275
287
|
});
|
|
276
|
-
this.name = "ConflictException";
|
|
277
|
-
this.$fault = "client";
|
|
278
288
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
279
289
|
}
|
|
280
290
|
};
|
|
281
|
-
__name(_ConflictException, "ConflictException");
|
|
282
|
-
var ConflictException = _ConflictException;
|
|
283
291
|
var ImageSetState = {
|
|
284
292
|
ACTIVE: "ACTIVE",
|
|
285
293
|
DELETED: "DELETED",
|
|
@@ -297,7 +305,12 @@ var ImageSetWorkflowStatus = {
|
|
|
297
305
|
UPDATE_FAILED: "UPDATE_FAILED",
|
|
298
306
|
UPDATING: "UPDATING"
|
|
299
307
|
};
|
|
300
|
-
var
|
|
308
|
+
var InternalServerException = class _InternalServerException extends MedicalImagingServiceException {
|
|
309
|
+
static {
|
|
310
|
+
__name(this, "InternalServerException");
|
|
311
|
+
}
|
|
312
|
+
name = "InternalServerException";
|
|
313
|
+
$fault = "server";
|
|
301
314
|
/**
|
|
302
315
|
* @internal
|
|
303
316
|
*/
|
|
@@ -307,14 +320,15 @@ var _InternalServerException = class _InternalServerException extends MedicalIma
|
|
|
307
320
|
$fault: "server",
|
|
308
321
|
...opts
|
|
309
322
|
});
|
|
310
|
-
this.name = "InternalServerException";
|
|
311
|
-
this.$fault = "server";
|
|
312
323
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
313
324
|
}
|
|
314
325
|
};
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
326
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends MedicalImagingServiceException {
|
|
327
|
+
static {
|
|
328
|
+
__name(this, "ResourceNotFoundException");
|
|
329
|
+
}
|
|
330
|
+
name = "ResourceNotFoundException";
|
|
331
|
+
$fault = "client";
|
|
318
332
|
/**
|
|
319
333
|
* @internal
|
|
320
334
|
*/
|
|
@@ -324,14 +338,15 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Medica
|
|
|
324
338
|
$fault: "client",
|
|
325
339
|
...opts
|
|
326
340
|
});
|
|
327
|
-
this.name = "ResourceNotFoundException";
|
|
328
|
-
this.$fault = "client";
|
|
329
341
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
330
342
|
}
|
|
331
343
|
};
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
344
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends MedicalImagingServiceException {
|
|
345
|
+
static {
|
|
346
|
+
__name(this, "ServiceQuotaExceededException");
|
|
347
|
+
}
|
|
348
|
+
name = "ServiceQuotaExceededException";
|
|
349
|
+
$fault = "client";
|
|
335
350
|
/**
|
|
336
351
|
* @internal
|
|
337
352
|
*/
|
|
@@ -341,14 +356,15 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
341
356
|
$fault: "client",
|
|
342
357
|
...opts
|
|
343
358
|
});
|
|
344
|
-
this.name = "ServiceQuotaExceededException";
|
|
345
|
-
this.$fault = "client";
|
|
346
359
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
347
360
|
}
|
|
348
361
|
};
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
362
|
+
var ThrottlingException = class _ThrottlingException extends MedicalImagingServiceException {
|
|
363
|
+
static {
|
|
364
|
+
__name(this, "ThrottlingException");
|
|
365
|
+
}
|
|
366
|
+
name = "ThrottlingException";
|
|
367
|
+
$fault = "client";
|
|
352
368
|
/**
|
|
353
369
|
* @internal
|
|
354
370
|
*/
|
|
@@ -358,14 +374,15 @@ var _ThrottlingException = class _ThrottlingException extends MedicalImagingServ
|
|
|
358
374
|
$fault: "client",
|
|
359
375
|
...opts
|
|
360
376
|
});
|
|
361
|
-
this.name = "ThrottlingException";
|
|
362
|
-
this.$fault = "client";
|
|
363
377
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
364
378
|
}
|
|
365
379
|
};
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
380
|
+
var ValidationException = class _ValidationException extends MedicalImagingServiceException {
|
|
381
|
+
static {
|
|
382
|
+
__name(this, "ValidationException");
|
|
383
|
+
}
|
|
384
|
+
name = "ValidationException";
|
|
385
|
+
$fault = "client";
|
|
369
386
|
/**
|
|
370
387
|
* @internal
|
|
371
388
|
*/
|
|
@@ -375,13 +392,9 @@ var _ValidationException = class _ValidationException extends MedicalImagingServ
|
|
|
375
392
|
$fault: "client",
|
|
376
393
|
...opts
|
|
377
394
|
});
|
|
378
|
-
this.name = "ValidationException";
|
|
379
|
-
this.$fault = "client";
|
|
380
395
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
381
396
|
}
|
|
382
397
|
};
|
|
383
|
-
__name(_ValidationException, "ValidationException");
|
|
384
|
-
var ValidationException = _ValidationException;
|
|
385
398
|
var DatastoreStatus = {
|
|
386
399
|
ACTIVE: "ACTIVE",
|
|
387
400
|
CREATE_FAILED: "CREATE_FAILED",
|
|
@@ -1476,253 +1489,271 @@ var _v = "version";
|
|
|
1476
1489
|
var _vI = "versionId";
|
|
1477
1490
|
|
|
1478
1491
|
// src/commands/CopyImageSetCommand.ts
|
|
1479
|
-
var
|
|
1492
|
+
var CopyImageSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1480
1493
|
return [
|
|
1481
1494
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1482
1495
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1483
1496
|
];
|
|
1484
1497
|
}).s("AHIGatewayService", "CopyImageSet", {}).n("MedicalImagingClient", "CopyImageSetCommand").f(CopyImageSetRequestFilterSensitiveLog, void 0).ser(se_CopyImageSetCommand).de(de_CopyImageSetCommand).build() {
|
|
1498
|
+
static {
|
|
1499
|
+
__name(this, "CopyImageSetCommand");
|
|
1500
|
+
}
|
|
1485
1501
|
};
|
|
1486
|
-
__name(_CopyImageSetCommand, "CopyImageSetCommand");
|
|
1487
|
-
var CopyImageSetCommand = _CopyImageSetCommand;
|
|
1488
1502
|
|
|
1489
1503
|
// src/commands/CreateDatastoreCommand.ts
|
|
1490
1504
|
|
|
1491
1505
|
|
|
1492
1506
|
|
|
1493
|
-
var
|
|
1507
|
+
var CreateDatastoreCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1494
1508
|
return [
|
|
1495
1509
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1496
1510
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1497
1511
|
];
|
|
1498
1512
|
}).s("AHIGatewayService", "CreateDatastore", {}).n("MedicalImagingClient", "CreateDatastoreCommand").f(void 0, void 0).ser(se_CreateDatastoreCommand).de(de_CreateDatastoreCommand).build() {
|
|
1513
|
+
static {
|
|
1514
|
+
__name(this, "CreateDatastoreCommand");
|
|
1515
|
+
}
|
|
1499
1516
|
};
|
|
1500
|
-
__name(_CreateDatastoreCommand, "CreateDatastoreCommand");
|
|
1501
|
-
var CreateDatastoreCommand = _CreateDatastoreCommand;
|
|
1502
1517
|
|
|
1503
1518
|
// src/commands/DeleteDatastoreCommand.ts
|
|
1504
1519
|
|
|
1505
1520
|
|
|
1506
1521
|
|
|
1507
|
-
var
|
|
1522
|
+
var DeleteDatastoreCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1508
1523
|
return [
|
|
1509
1524
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1510
1525
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1511
1526
|
];
|
|
1512
1527
|
}).s("AHIGatewayService", "DeleteDatastore", {}).n("MedicalImagingClient", "DeleteDatastoreCommand").f(void 0, void 0).ser(se_DeleteDatastoreCommand).de(de_DeleteDatastoreCommand).build() {
|
|
1528
|
+
static {
|
|
1529
|
+
__name(this, "DeleteDatastoreCommand");
|
|
1530
|
+
}
|
|
1513
1531
|
};
|
|
1514
|
-
__name(_DeleteDatastoreCommand, "DeleteDatastoreCommand");
|
|
1515
|
-
var DeleteDatastoreCommand = _DeleteDatastoreCommand;
|
|
1516
1532
|
|
|
1517
1533
|
// src/commands/DeleteImageSetCommand.ts
|
|
1518
1534
|
|
|
1519
1535
|
|
|
1520
1536
|
|
|
1521
|
-
var
|
|
1537
|
+
var DeleteImageSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1522
1538
|
return [
|
|
1523
1539
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1524
1540
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1525
1541
|
];
|
|
1526
1542
|
}).s("AHIGatewayService", "DeleteImageSet", {}).n("MedicalImagingClient", "DeleteImageSetCommand").f(void 0, void 0).ser(se_DeleteImageSetCommand).de(de_DeleteImageSetCommand).build() {
|
|
1543
|
+
static {
|
|
1544
|
+
__name(this, "DeleteImageSetCommand");
|
|
1545
|
+
}
|
|
1527
1546
|
};
|
|
1528
|
-
__name(_DeleteImageSetCommand, "DeleteImageSetCommand");
|
|
1529
|
-
var DeleteImageSetCommand = _DeleteImageSetCommand;
|
|
1530
1547
|
|
|
1531
1548
|
// src/commands/GetDatastoreCommand.ts
|
|
1532
1549
|
|
|
1533
1550
|
|
|
1534
1551
|
|
|
1535
|
-
var
|
|
1552
|
+
var GetDatastoreCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1536
1553
|
return [
|
|
1537
1554
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1538
1555
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1539
1556
|
];
|
|
1540
1557
|
}).s("AHIGatewayService", "GetDatastore", {}).n("MedicalImagingClient", "GetDatastoreCommand").f(void 0, void 0).ser(se_GetDatastoreCommand).de(de_GetDatastoreCommand).build() {
|
|
1558
|
+
static {
|
|
1559
|
+
__name(this, "GetDatastoreCommand");
|
|
1560
|
+
}
|
|
1541
1561
|
};
|
|
1542
|
-
__name(_GetDatastoreCommand, "GetDatastoreCommand");
|
|
1543
|
-
var GetDatastoreCommand = _GetDatastoreCommand;
|
|
1544
1562
|
|
|
1545
1563
|
// src/commands/GetDICOMImportJobCommand.ts
|
|
1546
1564
|
|
|
1547
1565
|
|
|
1548
1566
|
|
|
1549
|
-
var
|
|
1567
|
+
var GetDICOMImportJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1550
1568
|
return [
|
|
1551
1569
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1552
1570
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1553
1571
|
];
|
|
1554
1572
|
}).s("AHIGatewayService", "GetDICOMImportJob", {}).n("MedicalImagingClient", "GetDICOMImportJobCommand").f(void 0, void 0).ser(se_GetDICOMImportJobCommand).de(de_GetDICOMImportJobCommand).build() {
|
|
1573
|
+
static {
|
|
1574
|
+
__name(this, "GetDICOMImportJobCommand");
|
|
1575
|
+
}
|
|
1555
1576
|
};
|
|
1556
|
-
__name(_GetDICOMImportJobCommand, "GetDICOMImportJobCommand");
|
|
1557
|
-
var GetDICOMImportJobCommand = _GetDICOMImportJobCommand;
|
|
1558
1577
|
|
|
1559
1578
|
// src/commands/GetImageFrameCommand.ts
|
|
1560
1579
|
|
|
1561
1580
|
|
|
1562
1581
|
|
|
1563
|
-
var
|
|
1582
|
+
var GetImageFrameCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1564
1583
|
return [
|
|
1565
1584
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1566
1585
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1567
1586
|
];
|
|
1568
1587
|
}).s("AHIGatewayService", "GetImageFrame", {}).n("MedicalImagingClient", "GetImageFrameCommand").f(void 0, GetImageFrameResponseFilterSensitiveLog).ser(se_GetImageFrameCommand).de(de_GetImageFrameCommand).build() {
|
|
1588
|
+
static {
|
|
1589
|
+
__name(this, "GetImageFrameCommand");
|
|
1590
|
+
}
|
|
1569
1591
|
};
|
|
1570
|
-
__name(_GetImageFrameCommand, "GetImageFrameCommand");
|
|
1571
|
-
var GetImageFrameCommand = _GetImageFrameCommand;
|
|
1572
1592
|
|
|
1573
1593
|
// src/commands/GetImageSetCommand.ts
|
|
1574
1594
|
|
|
1575
1595
|
|
|
1576
1596
|
|
|
1577
|
-
var
|
|
1597
|
+
var GetImageSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1578
1598
|
return [
|
|
1579
1599
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1580
1600
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1581
1601
|
];
|
|
1582
1602
|
}).s("AHIGatewayService", "GetImageSet", {}).n("MedicalImagingClient", "GetImageSetCommand").f(void 0, void 0).ser(se_GetImageSetCommand).de(de_GetImageSetCommand).build() {
|
|
1603
|
+
static {
|
|
1604
|
+
__name(this, "GetImageSetCommand");
|
|
1605
|
+
}
|
|
1583
1606
|
};
|
|
1584
|
-
__name(_GetImageSetCommand, "GetImageSetCommand");
|
|
1585
|
-
var GetImageSetCommand = _GetImageSetCommand;
|
|
1586
1607
|
|
|
1587
1608
|
// src/commands/GetImageSetMetadataCommand.ts
|
|
1588
1609
|
|
|
1589
1610
|
|
|
1590
1611
|
|
|
1591
|
-
var
|
|
1612
|
+
var GetImageSetMetadataCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1592
1613
|
return [
|
|
1593
1614
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1594
1615
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1595
1616
|
];
|
|
1596
1617
|
}).s("AHIGatewayService", "GetImageSetMetadata", {}).n("MedicalImagingClient", "GetImageSetMetadataCommand").f(void 0, GetImageSetMetadataResponseFilterSensitiveLog).ser(se_GetImageSetMetadataCommand).de(de_GetImageSetMetadataCommand).build() {
|
|
1618
|
+
static {
|
|
1619
|
+
__name(this, "GetImageSetMetadataCommand");
|
|
1620
|
+
}
|
|
1597
1621
|
};
|
|
1598
|
-
__name(_GetImageSetMetadataCommand, "GetImageSetMetadataCommand");
|
|
1599
|
-
var GetImageSetMetadataCommand = _GetImageSetMetadataCommand;
|
|
1600
1622
|
|
|
1601
1623
|
// src/commands/ListDatastoresCommand.ts
|
|
1602
1624
|
|
|
1603
1625
|
|
|
1604
1626
|
|
|
1605
|
-
var
|
|
1627
|
+
var ListDatastoresCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1606
1628
|
return [
|
|
1607
1629
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1608
1630
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1609
1631
|
];
|
|
1610
1632
|
}).s("AHIGatewayService", "ListDatastores", {}).n("MedicalImagingClient", "ListDatastoresCommand").f(void 0, void 0).ser(se_ListDatastoresCommand).de(de_ListDatastoresCommand).build() {
|
|
1633
|
+
static {
|
|
1634
|
+
__name(this, "ListDatastoresCommand");
|
|
1635
|
+
}
|
|
1611
1636
|
};
|
|
1612
|
-
__name(_ListDatastoresCommand, "ListDatastoresCommand");
|
|
1613
|
-
var ListDatastoresCommand = _ListDatastoresCommand;
|
|
1614
1637
|
|
|
1615
1638
|
// src/commands/ListDICOMImportJobsCommand.ts
|
|
1616
1639
|
|
|
1617
1640
|
|
|
1618
1641
|
|
|
1619
|
-
var
|
|
1642
|
+
var ListDICOMImportJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1620
1643
|
return [
|
|
1621
1644
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1622
1645
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1623
1646
|
];
|
|
1624
1647
|
}).s("AHIGatewayService", "ListDICOMImportJobs", {}).n("MedicalImagingClient", "ListDICOMImportJobsCommand").f(void 0, void 0).ser(se_ListDICOMImportJobsCommand).de(de_ListDICOMImportJobsCommand).build() {
|
|
1648
|
+
static {
|
|
1649
|
+
__name(this, "ListDICOMImportJobsCommand");
|
|
1650
|
+
}
|
|
1625
1651
|
};
|
|
1626
|
-
__name(_ListDICOMImportJobsCommand, "ListDICOMImportJobsCommand");
|
|
1627
|
-
var ListDICOMImportJobsCommand = _ListDICOMImportJobsCommand;
|
|
1628
1652
|
|
|
1629
1653
|
// src/commands/ListImageSetVersionsCommand.ts
|
|
1630
1654
|
|
|
1631
1655
|
|
|
1632
1656
|
|
|
1633
|
-
var
|
|
1657
|
+
var ListImageSetVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1634
1658
|
return [
|
|
1635
1659
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1636
1660
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1637
1661
|
];
|
|
1638
1662
|
}).s("AHIGatewayService", "ListImageSetVersions", {}).n("MedicalImagingClient", "ListImageSetVersionsCommand").f(void 0, void 0).ser(se_ListImageSetVersionsCommand).de(de_ListImageSetVersionsCommand).build() {
|
|
1663
|
+
static {
|
|
1664
|
+
__name(this, "ListImageSetVersionsCommand");
|
|
1665
|
+
}
|
|
1639
1666
|
};
|
|
1640
|
-
__name(_ListImageSetVersionsCommand, "ListImageSetVersionsCommand");
|
|
1641
|
-
var ListImageSetVersionsCommand = _ListImageSetVersionsCommand;
|
|
1642
1667
|
|
|
1643
1668
|
// src/commands/ListTagsForResourceCommand.ts
|
|
1644
1669
|
|
|
1645
1670
|
|
|
1646
1671
|
|
|
1647
|
-
var
|
|
1672
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1648
1673
|
return [
|
|
1649
1674
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1650
1675
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1651
1676
|
];
|
|
1652
1677
|
}).s("AHIGatewayService", "ListTagsForResource", {}).n("MedicalImagingClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
1678
|
+
static {
|
|
1679
|
+
__name(this, "ListTagsForResourceCommand");
|
|
1680
|
+
}
|
|
1653
1681
|
};
|
|
1654
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
1655
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
1656
1682
|
|
|
1657
1683
|
// src/commands/SearchImageSetsCommand.ts
|
|
1658
1684
|
|
|
1659
1685
|
|
|
1660
1686
|
|
|
1661
|
-
var
|
|
1687
|
+
var SearchImageSetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1662
1688
|
return [
|
|
1663
1689
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1664
1690
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1665
1691
|
];
|
|
1666
1692
|
}).s("AHIGatewayService", "SearchImageSets", {}).n("MedicalImagingClient", "SearchImageSetsCommand").f(SearchImageSetsRequestFilterSensitiveLog, SearchImageSetsResponseFilterSensitiveLog).ser(se_SearchImageSetsCommand).de(de_SearchImageSetsCommand).build() {
|
|
1693
|
+
static {
|
|
1694
|
+
__name(this, "SearchImageSetsCommand");
|
|
1695
|
+
}
|
|
1667
1696
|
};
|
|
1668
|
-
__name(_SearchImageSetsCommand, "SearchImageSetsCommand");
|
|
1669
|
-
var SearchImageSetsCommand = _SearchImageSetsCommand;
|
|
1670
1697
|
|
|
1671
1698
|
// src/commands/StartDICOMImportJobCommand.ts
|
|
1672
1699
|
|
|
1673
1700
|
|
|
1674
1701
|
|
|
1675
|
-
var
|
|
1702
|
+
var StartDICOMImportJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1676
1703
|
return [
|
|
1677
1704
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1678
1705
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1679
1706
|
];
|
|
1680
1707
|
}).s("AHIGatewayService", "StartDICOMImportJob", {}).n("MedicalImagingClient", "StartDICOMImportJobCommand").f(void 0, void 0).ser(se_StartDICOMImportJobCommand).de(de_StartDICOMImportJobCommand).build() {
|
|
1708
|
+
static {
|
|
1709
|
+
__name(this, "StartDICOMImportJobCommand");
|
|
1710
|
+
}
|
|
1681
1711
|
};
|
|
1682
|
-
__name(_StartDICOMImportJobCommand, "StartDICOMImportJobCommand");
|
|
1683
|
-
var StartDICOMImportJobCommand = _StartDICOMImportJobCommand;
|
|
1684
1712
|
|
|
1685
1713
|
// src/commands/TagResourceCommand.ts
|
|
1686
1714
|
|
|
1687
1715
|
|
|
1688
1716
|
|
|
1689
|
-
var
|
|
1717
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1690
1718
|
return [
|
|
1691
1719
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1692
1720
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1693
1721
|
];
|
|
1694
1722
|
}).s("AHIGatewayService", "TagResource", {}).n("MedicalImagingClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
1723
|
+
static {
|
|
1724
|
+
__name(this, "TagResourceCommand");
|
|
1725
|
+
}
|
|
1695
1726
|
};
|
|
1696
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
1697
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
1698
1727
|
|
|
1699
1728
|
// src/commands/UntagResourceCommand.ts
|
|
1700
1729
|
|
|
1701
1730
|
|
|
1702
1731
|
|
|
1703
|
-
var
|
|
1732
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1704
1733
|
return [
|
|
1705
1734
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1706
1735
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1707
1736
|
];
|
|
1708
1737
|
}).s("AHIGatewayService", "UntagResource", {}).n("MedicalImagingClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
1738
|
+
static {
|
|
1739
|
+
__name(this, "UntagResourceCommand");
|
|
1740
|
+
}
|
|
1709
1741
|
};
|
|
1710
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
1711
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
1712
1742
|
|
|
1713
1743
|
// src/commands/UpdateImageSetMetadataCommand.ts
|
|
1714
1744
|
|
|
1715
1745
|
|
|
1716
1746
|
|
|
1717
|
-
var
|
|
1747
|
+
var UpdateImageSetMetadataCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1718
1748
|
return [
|
|
1719
1749
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1720
1750
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1721
1751
|
];
|
|
1722
1752
|
}).s("AHIGatewayService", "UpdateImageSetMetadata", {}).n("MedicalImagingClient", "UpdateImageSetMetadataCommand").f(UpdateImageSetMetadataRequestFilterSensitiveLog, void 0).ser(se_UpdateImageSetMetadataCommand).de(de_UpdateImageSetMetadataCommand).build() {
|
|
1753
|
+
static {
|
|
1754
|
+
__name(this, "UpdateImageSetMetadataCommand");
|
|
1755
|
+
}
|
|
1723
1756
|
};
|
|
1724
|
-
__name(_UpdateImageSetMetadataCommand, "UpdateImageSetMetadataCommand");
|
|
1725
|
-
var UpdateImageSetMetadataCommand = _UpdateImageSetMetadataCommand;
|
|
1726
1757
|
|
|
1727
1758
|
// src/MedicalImaging.ts
|
|
1728
1759
|
var commands = {
|
|
@@ -1745,10 +1776,11 @@ var commands = {
|
|
|
1745
1776
|
UntagResourceCommand,
|
|
1746
1777
|
UpdateImageSetMetadataCommand
|
|
1747
1778
|
};
|
|
1748
|
-
var
|
|
1779
|
+
var MedicalImaging = class extends MedicalImagingClient {
|
|
1780
|
+
static {
|
|
1781
|
+
__name(this, "MedicalImaging");
|
|
1782
|
+
}
|
|
1749
1783
|
};
|
|
1750
|
-
__name(_MedicalImaging, "MedicalImaging");
|
|
1751
|
-
var MedicalImaging = _MedicalImaging;
|
|
1752
1784
|
(0, import_smithy_client.createAggregatedClient)(commands, MedicalImaging);
|
|
1753
1785
|
|
|
1754
1786
|
// src/pagination/ListDICOMImportJobsPaginator.ts
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class MedicalImagingClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { MedicalImagingServiceException as __BaseException } from "./MedicalImagingServiceException";
|
|
3
3
|
export class AccessDeniedException extends __BaseException {
|
|
4
|
+
name = "AccessDeniedException";
|
|
5
|
+
$fault = "client";
|
|
4
6
|
constructor(opts) {
|
|
5
7
|
super({
|
|
6
8
|
name: "AccessDeniedException",
|
|
7
9
|
$fault: "client",
|
|
8
10
|
...opts,
|
|
9
11
|
});
|
|
10
|
-
this.name = "AccessDeniedException";
|
|
11
|
-
this.$fault = "client";
|
|
12
12
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
export class ConflictException extends __BaseException {
|
|
16
|
+
name = "ConflictException";
|
|
17
|
+
$fault = "client";
|
|
16
18
|
constructor(opts) {
|
|
17
19
|
super({
|
|
18
20
|
name: "ConflictException",
|
|
19
21
|
$fault: "client",
|
|
20
22
|
...opts,
|
|
21
23
|
});
|
|
22
|
-
this.name = "ConflictException";
|
|
23
|
-
this.$fault = "client";
|
|
24
24
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
25
25
|
}
|
|
26
26
|
}
|
|
@@ -42,62 +42,62 @@ export const ImageSetWorkflowStatus = {
|
|
|
42
42
|
UPDATING: "UPDATING",
|
|
43
43
|
};
|
|
44
44
|
export class InternalServerException extends __BaseException {
|
|
45
|
+
name = "InternalServerException";
|
|
46
|
+
$fault = "server";
|
|
45
47
|
constructor(opts) {
|
|
46
48
|
super({
|
|
47
49
|
name: "InternalServerException",
|
|
48
50
|
$fault: "server",
|
|
49
51
|
...opts,
|
|
50
52
|
});
|
|
51
|
-
this.name = "InternalServerException";
|
|
52
|
-
this.$fault = "server";
|
|
53
53
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
export class ResourceNotFoundException extends __BaseException {
|
|
57
|
+
name = "ResourceNotFoundException";
|
|
58
|
+
$fault = "client";
|
|
57
59
|
constructor(opts) {
|
|
58
60
|
super({
|
|
59
61
|
name: "ResourceNotFoundException",
|
|
60
62
|
$fault: "client",
|
|
61
63
|
...opts,
|
|
62
64
|
});
|
|
63
|
-
this.name = "ResourceNotFoundException";
|
|
64
|
-
this.$fault = "client";
|
|
65
65
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
66
66
|
}
|
|
67
67
|
}
|
|
68
68
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
69
|
+
name = "ServiceQuotaExceededException";
|
|
70
|
+
$fault = "client";
|
|
69
71
|
constructor(opts) {
|
|
70
72
|
super({
|
|
71
73
|
name: "ServiceQuotaExceededException",
|
|
72
74
|
$fault: "client",
|
|
73
75
|
...opts,
|
|
74
76
|
});
|
|
75
|
-
this.name = "ServiceQuotaExceededException";
|
|
76
|
-
this.$fault = "client";
|
|
77
77
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
80
|
export class ThrottlingException extends __BaseException {
|
|
81
|
+
name = "ThrottlingException";
|
|
82
|
+
$fault = "client";
|
|
81
83
|
constructor(opts) {
|
|
82
84
|
super({
|
|
83
85
|
name: "ThrottlingException",
|
|
84
86
|
$fault: "client",
|
|
85
87
|
...opts,
|
|
86
88
|
});
|
|
87
|
-
this.name = "ThrottlingException";
|
|
88
|
-
this.$fault = "client";
|
|
89
89
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
90
90
|
}
|
|
91
91
|
}
|
|
92
92
|
export class ValidationException extends __BaseException {
|
|
93
|
+
name = "ValidationException";
|
|
94
|
+
$fault = "client";
|
|
93
95
|
constructor(opts) {
|
|
94
96
|
super({
|
|
95
97
|
name: "ValidationException",
|
|
96
98
|
$fault: "client",
|
|
97
99
|
...opts,
|
|
98
100
|
});
|
|
99
|
-
this.name = "ValidationException";
|
|
100
|
-
this.$fault = "client";
|
|
101
101
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
102
102
|
}
|
|
103
103
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
|
|
|
32
32
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
33
33
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
34
34
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
35
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
35
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
36
36
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
37
37
|
logger?: import("@smithy/types").Logger | undefined;
|
|
38
38
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -51,11 +53,21 @@ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
|
|
|
51
53
|
| import("@smithy/types").RetryStrategyV2
|
|
52
54
|
| undefined;
|
|
53
55
|
endpoint?:
|
|
54
|
-
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
56
|
+
| ((
|
|
57
|
+
| string
|
|
58
|
+
| import("@smithy/types").Endpoint
|
|
59
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
60
|
+
| import("@smithy/types").EndpointV2
|
|
61
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
62
|
+
) &
|
|
63
|
+
(
|
|
64
|
+
| string
|
|
65
|
+
| import("@smithy/types").Provider<string>
|
|
66
|
+
| import("@smithy/types").Endpoint
|
|
67
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
68
|
+
| import("@smithy/types").EndpointV2
|
|
69
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
70
|
+
))
|
|
59
71
|
| undefined;
|
|
60
72
|
endpointProvider: (
|
|
61
73
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-medical-imaging",
|
|
3
3
|
"description": "AWS SDK for JavaScript Medical Imaging Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.723.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-medical-imaging",
|
|
@@ -20,59 +20,59 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-stream": "^
|
|
61
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-stream": "^4.0.0",
|
|
61
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
62
62
|
"@types/uuid": "^9.0.1",
|
|
63
63
|
"tslib": "^2.6.2",
|
|
64
64
|
"uuid": "^9.0.1"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@tsconfig/
|
|
68
|
-
"@types/node": "^
|
|
67
|
+
"@tsconfig/node18": "18.2.4",
|
|
68
|
+
"@types/node": "^18.19.69",
|
|
69
69
|
"concurrently": "7.0.0",
|
|
70
70
|
"downlevel-dts": "0.10.1",
|
|
71
71
|
"rimraf": "3.0.2",
|
|
72
|
-
"typescript": "~
|
|
72
|
+
"typescript": "~5.2.2"
|
|
73
73
|
},
|
|
74
74
|
"engines": {
|
|
75
|
-
"node": ">=
|
|
75
|
+
"node": ">=18.0.0"
|
|
76
76
|
},
|
|
77
77
|
"typesVersions": {
|
|
78
78
|
"<4.0": {
|