@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,95 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
5
+ import { DeleteImageSetRequest, DeleteImageSetResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DeleteImageSetCommand}.
14
+ */
15
+ export interface DeleteImageSetCommandInput extends DeleteImageSetRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeleteImageSetCommand}.
21
+ */
22
+ export interface DeleteImageSetCommandOutput extends DeleteImageSetResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Delete an image set.</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { MedicalImagingClient, DeleteImageSetCommand } from "@aws-sdk/client-medical-imaging"; // ES Modules import
31
+ * // const { MedicalImagingClient, DeleteImageSetCommand } = require("@aws-sdk/client-medical-imaging"); // CommonJS import
32
+ * const client = new MedicalImagingClient(config);
33
+ * const input = { // DeleteImageSetRequest
34
+ * datastoreId: "STRING_VALUE", // required
35
+ * imageSetId: "STRING_VALUE", // required
36
+ * };
37
+ * const command = new DeleteImageSetCommand(input);
38
+ * const response = await client.send(command);
39
+ * // { // DeleteImageSetResponse
40
+ * // datastoreId: "STRING_VALUE", // required
41
+ * // imageSetId: "STRING_VALUE", // required
42
+ * // imageSetState: "ACTIVE" || "LOCKED" || "DELETED", // required
43
+ * // imageSetWorkflowStatus: "CREATED" || "COPIED" || "COPYING" || "COPYING_WITH_READ_ONLY_ACCESS" || "COPY_FAILED" || "UPDATING" || "UPDATED" || "UPDATE_FAILED" || "DELETING" || "DELETED", // required
44
+ * // };
45
+ *
46
+ * ```
47
+ *
48
+ * @param DeleteImageSetCommandInput - {@link DeleteImageSetCommandInput}
49
+ * @returns {@link DeleteImageSetCommandOutput}
50
+ * @see {@link DeleteImageSetCommandInput} for command's `input` shape.
51
+ * @see {@link DeleteImageSetCommandOutput} for command's `response` shape.
52
+ * @see {@link MedicalImagingClientResolvedConfig | config} for MedicalImagingClient's `config` shape.
53
+ *
54
+ * @throws {@link AccessDeniedException} (client fault)
55
+ * <p>The user does not have sufficient access to perform this action.</p>
56
+ *
57
+ * @throws {@link ConflictException} (client fault)
58
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
59
+ *
60
+ * @throws {@link InternalServerException} (server fault)
61
+ * <p>An unexpected error occurred during processing of the request.</p>
62
+ *
63
+ * @throws {@link ResourceNotFoundException} (client fault)
64
+ * <p>The request references a resource which does not exist.</p>
65
+ *
66
+ * @throws {@link ThrottlingException} (client fault)
67
+ * <p>The request was denied due to throttling.</p>
68
+ *
69
+ * @throws {@link ValidationException} (client fault)
70
+ * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
71
+ *
72
+ * @throws {@link MedicalImagingServiceException}
73
+ * <p>Base exception class for all service exceptions from MedicalImaging service.</p>
74
+ *
75
+ */
76
+ export declare class DeleteImageSetCommand extends $Command<DeleteImageSetCommandInput, DeleteImageSetCommandOutput, MedicalImagingClientResolvedConfig> {
77
+ readonly input: DeleteImageSetCommandInput;
78
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
79
+ /**
80
+ * @public
81
+ */
82
+ constructor(input: DeleteImageSetCommandInput);
83
+ /**
84
+ * @internal
85
+ */
86
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MedicalImagingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteImageSetCommandInput, DeleteImageSetCommandOutput>;
87
+ /**
88
+ * @internal
89
+ */
90
+ private serialize;
91
+ /**
92
+ * @internal
93
+ */
94
+ private deserialize;
95
+ }
@@ -0,0 +1,103 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
5
+ import { GetDICOMImportJobRequest, GetDICOMImportJobResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetDICOMImportJobCommand}.
14
+ */
15
+ export interface GetDICOMImportJobCommandInput extends GetDICOMImportJobRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetDICOMImportJobCommand}.
21
+ */
22
+ export interface GetDICOMImportJobCommandOutput extends GetDICOMImportJobResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Get the import job properties to learn more about the job or job progress.</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { MedicalImagingClient, GetDICOMImportJobCommand } from "@aws-sdk/client-medical-imaging"; // ES Modules import
31
+ * // const { MedicalImagingClient, GetDICOMImportJobCommand } = require("@aws-sdk/client-medical-imaging"); // CommonJS import
32
+ * const client = new MedicalImagingClient(config);
33
+ * const input = { // GetDICOMImportJobRequest
34
+ * datastoreId: "STRING_VALUE", // required
35
+ * jobId: "STRING_VALUE", // required
36
+ * };
37
+ * const command = new GetDICOMImportJobCommand(input);
38
+ * const response = await client.send(command);
39
+ * // { // GetDICOMImportJobResponse
40
+ * // jobProperties: { // DICOMImportJobProperties
41
+ * // jobId: "STRING_VALUE", // required
42
+ * // jobName: "STRING_VALUE", // required
43
+ * // jobStatus: "SUBMITTED" || "IN_PROGRESS" || "COMPLETED" || "FAILED", // required
44
+ * // datastoreId: "STRING_VALUE", // required
45
+ * // dataAccessRoleArn: "STRING_VALUE", // required
46
+ * // endedAt: new Date("TIMESTAMP"),
47
+ * // submittedAt: new Date("TIMESTAMP"),
48
+ * // inputS3Uri: "STRING_VALUE", // required
49
+ * // outputS3Uri: "STRING_VALUE", // required
50
+ * // message: "STRING_VALUE",
51
+ * // },
52
+ * // };
53
+ *
54
+ * ```
55
+ *
56
+ * @param GetDICOMImportJobCommandInput - {@link GetDICOMImportJobCommandInput}
57
+ * @returns {@link GetDICOMImportJobCommandOutput}
58
+ * @see {@link GetDICOMImportJobCommandInput} for command's `input` shape.
59
+ * @see {@link GetDICOMImportJobCommandOutput} for command's `response` shape.
60
+ * @see {@link MedicalImagingClientResolvedConfig | config} for MedicalImagingClient's `config` shape.
61
+ *
62
+ * @throws {@link AccessDeniedException} (client fault)
63
+ * <p>The user does not have sufficient access to perform this action.</p>
64
+ *
65
+ * @throws {@link ConflictException} (client fault)
66
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
67
+ *
68
+ * @throws {@link InternalServerException} (server fault)
69
+ * <p>An unexpected error occurred during processing of the request.</p>
70
+ *
71
+ * @throws {@link ResourceNotFoundException} (client fault)
72
+ * <p>The request references a resource which does not exist.</p>
73
+ *
74
+ * @throws {@link ThrottlingException} (client fault)
75
+ * <p>The request was denied due to throttling.</p>
76
+ *
77
+ * @throws {@link ValidationException} (client fault)
78
+ * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
79
+ *
80
+ * @throws {@link MedicalImagingServiceException}
81
+ * <p>Base exception class for all service exceptions from MedicalImaging service.</p>
82
+ *
83
+ */
84
+ export declare class GetDICOMImportJobCommand extends $Command<GetDICOMImportJobCommandInput, GetDICOMImportJobCommandOutput, MedicalImagingClientResolvedConfig> {
85
+ readonly input: GetDICOMImportJobCommandInput;
86
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
87
+ /**
88
+ * @public
89
+ */
90
+ constructor(input: GetDICOMImportJobCommandInput);
91
+ /**
92
+ * @internal
93
+ */
94
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MedicalImagingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDICOMImportJobCommandInput, GetDICOMImportJobCommandOutput>;
95
+ /**
96
+ * @internal
97
+ */
98
+ private serialize;
99
+ /**
100
+ * @internal
101
+ */
102
+ private deserialize;
103
+ }
@@ -0,0 +1,96 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
5
+ import { GetDatastoreRequest, GetDatastoreResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetDatastoreCommand}.
14
+ */
15
+ export interface GetDatastoreCommandInput extends GetDatastoreRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetDatastoreCommand}.
21
+ */
22
+ export interface GetDatastoreCommandOutput extends GetDatastoreResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Get data store properties.</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { MedicalImagingClient, GetDatastoreCommand } from "@aws-sdk/client-medical-imaging"; // ES Modules import
31
+ * // const { MedicalImagingClient, GetDatastoreCommand } = require("@aws-sdk/client-medical-imaging"); // CommonJS import
32
+ * const client = new MedicalImagingClient(config);
33
+ * const input = { // GetDatastoreRequest
34
+ * datastoreId: "STRING_VALUE", // required
35
+ * };
36
+ * const command = new GetDatastoreCommand(input);
37
+ * const response = await client.send(command);
38
+ * // { // GetDatastoreResponse
39
+ * // datastoreProperties: { // DatastoreProperties
40
+ * // datastoreId: "STRING_VALUE", // required
41
+ * // datastoreName: "STRING_VALUE", // required
42
+ * // datastoreStatus: "CREATING" || "CREATE_FAILED" || "ACTIVE" || "DELETING" || "DELETED", // required
43
+ * // kmsKeyArn: "STRING_VALUE",
44
+ * // datastoreArn: "STRING_VALUE",
45
+ * // createdAt: new Date("TIMESTAMP"),
46
+ * // updatedAt: new Date("TIMESTAMP"),
47
+ * // },
48
+ * // };
49
+ *
50
+ * ```
51
+ *
52
+ * @param GetDatastoreCommandInput - {@link GetDatastoreCommandInput}
53
+ * @returns {@link GetDatastoreCommandOutput}
54
+ * @see {@link GetDatastoreCommandInput} for command's `input` shape.
55
+ * @see {@link GetDatastoreCommandOutput} for command's `response` shape.
56
+ * @see {@link MedicalImagingClientResolvedConfig | config} for MedicalImagingClient's `config` shape.
57
+ *
58
+ * @throws {@link AccessDeniedException} (client fault)
59
+ * <p>The user does not have sufficient access to perform this action.</p>
60
+ *
61
+ * @throws {@link InternalServerException} (server fault)
62
+ * <p>An unexpected error occurred during processing of the request.</p>
63
+ *
64
+ * @throws {@link ResourceNotFoundException} (client fault)
65
+ * <p>The request references a resource which does not exist.</p>
66
+ *
67
+ * @throws {@link ThrottlingException} (client fault)
68
+ * <p>The request was denied due to throttling.</p>
69
+ *
70
+ * @throws {@link ValidationException} (client fault)
71
+ * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
72
+ *
73
+ * @throws {@link MedicalImagingServiceException}
74
+ * <p>Base exception class for all service exceptions from MedicalImaging service.</p>
75
+ *
76
+ */
77
+ export declare class GetDatastoreCommand extends $Command<GetDatastoreCommandInput, GetDatastoreCommandOutput, MedicalImagingClientResolvedConfig> {
78
+ readonly input: GetDatastoreCommandInput;
79
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
80
+ /**
81
+ * @public
82
+ */
83
+ constructor(input: GetDatastoreCommandInput);
84
+ /**
85
+ * @internal
86
+ */
87
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MedicalImagingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDatastoreCommandInput, GetDatastoreCommandOutput>;
88
+ /**
89
+ * @internal
90
+ */
91
+ private serialize;
92
+ /**
93
+ * @internal
94
+ */
95
+ private deserialize;
96
+ }
@@ -0,0 +1,96 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack, WithSdkStreamMixin as __WithSdkStreamMixin } from "@smithy/types";
4
+ import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
5
+ import { GetImageFrameRequest, GetImageFrameResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetImageFrameCommand}.
14
+ */
15
+ export interface GetImageFrameCommandInput extends GetImageFrameRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetImageFrameCommand}.
21
+ */
22
+ export interface GetImageFrameCommandOutput extends __WithSdkStreamMixin<GetImageFrameResponse, "imageFrameBlob">, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Get an image frame (pixel data) for an image set.</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { MedicalImagingClient, GetImageFrameCommand } from "@aws-sdk/client-medical-imaging"; // ES Modules import
31
+ * // const { MedicalImagingClient, GetImageFrameCommand } = require("@aws-sdk/client-medical-imaging"); // CommonJS import
32
+ * const client = new MedicalImagingClient(config);
33
+ * const input = { // GetImageFrameRequest
34
+ * datastoreId: "STRING_VALUE", // required
35
+ * imageSetId: "STRING_VALUE", // required
36
+ * imageFrameInformation: { // ImageFrameInformation
37
+ * imageFrameId: "STRING_VALUE", // required
38
+ * },
39
+ * };
40
+ * const command = new GetImageFrameCommand(input);
41
+ * const response = await client.send(command);
42
+ * // { // GetImageFrameResponse
43
+ * // imageFrameBlob: "STREAMING_BLOB_VALUE", // required
44
+ * // contentType: "STRING_VALUE",
45
+ * // };
46
+ *
47
+ * ```
48
+ *
49
+ * @param GetImageFrameCommandInput - {@link GetImageFrameCommandInput}
50
+ * @returns {@link GetImageFrameCommandOutput}
51
+ * @see {@link GetImageFrameCommandInput} for command's `input` shape.
52
+ * @see {@link GetImageFrameCommandOutput} for command's `response` shape.
53
+ * @see {@link MedicalImagingClientResolvedConfig | config} for MedicalImagingClient's `config` shape.
54
+ *
55
+ * @throws {@link AccessDeniedException} (client fault)
56
+ * <p>The user does not have sufficient access to perform this action.</p>
57
+ *
58
+ * @throws {@link ConflictException} (client fault)
59
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
60
+ *
61
+ * @throws {@link InternalServerException} (server fault)
62
+ * <p>An unexpected error occurred during processing of the request.</p>
63
+ *
64
+ * @throws {@link ResourceNotFoundException} (client fault)
65
+ * <p>The request references a resource which does not exist.</p>
66
+ *
67
+ * @throws {@link ThrottlingException} (client fault)
68
+ * <p>The request was denied due to throttling.</p>
69
+ *
70
+ * @throws {@link ValidationException} (client fault)
71
+ * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
72
+ *
73
+ * @throws {@link MedicalImagingServiceException}
74
+ * <p>Base exception class for all service exceptions from MedicalImaging service.</p>
75
+ *
76
+ */
77
+ export declare class GetImageFrameCommand extends $Command<GetImageFrameCommandInput, GetImageFrameCommandOutput, MedicalImagingClientResolvedConfig> {
78
+ readonly input: GetImageFrameCommandInput;
79
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
80
+ /**
81
+ * @public
82
+ */
83
+ constructor(input: GetImageFrameCommandInput);
84
+ /**
85
+ * @internal
86
+ */
87
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MedicalImagingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetImageFrameCommandInput, GetImageFrameCommandOutput>;
88
+ /**
89
+ * @internal
90
+ */
91
+ private serialize;
92
+ /**
93
+ * @internal
94
+ */
95
+ private deserialize;
96
+ }
@@ -0,0 +1,102 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
5
+ import { GetImageSetRequest, GetImageSetResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetImageSetCommand}.
14
+ */
15
+ export interface GetImageSetCommandInput extends GetImageSetRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetImageSetCommand}.
21
+ */
22
+ export interface GetImageSetCommandOutput extends GetImageSetResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Get image set properties.</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { MedicalImagingClient, GetImageSetCommand } from "@aws-sdk/client-medical-imaging"; // ES Modules import
31
+ * // const { MedicalImagingClient, GetImageSetCommand } = require("@aws-sdk/client-medical-imaging"); // CommonJS import
32
+ * const client = new MedicalImagingClient(config);
33
+ * const input = { // GetImageSetRequest
34
+ * datastoreId: "STRING_VALUE", // required
35
+ * imageSetId: "STRING_VALUE", // required
36
+ * versionId: "STRING_VALUE",
37
+ * };
38
+ * const command = new GetImageSetCommand(input);
39
+ * const response = await client.send(command);
40
+ * // { // GetImageSetResponse
41
+ * // datastoreId: "STRING_VALUE", // required
42
+ * // imageSetId: "STRING_VALUE", // required
43
+ * // versionId: "STRING_VALUE", // required
44
+ * // imageSetState: "ACTIVE" || "LOCKED" || "DELETED", // required
45
+ * // imageSetWorkflowStatus: "CREATED" || "COPIED" || "COPYING" || "COPYING_WITH_READ_ONLY_ACCESS" || "COPY_FAILED" || "UPDATING" || "UPDATED" || "UPDATE_FAILED" || "DELETING" || "DELETED",
46
+ * // createdAt: new Date("TIMESTAMP"),
47
+ * // updatedAt: new Date("TIMESTAMP"),
48
+ * // deletedAt: new Date("TIMESTAMP"),
49
+ * // message: "STRING_VALUE",
50
+ * // imageSetArn: "STRING_VALUE",
51
+ * // };
52
+ *
53
+ * ```
54
+ *
55
+ * @param GetImageSetCommandInput - {@link GetImageSetCommandInput}
56
+ * @returns {@link GetImageSetCommandOutput}
57
+ * @see {@link GetImageSetCommandInput} for command's `input` shape.
58
+ * @see {@link GetImageSetCommandOutput} for command's `response` shape.
59
+ * @see {@link MedicalImagingClientResolvedConfig | config} for MedicalImagingClient's `config` shape.
60
+ *
61
+ * @throws {@link AccessDeniedException} (client fault)
62
+ * <p>The user does not have sufficient access to perform this action.</p>
63
+ *
64
+ * @throws {@link ConflictException} (client fault)
65
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
66
+ *
67
+ * @throws {@link InternalServerException} (server fault)
68
+ * <p>An unexpected error occurred during processing of the request.</p>
69
+ *
70
+ * @throws {@link ResourceNotFoundException} (client fault)
71
+ * <p>The request references a resource which does not exist.</p>
72
+ *
73
+ * @throws {@link ThrottlingException} (client fault)
74
+ * <p>The request was denied due to throttling.</p>
75
+ *
76
+ * @throws {@link ValidationException} (client fault)
77
+ * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
78
+ *
79
+ * @throws {@link MedicalImagingServiceException}
80
+ * <p>Base exception class for all service exceptions from MedicalImaging service.</p>
81
+ *
82
+ */
83
+ export declare class GetImageSetCommand extends $Command<GetImageSetCommandInput, GetImageSetCommandOutput, MedicalImagingClientResolvedConfig> {
84
+ readonly input: GetImageSetCommandInput;
85
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
86
+ /**
87
+ * @public
88
+ */
89
+ constructor(input: GetImageSetCommandInput);
90
+ /**
91
+ * @internal
92
+ */
93
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MedicalImagingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetImageSetCommandInput, GetImageSetCommandOutput>;
94
+ /**
95
+ * @internal
96
+ */
97
+ private serialize;
98
+ /**
99
+ * @internal
100
+ */
101
+ private deserialize;
102
+ }
@@ -0,0 +1,95 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack, WithSdkStreamMixin as __WithSdkStreamMixin } from "@smithy/types";
4
+ import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient";
5
+ import { GetImageSetMetadataRequest, GetImageSetMetadataResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetImageSetMetadataCommand}.
14
+ */
15
+ export interface GetImageSetMetadataCommandInput extends GetImageSetMetadataRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetImageSetMetadataCommand}.
21
+ */
22
+ export interface GetImageSetMetadataCommandOutput extends __WithSdkStreamMixin<GetImageSetMetadataResponse, "imageSetMetadataBlob">, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Get metadata attributes for an image set.</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { MedicalImagingClient, GetImageSetMetadataCommand } from "@aws-sdk/client-medical-imaging"; // ES Modules import
31
+ * // const { MedicalImagingClient, GetImageSetMetadataCommand } = require("@aws-sdk/client-medical-imaging"); // CommonJS import
32
+ * const client = new MedicalImagingClient(config);
33
+ * const input = { // GetImageSetMetadataRequest
34
+ * datastoreId: "STRING_VALUE", // required
35
+ * imageSetId: "STRING_VALUE", // required
36
+ * versionId: "STRING_VALUE",
37
+ * };
38
+ * const command = new GetImageSetMetadataCommand(input);
39
+ * const response = await client.send(command);
40
+ * // { // GetImageSetMetadataResponse
41
+ * // imageSetMetadataBlob: "STREAMING_BLOB_VALUE", // required
42
+ * // contentType: "STRING_VALUE",
43
+ * // contentEncoding: "STRING_VALUE",
44
+ * // };
45
+ *
46
+ * ```
47
+ *
48
+ * @param GetImageSetMetadataCommandInput - {@link GetImageSetMetadataCommandInput}
49
+ * @returns {@link GetImageSetMetadataCommandOutput}
50
+ * @see {@link GetImageSetMetadataCommandInput} for command's `input` shape.
51
+ * @see {@link GetImageSetMetadataCommandOutput} for command's `response` shape.
52
+ * @see {@link MedicalImagingClientResolvedConfig | config} for MedicalImagingClient's `config` shape.
53
+ *
54
+ * @throws {@link AccessDeniedException} (client fault)
55
+ * <p>The user does not have sufficient access to perform this action.</p>
56
+ *
57
+ * @throws {@link ConflictException} (client fault)
58
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
59
+ *
60
+ * @throws {@link InternalServerException} (server fault)
61
+ * <p>An unexpected error occurred during processing of the request.</p>
62
+ *
63
+ * @throws {@link ResourceNotFoundException} (client fault)
64
+ * <p>The request references a resource which does not exist.</p>
65
+ *
66
+ * @throws {@link ThrottlingException} (client fault)
67
+ * <p>The request was denied due to throttling.</p>
68
+ *
69
+ * @throws {@link ValidationException} (client fault)
70
+ * <p>The input fails to satisfy the constraints specified by an AWS service.</p>
71
+ *
72
+ * @throws {@link MedicalImagingServiceException}
73
+ * <p>Base exception class for all service exceptions from MedicalImaging service.</p>
74
+ *
75
+ */
76
+ export declare class GetImageSetMetadataCommand extends $Command<GetImageSetMetadataCommandInput, GetImageSetMetadataCommandOutput, MedicalImagingClientResolvedConfig> {
77
+ readonly input: GetImageSetMetadataCommandInput;
78
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
79
+ /**
80
+ * @public
81
+ */
82
+ constructor(input: GetImageSetMetadataCommandInput);
83
+ /**
84
+ * @internal
85
+ */
86
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MedicalImagingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetImageSetMetadataCommandInput, GetImageSetMetadataCommandOutput>;
87
+ /**
88
+ * @internal
89
+ */
90
+ private serialize;
91
+ /**
92
+ * @internal
93
+ */
94
+ private deserialize;
95
+ }