@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,224 @@
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@smithy/protocol-http";
5
+ import {
6
+ SdkStreamSerdeContext as __SdkStreamSerdeContext,
7
+ SerdeContext as __SerdeContext,
8
+ } from "@smithy/types";
9
+ import {
10
+ CopyImageSetCommandInput,
11
+ CopyImageSetCommandOutput,
12
+ } from "../commands/CopyImageSetCommand";
13
+ import {
14
+ CreateDatastoreCommandInput,
15
+ CreateDatastoreCommandOutput,
16
+ } from "../commands/CreateDatastoreCommand";
17
+ import {
18
+ DeleteDatastoreCommandInput,
19
+ DeleteDatastoreCommandOutput,
20
+ } from "../commands/DeleteDatastoreCommand";
21
+ import {
22
+ DeleteImageSetCommandInput,
23
+ DeleteImageSetCommandOutput,
24
+ } from "../commands/DeleteImageSetCommand";
25
+ import {
26
+ GetDatastoreCommandInput,
27
+ GetDatastoreCommandOutput,
28
+ } from "../commands/GetDatastoreCommand";
29
+ import {
30
+ GetDICOMImportJobCommandInput,
31
+ GetDICOMImportJobCommandOutput,
32
+ } from "../commands/GetDICOMImportJobCommand";
33
+ import {
34
+ GetImageFrameCommandInput,
35
+ GetImageFrameCommandOutput,
36
+ } from "../commands/GetImageFrameCommand";
37
+ import {
38
+ GetImageSetCommandInput,
39
+ GetImageSetCommandOutput,
40
+ } from "../commands/GetImageSetCommand";
41
+ import {
42
+ GetImageSetMetadataCommandInput,
43
+ GetImageSetMetadataCommandOutput,
44
+ } from "../commands/GetImageSetMetadataCommand";
45
+ import {
46
+ ListDatastoresCommandInput,
47
+ ListDatastoresCommandOutput,
48
+ } from "../commands/ListDatastoresCommand";
49
+ import {
50
+ ListDICOMImportJobsCommandInput,
51
+ ListDICOMImportJobsCommandOutput,
52
+ } from "../commands/ListDICOMImportJobsCommand";
53
+ import {
54
+ ListImageSetVersionsCommandInput,
55
+ ListImageSetVersionsCommandOutput,
56
+ } from "../commands/ListImageSetVersionsCommand";
57
+ import {
58
+ ListTagsForResourceCommandInput,
59
+ ListTagsForResourceCommandOutput,
60
+ } from "../commands/ListTagsForResourceCommand";
61
+ import {
62
+ SearchImageSetsCommandInput,
63
+ SearchImageSetsCommandOutput,
64
+ } from "../commands/SearchImageSetsCommand";
65
+ import {
66
+ StartDICOMImportJobCommandInput,
67
+ StartDICOMImportJobCommandOutput,
68
+ } from "../commands/StartDICOMImportJobCommand";
69
+ import {
70
+ TagResourceCommandInput,
71
+ TagResourceCommandOutput,
72
+ } from "../commands/TagResourceCommand";
73
+ import {
74
+ UntagResourceCommandInput,
75
+ UntagResourceCommandOutput,
76
+ } from "../commands/UntagResourceCommand";
77
+ import {
78
+ UpdateImageSetMetadataCommandInput,
79
+ UpdateImageSetMetadataCommandOutput,
80
+ } from "../commands/UpdateImageSetMetadataCommand";
81
+ export declare const se_CopyImageSetCommand: (
82
+ input: CopyImageSetCommandInput,
83
+ context: __SerdeContext
84
+ ) => Promise<__HttpRequest>;
85
+ export declare const se_CreateDatastoreCommand: (
86
+ input: CreateDatastoreCommandInput,
87
+ context: __SerdeContext
88
+ ) => Promise<__HttpRequest>;
89
+ export declare const se_DeleteDatastoreCommand: (
90
+ input: DeleteDatastoreCommandInput,
91
+ context: __SerdeContext
92
+ ) => Promise<__HttpRequest>;
93
+ export declare const se_DeleteImageSetCommand: (
94
+ input: DeleteImageSetCommandInput,
95
+ context: __SerdeContext
96
+ ) => Promise<__HttpRequest>;
97
+ export declare const se_GetDatastoreCommand: (
98
+ input: GetDatastoreCommandInput,
99
+ context: __SerdeContext
100
+ ) => Promise<__HttpRequest>;
101
+ export declare const se_GetDICOMImportJobCommand: (
102
+ input: GetDICOMImportJobCommandInput,
103
+ context: __SerdeContext
104
+ ) => Promise<__HttpRequest>;
105
+ export declare const se_GetImageFrameCommand: (
106
+ input: GetImageFrameCommandInput,
107
+ context: __SerdeContext
108
+ ) => Promise<__HttpRequest>;
109
+ export declare const se_GetImageSetCommand: (
110
+ input: GetImageSetCommandInput,
111
+ context: __SerdeContext
112
+ ) => Promise<__HttpRequest>;
113
+ export declare const se_GetImageSetMetadataCommand: (
114
+ input: GetImageSetMetadataCommandInput,
115
+ context: __SerdeContext
116
+ ) => Promise<__HttpRequest>;
117
+ export declare const se_ListDatastoresCommand: (
118
+ input: ListDatastoresCommandInput,
119
+ context: __SerdeContext
120
+ ) => Promise<__HttpRequest>;
121
+ export declare const se_ListDICOMImportJobsCommand: (
122
+ input: ListDICOMImportJobsCommandInput,
123
+ context: __SerdeContext
124
+ ) => Promise<__HttpRequest>;
125
+ export declare const se_ListImageSetVersionsCommand: (
126
+ input: ListImageSetVersionsCommandInput,
127
+ context: __SerdeContext
128
+ ) => Promise<__HttpRequest>;
129
+ export declare const se_ListTagsForResourceCommand: (
130
+ input: ListTagsForResourceCommandInput,
131
+ context: __SerdeContext
132
+ ) => Promise<__HttpRequest>;
133
+ export declare const se_SearchImageSetsCommand: (
134
+ input: SearchImageSetsCommandInput,
135
+ context: __SerdeContext
136
+ ) => Promise<__HttpRequest>;
137
+ export declare const se_StartDICOMImportJobCommand: (
138
+ input: StartDICOMImportJobCommandInput,
139
+ context: __SerdeContext
140
+ ) => Promise<__HttpRequest>;
141
+ export declare const se_TagResourceCommand: (
142
+ input: TagResourceCommandInput,
143
+ context: __SerdeContext
144
+ ) => Promise<__HttpRequest>;
145
+ export declare const se_UntagResourceCommand: (
146
+ input: UntagResourceCommandInput,
147
+ context: __SerdeContext
148
+ ) => Promise<__HttpRequest>;
149
+ export declare const se_UpdateImageSetMetadataCommand: (
150
+ input: UpdateImageSetMetadataCommandInput,
151
+ context: __SerdeContext
152
+ ) => Promise<__HttpRequest>;
153
+ export declare const de_CopyImageSetCommand: (
154
+ output: __HttpResponse,
155
+ context: __SerdeContext
156
+ ) => Promise<CopyImageSetCommandOutput>;
157
+ export declare const de_CreateDatastoreCommand: (
158
+ output: __HttpResponse,
159
+ context: __SerdeContext
160
+ ) => Promise<CreateDatastoreCommandOutput>;
161
+ export declare const de_DeleteDatastoreCommand: (
162
+ output: __HttpResponse,
163
+ context: __SerdeContext
164
+ ) => Promise<DeleteDatastoreCommandOutput>;
165
+ export declare const de_DeleteImageSetCommand: (
166
+ output: __HttpResponse,
167
+ context: __SerdeContext
168
+ ) => Promise<DeleteImageSetCommandOutput>;
169
+ export declare const de_GetDatastoreCommand: (
170
+ output: __HttpResponse,
171
+ context: __SerdeContext
172
+ ) => Promise<GetDatastoreCommandOutput>;
173
+ export declare const de_GetDICOMImportJobCommand: (
174
+ output: __HttpResponse,
175
+ context: __SerdeContext
176
+ ) => Promise<GetDICOMImportJobCommandOutput>;
177
+ export declare const de_GetImageFrameCommand: (
178
+ output: __HttpResponse,
179
+ context: __SerdeContext & __SdkStreamSerdeContext
180
+ ) => Promise<GetImageFrameCommandOutput>;
181
+ export declare const de_GetImageSetCommand: (
182
+ output: __HttpResponse,
183
+ context: __SerdeContext
184
+ ) => Promise<GetImageSetCommandOutput>;
185
+ export declare const de_GetImageSetMetadataCommand: (
186
+ output: __HttpResponse,
187
+ context: __SerdeContext & __SdkStreamSerdeContext
188
+ ) => Promise<GetImageSetMetadataCommandOutput>;
189
+ export declare const de_ListDatastoresCommand: (
190
+ output: __HttpResponse,
191
+ context: __SerdeContext
192
+ ) => Promise<ListDatastoresCommandOutput>;
193
+ export declare const de_ListDICOMImportJobsCommand: (
194
+ output: __HttpResponse,
195
+ context: __SerdeContext
196
+ ) => Promise<ListDICOMImportJobsCommandOutput>;
197
+ export declare const de_ListImageSetVersionsCommand: (
198
+ output: __HttpResponse,
199
+ context: __SerdeContext
200
+ ) => Promise<ListImageSetVersionsCommandOutput>;
201
+ export declare const de_ListTagsForResourceCommand: (
202
+ output: __HttpResponse,
203
+ context: __SerdeContext
204
+ ) => Promise<ListTagsForResourceCommandOutput>;
205
+ export declare const de_SearchImageSetsCommand: (
206
+ output: __HttpResponse,
207
+ context: __SerdeContext
208
+ ) => Promise<SearchImageSetsCommandOutput>;
209
+ export declare const de_StartDICOMImportJobCommand: (
210
+ output: __HttpResponse,
211
+ context: __SerdeContext
212
+ ) => Promise<StartDICOMImportJobCommandOutput>;
213
+ export declare const de_TagResourceCommand: (
214
+ output: __HttpResponse,
215
+ context: __SerdeContext
216
+ ) => Promise<TagResourceCommandOutput>;
217
+ export declare const de_UntagResourceCommand: (
218
+ output: __HttpResponse,
219
+ context: __SerdeContext
220
+ ) => Promise<UntagResourceCommandOutput>;
221
+ export declare const de_UpdateImageSetMetadataCommand: (
222
+ output: __HttpResponse,
223
+ context: __SerdeContext
224
+ ) => Promise<UpdateImageSetMetadataCommandOutput>;
@@ -0,0 +1,90 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { MedicalImagingClientConfig } from "./MedicalImagingClient";
3
+ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
+ credentialDefaultProvider: (
10
+ input: any
11
+ ) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
12
+ defaultUserAgentProvider: import("@smithy/types").Provider<
13
+ import("@smithy/types").UserAgent
14
+ >;
15
+ maxAttempts: number | import("@smithy/types").Provider<number>;
16
+ region: string | import("@smithy/types").Provider<any>;
17
+ requestHandler:
18
+ | (import("@smithy/types").RequestHandler<
19
+ any,
20
+ any,
21
+ import("@smithy/types").HttpHandlerOptions
22
+ > &
23
+ import("@smithy/protocol-http").HttpHandler)
24
+ | RequestHandler;
25
+ retryMode: string | import("@smithy/types").Provider<string>;
26
+ sha256: import("@smithy/types").HashConstructor;
27
+ streamCollector: import("@smithy/types").StreamCollector;
28
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
29
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
30
+ apiVersion: string;
31
+ urlParser: import("@smithy/types").UrlParser;
32
+ base64Decoder: import("@smithy/types").Decoder;
33
+ base64Encoder: import("@smithy/types").Encoder;
34
+ utf8Decoder: import("@smithy/types").Decoder;
35
+ utf8Encoder: import("@smithy/types").Encoder;
36
+ disableHostPrefix: boolean;
37
+ serviceId: string;
38
+ logger: import("@smithy/types").Logger;
39
+ sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
40
+ endpoint?:
41
+ | ((
42
+ | string
43
+ | import("@smithy/types").Endpoint
44
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
45
+ | import("@smithy/types").EndpointV2
46
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
47
+ ) &
48
+ (
49
+ | string
50
+ | import("@smithy/types").Provider<string>
51
+ | import("@smithy/types").Endpoint
52
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
53
+ | import("@smithy/types").EndpointV2
54
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
55
+ ))
56
+ | undefined;
57
+ endpointProvider: (
58
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
59
+ context?: {
60
+ logger?: import("@smithy/types").Logger | undefined;
61
+ }
62
+ ) => import("@smithy/types").EndpointV2;
63
+ tls?: boolean | undefined;
64
+ retryStrategy?:
65
+ | import("@smithy/types").RetryStrategy
66
+ | import("@smithy/types").RetryStrategyV2
67
+ | undefined;
68
+ credentials?:
69
+ | import("@smithy/types").AwsCredentialIdentity
70
+ | import("@smithy/types").Provider<
71
+ import("@smithy/types").AwsCredentialIdentity
72
+ >
73
+ | undefined;
74
+ signer?:
75
+ | import("@smithy/types").RequestSigner
76
+ | ((
77
+ authScheme?: import("@smithy/types").AuthScheme | undefined
78
+ ) => Promise<import("@smithy/types").RequestSigner>)
79
+ | undefined;
80
+ signingEscapePath?: boolean | undefined;
81
+ systemClockOffset?: number | undefined;
82
+ signingRegion?: string | undefined;
83
+ signerConstructor?:
84
+ | (new (
85
+ options: import("@smithy/signature-v4").SignatureV4Init &
86
+ import("@smithy/signature-v4").SignatureV4CryptoInit
87
+ ) => import("@smithy/types").RequestSigner)
88
+ | undefined;
89
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
90
+ };
@@ -0,0 +1,90 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { MedicalImagingClientConfig } from "./MedicalImagingClient";
3
+ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
+ credentialDefaultProvider: (
10
+ input: any
11
+ ) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
12
+ defaultUserAgentProvider: import("@smithy/types").Provider<
13
+ import("@smithy/types").UserAgent
14
+ >;
15
+ maxAttempts: number | import("@smithy/types").Provider<number>;
16
+ region: string | import("@smithy/types").Provider<string>;
17
+ requestHandler:
18
+ | (import("@smithy/types").RequestHandler<
19
+ any,
20
+ any,
21
+ import("@smithy/types").HttpHandlerOptions
22
+ > &
23
+ import("@smithy/protocol-http").HttpHandler)
24
+ | RequestHandler;
25
+ retryMode: string | import("@smithy/types").Provider<string>;
26
+ sha256: import("@smithy/types").HashConstructor;
27
+ streamCollector: import("@smithy/types").StreamCollector;
28
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
29
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
30
+ apiVersion: string;
31
+ urlParser: import("@smithy/types").UrlParser;
32
+ base64Decoder: import("@smithy/types").Decoder;
33
+ base64Encoder: import("@smithy/types").Encoder;
34
+ utf8Decoder: import("@smithy/types").Decoder;
35
+ utf8Encoder: import("@smithy/types").Encoder;
36
+ disableHostPrefix: boolean;
37
+ serviceId: string;
38
+ logger: import("@smithy/types").Logger;
39
+ sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
40
+ endpoint?:
41
+ | ((
42
+ | string
43
+ | import("@smithy/types").Endpoint
44
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
45
+ | import("@smithy/types").EndpointV2
46
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
47
+ ) &
48
+ (
49
+ | string
50
+ | import("@smithy/types").Provider<string>
51
+ | import("@smithy/types").Endpoint
52
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
53
+ | import("@smithy/types").EndpointV2
54
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
55
+ ))
56
+ | undefined;
57
+ endpointProvider: (
58
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
59
+ context?: {
60
+ logger?: import("@smithy/types").Logger | undefined;
61
+ }
62
+ ) => import("@smithy/types").EndpointV2;
63
+ tls?: boolean | undefined;
64
+ retryStrategy?:
65
+ | import("@smithy/types").RetryStrategy
66
+ | import("@smithy/types").RetryStrategyV2
67
+ | undefined;
68
+ credentials?:
69
+ | import("@smithy/types").AwsCredentialIdentity
70
+ | import("@smithy/types").Provider<
71
+ import("@smithy/types").AwsCredentialIdentity
72
+ >
73
+ | undefined;
74
+ signer?:
75
+ | import("@smithy/types").RequestSigner
76
+ | ((
77
+ authScheme?: import("@smithy/types").AuthScheme | undefined
78
+ ) => Promise<import("@smithy/types").RequestSigner>)
79
+ | undefined;
80
+ signingEscapePath?: boolean | undefined;
81
+ systemClockOffset?: number | undefined;
82
+ signingRegion?: string | undefined;
83
+ signerConstructor?:
84
+ | (new (
85
+ options: import("@smithy/signature-v4").SignatureV4Init &
86
+ import("@smithy/signature-v4").SignatureV4CryptoInit
87
+ ) => import("@smithy/types").RequestSigner)
88
+ | undefined;
89
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
90
+ };
@@ -0,0 +1,81 @@
1
+ import { MedicalImagingClientConfig } from "./MedicalImagingClient";
2
+ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
3
+ runtime: string;
4
+ sha256: import("@smithy/types").HashConstructor;
5
+ requestHandler:
6
+ | (import("@smithy/types").RequestHandler<
7
+ any,
8
+ any,
9
+ import("@smithy/types").HttpHandlerOptions
10
+ > &
11
+ import("@smithy/protocol-http").HttpHandler)
12
+ | import("@smithy/fetch-http-handler").FetchHttpHandler;
13
+ apiVersion: string;
14
+ urlParser: import("@smithy/types").UrlParser;
15
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
16
+ streamCollector: import("@smithy/types").StreamCollector;
17
+ base64Decoder: import("@smithy/types").Decoder;
18
+ base64Encoder: import("@smithy/types").Encoder;
19
+ utf8Decoder: import("@smithy/types").Decoder;
20
+ utf8Encoder: import("@smithy/types").Encoder;
21
+ disableHostPrefix: boolean;
22
+ serviceId: string;
23
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
25
+ region: string | import("@smithy/types").Provider<any>;
26
+ credentialDefaultProvider: (
27
+ input: any
28
+ ) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
29
+ defaultUserAgentProvider: import("@smithy/types").Provider<
30
+ import("@smithy/types").UserAgent
31
+ >;
32
+ maxAttempts: number | import("@smithy/types").Provider<number>;
33
+ retryMode: string | import("@smithy/types").Provider<string>;
34
+ logger: import("@smithy/types").Logger;
35
+ defaultsMode:
36
+ | import("@smithy/smithy-client").DefaultsMode
37
+ | import("@smithy/types").Provider<
38
+ import("@smithy/smithy-client").DefaultsMode
39
+ >;
40
+ sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
41
+ endpoint?:
42
+ | string
43
+ | import("@smithy/types").Endpoint
44
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
45
+ | import("@smithy/types").EndpointV2
46
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
47
+ | undefined;
48
+ endpointProvider: (
49
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
50
+ context?: {
51
+ logger?: import("@smithy/types").Logger | undefined;
52
+ }
53
+ ) => import("@smithy/types").EndpointV2;
54
+ tls?: boolean | undefined;
55
+ retryStrategy?:
56
+ | import("@smithy/types").RetryStrategy
57
+ | import("@smithy/types").RetryStrategyV2
58
+ | undefined;
59
+ credentials?:
60
+ | import("@smithy/types").AwsCredentialIdentity
61
+ | import("@smithy/types").Provider<
62
+ import("@smithy/types").AwsCredentialIdentity
63
+ >
64
+ | undefined;
65
+ signer?:
66
+ | import("@smithy/types").RequestSigner
67
+ | ((
68
+ authScheme?: import("@smithy/types").AuthScheme | undefined
69
+ ) => Promise<import("@smithy/types").RequestSigner>)
70
+ | undefined;
71
+ signingEscapePath?: boolean | undefined;
72
+ systemClockOffset?: number | undefined;
73
+ signingRegion?: string | undefined;
74
+ signerConstructor?:
75
+ | (new (
76
+ options: import("@smithy/signature-v4").SignatureV4Init &
77
+ import("@smithy/signature-v4").SignatureV4CryptoInit
78
+ ) => import("@smithy/types").RequestSigner)
79
+ | undefined;
80
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
81
+ };
@@ -0,0 +1,19 @@
1
+ import { MedicalImagingClientConfig } from "./MedicalImagingClient";
2
+ export declare const getRuntimeConfig: (config: MedicalImagingClientConfig) => {
3
+ apiVersion: string;
4
+ base64Decoder: import("@smithy/types").Decoder;
5
+ base64Encoder: import("@smithy/types").Encoder;
6
+ disableHostPrefix: boolean;
7
+ endpointProvider: (
8
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
9
+ context?: {
10
+ logger?: import("@smithy/types").Logger | undefined;
11
+ }
12
+ ) => import("@smithy/types").EndpointV2;
13
+ logger: import("@smithy/types").Logger;
14
+ sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
15
+ serviceId: string;
16
+ urlParser: import("@smithy/types").UrlParser;
17
+ utf8Decoder: import("@smithy/types").Decoder;
18
+ utf8Encoder: import("@smithy/types").Encoder;
19
+ };
package/package.json ADDED
@@ -0,0 +1,102 @@
1
+ {
2
+ "name": "@aws-sdk/client-medical-imaging",
3
+ "description": "AWS SDK for JavaScript Medical Imaging Client for Node.js, Browser and React Native",
4
+ "version": "3.373.0",
5
+ "scripts": {
6
+ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
+ "build:cjs": "tsc -p tsconfig.cjs.json",
8
+ "build:docs": "typedoc",
9
+ "build:es": "tsc -p tsconfig.es.json",
10
+ "build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
11
+ "build:types": "tsc -p tsconfig.types.json",
12
+ "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
13
+ "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
14
+ "extract:docs": "api-extractor run --local",
15
+ "generate:client": "node ../../scripts/generate-clients/single-service --solo medical-imaging"
16
+ },
17
+ "main": "./dist-cjs/index.js",
18
+ "types": "./dist-types/index.d.ts",
19
+ "module": "./dist-es/index.js",
20
+ "sideEffects": false,
21
+ "dependencies": {
22
+ "@aws-crypto/sha256-browser": "3.0.0",
23
+ "@aws-crypto/sha256-js": "3.0.0",
24
+ "@aws-sdk/client-sts": "3.370.0",
25
+ "@aws-sdk/credential-provider-node": "3.370.0",
26
+ "@aws-sdk/middleware-host-header": "3.370.0",
27
+ "@aws-sdk/middleware-logger": "3.370.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.370.0",
29
+ "@aws-sdk/middleware-signing": "3.370.0",
30
+ "@aws-sdk/middleware-user-agent": "3.370.0",
31
+ "@aws-sdk/types": "3.370.0",
32
+ "@aws-sdk/util-endpoints": "3.370.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.370.0",
34
+ "@aws-sdk/util-user-agent-node": "3.370.0",
35
+ "@smithy/config-resolver": "^1.0.1",
36
+ "@smithy/fetch-http-handler": "^1.0.1",
37
+ "@smithy/hash-node": "^1.0.1",
38
+ "@smithy/invalid-dependency": "^1.0.1",
39
+ "@smithy/middleware-content-length": "^1.0.1",
40
+ "@smithy/middleware-endpoint": "^1.0.2",
41
+ "@smithy/middleware-retry": "^1.0.3",
42
+ "@smithy/middleware-serde": "^1.0.1",
43
+ "@smithy/middleware-stack": "^1.0.1",
44
+ "@smithy/node-config-provider": "^1.0.1",
45
+ "@smithy/node-http-handler": "^1.0.2",
46
+ "@smithy/protocol-http": "^1.1.0",
47
+ "@smithy/smithy-client": "^1.0.3",
48
+ "@smithy/types": "^1.1.0",
49
+ "@smithy/url-parser": "^1.0.1",
50
+ "@smithy/util-base64": "^1.0.1",
51
+ "@smithy/util-body-length-browser": "^1.0.1",
52
+ "@smithy/util-body-length-node": "^1.0.1",
53
+ "@smithy/util-defaults-mode-browser": "^1.0.1",
54
+ "@smithy/util-defaults-mode-node": "^1.0.1",
55
+ "@smithy/util-retry": "^1.0.3",
56
+ "@smithy/util-stream": "^1.0.1",
57
+ "@smithy/util-utf8": "^1.0.1",
58
+ "tslib": "^2.5.0",
59
+ "uuid": "^8.3.2"
60
+ },
61
+ "devDependencies": {
62
+ "@smithy/service-client-documentation-generator": "^1.0.1",
63
+ "@tsconfig/node14": "1.0.3",
64
+ "@types/node": "^14.14.31",
65
+ "@types/uuid": "^8.3.0",
66
+ "concurrently": "7.0.0",
67
+ "downlevel-dts": "0.10.1",
68
+ "rimraf": "3.0.2",
69
+ "typedoc": "0.23.23",
70
+ "typescript": "~4.9.5"
71
+ },
72
+ "engines": {
73
+ "node": ">=14.0.0"
74
+ },
75
+ "typesVersions": {
76
+ "<4.0": {
77
+ "dist-types/*": [
78
+ "dist-types/ts3.4/*"
79
+ ]
80
+ }
81
+ },
82
+ "files": [
83
+ "dist-*/**"
84
+ ],
85
+ "author": {
86
+ "name": "AWS SDK for JavaScript Team",
87
+ "url": "https://aws.amazon.com/javascript/"
88
+ },
89
+ "license": "Apache-2.0",
90
+ "browser": {
91
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
92
+ },
93
+ "react-native": {
94
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
95
+ },
96
+ "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-medical-imaging",
97
+ "repository": {
98
+ "type": "git",
99
+ "url": "https://github.com/aws/aws-sdk-js-v3.git",
100
+ "directory": "clients/client-medical-imaging"
101
+ }
102
+ }