@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,334 @@
|
|
|
1
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
2
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
3
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
4
|
+
import { Credentials as __Credentials } from "@aws-sdk/types";
|
|
5
|
+
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/config-resolver";
|
|
6
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-endpoint";
|
|
7
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
8
|
+
import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
|
|
9
|
+
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
10
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, SdkStreamMixinInjector as __SdkStreamMixinInjector, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
11
|
+
import { CopyImageSetCommandInput, CopyImageSetCommandOutput } from "./commands/CopyImageSetCommand";
|
|
12
|
+
import { CreateDatastoreCommandInput, CreateDatastoreCommandOutput } from "./commands/CreateDatastoreCommand";
|
|
13
|
+
import { DeleteDatastoreCommandInput, DeleteDatastoreCommandOutput } from "./commands/DeleteDatastoreCommand";
|
|
14
|
+
import { DeleteImageSetCommandInput, DeleteImageSetCommandOutput } from "./commands/DeleteImageSetCommand";
|
|
15
|
+
import { GetDatastoreCommandInput, GetDatastoreCommandOutput } from "./commands/GetDatastoreCommand";
|
|
16
|
+
import { GetDICOMImportJobCommandInput, GetDICOMImportJobCommandOutput } from "./commands/GetDICOMImportJobCommand";
|
|
17
|
+
import { GetImageFrameCommandInput, GetImageFrameCommandOutput } from "./commands/GetImageFrameCommand";
|
|
18
|
+
import { GetImageSetCommandInput, GetImageSetCommandOutput } from "./commands/GetImageSetCommand";
|
|
19
|
+
import { GetImageSetMetadataCommandInput, GetImageSetMetadataCommandOutput } from "./commands/GetImageSetMetadataCommand";
|
|
20
|
+
import { ListDatastoresCommandInput, ListDatastoresCommandOutput } from "./commands/ListDatastoresCommand";
|
|
21
|
+
import { ListDICOMImportJobsCommandInput, ListDICOMImportJobsCommandOutput } from "./commands/ListDICOMImportJobsCommand";
|
|
22
|
+
import { ListImageSetVersionsCommandInput, ListImageSetVersionsCommandOutput } from "./commands/ListImageSetVersionsCommand";
|
|
23
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
24
|
+
import { SearchImageSetsCommandInput, SearchImageSetsCommandOutput } from "./commands/SearchImageSetsCommand";
|
|
25
|
+
import { StartDICOMImportJobCommandInput, StartDICOMImportJobCommandOutput } from "./commands/StartDICOMImportJobCommand";
|
|
26
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
27
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
28
|
+
import { UpdateImageSetMetadataCommandInput, UpdateImageSetMetadataCommandOutput } from "./commands/UpdateImageSetMetadataCommand";
|
|
29
|
+
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
30
|
+
export { __Client };
|
|
31
|
+
/**
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
34
|
+
export type ServiceInputTypes = CopyImageSetCommandInput | CreateDatastoreCommandInput | DeleteDatastoreCommandInput | DeleteImageSetCommandInput | GetDICOMImportJobCommandInput | GetDatastoreCommandInput | GetImageFrameCommandInput | GetImageSetCommandInput | GetImageSetMetadataCommandInput | ListDICOMImportJobsCommandInput | ListDatastoresCommandInput | ListImageSetVersionsCommandInput | ListTagsForResourceCommandInput | SearchImageSetsCommandInput | StartDICOMImportJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateImageSetMetadataCommandInput;
|
|
35
|
+
/**
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
export type ServiceOutputTypes = CopyImageSetCommandOutput | CreateDatastoreCommandOutput | DeleteDatastoreCommandOutput | DeleteImageSetCommandOutput | GetDICOMImportJobCommandOutput | GetDatastoreCommandOutput | GetImageFrameCommandOutput | GetImageSetCommandOutput | GetImageSetMetadataCommandOutput | ListDICOMImportJobsCommandOutput | ListDatastoresCommandOutput | ListImageSetVersionsCommandOutput | ListTagsForResourceCommandOutput | SearchImageSetsCommandOutput | StartDICOMImportJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateImageSetMetadataCommandOutput;
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
43
|
+
/**
|
|
44
|
+
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
45
|
+
*/
|
|
46
|
+
requestHandler?: __HttpHandler;
|
|
47
|
+
/**
|
|
48
|
+
* A constructor for a class implementing the {@link @smithy/types#ChecksumConstructor} interface
|
|
49
|
+
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
50
|
+
* @internal
|
|
51
|
+
*/
|
|
52
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
53
|
+
/**
|
|
54
|
+
* The function that will be used to convert strings into HTTP endpoints.
|
|
55
|
+
* @internal
|
|
56
|
+
*/
|
|
57
|
+
urlParser?: __UrlParser;
|
|
58
|
+
/**
|
|
59
|
+
* A function that can calculate the length of a request body.
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
62
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
63
|
+
/**
|
|
64
|
+
* A function that converts a stream into an array of bytes.
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
67
|
+
streamCollector?: __StreamCollector;
|
|
68
|
+
/**
|
|
69
|
+
* The function that will be used to convert a base64-encoded string to a byte array.
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
72
|
+
base64Decoder?: __Decoder;
|
|
73
|
+
/**
|
|
74
|
+
* The function that will be used to convert binary data to a base64-encoded string.
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
77
|
+
base64Encoder?: __Encoder;
|
|
78
|
+
/**
|
|
79
|
+
* The function that will be used to convert a UTF8-encoded string to a byte array.
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
82
|
+
utf8Decoder?: __Decoder;
|
|
83
|
+
/**
|
|
84
|
+
* The function that will be used to convert binary data to a UTF-8 encoded string.
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
87
|
+
utf8Encoder?: __Encoder;
|
|
88
|
+
/**
|
|
89
|
+
* The runtime environment.
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
92
|
+
runtime?: string;
|
|
93
|
+
/**
|
|
94
|
+
* Disable dynamically changing the endpoint of the client based on the hostPrefix
|
|
95
|
+
* trait of an operation.
|
|
96
|
+
*/
|
|
97
|
+
disableHostPrefix?: boolean;
|
|
98
|
+
/**
|
|
99
|
+
* Unique service identifier.
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
102
|
+
serviceId?: string;
|
|
103
|
+
/**
|
|
104
|
+
* Enables IPv6/IPv4 dualstack endpoint.
|
|
105
|
+
*/
|
|
106
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
107
|
+
/**
|
|
108
|
+
* Enables FIPS compatible endpoints.
|
|
109
|
+
*/
|
|
110
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
111
|
+
/**
|
|
112
|
+
* The AWS region to which this client will send requests
|
|
113
|
+
*/
|
|
114
|
+
region?: string | __Provider<string>;
|
|
115
|
+
/**
|
|
116
|
+
* Default credentials provider; Not available in browser runtime.
|
|
117
|
+
* @internal
|
|
118
|
+
*/
|
|
119
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
120
|
+
/**
|
|
121
|
+
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
122
|
+
* @internal
|
|
123
|
+
*/
|
|
124
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
125
|
+
/**
|
|
126
|
+
* Value for how many times a request will be made at most in case of retry.
|
|
127
|
+
*/
|
|
128
|
+
maxAttempts?: number | __Provider<number>;
|
|
129
|
+
/**
|
|
130
|
+
* Specifies which retry algorithm to use.
|
|
131
|
+
*/
|
|
132
|
+
retryMode?: string | __Provider<string>;
|
|
133
|
+
/**
|
|
134
|
+
* Optional logger for logging debug/info/warn/error.
|
|
135
|
+
*/
|
|
136
|
+
logger?: __Logger;
|
|
137
|
+
/**
|
|
138
|
+
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
139
|
+
*/
|
|
140
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
141
|
+
/**
|
|
142
|
+
* The internal function that inject utilities to runtime-specific stream to help users consume the data
|
|
143
|
+
* @internal
|
|
144
|
+
*/
|
|
145
|
+
sdkStreamMixin?: __SdkStreamMixinInjector;
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* @public
|
|
149
|
+
*/
|
|
150
|
+
export type MedicalImagingClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
151
|
+
/**
|
|
152
|
+
* @public
|
|
153
|
+
*
|
|
154
|
+
* The configuration interface of MedicalImagingClient class constructor that set the region, credentials and other options.
|
|
155
|
+
*/
|
|
156
|
+
export interface MedicalImagingClientConfig extends MedicalImagingClientConfigType {
|
|
157
|
+
}
|
|
158
|
+
/**
|
|
159
|
+
* @public
|
|
160
|
+
*/
|
|
161
|
+
export type MedicalImagingClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
162
|
+
/**
|
|
163
|
+
* @public
|
|
164
|
+
*
|
|
165
|
+
* The resolved configuration interface of MedicalImagingClient class. This is resolved and normalized from the {@link MedicalImagingClientConfig | constructor configuration interface}.
|
|
166
|
+
*/
|
|
167
|
+
export interface MedicalImagingClientResolvedConfig extends MedicalImagingClientResolvedConfigType {
|
|
168
|
+
}
|
|
169
|
+
/**
|
|
170
|
+
* @public
|
|
171
|
+
* <p>This is the <i>AWS HealthImaging API Reference</i>. AWS HealthImaging is an AWS service for storing, accessing,
|
|
172
|
+
* and analyzing medical images. For an introduction to the service, see the <a href="https://docs.aws.amazon.com/medical-imaging/latest/devguide">
|
|
173
|
+
* <i>AWS HealthImaging Developer Guide</i>
|
|
174
|
+
* </a>.</p>
|
|
175
|
+
* <note>
|
|
176
|
+
* <p>We recommend using one of the AWS Software Development Kits (SDKs) for your programming language, as
|
|
177
|
+
* they take care of request authentication, serialization, and connection management. For more information,
|
|
178
|
+
* see <a href="http://aws.amazon.com/developer/tools">Tools to build on AWS</a>.</p>
|
|
179
|
+
* <p>For information about using AWS HealthImaging API actions in one of the language-specific AWS SDKs, refer to the
|
|
180
|
+
* <i>See Also</i> link at the end of each section that describes an API action or data type.</p>
|
|
181
|
+
* </note>
|
|
182
|
+
* <p>The following sections list AWS HealthImaging API actions categorized according to functionality. Links are
|
|
183
|
+
* provided to actions within this Reference, along with links back to corresponding sections in the
|
|
184
|
+
* <i>AWS HealthImaging Developer Guide</i> so you can view console procedures and CLI/SDK code examples.</p>
|
|
185
|
+
* <p class="title">
|
|
186
|
+
* <b>Data store actions</b>
|
|
187
|
+
* </p>
|
|
188
|
+
* <ul>
|
|
189
|
+
* <li>
|
|
190
|
+
* <p>
|
|
191
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/APIReference/API_CreateDatastore.html">CreateDatastore</a>
|
|
192
|
+
* – See
|
|
193
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/devguide/create-data-store.html">Creating a data store</a>.</p>
|
|
194
|
+
* </li>
|
|
195
|
+
* <li>
|
|
196
|
+
* <p>
|
|
197
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/APIReference/API_GetDatastore.html">GetDatastore</a>
|
|
198
|
+
* – See
|
|
199
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/devguide/get-data-store.html">Getting data store properties</a>.</p>
|
|
200
|
+
* </li>
|
|
201
|
+
* <li>
|
|
202
|
+
* <p>
|
|
203
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/APIReference/API_ListDatastores.html">ListDatastores</a>
|
|
204
|
+
* – See
|
|
205
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/devguide/list-data-stores.html">Listing data stores</a>.</p>
|
|
206
|
+
* </li>
|
|
207
|
+
* <li>
|
|
208
|
+
* <p>
|
|
209
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/APIReference/API_DeleteDatastore.html">DeleteDatastore</a>
|
|
210
|
+
* – See
|
|
211
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/devguide/delete-data-store.html">Deleting a data store</a>.</p>
|
|
212
|
+
* </li>
|
|
213
|
+
* </ul>
|
|
214
|
+
* <p class="title">
|
|
215
|
+
* <b>Import job actions</b>
|
|
216
|
+
* </p>
|
|
217
|
+
* <ul>
|
|
218
|
+
* <li>
|
|
219
|
+
* <p>
|
|
220
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/APIReference/API_StartDICOMImportJob.html">StartDICOMImportJob</a>
|
|
221
|
+
* – See
|
|
222
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/devguide/start-dicom-import-job.html">Starting an import job</a>.</p>
|
|
223
|
+
* </li>
|
|
224
|
+
* <li>
|
|
225
|
+
* <p>
|
|
226
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/APIReference/API_GetDICOMImportJob.html">GetDICOMImportJob</a>
|
|
227
|
+
* – See
|
|
228
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/devguide/get-dicom-import-job.html">Getting import job properties</a>.</p>
|
|
229
|
+
* </li>
|
|
230
|
+
* <li>
|
|
231
|
+
* <p>
|
|
232
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/APIReference/API_ListDICOMImportJobs.html">ListDICOMImportJobs</a>
|
|
233
|
+
* – See
|
|
234
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/devguide/list-dicom-import-jobs.html">Listing import jobs</a>.</p>
|
|
235
|
+
* </li>
|
|
236
|
+
* </ul>
|
|
237
|
+
* <p class="title">
|
|
238
|
+
* <b>Image set access actions</b>
|
|
239
|
+
* </p>
|
|
240
|
+
* <ul>
|
|
241
|
+
* <li>
|
|
242
|
+
* <p>
|
|
243
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/APIReference/API_SearchImageSets.html">SearchImageSets</a>
|
|
244
|
+
* – See
|
|
245
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/devguide/search-image-sets.html">Searching image sets</a>.</p>
|
|
246
|
+
* </li>
|
|
247
|
+
* <li>
|
|
248
|
+
* <p>
|
|
249
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/APIReference/API_GetImageSet.html">GetImageSet</a>
|
|
250
|
+
* – See
|
|
251
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/devguide/get-image-set-properties.html">Getting image set properties</a>.</p>
|
|
252
|
+
* </li>
|
|
253
|
+
* <li>
|
|
254
|
+
* <p>
|
|
255
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/APIReference/API_GetImageSetMetadata.html">GetImageSetMetadata</a>
|
|
256
|
+
* – See
|
|
257
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/devguide/get-image-set-metadata.html">Getting image set metadata</a>.</p>
|
|
258
|
+
* </li>
|
|
259
|
+
* <li>
|
|
260
|
+
* <p>
|
|
261
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/APIReference/API_GetImageFrame.html">GetImageFrame</a>
|
|
262
|
+
* – See
|
|
263
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/devguide/get-image-frame.html">Getting image set pixel data</a>.</p>
|
|
264
|
+
* </li>
|
|
265
|
+
* </ul>
|
|
266
|
+
* <p class="title">
|
|
267
|
+
* <b>Image set modification actions</b>
|
|
268
|
+
* </p>
|
|
269
|
+
* <ul>
|
|
270
|
+
* <li>
|
|
271
|
+
* <p>
|
|
272
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/APIReference/API_ListImageSetVersions.html">ListImageSetVersions</a>
|
|
273
|
+
* – See
|
|
274
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/devguide/list-image-set-versions.html">Listing image set versions</a>.</p>
|
|
275
|
+
* </li>
|
|
276
|
+
* <li>
|
|
277
|
+
* <p>
|
|
278
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/APIReference/API_UpdateImageSetMetadata.html">UpdateImageSetMetadata</a>
|
|
279
|
+
* – See
|
|
280
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/devguide/update-image-set-metadata.html">Updating image set metadata</a>.</p>
|
|
281
|
+
* </li>
|
|
282
|
+
* <li>
|
|
283
|
+
* <p>
|
|
284
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/APIReference/API_CopyImageSet.html">CopyImageSet</a>
|
|
285
|
+
* – See
|
|
286
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/devguide/copy-image-set.html">Copying an image set</a>.</p>
|
|
287
|
+
* </li>
|
|
288
|
+
* <li>
|
|
289
|
+
* <p>
|
|
290
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/APIReference/API_DeleteImageSet.html">DeleteImageSet</a>
|
|
291
|
+
* – See
|
|
292
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/devguide/delete-image-set.html">Deleting an image set</a>.</p>
|
|
293
|
+
* </li>
|
|
294
|
+
* </ul>
|
|
295
|
+
* <p class="title">
|
|
296
|
+
* <b>Tagging actions</b>
|
|
297
|
+
* </p>
|
|
298
|
+
* <ul>
|
|
299
|
+
* <li>
|
|
300
|
+
* <p>
|
|
301
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/APIReference/API_TagResource.html">TagResource</a>
|
|
302
|
+
* – See
|
|
303
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/devguide/tag-list-untag-data-store.html">Tagging a data store</a> and
|
|
304
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/devguide/tag-list-untag-image-set.html">Tagging an image set</a>.</p>
|
|
305
|
+
* </li>
|
|
306
|
+
* <li>
|
|
307
|
+
* <p>
|
|
308
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/APIReference/API_ListTagsForResource.html">ListTagsForResource</a>
|
|
309
|
+
* – See
|
|
310
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/devguide/tag-list-untag-data-store.html">Tagging a data store</a> and
|
|
311
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/devguide/tag-list-untag-image-set.html">Tagging an image set</a>.</p>
|
|
312
|
+
* </li>
|
|
313
|
+
* <li>
|
|
314
|
+
* <p>
|
|
315
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/APIReference/API_UntagResource.html">UntagResource</a>
|
|
316
|
+
* – See
|
|
317
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/devguide/tag-list-untag-data-store.html">Tagging a data store</a> and
|
|
318
|
+
* <a href="https://docs.aws.amazon.com/medical-imaging/latest/devguide/tag-list-untag-image-set.html">Tagging an image set</a>.</p>
|
|
319
|
+
* </li>
|
|
320
|
+
* </ul>
|
|
321
|
+
*/
|
|
322
|
+
export declare class MedicalImagingClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, MedicalImagingClientResolvedConfig> {
|
|
323
|
+
/**
|
|
324
|
+
* The resolved configuration of MedicalImagingClient class. This is resolved and normalized from the {@link MedicalImagingClientConfig | constructor configuration interface}.
|
|
325
|
+
*/
|
|
326
|
+
readonly config: MedicalImagingClientResolvedConfig;
|
|
327
|
+
constructor(configuration: MedicalImagingClientConfig);
|
|
328
|
+
/**
|
|
329
|
+
* Destroy underlying resources, like sockets. It's usually not necessary to do this.
|
|
330
|
+
* However in Node.js, it's best to explicitly shut down the client's agent when it is no longer needed.
|
|
331
|
+
* Otherwise, sockets might stay open for quite a long time before the server terminates them.
|
|
332
|
+
*/
|
|
333
|
+
destroy(): void;
|
|
334
|
+
}
|
|
@@ -0,0 +1,122 @@
|
|
|
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 { CopyImageSetRequest, CopyImageSetResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CopyImageSetCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CopyImageSetCommandInput extends CopyImageSetRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CopyImageSetCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CopyImageSetCommandOutput extends CopyImageSetResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Copy 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, CopyImageSetCommand } from "@aws-sdk/client-medical-imaging"; // ES Modules import
|
|
31
|
+
* // const { MedicalImagingClient, CopyImageSetCommand } = require("@aws-sdk/client-medical-imaging"); // CommonJS import
|
|
32
|
+
* const client = new MedicalImagingClient(config);
|
|
33
|
+
* const input = { // CopyImageSetRequest
|
|
34
|
+
* datastoreId: "STRING_VALUE", // required
|
|
35
|
+
* sourceImageSetId: "STRING_VALUE", // required
|
|
36
|
+
* copyImageSetInformation: { // CopyImageSetInformation
|
|
37
|
+
* sourceImageSet: { // CopySourceImageSetInformation
|
|
38
|
+
* latestVersionId: "STRING_VALUE", // required
|
|
39
|
+
* },
|
|
40
|
+
* destinationImageSet: { // CopyDestinationImageSet
|
|
41
|
+
* imageSetId: "STRING_VALUE", // required
|
|
42
|
+
* latestVersionId: "STRING_VALUE", // required
|
|
43
|
+
* },
|
|
44
|
+
* },
|
|
45
|
+
* };
|
|
46
|
+
* const command = new CopyImageSetCommand(input);
|
|
47
|
+
* const response = await client.send(command);
|
|
48
|
+
* // { // CopyImageSetResponse
|
|
49
|
+
* // datastoreId: "STRING_VALUE", // required
|
|
50
|
+
* // sourceImageSetProperties: { // CopySourceImageSetProperties
|
|
51
|
+
* // imageSetId: "STRING_VALUE", // required
|
|
52
|
+
* // latestVersionId: "STRING_VALUE", // required
|
|
53
|
+
* // imageSetState: "ACTIVE" || "LOCKED" || "DELETED",
|
|
54
|
+
* // imageSetWorkflowStatus: "CREATED" || "COPIED" || "COPYING" || "COPYING_WITH_READ_ONLY_ACCESS" || "COPY_FAILED" || "UPDATING" || "UPDATED" || "UPDATE_FAILED" || "DELETING" || "DELETED",
|
|
55
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
56
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
57
|
+
* // imageSetArn: "STRING_VALUE",
|
|
58
|
+
* // },
|
|
59
|
+
* // destinationImageSetProperties: { // CopyDestinationImageSetProperties
|
|
60
|
+
* // imageSetId: "STRING_VALUE", // required
|
|
61
|
+
* // latestVersionId: "STRING_VALUE", // required
|
|
62
|
+
* // imageSetState: "ACTIVE" || "LOCKED" || "DELETED",
|
|
63
|
+
* // imageSetWorkflowStatus: "CREATED" || "COPIED" || "COPYING" || "COPYING_WITH_READ_ONLY_ACCESS" || "COPY_FAILED" || "UPDATING" || "UPDATED" || "UPDATE_FAILED" || "DELETING" || "DELETED",
|
|
64
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
65
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
66
|
+
* // imageSetArn: "STRING_VALUE",
|
|
67
|
+
* // },
|
|
68
|
+
* // };
|
|
69
|
+
*
|
|
70
|
+
* ```
|
|
71
|
+
*
|
|
72
|
+
* @param CopyImageSetCommandInput - {@link CopyImageSetCommandInput}
|
|
73
|
+
* @returns {@link CopyImageSetCommandOutput}
|
|
74
|
+
* @see {@link CopyImageSetCommandInput} for command's `input` shape.
|
|
75
|
+
* @see {@link CopyImageSetCommandOutput} for command's `response` shape.
|
|
76
|
+
* @see {@link MedicalImagingClientResolvedConfig | config} for MedicalImagingClient's `config` shape.
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
79
|
+
* <p>The user does not have sufficient access to perform this action.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link ConflictException} (client fault)
|
|
82
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link InternalServerException} (server fault)
|
|
85
|
+
* <p>An unexpected error occurred during processing of the request.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
88
|
+
* <p>The request references a resource which does not exist.</p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
91
|
+
* <p>The request caused a service quota to be exceeded.</p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
94
|
+
* <p>The request was denied due to throttling.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link ValidationException} (client fault)
|
|
97
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link MedicalImagingServiceException}
|
|
100
|
+
* <p>Base exception class for all service exceptions from MedicalImaging service.</p>
|
|
101
|
+
*
|
|
102
|
+
*/
|
|
103
|
+
export declare class CopyImageSetCommand extends $Command<CopyImageSetCommandInput, CopyImageSetCommandOutput, MedicalImagingClientResolvedConfig> {
|
|
104
|
+
readonly input: CopyImageSetCommandInput;
|
|
105
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
106
|
+
/**
|
|
107
|
+
* @public
|
|
108
|
+
*/
|
|
109
|
+
constructor(input: CopyImageSetCommandInput);
|
|
110
|
+
/**
|
|
111
|
+
* @internal
|
|
112
|
+
*/
|
|
113
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MedicalImagingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CopyImageSetCommandInput, CopyImageSetCommandOutput>;
|
|
114
|
+
/**
|
|
115
|
+
* @internal
|
|
116
|
+
*/
|
|
117
|
+
private serialize;
|
|
118
|
+
/**
|
|
119
|
+
* @internal
|
|
120
|
+
*/
|
|
121
|
+
private deserialize;
|
|
122
|
+
}
|
|
@@ -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 { CreateDatastoreRequest, CreateDatastoreResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateDatastoreCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateDatastoreCommandInput extends CreateDatastoreRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateDatastoreCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateDatastoreCommandOutput extends CreateDatastoreResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Create a 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, CreateDatastoreCommand } from "@aws-sdk/client-medical-imaging"; // ES Modules import
|
|
31
|
+
* // const { MedicalImagingClient, CreateDatastoreCommand } = require("@aws-sdk/client-medical-imaging"); // CommonJS import
|
|
32
|
+
* const client = new MedicalImagingClient(config);
|
|
33
|
+
* const input = { // CreateDatastoreRequest
|
|
34
|
+
* datastoreName: "STRING_VALUE",
|
|
35
|
+
* clientToken: "STRING_VALUE", // required
|
|
36
|
+
* tags: { // TagMap
|
|
37
|
+
* "<keys>": "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* kmsKeyArn: "STRING_VALUE",
|
|
40
|
+
* };
|
|
41
|
+
* const command = new CreateDatastoreCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // { // CreateDatastoreResponse
|
|
44
|
+
* // datastoreId: "STRING_VALUE", // required
|
|
45
|
+
* // datastoreStatus: "CREATING" || "CREATE_FAILED" || "ACTIVE" || "DELETING" || "DELETED", // required
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
48
|
+
* ```
|
|
49
|
+
*
|
|
50
|
+
* @param CreateDatastoreCommandInput - {@link CreateDatastoreCommandInput}
|
|
51
|
+
* @returns {@link CreateDatastoreCommandOutput}
|
|
52
|
+
* @see {@link CreateDatastoreCommandInput} for command's `input` shape.
|
|
53
|
+
* @see {@link CreateDatastoreCommandOutput} for command's `response` shape.
|
|
54
|
+
* @see {@link MedicalImagingClientResolvedConfig | config} for MedicalImagingClient's `config` shape.
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
57
|
+
* <p>The user does not have sufficient access to perform this action.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ConflictException} (client fault)
|
|
60
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link InternalServerException} (server fault)
|
|
63
|
+
* <p>An unexpected error occurred during processing of the request.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
66
|
+
* <p>The request caused a service quota to be exceeded.</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 CreateDatastoreCommand extends $Command<CreateDatastoreCommandInput, CreateDatastoreCommandOutput, MedicalImagingClientResolvedConfig> {
|
|
79
|
+
readonly input: CreateDatastoreCommandInput;
|
|
80
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
constructor(input: CreateDatastoreCommandInput);
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
88
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MedicalImagingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDatastoreCommandInput, CreateDatastoreCommandOutput>;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
92
|
+
private serialize;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
96
|
+
private deserialize;
|
|
97
|
+
}
|
|
@@ -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 { DeleteDatastoreRequest, DeleteDatastoreResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteDatastoreCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteDatastoreCommandInput extends DeleteDatastoreRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteDatastoreCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteDatastoreCommandOutput extends DeleteDatastoreResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Delete a data store.</p>
|
|
27
|
+
* <note>
|
|
28
|
+
* <p>Before a data store can be deleted, you must first delete all image sets within it.</p>
|
|
29
|
+
* </note>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { MedicalImagingClient, DeleteDatastoreCommand } from "@aws-sdk/client-medical-imaging"; // ES Modules import
|
|
34
|
+
* // const { MedicalImagingClient, DeleteDatastoreCommand } = require("@aws-sdk/client-medical-imaging"); // CommonJS import
|
|
35
|
+
* const client = new MedicalImagingClient(config);
|
|
36
|
+
* const input = { // DeleteDatastoreRequest
|
|
37
|
+
* datastoreId: "STRING_VALUE", // required
|
|
38
|
+
* };
|
|
39
|
+
* const command = new DeleteDatastoreCommand(input);
|
|
40
|
+
* const response = await client.send(command);
|
|
41
|
+
* // { // DeleteDatastoreResponse
|
|
42
|
+
* // datastoreId: "STRING_VALUE", // required
|
|
43
|
+
* // datastoreStatus: "CREATING" || "CREATE_FAILED" || "ACTIVE" || "DELETING" || "DELETED", // required
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* @param DeleteDatastoreCommandInput - {@link DeleteDatastoreCommandInput}
|
|
49
|
+
* @returns {@link DeleteDatastoreCommandOutput}
|
|
50
|
+
* @see {@link DeleteDatastoreCommandInput} for command's `input` shape.
|
|
51
|
+
* @see {@link DeleteDatastoreCommandOutput} 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 DeleteDatastoreCommand extends $Command<DeleteDatastoreCommandInput, DeleteDatastoreCommandOutput, MedicalImagingClientResolvedConfig> {
|
|
77
|
+
readonly input: DeleteDatastoreCommandInput;
|
|
78
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
constructor(input: DeleteDatastoreCommandInput);
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
86
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MedicalImagingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDatastoreCommandInput, DeleteDatastoreCommandOutput>;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
90
|
+
private serialize;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
94
|
+
private deserialize;
|
|
95
|
+
}
|