@aws-sdk/client-healthlake 3.489.0 → 3.495.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/dist-cjs/HealthLake.js +1 -37
- package/dist-cjs/HealthLakeClient.js +1 -43
- package/dist-cjs/commands/CreateFHIRDatastoreCommand.js +1 -28
- package/dist-cjs/commands/DeleteFHIRDatastoreCommand.js +1 -28
- package/dist-cjs/commands/DescribeFHIRDatastoreCommand.js +1 -28
- package/dist-cjs/commands/DescribeFHIRExportJobCommand.js +1 -28
- package/dist-cjs/commands/DescribeFHIRImportJobCommand.js +1 -28
- package/dist-cjs/commands/ListFHIRDatastoresCommand.js +1 -28
- package/dist-cjs/commands/ListFHIRExportJobsCommand.js +1 -28
- package/dist-cjs/commands/ListFHIRImportJobsCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
- package/dist-cjs/commands/StartFHIRExportJobCommand.js +1 -28
- package/dist-cjs/commands/StartFHIRImportJobCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -16
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +1516 -11
- package/dist-cjs/models/HealthLakeServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -135
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListFHIRDatastoresPaginator.js +1 -7
- package/dist-cjs/pagination/ListFHIRExportJobsPaginator.js +1 -7
- package/dist-cjs/pagination/ListFHIRImportJobsPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -7
- package/dist-cjs/protocols/Aws_json1_0.js +1 -934
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.HealthLakeServiceException = exports.__ServiceException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
-
class HealthLakeServiceException extends smithy_client_1.ServiceException {
|
|
7
|
-
constructor(options) {
|
|
8
|
-
super(options);
|
|
9
|
-
Object.setPrototypeOf(this, HealthLakeServiceException.prototype);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.HealthLakeServiceException = HealthLakeServiceException;
|
|
1
|
+
module.exports = require("../index.js");
|
package/dist-cjs/models/index.js
CHANGED
|
@@ -1,135 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.InputDataConfig = exports.OutputDataConfig = exports.JobStatus = exports.ResourceNotFoundException = exports.ValidationException = exports.ThrottlingException = exports.InternalServerException = exports.DatastoreStatus = exports.PreloadDataType = exports.FHIRVersion = exports.ConflictException = exports.CmkType = exports.AuthorizationStrategy = 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;
|
|
19
|
-
exports.AuthorizationStrategy = {
|
|
20
|
-
AWS_AUTH: "AWS_AUTH",
|
|
21
|
-
SMARTV1: "SMART_ON_FHIR_V1",
|
|
22
|
-
};
|
|
23
|
-
exports.CmkType = {
|
|
24
|
-
AO_CMK: "AWS_OWNED_KMS_KEY",
|
|
25
|
-
CM_CMK: "CUSTOMER_MANAGED_KMS_KEY",
|
|
26
|
-
};
|
|
27
|
-
class ConflictException extends HealthLakeServiceException_1.HealthLakeServiceException {
|
|
28
|
-
constructor(opts) {
|
|
29
|
-
super({
|
|
30
|
-
name: "ConflictException",
|
|
31
|
-
$fault: "client",
|
|
32
|
-
...opts,
|
|
33
|
-
});
|
|
34
|
-
this.name = "ConflictException";
|
|
35
|
-
this.$fault = "client";
|
|
36
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
37
|
-
this.Message = opts.Message;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
exports.ConflictException = ConflictException;
|
|
41
|
-
exports.FHIRVersion = {
|
|
42
|
-
R4: "R4",
|
|
43
|
-
};
|
|
44
|
-
exports.PreloadDataType = {
|
|
45
|
-
SYNTHEA: "SYNTHEA",
|
|
46
|
-
};
|
|
47
|
-
exports.DatastoreStatus = {
|
|
48
|
-
ACTIVE: "ACTIVE",
|
|
49
|
-
CREATING: "CREATING",
|
|
50
|
-
DELETED: "DELETED",
|
|
51
|
-
DELETING: "DELETING",
|
|
52
|
-
};
|
|
53
|
-
class InternalServerException extends HealthLakeServiceException_1.HealthLakeServiceException {
|
|
54
|
-
constructor(opts) {
|
|
55
|
-
super({
|
|
56
|
-
name: "InternalServerException",
|
|
57
|
-
$fault: "server",
|
|
58
|
-
...opts,
|
|
59
|
-
});
|
|
60
|
-
this.name = "InternalServerException";
|
|
61
|
-
this.$fault = "server";
|
|
62
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
63
|
-
this.Message = opts.Message;
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
exports.InternalServerException = InternalServerException;
|
|
67
|
-
class ThrottlingException extends HealthLakeServiceException_1.HealthLakeServiceException {
|
|
68
|
-
constructor(opts) {
|
|
69
|
-
super({
|
|
70
|
-
name: "ThrottlingException",
|
|
71
|
-
$fault: "client",
|
|
72
|
-
...opts,
|
|
73
|
-
});
|
|
74
|
-
this.name = "ThrottlingException";
|
|
75
|
-
this.$fault = "client";
|
|
76
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
77
|
-
this.Message = opts.Message;
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
exports.ThrottlingException = ThrottlingException;
|
|
81
|
-
class ValidationException extends HealthLakeServiceException_1.HealthLakeServiceException {
|
|
82
|
-
constructor(opts) {
|
|
83
|
-
super({
|
|
84
|
-
name: "ValidationException",
|
|
85
|
-
$fault: "client",
|
|
86
|
-
...opts,
|
|
87
|
-
});
|
|
88
|
-
this.name = "ValidationException";
|
|
89
|
-
this.$fault = "client";
|
|
90
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
91
|
-
this.Message = opts.Message;
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
exports.ValidationException = ValidationException;
|
|
95
|
-
class ResourceNotFoundException extends HealthLakeServiceException_1.HealthLakeServiceException {
|
|
96
|
-
constructor(opts) {
|
|
97
|
-
super({
|
|
98
|
-
name: "ResourceNotFoundException",
|
|
99
|
-
$fault: "client",
|
|
100
|
-
...opts,
|
|
101
|
-
});
|
|
102
|
-
this.name = "ResourceNotFoundException";
|
|
103
|
-
this.$fault = "client";
|
|
104
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
105
|
-
this.Message = opts.Message;
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
109
|
-
exports.JobStatus = {
|
|
110
|
-
CANCEL_COMPLETED: "CANCEL_COMPLETED",
|
|
111
|
-
CANCEL_FAILED: "CANCEL_FAILED",
|
|
112
|
-
CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS",
|
|
113
|
-
CANCEL_SUBMITTED: "CANCEL_SUBMITTED",
|
|
114
|
-
COMPLETED: "COMPLETED",
|
|
115
|
-
COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS",
|
|
116
|
-
FAILED: "FAILED",
|
|
117
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
118
|
-
SUBMITTED: "SUBMITTED",
|
|
119
|
-
};
|
|
120
|
-
var OutputDataConfig;
|
|
121
|
-
(function (OutputDataConfig) {
|
|
122
|
-
OutputDataConfig.visit = (value, visitor) => {
|
|
123
|
-
if (value.S3Configuration !== undefined)
|
|
124
|
-
return visitor.S3Configuration(value.S3Configuration);
|
|
125
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
126
|
-
};
|
|
127
|
-
})(OutputDataConfig = exports.OutputDataConfig || (exports.OutputDataConfig = {}));
|
|
128
|
-
var InputDataConfig;
|
|
129
|
-
(function (InputDataConfig) {
|
|
130
|
-
InputDataConfig.visit = (value, visitor) => {
|
|
131
|
-
if (value.S3Uri !== undefined)
|
|
132
|
-
return visitor.S3Uri(value.S3Uri);
|
|
133
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
134
|
-
};
|
|
135
|
-
})(InputDataConfig = exports.InputDataConfig || (exports.InputDataConfig = {}));
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListFHIRDatastores = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListFHIRDatastoresCommand_1 = require("../commands/ListFHIRDatastoresCommand");
|
|
6
|
-
const HealthLakeClient_1 = require("../HealthLakeClient");
|
|
7
|
-
exports.paginateListFHIRDatastores = (0, core_1.createPaginator)(HealthLakeClient_1.HealthLakeClient, ListFHIRDatastoresCommand_1.ListFHIRDatastoresCommand, "NextToken", "NextToken", "MaxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListFHIRExportJobs = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListFHIRExportJobsCommand_1 = require("../commands/ListFHIRExportJobsCommand");
|
|
6
|
-
const HealthLakeClient_1 = require("../HealthLakeClient");
|
|
7
|
-
exports.paginateListFHIRExportJobs = (0, core_1.createPaginator)(HealthLakeClient_1.HealthLakeClient, ListFHIRExportJobsCommand_1.ListFHIRExportJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListFHIRImportJobs = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListFHIRImportJobsCommand_1 = require("../commands/ListFHIRImportJobsCommand");
|
|
6
|
-
const HealthLakeClient_1 = require("../HealthLakeClient");
|
|
7
|
-
exports.paginateListFHIRImportJobs = (0, core_1.createPaginator)(HealthLakeClient_1.HealthLakeClient, ListFHIRImportJobsCommand_1.ListFHIRImportJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./ListFHIRDatastoresPaginator"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./ListFHIRExportJobsPaginator"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./ListFHIRImportJobsPaginator"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|