@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.
- package/LICENSE +201 -0
- package/README.md +498 -0
- package/dist-cjs/MedicalImaging.js +47 -0
- package/dist-cjs/MedicalImagingClient.js +41 -0
- package/dist-cjs/commands/CopyImageSetCommand.js +46 -0
- package/dist-cjs/commands/CreateDatastoreCommand.js +46 -0
- package/dist-cjs/commands/DeleteDatastoreCommand.js +46 -0
- package/dist-cjs/commands/DeleteImageSetCommand.js +46 -0
- package/dist-cjs/commands/GetDICOMImportJobCommand.js +46 -0
- package/dist-cjs/commands/GetDatastoreCommand.js +46 -0
- package/dist-cjs/commands/GetImageFrameCommand.js +47 -0
- package/dist-cjs/commands/GetImageSetCommand.js +46 -0
- package/dist-cjs/commands/GetImageSetMetadataCommand.js +47 -0
- package/dist-cjs/commands/ListDICOMImportJobsCommand.js +46 -0
- package/dist-cjs/commands/ListDatastoresCommand.js +46 -0
- package/dist-cjs/commands/ListImageSetVersionsCommand.js +46 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
- package/dist-cjs/commands/SearchImageSetsCommand.js +47 -0
- package/dist-cjs/commands/StartDICOMImportJobCommand.js +46 -0
- package/dist-cjs/commands/TagResourceCommand.js +46 -0
- package/dist-cjs/commands/UntagResourceCommand.js +46 -0
- package/dist-cjs/commands/UpdateImageSetMetadataCommand.js +47 -0
- package/dist-cjs/commands/index.js +21 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/MedicalImagingServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +248 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListDICOMImportJobsPaginator.js +29 -0
- package/dist-cjs/pagination/ListDatastoresPaginator.js +29 -0
- package/dist-cjs/pagination/ListImageSetVersionsPaginator.js +29 -0
- package/dist-cjs/pagination/SearchImageSetsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +8 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1693 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +48 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +23 -0
- package/dist-es/MedicalImaging.js +43 -0
- package/dist-es/MedicalImagingClient.js +37 -0
- package/dist-es/commands/CopyImageSetCommand.js +42 -0
- package/dist-es/commands/CreateDatastoreCommand.js +42 -0
- package/dist-es/commands/DeleteDatastoreCommand.js +42 -0
- package/dist-es/commands/DeleteImageSetCommand.js +42 -0
- package/dist-es/commands/GetDICOMImportJobCommand.js +42 -0
- package/dist-es/commands/GetDatastoreCommand.js +42 -0
- package/dist-es/commands/GetImageFrameCommand.js +43 -0
- package/dist-es/commands/GetImageSetCommand.js +42 -0
- package/dist-es/commands/GetImageSetMetadataCommand.js +43 -0
- package/dist-es/commands/ListDICOMImportJobsCommand.js +42 -0
- package/dist-es/commands/ListDatastoresCommand.js +42 -0
- package/dist-es/commands/ListImageSetVersionsCommand.js +42 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
- package/dist-es/commands/SearchImageSetsCommand.js +43 -0
- package/dist-es/commands/StartDICOMImportJobCommand.js +42 -0
- package/dist-es/commands/TagResourceCommand.js +42 -0
- package/dist-es/commands/UntagResourceCommand.js +42 -0
- package/dist-es/commands/UpdateImageSetMetadataCommand.js +43 -0
- package/dist-es/commands/index.js +18 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/MedicalImagingServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +225 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListDICOMImportJobsPaginator.js +25 -0
- package/dist-es/pagination/ListDatastoresPaginator.js +25 -0
- package/dist-es/pagination/ListImageSetVersionsPaginator.js +25 -0
- package/dist-es/pagination/SearchImageSetsPaginator.js +25 -0
- package/dist-es/pagination/index.js +5 -0
- package/dist-es/protocols/Aws_restJson1.js +1654 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +43 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +19 -0
- package/dist-types/MedicalImaging.d.ts +285 -0
- package/dist-types/MedicalImagingClient.d.ts +334 -0
- package/dist-types/commands/CopyImageSetCommand.d.ts +122 -0
- package/dist-types/commands/CreateDatastoreCommand.d.ts +97 -0
- package/dist-types/commands/DeleteDatastoreCommand.d.ts +95 -0
- package/dist-types/commands/DeleteImageSetCommand.d.ts +95 -0
- package/dist-types/commands/GetDICOMImportJobCommand.d.ts +103 -0
- package/dist-types/commands/GetDatastoreCommand.d.ts +96 -0
- package/dist-types/commands/GetImageFrameCommand.d.ts +96 -0
- package/dist-types/commands/GetImageSetCommand.d.ts +102 -0
- package/dist-types/commands/GetImageSetMetadataCommand.d.ts +95 -0
- package/dist-types/commands/ListDICOMImportJobsCommand.d.ts +106 -0
- package/dist-types/commands/ListDatastoresCommand.d.ts +97 -0
- package/dist-types/commands/ListImageSetVersionsCommand.d.ts +106 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +90 -0
- package/dist-types/commands/SearchImageSetsCommand.d.ts +135 -0
- package/dist-types/commands/StartDICOMImportJobCommand.d.ts +104 -0
- package/dist-types/commands/TagResourceCommand.d.ts +89 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +89 -0
- package/dist-types/commands/UpdateImageSetMetadataCommand.d.ts +109 -0
- package/dist-types/commands/index.d.ts +18 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/index.d.ts +160 -0
- package/dist-types/models/MedicalImagingServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1363 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListDICOMImportJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDatastoresPaginator.d.ts +7 -0
- package/dist-types/pagination/ListImageSetVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchImageSetsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +5 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +164 -0
- package/dist-types/runtimeConfig.browser.d.ts +43 -0
- package/dist-types/runtimeConfig.d.ts +43 -0
- package/dist-types/runtimeConfig.native.d.ts +42 -0
- package/dist-types/runtimeConfig.shared.d.ts +19 -0
- package/dist-types/ts3.4/MedicalImaging.d.ts +313 -0
- package/dist-types/ts3.4/MedicalImagingClient.d.ts +223 -0
- package/dist-types/ts3.4/commands/CopyImageSetCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/CreateDatastoreCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteDatastoreCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteImageSetCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetDICOMImportJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetDatastoreCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetImageFrameCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetImageSetCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetImageSetMetadataCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListDICOMImportJobsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListDatastoresCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListImageSetVersionsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/SearchImageSetsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StartDICOMImportJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateImageSetMetadataCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +18 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/MedicalImagingServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +513 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListDICOMImportJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDatastoresPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListImageSetVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchImageSetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +224 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +90 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +90 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +81 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
- package/package.json +102 -0
|
@@ -0,0 +1,106 @@
|
|
|
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 { ListDICOMImportJobsRequest, ListDICOMImportJobsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListDICOMImportJobsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListDICOMImportJobsCommandInput extends ListDICOMImportJobsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListDICOMImportJobsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListDICOMImportJobsCommandOutput extends ListDICOMImportJobsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>List import jobs created by this AWS account for a specific data store.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { MedicalImagingClient, ListDICOMImportJobsCommand } from "@aws-sdk/client-medical-imaging"; // ES Modules import
|
|
31
|
+
* // const { MedicalImagingClient, ListDICOMImportJobsCommand } = require("@aws-sdk/client-medical-imaging"); // CommonJS import
|
|
32
|
+
* const client = new MedicalImagingClient(config);
|
|
33
|
+
* const input = { // ListDICOMImportJobsRequest
|
|
34
|
+
* datastoreId: "STRING_VALUE", // required
|
|
35
|
+
* jobStatus: "SUBMITTED" || "IN_PROGRESS" || "COMPLETED" || "FAILED",
|
|
36
|
+
* nextToken: "STRING_VALUE",
|
|
37
|
+
* maxResults: Number("int"),
|
|
38
|
+
* };
|
|
39
|
+
* const command = new ListDICOMImportJobsCommand(input);
|
|
40
|
+
* const response = await client.send(command);
|
|
41
|
+
* // { // ListDICOMImportJobsResponse
|
|
42
|
+
* // jobSummaries: [ // DICOMImportJobSummaries // required
|
|
43
|
+
* // { // DICOMImportJobSummary
|
|
44
|
+
* // jobId: "STRING_VALUE", // required
|
|
45
|
+
* // jobName: "STRING_VALUE", // required
|
|
46
|
+
* // jobStatus: "SUBMITTED" || "IN_PROGRESS" || "COMPLETED" || "FAILED", // required
|
|
47
|
+
* // datastoreId: "STRING_VALUE", // required
|
|
48
|
+
* // dataAccessRoleArn: "STRING_VALUE",
|
|
49
|
+
* // endedAt: new Date("TIMESTAMP"),
|
|
50
|
+
* // submittedAt: new Date("TIMESTAMP"),
|
|
51
|
+
* // message: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // nextToken: "STRING_VALUE",
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
57
|
+
* ```
|
|
58
|
+
*
|
|
59
|
+
* @param ListDICOMImportJobsCommandInput - {@link ListDICOMImportJobsCommandInput}
|
|
60
|
+
* @returns {@link ListDICOMImportJobsCommandOutput}
|
|
61
|
+
* @see {@link ListDICOMImportJobsCommandInput} for command's `input` shape.
|
|
62
|
+
* @see {@link ListDICOMImportJobsCommandOutput} for command's `response` shape.
|
|
63
|
+
* @see {@link MedicalImagingClientResolvedConfig | config} for MedicalImagingClient's `config` shape.
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
66
|
+
* <p>The user does not have sufficient access to perform this action.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ConflictException} (client fault)
|
|
69
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link InternalServerException} (server fault)
|
|
72
|
+
* <p>An unexpected error occurred during processing of the request.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
75
|
+
* <p>The request references a resource which does not exist.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
78
|
+
* <p>The request was denied due to throttling.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link ValidationException} (client fault)
|
|
81
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link MedicalImagingServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
85
|
+
*
|
|
86
|
+
*/
|
|
87
|
+
export declare class ListDICOMImportJobsCommand extends $Command<ListDICOMImportJobsCommandInput, ListDICOMImportJobsCommandOutput, MedicalImagingClientResolvedConfig> {
|
|
88
|
+
readonly input: ListDICOMImportJobsCommandInput;
|
|
89
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
90
|
+
/**
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
93
|
+
constructor(input: ListDICOMImportJobsCommandInput);
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
97
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MedicalImagingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDICOMImportJobsCommandInput, ListDICOMImportJobsCommandOutput>;
|
|
98
|
+
/**
|
|
99
|
+
* @internal
|
|
100
|
+
*/
|
|
101
|
+
private serialize;
|
|
102
|
+
/**
|
|
103
|
+
* @internal
|
|
104
|
+
*/
|
|
105
|
+
private deserialize;
|
|
106
|
+
}
|
|
@@ -0,0 +1,97 @@
|
|
|
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 { ListDatastoresRequest, ListDatastoresResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListDatastoresCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListDatastoresCommandInput extends ListDatastoresRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListDatastoresCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListDatastoresCommandOutput extends ListDatastoresResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>List data stores created by this AWS account.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { MedicalImagingClient, ListDatastoresCommand } from "@aws-sdk/client-medical-imaging"; // ES Modules import
|
|
31
|
+
* // const { MedicalImagingClient, ListDatastoresCommand } = require("@aws-sdk/client-medical-imaging"); // CommonJS import
|
|
32
|
+
* const client = new MedicalImagingClient(config);
|
|
33
|
+
* const input = { // ListDatastoresRequest
|
|
34
|
+
* datastoreStatus: "CREATING" || "CREATE_FAILED" || "ACTIVE" || "DELETING" || "DELETED",
|
|
35
|
+
* nextToken: "STRING_VALUE",
|
|
36
|
+
* maxResults: Number("int"),
|
|
37
|
+
* };
|
|
38
|
+
* const command = new ListDatastoresCommand(input);
|
|
39
|
+
* const response = await client.send(command);
|
|
40
|
+
* // { // ListDatastoresResponse
|
|
41
|
+
* // datastoreSummaries: [ // DatastoreSummaries
|
|
42
|
+
* // { // DatastoreSummary
|
|
43
|
+
* // datastoreId: "STRING_VALUE", // required
|
|
44
|
+
* // datastoreName: "STRING_VALUE", // required
|
|
45
|
+
* // datastoreStatus: "CREATING" || "CREATE_FAILED" || "ACTIVE" || "DELETING" || "DELETED", // required
|
|
46
|
+
* // datastoreArn: "STRING_VALUE",
|
|
47
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
48
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // nextToken: "STRING_VALUE",
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
54
|
+
* ```
|
|
55
|
+
*
|
|
56
|
+
* @param ListDatastoresCommandInput - {@link ListDatastoresCommandInput}
|
|
57
|
+
* @returns {@link ListDatastoresCommandOutput}
|
|
58
|
+
* @see {@link ListDatastoresCommandInput} for command's `input` shape.
|
|
59
|
+
* @see {@link ListDatastoresCommandOutput} 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 InternalServerException} (server fault)
|
|
66
|
+
* <p>An unexpected error occurred during processing of the request.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
69
|
+
* <p>The request was denied due to throttling.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ValidationException} (client fault)
|
|
72
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link MedicalImagingServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
76
|
+
*
|
|
77
|
+
*/
|
|
78
|
+
export declare class ListDatastoresCommand extends $Command<ListDatastoresCommandInput, ListDatastoresCommandOutput, MedicalImagingClientResolvedConfig> {
|
|
79
|
+
readonly input: ListDatastoresCommandInput;
|
|
80
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
constructor(input: ListDatastoresCommandInput);
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
88
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MedicalImagingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDatastoresCommandInput, ListDatastoresCommandOutput>;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
92
|
+
private serialize;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
96
|
+
private deserialize;
|
|
97
|
+
}
|
|
@@ -0,0 +1,106 @@
|
|
|
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 { ListImageSetVersionsRequest, ListImageSetVersionsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListImageSetVersionsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListImageSetVersionsCommandInput extends ListImageSetVersionsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListImageSetVersionsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListImageSetVersionsCommandOutput extends ListImageSetVersionsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>List image set versions.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { MedicalImagingClient, ListImageSetVersionsCommand } from "@aws-sdk/client-medical-imaging"; // ES Modules import
|
|
31
|
+
* // const { MedicalImagingClient, ListImageSetVersionsCommand } = require("@aws-sdk/client-medical-imaging"); // CommonJS import
|
|
32
|
+
* const client = new MedicalImagingClient(config);
|
|
33
|
+
* const input = { // ListImageSetVersionsRequest
|
|
34
|
+
* datastoreId: "STRING_VALUE", // required
|
|
35
|
+
* imageSetId: "STRING_VALUE", // required
|
|
36
|
+
* nextToken: "STRING_VALUE",
|
|
37
|
+
* maxResults: Number("int"),
|
|
38
|
+
* };
|
|
39
|
+
* const command = new ListImageSetVersionsCommand(input);
|
|
40
|
+
* const response = await client.send(command);
|
|
41
|
+
* // { // ListImageSetVersionsResponse
|
|
42
|
+
* // imageSetPropertiesList: [ // ImageSetPropertiesList // required
|
|
43
|
+
* // { // ImageSetProperties
|
|
44
|
+
* // imageSetId: "STRING_VALUE", // required
|
|
45
|
+
* // versionId: "STRING_VALUE", // required
|
|
46
|
+
* // imageSetState: "ACTIVE" || "LOCKED" || "DELETED", // required
|
|
47
|
+
* // ImageSetWorkflowStatus: "CREATED" || "COPIED" || "COPYING" || "COPYING_WITH_READ_ONLY_ACCESS" || "COPY_FAILED" || "UPDATING" || "UPDATED" || "UPDATE_FAILED" || "DELETING" || "DELETED",
|
|
48
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
49
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
50
|
+
* // deletedAt: new Date("TIMESTAMP"),
|
|
51
|
+
* // message: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // nextToken: "STRING_VALUE",
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
57
|
+
* ```
|
|
58
|
+
*
|
|
59
|
+
* @param ListImageSetVersionsCommandInput - {@link ListImageSetVersionsCommandInput}
|
|
60
|
+
* @returns {@link ListImageSetVersionsCommandOutput}
|
|
61
|
+
* @see {@link ListImageSetVersionsCommandInput} for command's `input` shape.
|
|
62
|
+
* @see {@link ListImageSetVersionsCommandOutput} for command's `response` shape.
|
|
63
|
+
* @see {@link MedicalImagingClientResolvedConfig | config} for MedicalImagingClient's `config` shape.
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
66
|
+
* <p>The user does not have sufficient access to perform this action.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ConflictException} (client fault)
|
|
69
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link InternalServerException} (server fault)
|
|
72
|
+
* <p>An unexpected error occurred during processing of the request.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
75
|
+
* <p>The request references a resource which does not exist.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
78
|
+
* <p>The request was denied due to throttling.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link ValidationException} (client fault)
|
|
81
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link MedicalImagingServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
85
|
+
*
|
|
86
|
+
*/
|
|
87
|
+
export declare class ListImageSetVersionsCommand extends $Command<ListImageSetVersionsCommandInput, ListImageSetVersionsCommandOutput, MedicalImagingClientResolvedConfig> {
|
|
88
|
+
readonly input: ListImageSetVersionsCommandInput;
|
|
89
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
90
|
+
/**
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
93
|
+
constructor(input: ListImageSetVersionsCommandInput);
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
97
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MedicalImagingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListImageSetVersionsCommandInput, ListImageSetVersionsCommandOutput>;
|
|
98
|
+
/**
|
|
99
|
+
* @internal
|
|
100
|
+
*/
|
|
101
|
+
private serialize;
|
|
102
|
+
/**
|
|
103
|
+
* @internal
|
|
104
|
+
*/
|
|
105
|
+
private deserialize;
|
|
106
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
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 { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListTagsForResourceCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListTagsForResourceCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Lists all tags associated with a medical imaging resource.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { MedicalImagingClient, ListTagsForResourceCommand } from "@aws-sdk/client-medical-imaging"; // ES Modules import
|
|
31
|
+
* // const { MedicalImagingClient, ListTagsForResourceCommand } = require("@aws-sdk/client-medical-imaging"); // CommonJS import
|
|
32
|
+
* const client = new MedicalImagingClient(config);
|
|
33
|
+
* const input = { // ListTagsForResourceRequest
|
|
34
|
+
* resourceArn: "STRING_VALUE", // required
|
|
35
|
+
* };
|
|
36
|
+
* const command = new ListTagsForResourceCommand(input);
|
|
37
|
+
* const response = await client.send(command);
|
|
38
|
+
* // { // ListTagsForResourceResponse
|
|
39
|
+
* // tags: { // TagMap // required
|
|
40
|
+
* // "<keys>": "STRING_VALUE",
|
|
41
|
+
* // },
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
44
|
+
* ```
|
|
45
|
+
*
|
|
46
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
47
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
48
|
+
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
49
|
+
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
50
|
+
* @see {@link MedicalImagingClientResolvedConfig | config} for MedicalImagingClient's `config` shape.
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
53
|
+
* <p>The user does not have sufficient access to perform this action.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link InternalServerException} (server fault)
|
|
56
|
+
* <p>An unexpected error occurred during processing of the request.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
59
|
+
* <p>The request references a resource which does not exist.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
62
|
+
* <p>The request was denied due to throttling.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ValidationException} (client fault)
|
|
65
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link MedicalImagingServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
69
|
+
*
|
|
70
|
+
*/
|
|
71
|
+
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MedicalImagingClientResolvedConfig> {
|
|
72
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
73
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
81
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MedicalImagingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
85
|
+
private serialize;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
89
|
+
private deserialize;
|
|
90
|
+
}
|
|
@@ -0,0 +1,135 @@
|
|
|
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 { SearchImageSetsRequest, SearchImageSetsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link SearchImageSetsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface SearchImageSetsCommandInput extends SearchImageSetsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link SearchImageSetsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface SearchImageSetsCommandOutput extends SearchImageSetsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Search image sets based on defined input attributes.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { MedicalImagingClient, SearchImageSetsCommand } from "@aws-sdk/client-medical-imaging"; // ES Modules import
|
|
31
|
+
* // const { MedicalImagingClient, SearchImageSetsCommand } = require("@aws-sdk/client-medical-imaging"); // CommonJS import
|
|
32
|
+
* const client = new MedicalImagingClient(config);
|
|
33
|
+
* const input = { // SearchImageSetsRequest
|
|
34
|
+
* datastoreId: "STRING_VALUE", // required
|
|
35
|
+
* searchCriteria: { // SearchCriteria
|
|
36
|
+
* filters: [ // SearchFilters
|
|
37
|
+
* { // SearchFilter
|
|
38
|
+
* values: [ // SearchByAttributeValues // required
|
|
39
|
+
* { // SearchByAttributeValue Union: only one key present
|
|
40
|
+
* DICOMPatientId: "STRING_VALUE",
|
|
41
|
+
* DICOMAccessionNumber: "STRING_VALUE",
|
|
42
|
+
* DICOMStudyId: "STRING_VALUE",
|
|
43
|
+
* DICOMStudyInstanceUID: "STRING_VALUE",
|
|
44
|
+
* createdAt: new Date("TIMESTAMP"),
|
|
45
|
+
* DICOMStudyDateAndTime: { // DICOMStudyDateAndTime
|
|
46
|
+
* DICOMStudyDate: "STRING_VALUE", // required
|
|
47
|
+
* DICOMStudyTime: "STRING_VALUE",
|
|
48
|
+
* },
|
|
49
|
+
* },
|
|
50
|
+
* ],
|
|
51
|
+
* operator: "EQUAL" || "BETWEEN", // required
|
|
52
|
+
* },
|
|
53
|
+
* ],
|
|
54
|
+
* },
|
|
55
|
+
* maxResults: Number("int"),
|
|
56
|
+
* nextToken: "STRING_VALUE",
|
|
57
|
+
* };
|
|
58
|
+
* const command = new SearchImageSetsCommand(input);
|
|
59
|
+
* const response = await client.send(command);
|
|
60
|
+
* // { // SearchImageSetsResponse
|
|
61
|
+
* // imageSetsMetadataSummaries: [ // ImageSetsMetadataSummaries // required
|
|
62
|
+
* // { // ImageSetsMetadataSummary
|
|
63
|
+
* // imageSetId: "STRING_VALUE", // required
|
|
64
|
+
* // version: Number("int"),
|
|
65
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
66
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
67
|
+
* // DICOMTags: { // DICOMTags
|
|
68
|
+
* // DICOMPatientId: "STRING_VALUE",
|
|
69
|
+
* // DICOMPatientName: "STRING_VALUE",
|
|
70
|
+
* // DICOMPatientBirthDate: "STRING_VALUE",
|
|
71
|
+
* // DICOMPatientSex: "STRING_VALUE",
|
|
72
|
+
* // DICOMStudyInstanceUID: "STRING_VALUE",
|
|
73
|
+
* // DICOMStudyId: "STRING_VALUE",
|
|
74
|
+
* // DICOMStudyDescription: "STRING_VALUE",
|
|
75
|
+
* // DICOMNumberOfStudyRelatedSeries: Number("int"),
|
|
76
|
+
* // DICOMNumberOfStudyRelatedInstances: Number("int"),
|
|
77
|
+
* // DICOMAccessionNumber: "STRING_VALUE",
|
|
78
|
+
* // DICOMStudyDate: "STRING_VALUE",
|
|
79
|
+
* // DICOMStudyTime: "STRING_VALUE",
|
|
80
|
+
* // },
|
|
81
|
+
* // },
|
|
82
|
+
* // ],
|
|
83
|
+
* // nextToken: "STRING_VALUE",
|
|
84
|
+
* // };
|
|
85
|
+
*
|
|
86
|
+
* ```
|
|
87
|
+
*
|
|
88
|
+
* @param SearchImageSetsCommandInput - {@link SearchImageSetsCommandInput}
|
|
89
|
+
* @returns {@link SearchImageSetsCommandOutput}
|
|
90
|
+
* @see {@link SearchImageSetsCommandInput} for command's `input` shape.
|
|
91
|
+
* @see {@link SearchImageSetsCommandOutput} for command's `response` shape.
|
|
92
|
+
* @see {@link MedicalImagingClientResolvedConfig | config} for MedicalImagingClient's `config` shape.
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
95
|
+
* <p>The user does not have sufficient access to perform this action.</p>
|
|
96
|
+
*
|
|
97
|
+
* @throws {@link ConflictException} (client fault)
|
|
98
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link InternalServerException} (server fault)
|
|
101
|
+
* <p>An unexpected error occurred during processing of the request.</p>
|
|
102
|
+
*
|
|
103
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
104
|
+
* <p>The request references a resource which does not exist.</p>
|
|
105
|
+
*
|
|
106
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
107
|
+
* <p>The request was denied due to throttling.</p>
|
|
108
|
+
*
|
|
109
|
+
* @throws {@link ValidationException} (client fault)
|
|
110
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
111
|
+
*
|
|
112
|
+
* @throws {@link MedicalImagingServiceException}
|
|
113
|
+
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
114
|
+
*
|
|
115
|
+
*/
|
|
116
|
+
export declare class SearchImageSetsCommand extends $Command<SearchImageSetsCommandInput, SearchImageSetsCommandOutput, MedicalImagingClientResolvedConfig> {
|
|
117
|
+
readonly input: SearchImageSetsCommandInput;
|
|
118
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
119
|
+
/**
|
|
120
|
+
* @public
|
|
121
|
+
*/
|
|
122
|
+
constructor(input: SearchImageSetsCommandInput);
|
|
123
|
+
/**
|
|
124
|
+
* @internal
|
|
125
|
+
*/
|
|
126
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MedicalImagingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchImageSetsCommandInput, SearchImageSetsCommandOutput>;
|
|
127
|
+
/**
|
|
128
|
+
* @internal
|
|
129
|
+
*/
|
|
130
|
+
private serialize;
|
|
131
|
+
/**
|
|
132
|
+
* @internal
|
|
133
|
+
*/
|
|
134
|
+
private deserialize;
|
|
135
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
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 { StartDICOMImportJobRequest, StartDICOMImportJobResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link StartDICOMImportJobCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface StartDICOMImportJobCommandInput extends StartDICOMImportJobRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link StartDICOMImportJobCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface StartDICOMImportJobCommandOutput extends StartDICOMImportJobResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Start importing bulk data into an <code>ACTIVE</code> data store. The import job imports DICOM P10 files
|
|
27
|
+
* found in the S3 prefix specified by the <code>inputS3Uri</code> parameter. The import job stores
|
|
28
|
+
* processing results in the file specified by the <code>outputS3Uri</code> parameter.</p>
|
|
29
|
+
* @example
|
|
30
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
31
|
+
* ```javascript
|
|
32
|
+
* import { MedicalImagingClient, StartDICOMImportJobCommand } from "@aws-sdk/client-medical-imaging"; // ES Modules import
|
|
33
|
+
* // const { MedicalImagingClient, StartDICOMImportJobCommand } = require("@aws-sdk/client-medical-imaging"); // CommonJS import
|
|
34
|
+
* const client = new MedicalImagingClient(config);
|
|
35
|
+
* const input = { // StartDICOMImportJobRequest
|
|
36
|
+
* jobName: "STRING_VALUE",
|
|
37
|
+
* dataAccessRoleArn: "STRING_VALUE", // required
|
|
38
|
+
* clientToken: "STRING_VALUE", // required
|
|
39
|
+
* datastoreId: "STRING_VALUE", // required
|
|
40
|
+
* inputS3Uri: "STRING_VALUE", // required
|
|
41
|
+
* outputS3Uri: "STRING_VALUE", // required
|
|
42
|
+
* };
|
|
43
|
+
* const command = new StartDICOMImportJobCommand(input);
|
|
44
|
+
* const response = await client.send(command);
|
|
45
|
+
* // { // StartDICOMImportJobResponse
|
|
46
|
+
* // datastoreId: "STRING_VALUE", // required
|
|
47
|
+
* // jobId: "STRING_VALUE", // required
|
|
48
|
+
* // jobStatus: "SUBMITTED" || "IN_PROGRESS" || "COMPLETED" || "FAILED", // required
|
|
49
|
+
* // submittedAt: new Date("TIMESTAMP"), // required
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
52
|
+
* ```
|
|
53
|
+
*
|
|
54
|
+
* @param StartDICOMImportJobCommandInput - {@link StartDICOMImportJobCommandInput}
|
|
55
|
+
* @returns {@link StartDICOMImportJobCommandOutput}
|
|
56
|
+
* @see {@link StartDICOMImportJobCommandInput} for command's `input` shape.
|
|
57
|
+
* @see {@link StartDICOMImportJobCommandOutput} for command's `response` shape.
|
|
58
|
+
* @see {@link MedicalImagingClientResolvedConfig | config} for MedicalImagingClient's `config` shape.
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
61
|
+
* <p>The user does not have sufficient access to perform this action.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ConflictException} (client fault)
|
|
64
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link InternalServerException} (server fault)
|
|
67
|
+
* <p>An unexpected error occurred during processing of the request.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
70
|
+
* <p>The request references a resource which does not exist.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
73
|
+
* <p>The request caused a service quota to be exceeded.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
76
|
+
* <p>The request was denied due to throttling.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ValidationException} (client fault)
|
|
79
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link MedicalImagingServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
83
|
+
*
|
|
84
|
+
*/
|
|
85
|
+
export declare class StartDICOMImportJobCommand extends $Command<StartDICOMImportJobCommandInput, StartDICOMImportJobCommandOutput, MedicalImagingClientResolvedConfig> {
|
|
86
|
+
readonly input: StartDICOMImportJobCommandInput;
|
|
87
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
88
|
+
/**
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
constructor(input: StartDICOMImportJobCommandInput);
|
|
92
|
+
/**
|
|
93
|
+
* @internal
|
|
94
|
+
*/
|
|
95
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MedicalImagingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartDICOMImportJobCommandInput, StartDICOMImportJobCommandOutput>;
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
99
|
+
private serialize;
|
|
100
|
+
/**
|
|
101
|
+
* @internal
|
|
102
|
+
*/
|
|
103
|
+
private deserialize;
|
|
104
|
+
}
|