@aws-sdk/client-healthlake 3.50.0 → 3.53.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/HealthLakeServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +86 -1
- package/dist-cjs/protocols/Aws_json1_0.js +130 -470
- package/dist-es/index.js +1 -0
- package/dist-es/models/HealthLakeServiceException.js +12 -0
- package/dist-es/models/models_0.js +80 -1
- package/dist-es/protocols/Aws_json1_0.js +287 -512
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/HealthLakeServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +44 -19
- package/dist-types/ts3.4/HealthLake.d.ts +70 -0
- package/dist-types/ts3.4/HealthLakeClient.d.ts +86 -0
- package/dist-types/ts3.4/commands/CreateFHIRDatastoreCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteFHIRDatastoreCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeFHIRDatastoreCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeFHIRExportJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeFHIRImportJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListFHIRDatastoresCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListFHIRExportJobsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListFHIRImportJobsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartFHIRExportJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartFHIRImportJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/HealthLakeServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +556 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListFHIRDatastoresPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListFHIRExportJobsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListFHIRImportJobsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +41 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** generate service exceptions as classes ([#3267](https://github.com/aws/aws-sdk-js-v3/issues/3267)) ([ca64fee](https://github.com/aws/aws-sdk-js-v3/commit/ca64feed3351c394c07dc26b782a5760a396a074))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/client-healthlake
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-healthlake
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-healthlake
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.HealthLakeServiceException = void 0;
|
|
3
4
|
const tslib_1 = require("tslib");
|
|
4
5
|
tslib_1.__exportStar(require("./HealthLake"), exports);
|
|
5
6
|
tslib_1.__exportStar(require("./HealthLakeClient"), exports);
|
|
6
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
7
8
|
tslib_1.__exportStar(require("./models"), exports);
|
|
8
9
|
tslib_1.__exportStar(require("./pagination"), exports);
|
|
10
|
+
var HealthLakeServiceException_1 = require("./models/HealthLakeServiceException");
|
|
11
|
+
Object.defineProperty(exports, "HealthLakeServiceException", { enumerable: true, get: function () { return HealthLakeServiceException_1.HealthLakeServiceException; } });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.HealthLakeServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
class HealthLakeServiceException extends smithy_client_1.ServiceException {
|
|
6
|
+
constructor(options) {
|
|
7
|
+
super(options);
|
|
8
|
+
Object.setPrototypeOf(this, HealthLakeServiceException.prototype);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.HealthLakeServiceException = HealthLakeServiceException;
|
|
@@ -1,11 +1,40 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UntagResourceResponse = exports.UntagResourceRequest = exports.TagResourceResponse = exports.TagResourceRequest = exports.StartFHIRImportJobResponse = exports.StartFHIRImportJobRequest = exports.StartFHIRExportJobResponse = exports.StartFHIRExportJobRequest = exports.ListTagsForResourceResponse = exports.ListTagsForResourceRequest = exports.ListFHIRImportJobsResponse = exports.ListFHIRImportJobsRequest = exports.ListFHIRExportJobsResponse = exports.ListFHIRExportJobsRequest = exports.ListFHIRDatastoresResponse = exports.ListFHIRDatastoresRequest = exports.DescribeFHIRImportJobResponse = exports.ImportJobProperties = exports.InputDataConfig = exports.DescribeFHIRImportJobRequest = exports.DescribeFHIRExportJobResponse = exports.ExportJobProperties = exports.OutputDataConfig = exports.S3Configuration = exports.JobStatus = exports.DescribeFHIRExportJobRequest = exports.DescribeFHIRDatastoreResponse = exports.DescribeFHIRDatastoreRequest = exports.DeleteFHIRDatastoreResponse = exports.DeleteFHIRDatastoreRequest = exports.DatastoreProperties = exports.DatastoreFilter = exports.CreateFHIRDatastoreResponse = exports.DatastoreStatus = exports.CreateFHIRDatastoreRequest = exports.Tag = exports.SseConfiguration = exports.KmsEncryptionConfig = exports.PreloadDataConfig = exports.PreloadDataType = exports.FHIRVersion = exports.CmkType = void 0;
|
|
3
|
+
exports.UntagResourceResponse = exports.UntagResourceRequest = exports.TagResourceResponse = exports.TagResourceRequest = exports.StartFHIRImportJobResponse = exports.StartFHIRImportJobRequest = exports.StartFHIRExportJobResponse = exports.StartFHIRExportJobRequest = exports.ListTagsForResourceResponse = exports.ListTagsForResourceRequest = exports.ListFHIRImportJobsResponse = exports.ListFHIRImportJobsRequest = exports.ListFHIRExportJobsResponse = exports.ListFHIRExportJobsRequest = exports.ListFHIRDatastoresResponse = exports.ListFHIRDatastoresRequest = exports.DescribeFHIRImportJobResponse = exports.ImportJobProperties = exports.InputDataConfig = exports.DescribeFHIRImportJobRequest = exports.DescribeFHIRExportJobResponse = exports.ExportJobProperties = exports.OutputDataConfig = exports.S3Configuration = exports.JobStatus = exports.DescribeFHIRExportJobRequest = exports.DescribeFHIRDatastoreResponse = exports.DescribeFHIRDatastoreRequest = exports.ResourceNotFoundException = exports.DeleteFHIRDatastoreResponse = exports.DeleteFHIRDatastoreRequest = exports.DatastoreProperties = exports.DatastoreFilter = exports.ValidationException = exports.ThrottlingException = exports.InternalServerException = exports.CreateFHIRDatastoreResponse = exports.DatastoreStatus = exports.CreateFHIRDatastoreRequest = exports.Tag = exports.SseConfiguration = exports.KmsEncryptionConfig = exports.PreloadDataConfig = exports.PreloadDataType = exports.FHIRVersion = exports.ConflictException = exports.CmkType = exports.AccessDeniedException = void 0;
|
|
4
|
+
const HealthLakeServiceException_1 = require("./HealthLakeServiceException");
|
|
5
|
+
class AccessDeniedException extends HealthLakeServiceException_1.HealthLakeServiceException {
|
|
6
|
+
constructor(opts) {
|
|
7
|
+
super({
|
|
8
|
+
name: "AccessDeniedException",
|
|
9
|
+
$fault: "client",
|
|
10
|
+
...opts,
|
|
11
|
+
});
|
|
12
|
+
this.name = "AccessDeniedException";
|
|
13
|
+
this.$fault = "client";
|
|
14
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
15
|
+
this.Message = opts.Message;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
4
19
|
var CmkType;
|
|
5
20
|
(function (CmkType) {
|
|
6
21
|
CmkType["AO_CMK"] = "AWS_OWNED_KMS_KEY";
|
|
7
22
|
CmkType["CM_CMK"] = "CUSTOMER_MANAGED_KMS_KEY";
|
|
8
23
|
})(CmkType = exports.CmkType || (exports.CmkType = {}));
|
|
24
|
+
class ConflictException extends HealthLakeServiceException_1.HealthLakeServiceException {
|
|
25
|
+
constructor(opts) {
|
|
26
|
+
super({
|
|
27
|
+
name: "ConflictException",
|
|
28
|
+
$fault: "client",
|
|
29
|
+
...opts,
|
|
30
|
+
});
|
|
31
|
+
this.name = "ConflictException";
|
|
32
|
+
this.$fault = "client";
|
|
33
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
34
|
+
this.Message = opts.Message;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
exports.ConflictException = ConflictException;
|
|
9
38
|
var FHIRVersion;
|
|
10
39
|
(function (FHIRVersion) {
|
|
11
40
|
FHIRVersion["R4"] = "R4";
|
|
@@ -57,6 +86,48 @@ var CreateFHIRDatastoreResponse;
|
|
|
57
86
|
...obj,
|
|
58
87
|
});
|
|
59
88
|
})(CreateFHIRDatastoreResponse = exports.CreateFHIRDatastoreResponse || (exports.CreateFHIRDatastoreResponse = {}));
|
|
89
|
+
class InternalServerException extends HealthLakeServiceException_1.HealthLakeServiceException {
|
|
90
|
+
constructor(opts) {
|
|
91
|
+
super({
|
|
92
|
+
name: "InternalServerException",
|
|
93
|
+
$fault: "server",
|
|
94
|
+
...opts,
|
|
95
|
+
});
|
|
96
|
+
this.name = "InternalServerException";
|
|
97
|
+
this.$fault = "server";
|
|
98
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
99
|
+
this.Message = opts.Message;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
exports.InternalServerException = InternalServerException;
|
|
103
|
+
class ThrottlingException extends HealthLakeServiceException_1.HealthLakeServiceException {
|
|
104
|
+
constructor(opts) {
|
|
105
|
+
super({
|
|
106
|
+
name: "ThrottlingException",
|
|
107
|
+
$fault: "client",
|
|
108
|
+
...opts,
|
|
109
|
+
});
|
|
110
|
+
this.name = "ThrottlingException";
|
|
111
|
+
this.$fault = "client";
|
|
112
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
113
|
+
this.Message = opts.Message;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
exports.ThrottlingException = ThrottlingException;
|
|
117
|
+
class ValidationException extends HealthLakeServiceException_1.HealthLakeServiceException {
|
|
118
|
+
constructor(opts) {
|
|
119
|
+
super({
|
|
120
|
+
name: "ValidationException",
|
|
121
|
+
$fault: "client",
|
|
122
|
+
...opts,
|
|
123
|
+
});
|
|
124
|
+
this.name = "ValidationException";
|
|
125
|
+
this.$fault = "client";
|
|
126
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
127
|
+
this.Message = opts.Message;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
exports.ValidationException = ValidationException;
|
|
60
131
|
var DatastoreFilter;
|
|
61
132
|
(function (DatastoreFilter) {
|
|
62
133
|
DatastoreFilter.filterSensitiveLog = (obj) => ({
|
|
@@ -81,6 +152,20 @@ var DeleteFHIRDatastoreResponse;
|
|
|
81
152
|
...obj,
|
|
82
153
|
});
|
|
83
154
|
})(DeleteFHIRDatastoreResponse = exports.DeleteFHIRDatastoreResponse || (exports.DeleteFHIRDatastoreResponse = {}));
|
|
155
|
+
class ResourceNotFoundException extends HealthLakeServiceException_1.HealthLakeServiceException {
|
|
156
|
+
constructor(opts) {
|
|
157
|
+
super({
|
|
158
|
+
name: "ResourceNotFoundException",
|
|
159
|
+
$fault: "client",
|
|
160
|
+
...opts,
|
|
161
|
+
});
|
|
162
|
+
this.name = "ResourceNotFoundException";
|
|
163
|
+
this.$fault = "client";
|
|
164
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
165
|
+
this.Message = opts.Message;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
84
169
|
var DescribeFHIRDatastoreRequest;
|
|
85
170
|
(function (DescribeFHIRDatastoreRequest) {
|
|
86
171
|
DescribeFHIRDatastoreRequest.filterSensitiveLog = (obj) => ({
|