@aws-sdk/client-medical-imaging 3.373.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (159) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +498 -0
  3. package/dist-cjs/MedicalImaging.js +47 -0
  4. package/dist-cjs/MedicalImagingClient.js +41 -0
  5. package/dist-cjs/commands/CopyImageSetCommand.js +46 -0
  6. package/dist-cjs/commands/CreateDatastoreCommand.js +46 -0
  7. package/dist-cjs/commands/DeleteDatastoreCommand.js +46 -0
  8. package/dist-cjs/commands/DeleteImageSetCommand.js +46 -0
  9. package/dist-cjs/commands/GetDICOMImportJobCommand.js +46 -0
  10. package/dist-cjs/commands/GetDatastoreCommand.js +46 -0
  11. package/dist-cjs/commands/GetImageFrameCommand.js +47 -0
  12. package/dist-cjs/commands/GetImageSetCommand.js +46 -0
  13. package/dist-cjs/commands/GetImageSetMetadataCommand.js +47 -0
  14. package/dist-cjs/commands/ListDICOMImportJobsCommand.js +46 -0
  15. package/dist-cjs/commands/ListDatastoresCommand.js +46 -0
  16. package/dist-cjs/commands/ListImageSetVersionsCommand.js +46 -0
  17. package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
  18. package/dist-cjs/commands/SearchImageSetsCommand.js +47 -0
  19. package/dist-cjs/commands/StartDICOMImportJobCommand.js +46 -0
  20. package/dist-cjs/commands/TagResourceCommand.js +46 -0
  21. package/dist-cjs/commands/UntagResourceCommand.js +46 -0
  22. package/dist-cjs/commands/UpdateImageSetMetadataCommand.js +47 -0
  23. package/dist-cjs/commands/index.js +21 -0
  24. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  25. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  26. package/dist-cjs/endpoint/ruleset.js +7 -0
  27. package/dist-cjs/index.js +11 -0
  28. package/dist-cjs/models/MedicalImagingServiceException.js +12 -0
  29. package/dist-cjs/models/index.js +4 -0
  30. package/dist-cjs/models/models_0.js +248 -0
  31. package/dist-cjs/pagination/Interfaces.js +2 -0
  32. package/dist-cjs/pagination/ListDICOMImportJobsPaginator.js +29 -0
  33. package/dist-cjs/pagination/ListDatastoresPaginator.js +29 -0
  34. package/dist-cjs/pagination/ListImageSetVersionsPaginator.js +29 -0
  35. package/dist-cjs/pagination/SearchImageSetsPaginator.js +29 -0
  36. package/dist-cjs/pagination/index.js +8 -0
  37. package/dist-cjs/protocols/Aws_restJson1.js +1693 -0
  38. package/dist-cjs/runtimeConfig.browser.js +39 -0
  39. package/dist-cjs/runtimeConfig.js +48 -0
  40. package/dist-cjs/runtimeConfig.native.js +15 -0
  41. package/dist-cjs/runtimeConfig.shared.js +23 -0
  42. package/dist-es/MedicalImaging.js +43 -0
  43. package/dist-es/MedicalImagingClient.js +37 -0
  44. package/dist-es/commands/CopyImageSetCommand.js +42 -0
  45. package/dist-es/commands/CreateDatastoreCommand.js +42 -0
  46. package/dist-es/commands/DeleteDatastoreCommand.js +42 -0
  47. package/dist-es/commands/DeleteImageSetCommand.js +42 -0
  48. package/dist-es/commands/GetDICOMImportJobCommand.js +42 -0
  49. package/dist-es/commands/GetDatastoreCommand.js +42 -0
  50. package/dist-es/commands/GetImageFrameCommand.js +43 -0
  51. package/dist-es/commands/GetImageSetCommand.js +42 -0
  52. package/dist-es/commands/GetImageSetMetadataCommand.js +43 -0
  53. package/dist-es/commands/ListDICOMImportJobsCommand.js +42 -0
  54. package/dist-es/commands/ListDatastoresCommand.js +42 -0
  55. package/dist-es/commands/ListImageSetVersionsCommand.js +42 -0
  56. package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
  57. package/dist-es/commands/SearchImageSetsCommand.js +43 -0
  58. package/dist-es/commands/StartDICOMImportJobCommand.js +42 -0
  59. package/dist-es/commands/TagResourceCommand.js +42 -0
  60. package/dist-es/commands/UntagResourceCommand.js +42 -0
  61. package/dist-es/commands/UpdateImageSetMetadataCommand.js +43 -0
  62. package/dist-es/commands/index.js +18 -0
  63. package/dist-es/endpoint/EndpointParameters.js +8 -0
  64. package/dist-es/endpoint/endpointResolver.js +8 -0
  65. package/dist-es/endpoint/ruleset.js +4 -0
  66. package/dist-es/index.js +6 -0
  67. package/dist-es/models/MedicalImagingServiceException.js +8 -0
  68. package/dist-es/models/index.js +1 -0
  69. package/dist-es/models/models_0.js +225 -0
  70. package/dist-es/pagination/Interfaces.js +1 -0
  71. package/dist-es/pagination/ListDICOMImportJobsPaginator.js +25 -0
  72. package/dist-es/pagination/ListDatastoresPaginator.js +25 -0
  73. package/dist-es/pagination/ListImageSetVersionsPaginator.js +25 -0
  74. package/dist-es/pagination/SearchImageSetsPaginator.js +25 -0
  75. package/dist-es/pagination/index.js +5 -0
  76. package/dist-es/protocols/Aws_restJson1.js +1654 -0
  77. package/dist-es/runtimeConfig.browser.js +34 -0
  78. package/dist-es/runtimeConfig.js +43 -0
  79. package/dist-es/runtimeConfig.native.js +11 -0
  80. package/dist-es/runtimeConfig.shared.js +19 -0
  81. package/dist-types/MedicalImaging.d.ts +285 -0
  82. package/dist-types/MedicalImagingClient.d.ts +334 -0
  83. package/dist-types/commands/CopyImageSetCommand.d.ts +122 -0
  84. package/dist-types/commands/CreateDatastoreCommand.d.ts +97 -0
  85. package/dist-types/commands/DeleteDatastoreCommand.d.ts +95 -0
  86. package/dist-types/commands/DeleteImageSetCommand.d.ts +95 -0
  87. package/dist-types/commands/GetDICOMImportJobCommand.d.ts +103 -0
  88. package/dist-types/commands/GetDatastoreCommand.d.ts +96 -0
  89. package/dist-types/commands/GetImageFrameCommand.d.ts +96 -0
  90. package/dist-types/commands/GetImageSetCommand.d.ts +102 -0
  91. package/dist-types/commands/GetImageSetMetadataCommand.d.ts +95 -0
  92. package/dist-types/commands/ListDICOMImportJobsCommand.d.ts +106 -0
  93. package/dist-types/commands/ListDatastoresCommand.d.ts +97 -0
  94. package/dist-types/commands/ListImageSetVersionsCommand.d.ts +106 -0
  95. package/dist-types/commands/ListTagsForResourceCommand.d.ts +90 -0
  96. package/dist-types/commands/SearchImageSetsCommand.d.ts +135 -0
  97. package/dist-types/commands/StartDICOMImportJobCommand.d.ts +104 -0
  98. package/dist-types/commands/TagResourceCommand.d.ts +89 -0
  99. package/dist-types/commands/UntagResourceCommand.d.ts +89 -0
  100. package/dist-types/commands/UpdateImageSetMetadataCommand.d.ts +109 -0
  101. package/dist-types/commands/index.d.ts +18 -0
  102. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  103. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  104. package/dist-types/endpoint/ruleset.d.ts +2 -0
  105. package/dist-types/index.d.ts +160 -0
  106. package/dist-types/models/MedicalImagingServiceException.d.ts +13 -0
  107. package/dist-types/models/index.d.ts +1 -0
  108. package/dist-types/models/models_0.d.ts +1363 -0
  109. package/dist-types/pagination/Interfaces.d.ts +8 -0
  110. package/dist-types/pagination/ListDICOMImportJobsPaginator.d.ts +7 -0
  111. package/dist-types/pagination/ListDatastoresPaginator.d.ts +7 -0
  112. package/dist-types/pagination/ListImageSetVersionsPaginator.d.ts +7 -0
  113. package/dist-types/pagination/SearchImageSetsPaginator.d.ts +7 -0
  114. package/dist-types/pagination/index.d.ts +5 -0
  115. package/dist-types/protocols/Aws_restJson1.d.ts +164 -0
  116. package/dist-types/runtimeConfig.browser.d.ts +43 -0
  117. package/dist-types/runtimeConfig.d.ts +43 -0
  118. package/dist-types/runtimeConfig.native.d.ts +42 -0
  119. package/dist-types/runtimeConfig.shared.d.ts +19 -0
  120. package/dist-types/ts3.4/MedicalImaging.d.ts +313 -0
  121. package/dist-types/ts3.4/MedicalImagingClient.d.ts +223 -0
  122. package/dist-types/ts3.4/commands/CopyImageSetCommand.d.ts +35 -0
  123. package/dist-types/ts3.4/commands/CreateDatastoreCommand.d.ts +38 -0
  124. package/dist-types/ts3.4/commands/DeleteDatastoreCommand.d.ts +38 -0
  125. package/dist-types/ts3.4/commands/DeleteImageSetCommand.d.ts +38 -0
  126. package/dist-types/ts3.4/commands/GetDICOMImportJobCommand.d.ts +39 -0
  127. package/dist-types/ts3.4/commands/GetDatastoreCommand.d.ts +35 -0
  128. package/dist-types/ts3.4/commands/GetImageFrameCommand.d.ts +39 -0
  129. package/dist-types/ts3.4/commands/GetImageSetCommand.d.ts +35 -0
  130. package/dist-types/ts3.4/commands/GetImageSetMetadataCommand.d.ts +43 -0
  131. package/dist-types/ts3.4/commands/ListDICOMImportJobsCommand.d.ts +39 -0
  132. package/dist-types/ts3.4/commands/ListDatastoresCommand.d.ts +38 -0
  133. package/dist-types/ts3.4/commands/ListImageSetVersionsCommand.d.ts +42 -0
  134. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  135. package/dist-types/ts3.4/commands/SearchImageSetsCommand.d.ts +38 -0
  136. package/dist-types/ts3.4/commands/StartDICOMImportJobCommand.d.ts +39 -0
  137. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  138. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
  139. package/dist-types/ts3.4/commands/UpdateImageSetMetadataCommand.d.ts +42 -0
  140. package/dist-types/ts3.4/commands/index.d.ts +18 -0
  141. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
  142. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  143. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  144. package/dist-types/ts3.4/index.d.ts +6 -0
  145. package/dist-types/ts3.4/models/MedicalImagingServiceException.d.ts +8 -0
  146. package/dist-types/ts3.4/models/index.d.ts +1 -0
  147. package/dist-types/ts3.4/models/models_0.d.ts +513 -0
  148. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  149. package/dist-types/ts3.4/pagination/ListDICOMImportJobsPaginator.d.ts +11 -0
  150. package/dist-types/ts3.4/pagination/ListDatastoresPaginator.d.ts +11 -0
  151. package/dist-types/ts3.4/pagination/ListImageSetVersionsPaginator.d.ts +11 -0
  152. package/dist-types/ts3.4/pagination/SearchImageSetsPaginator.d.ts +11 -0
  153. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  154. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +224 -0
  155. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +90 -0
  156. package/dist-types/ts3.4/runtimeConfig.d.ts +90 -0
  157. package/dist-types/ts3.4/runtimeConfig.native.d.ts +81 -0
  158. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
  159. package/package.json +102 -0
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateDatastoreCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
9
+ class CreateDatastoreCommand extends smithy_client_1.Command {
10
+ static getEndpointParameterInstructions() {
11
+ return {
12
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
13
+ Endpoint: { type: "builtInParams", name: "endpoint" },
14
+ Region: { type: "builtInParams", name: "region" },
15
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
16
+ };
17
+ }
18
+ constructor(input) {
19
+ super();
20
+ this.input = input;
21
+ }
22
+ resolveMiddleware(clientStack, configuration, options) {
23
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
24
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, CreateDatastoreCommand.getEndpointParameterInstructions()));
25
+ const stack = clientStack.concat(this.middlewareStack);
26
+ const { logger } = configuration;
27
+ const clientName = "MedicalImagingClient";
28
+ const commandName = "CreateDatastoreCommand";
29
+ const handlerExecutionContext = {
30
+ logger,
31
+ clientName,
32
+ commandName,
33
+ inputFilterSensitiveLog: (_) => _,
34
+ outputFilterSensitiveLog: (_) => _,
35
+ };
36
+ const { requestHandler } = configuration;
37
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
38
+ }
39
+ serialize(input, context) {
40
+ return (0, Aws_restJson1_1.se_CreateDatastoreCommand)(input, context);
41
+ }
42
+ deserialize(output, context) {
43
+ return (0, Aws_restJson1_1.de_CreateDatastoreCommand)(output, context);
44
+ }
45
+ }
46
+ exports.CreateDatastoreCommand = CreateDatastoreCommand;
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DeleteDatastoreCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
9
+ class DeleteDatastoreCommand extends smithy_client_1.Command {
10
+ static getEndpointParameterInstructions() {
11
+ return {
12
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
13
+ Endpoint: { type: "builtInParams", name: "endpoint" },
14
+ Region: { type: "builtInParams", name: "region" },
15
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
16
+ };
17
+ }
18
+ constructor(input) {
19
+ super();
20
+ this.input = input;
21
+ }
22
+ resolveMiddleware(clientStack, configuration, options) {
23
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
24
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DeleteDatastoreCommand.getEndpointParameterInstructions()));
25
+ const stack = clientStack.concat(this.middlewareStack);
26
+ const { logger } = configuration;
27
+ const clientName = "MedicalImagingClient";
28
+ const commandName = "DeleteDatastoreCommand";
29
+ const handlerExecutionContext = {
30
+ logger,
31
+ clientName,
32
+ commandName,
33
+ inputFilterSensitiveLog: (_) => _,
34
+ outputFilterSensitiveLog: (_) => _,
35
+ };
36
+ const { requestHandler } = configuration;
37
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
38
+ }
39
+ serialize(input, context) {
40
+ return (0, Aws_restJson1_1.se_DeleteDatastoreCommand)(input, context);
41
+ }
42
+ deserialize(output, context) {
43
+ return (0, Aws_restJson1_1.de_DeleteDatastoreCommand)(output, context);
44
+ }
45
+ }
46
+ exports.DeleteDatastoreCommand = DeleteDatastoreCommand;
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DeleteImageSetCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
9
+ class DeleteImageSetCommand extends smithy_client_1.Command {
10
+ static getEndpointParameterInstructions() {
11
+ return {
12
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
13
+ Endpoint: { type: "builtInParams", name: "endpoint" },
14
+ Region: { type: "builtInParams", name: "region" },
15
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
16
+ };
17
+ }
18
+ constructor(input) {
19
+ super();
20
+ this.input = input;
21
+ }
22
+ resolveMiddleware(clientStack, configuration, options) {
23
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
24
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, DeleteImageSetCommand.getEndpointParameterInstructions()));
25
+ const stack = clientStack.concat(this.middlewareStack);
26
+ const { logger } = configuration;
27
+ const clientName = "MedicalImagingClient";
28
+ const commandName = "DeleteImageSetCommand";
29
+ const handlerExecutionContext = {
30
+ logger,
31
+ clientName,
32
+ commandName,
33
+ inputFilterSensitiveLog: (_) => _,
34
+ outputFilterSensitiveLog: (_) => _,
35
+ };
36
+ const { requestHandler } = configuration;
37
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
38
+ }
39
+ serialize(input, context) {
40
+ return (0, Aws_restJson1_1.se_DeleteImageSetCommand)(input, context);
41
+ }
42
+ deserialize(output, context) {
43
+ return (0, Aws_restJson1_1.de_DeleteImageSetCommand)(output, context);
44
+ }
45
+ }
46
+ exports.DeleteImageSetCommand = DeleteImageSetCommand;
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetDICOMImportJobCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
9
+ class GetDICOMImportJobCommand extends smithy_client_1.Command {
10
+ static getEndpointParameterInstructions() {
11
+ return {
12
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
13
+ Endpoint: { type: "builtInParams", name: "endpoint" },
14
+ Region: { type: "builtInParams", name: "region" },
15
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
16
+ };
17
+ }
18
+ constructor(input) {
19
+ super();
20
+ this.input = input;
21
+ }
22
+ resolveMiddleware(clientStack, configuration, options) {
23
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
24
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, GetDICOMImportJobCommand.getEndpointParameterInstructions()));
25
+ const stack = clientStack.concat(this.middlewareStack);
26
+ const { logger } = configuration;
27
+ const clientName = "MedicalImagingClient";
28
+ const commandName = "GetDICOMImportJobCommand";
29
+ const handlerExecutionContext = {
30
+ logger,
31
+ clientName,
32
+ commandName,
33
+ inputFilterSensitiveLog: (_) => _,
34
+ outputFilterSensitiveLog: (_) => _,
35
+ };
36
+ const { requestHandler } = configuration;
37
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
38
+ }
39
+ serialize(input, context) {
40
+ return (0, Aws_restJson1_1.se_GetDICOMImportJobCommand)(input, context);
41
+ }
42
+ deserialize(output, context) {
43
+ return (0, Aws_restJson1_1.de_GetDICOMImportJobCommand)(output, context);
44
+ }
45
+ }
46
+ exports.GetDICOMImportJobCommand = GetDICOMImportJobCommand;
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetDatastoreCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
9
+ class GetDatastoreCommand extends smithy_client_1.Command {
10
+ static getEndpointParameterInstructions() {
11
+ return {
12
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
13
+ Endpoint: { type: "builtInParams", name: "endpoint" },
14
+ Region: { type: "builtInParams", name: "region" },
15
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
16
+ };
17
+ }
18
+ constructor(input) {
19
+ super();
20
+ this.input = input;
21
+ }
22
+ resolveMiddleware(clientStack, configuration, options) {
23
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
24
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, GetDatastoreCommand.getEndpointParameterInstructions()));
25
+ const stack = clientStack.concat(this.middlewareStack);
26
+ const { logger } = configuration;
27
+ const clientName = "MedicalImagingClient";
28
+ const commandName = "GetDatastoreCommand";
29
+ const handlerExecutionContext = {
30
+ logger,
31
+ clientName,
32
+ commandName,
33
+ inputFilterSensitiveLog: (_) => _,
34
+ outputFilterSensitiveLog: (_) => _,
35
+ };
36
+ const { requestHandler } = configuration;
37
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
38
+ }
39
+ serialize(input, context) {
40
+ return (0, Aws_restJson1_1.se_GetDatastoreCommand)(input, context);
41
+ }
42
+ deserialize(output, context) {
43
+ return (0, Aws_restJson1_1.de_GetDatastoreCommand)(output, context);
44
+ }
45
+ }
46
+ exports.GetDatastoreCommand = GetDatastoreCommand;
@@ -0,0 +1,47 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetImageFrameCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const models_0_1 = require("../models/models_0");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class GetImageFrameCommand extends smithy_client_1.Command {
11
+ static getEndpointParameterInstructions() {
12
+ return {
13
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
+ Endpoint: { type: "builtInParams", name: "endpoint" },
15
+ Region: { type: "builtInParams", name: "region" },
16
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
+ };
18
+ }
19
+ constructor(input) {
20
+ super();
21
+ this.input = input;
22
+ }
23
+ resolveMiddleware(clientStack, configuration, options) {
24
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
25
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, GetImageFrameCommand.getEndpointParameterInstructions()));
26
+ const stack = clientStack.concat(this.middlewareStack);
27
+ const { logger } = configuration;
28
+ const clientName = "MedicalImagingClient";
29
+ const commandName = "GetImageFrameCommand";
30
+ const handlerExecutionContext = {
31
+ logger,
32
+ clientName,
33
+ commandName,
34
+ inputFilterSensitiveLog: (_) => _,
35
+ outputFilterSensitiveLog: models_0_1.GetImageFrameResponseFilterSensitiveLog,
36
+ };
37
+ const { requestHandler } = configuration;
38
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
39
+ }
40
+ serialize(input, context) {
41
+ return (0, Aws_restJson1_1.se_GetImageFrameCommand)(input, context);
42
+ }
43
+ deserialize(output, context) {
44
+ return (0, Aws_restJson1_1.de_GetImageFrameCommand)(output, context);
45
+ }
46
+ }
47
+ exports.GetImageFrameCommand = GetImageFrameCommand;
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetImageSetCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
9
+ class GetImageSetCommand extends smithy_client_1.Command {
10
+ static getEndpointParameterInstructions() {
11
+ return {
12
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
13
+ Endpoint: { type: "builtInParams", name: "endpoint" },
14
+ Region: { type: "builtInParams", name: "region" },
15
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
16
+ };
17
+ }
18
+ constructor(input) {
19
+ super();
20
+ this.input = input;
21
+ }
22
+ resolveMiddleware(clientStack, configuration, options) {
23
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
24
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, GetImageSetCommand.getEndpointParameterInstructions()));
25
+ const stack = clientStack.concat(this.middlewareStack);
26
+ const { logger } = configuration;
27
+ const clientName = "MedicalImagingClient";
28
+ const commandName = "GetImageSetCommand";
29
+ const handlerExecutionContext = {
30
+ logger,
31
+ clientName,
32
+ commandName,
33
+ inputFilterSensitiveLog: (_) => _,
34
+ outputFilterSensitiveLog: (_) => _,
35
+ };
36
+ const { requestHandler } = configuration;
37
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
38
+ }
39
+ serialize(input, context) {
40
+ return (0, Aws_restJson1_1.se_GetImageSetCommand)(input, context);
41
+ }
42
+ deserialize(output, context) {
43
+ return (0, Aws_restJson1_1.de_GetImageSetCommand)(output, context);
44
+ }
45
+ }
46
+ exports.GetImageSetCommand = GetImageSetCommand;
@@ -0,0 +1,47 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetImageSetMetadataCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const models_0_1 = require("../models/models_0");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class GetImageSetMetadataCommand extends smithy_client_1.Command {
11
+ static getEndpointParameterInstructions() {
12
+ return {
13
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
+ Endpoint: { type: "builtInParams", name: "endpoint" },
15
+ Region: { type: "builtInParams", name: "region" },
16
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
+ };
18
+ }
19
+ constructor(input) {
20
+ super();
21
+ this.input = input;
22
+ }
23
+ resolveMiddleware(clientStack, configuration, options) {
24
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
25
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, GetImageSetMetadataCommand.getEndpointParameterInstructions()));
26
+ const stack = clientStack.concat(this.middlewareStack);
27
+ const { logger } = configuration;
28
+ const clientName = "MedicalImagingClient";
29
+ const commandName = "GetImageSetMetadataCommand";
30
+ const handlerExecutionContext = {
31
+ logger,
32
+ clientName,
33
+ commandName,
34
+ inputFilterSensitiveLog: (_) => _,
35
+ outputFilterSensitiveLog: models_0_1.GetImageSetMetadataResponseFilterSensitiveLog,
36
+ };
37
+ const { requestHandler } = configuration;
38
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
39
+ }
40
+ serialize(input, context) {
41
+ return (0, Aws_restJson1_1.se_GetImageSetMetadataCommand)(input, context);
42
+ }
43
+ deserialize(output, context) {
44
+ return (0, Aws_restJson1_1.de_GetImageSetMetadataCommand)(output, context);
45
+ }
46
+ }
47
+ exports.GetImageSetMetadataCommand = GetImageSetMetadataCommand;
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListDICOMImportJobsCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
9
+ class ListDICOMImportJobsCommand extends smithy_client_1.Command {
10
+ static getEndpointParameterInstructions() {
11
+ return {
12
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
13
+ Endpoint: { type: "builtInParams", name: "endpoint" },
14
+ Region: { type: "builtInParams", name: "region" },
15
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
16
+ };
17
+ }
18
+ constructor(input) {
19
+ super();
20
+ this.input = input;
21
+ }
22
+ resolveMiddleware(clientStack, configuration, options) {
23
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
24
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, ListDICOMImportJobsCommand.getEndpointParameterInstructions()));
25
+ const stack = clientStack.concat(this.middlewareStack);
26
+ const { logger } = configuration;
27
+ const clientName = "MedicalImagingClient";
28
+ const commandName = "ListDICOMImportJobsCommand";
29
+ const handlerExecutionContext = {
30
+ logger,
31
+ clientName,
32
+ commandName,
33
+ inputFilterSensitiveLog: (_) => _,
34
+ outputFilterSensitiveLog: (_) => _,
35
+ };
36
+ const { requestHandler } = configuration;
37
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
38
+ }
39
+ serialize(input, context) {
40
+ return (0, Aws_restJson1_1.se_ListDICOMImportJobsCommand)(input, context);
41
+ }
42
+ deserialize(output, context) {
43
+ return (0, Aws_restJson1_1.de_ListDICOMImportJobsCommand)(output, context);
44
+ }
45
+ }
46
+ exports.ListDICOMImportJobsCommand = ListDICOMImportJobsCommand;
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListDatastoresCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
9
+ class ListDatastoresCommand extends smithy_client_1.Command {
10
+ static getEndpointParameterInstructions() {
11
+ return {
12
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
13
+ Endpoint: { type: "builtInParams", name: "endpoint" },
14
+ Region: { type: "builtInParams", name: "region" },
15
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
16
+ };
17
+ }
18
+ constructor(input) {
19
+ super();
20
+ this.input = input;
21
+ }
22
+ resolveMiddleware(clientStack, configuration, options) {
23
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
24
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, ListDatastoresCommand.getEndpointParameterInstructions()));
25
+ const stack = clientStack.concat(this.middlewareStack);
26
+ const { logger } = configuration;
27
+ const clientName = "MedicalImagingClient";
28
+ const commandName = "ListDatastoresCommand";
29
+ const handlerExecutionContext = {
30
+ logger,
31
+ clientName,
32
+ commandName,
33
+ inputFilterSensitiveLog: (_) => _,
34
+ outputFilterSensitiveLog: (_) => _,
35
+ };
36
+ const { requestHandler } = configuration;
37
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
38
+ }
39
+ serialize(input, context) {
40
+ return (0, Aws_restJson1_1.se_ListDatastoresCommand)(input, context);
41
+ }
42
+ deserialize(output, context) {
43
+ return (0, Aws_restJson1_1.de_ListDatastoresCommand)(output, context);
44
+ }
45
+ }
46
+ exports.ListDatastoresCommand = ListDatastoresCommand;
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListImageSetVersionsCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
9
+ class ListImageSetVersionsCommand extends smithy_client_1.Command {
10
+ static getEndpointParameterInstructions() {
11
+ return {
12
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
13
+ Endpoint: { type: "builtInParams", name: "endpoint" },
14
+ Region: { type: "builtInParams", name: "region" },
15
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
16
+ };
17
+ }
18
+ constructor(input) {
19
+ super();
20
+ this.input = input;
21
+ }
22
+ resolveMiddleware(clientStack, configuration, options) {
23
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
24
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, ListImageSetVersionsCommand.getEndpointParameterInstructions()));
25
+ const stack = clientStack.concat(this.middlewareStack);
26
+ const { logger } = configuration;
27
+ const clientName = "MedicalImagingClient";
28
+ const commandName = "ListImageSetVersionsCommand";
29
+ const handlerExecutionContext = {
30
+ logger,
31
+ clientName,
32
+ commandName,
33
+ inputFilterSensitiveLog: (_) => _,
34
+ outputFilterSensitiveLog: (_) => _,
35
+ };
36
+ const { requestHandler } = configuration;
37
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
38
+ }
39
+ serialize(input, context) {
40
+ return (0, Aws_restJson1_1.se_ListImageSetVersionsCommand)(input, context);
41
+ }
42
+ deserialize(output, context) {
43
+ return (0, Aws_restJson1_1.de_ListImageSetVersionsCommand)(output, context);
44
+ }
45
+ }
46
+ exports.ListImageSetVersionsCommand = ListImageSetVersionsCommand;
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListTagsForResourceCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
9
+ class ListTagsForResourceCommand extends smithy_client_1.Command {
10
+ static getEndpointParameterInstructions() {
11
+ return {
12
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
13
+ Endpoint: { type: "builtInParams", name: "endpoint" },
14
+ Region: { type: "builtInParams", name: "region" },
15
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
16
+ };
17
+ }
18
+ constructor(input) {
19
+ super();
20
+ this.input = input;
21
+ }
22
+ resolveMiddleware(clientStack, configuration, options) {
23
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
24
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, ListTagsForResourceCommand.getEndpointParameterInstructions()));
25
+ const stack = clientStack.concat(this.middlewareStack);
26
+ const { logger } = configuration;
27
+ const clientName = "MedicalImagingClient";
28
+ const commandName = "ListTagsForResourceCommand";
29
+ const handlerExecutionContext = {
30
+ logger,
31
+ clientName,
32
+ commandName,
33
+ inputFilterSensitiveLog: (_) => _,
34
+ outputFilterSensitiveLog: (_) => _,
35
+ };
36
+ const { requestHandler } = configuration;
37
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
38
+ }
39
+ serialize(input, context) {
40
+ return (0, Aws_restJson1_1.se_ListTagsForResourceCommand)(input, context);
41
+ }
42
+ deserialize(output, context) {
43
+ return (0, Aws_restJson1_1.de_ListTagsForResourceCommand)(output, context);
44
+ }
45
+ }
46
+ exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
@@ -0,0 +1,47 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SearchImageSetsCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const models_0_1 = require("../models/models_0");
9
+ const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
+ class SearchImageSetsCommand extends smithy_client_1.Command {
11
+ static getEndpointParameterInstructions() {
12
+ return {
13
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
+ Endpoint: { type: "builtInParams", name: "endpoint" },
15
+ Region: { type: "builtInParams", name: "region" },
16
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
17
+ };
18
+ }
19
+ constructor(input) {
20
+ super();
21
+ this.input = input;
22
+ }
23
+ resolveMiddleware(clientStack, configuration, options) {
24
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
25
+ this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, SearchImageSetsCommand.getEndpointParameterInstructions()));
26
+ const stack = clientStack.concat(this.middlewareStack);
27
+ const { logger } = configuration;
28
+ const clientName = "MedicalImagingClient";
29
+ const commandName = "SearchImageSetsCommand";
30
+ const handlerExecutionContext = {
31
+ logger,
32
+ clientName,
33
+ commandName,
34
+ inputFilterSensitiveLog: models_0_1.SearchImageSetsRequestFilterSensitiveLog,
35
+ outputFilterSensitiveLog: models_0_1.SearchImageSetsResponseFilterSensitiveLog,
36
+ };
37
+ const { requestHandler } = configuration;
38
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
39
+ }
40
+ serialize(input, context) {
41
+ return (0, Aws_restJson1_1.se_SearchImageSetsCommand)(input, context);
42
+ }
43
+ deserialize(output, context) {
44
+ return (0, Aws_restJson1_1.de_SearchImageSetsCommand)(output, context);
45
+ }
46
+ }
47
+ exports.SearchImageSetsCommand = SearchImageSetsCommand;