@aws-sdk/client-finspace-data 3.52.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 +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/FinspaceDataServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +94 -1
- package/dist-cjs/protocols/Aws_restJson1.js +194 -675
- package/dist-es/index.js +1 -0
- package/dist-es/models/FinspaceDataServiceException.js +12 -0
- package/dist-es/models/models_0.js +86 -1
- package/dist-es/protocols/Aws_restJson1.js +373 -739
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/FinspaceDataServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +51 -28
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/FinspaceDataServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -28
- package/package.json +25 -25
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var FinspaceDataServiceException = (function (_super) {
|
|
4
|
+
__extends(FinspaceDataServiceException, _super);
|
|
5
|
+
function FinspaceDataServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, FinspaceDataServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return FinspaceDataServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { FinspaceDataServiceException };
|
|
@@ -1,4 +1,29 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { FinspaceDataServiceException as __BaseException } from "./FinspaceDataServiceException";
|
|
3
|
+
var AccessDeniedException = (function (_super) {
|
|
4
|
+
__extends(AccessDeniedException, _super);
|
|
5
|
+
function AccessDeniedException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "AccessDeniedException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
10
|
+
return _this;
|
|
11
|
+
}
|
|
12
|
+
return AccessDeniedException;
|
|
13
|
+
}(__BaseException));
|
|
14
|
+
export { AccessDeniedException };
|
|
15
|
+
var ConflictException = (function (_super) {
|
|
16
|
+
__extends(ConflictException, _super);
|
|
17
|
+
function ConflictException(opts) {
|
|
18
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
19
|
+
_this.name = "ConflictException";
|
|
20
|
+
_this.$fault = "client";
|
|
21
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
22
|
+
return _this;
|
|
23
|
+
}
|
|
24
|
+
return ConflictException;
|
|
25
|
+
}(__BaseException));
|
|
26
|
+
export { ConflictException };
|
|
2
27
|
export var ChangeType;
|
|
3
28
|
(function (ChangeType) {
|
|
4
29
|
ChangeType["APPEND"] = "APPEND";
|
|
@@ -13,6 +38,66 @@ export var CreateChangesetResponse;
|
|
|
13
38
|
(function (CreateChangesetResponse) {
|
|
14
39
|
CreateChangesetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
15
40
|
})(CreateChangesetResponse || (CreateChangesetResponse = {}));
|
|
41
|
+
var InternalServerException = (function (_super) {
|
|
42
|
+
__extends(InternalServerException, _super);
|
|
43
|
+
function InternalServerException(opts) {
|
|
44
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
45
|
+
_this.name = "InternalServerException";
|
|
46
|
+
_this.$fault = "server";
|
|
47
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
48
|
+
return _this;
|
|
49
|
+
}
|
|
50
|
+
return InternalServerException;
|
|
51
|
+
}(__BaseException));
|
|
52
|
+
export { InternalServerException };
|
|
53
|
+
var LimitExceededException = (function (_super) {
|
|
54
|
+
__extends(LimitExceededException, _super);
|
|
55
|
+
function LimitExceededException(opts) {
|
|
56
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
57
|
+
_this.name = "LimitExceededException";
|
|
58
|
+
_this.$fault = "client";
|
|
59
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
60
|
+
return _this;
|
|
61
|
+
}
|
|
62
|
+
return LimitExceededException;
|
|
63
|
+
}(__BaseException));
|
|
64
|
+
export { LimitExceededException };
|
|
65
|
+
var ResourceNotFoundException = (function (_super) {
|
|
66
|
+
__extends(ResourceNotFoundException, _super);
|
|
67
|
+
function ResourceNotFoundException(opts) {
|
|
68
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
69
|
+
_this.name = "ResourceNotFoundException";
|
|
70
|
+
_this.$fault = "client";
|
|
71
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
72
|
+
return _this;
|
|
73
|
+
}
|
|
74
|
+
return ResourceNotFoundException;
|
|
75
|
+
}(__BaseException));
|
|
76
|
+
export { ResourceNotFoundException };
|
|
77
|
+
var ThrottlingException = (function (_super) {
|
|
78
|
+
__extends(ThrottlingException, _super);
|
|
79
|
+
function ThrottlingException(opts) {
|
|
80
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
81
|
+
_this.name = "ThrottlingException";
|
|
82
|
+
_this.$fault = "client";
|
|
83
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
84
|
+
return _this;
|
|
85
|
+
}
|
|
86
|
+
return ThrottlingException;
|
|
87
|
+
}(__BaseException));
|
|
88
|
+
export { ThrottlingException };
|
|
89
|
+
var ValidationException = (function (_super) {
|
|
90
|
+
__extends(ValidationException, _super);
|
|
91
|
+
function ValidationException(opts) {
|
|
92
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
93
|
+
_this.name = "ValidationException";
|
|
94
|
+
_this.$fault = "client";
|
|
95
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
96
|
+
return _this;
|
|
97
|
+
}
|
|
98
|
+
return ValidationException;
|
|
99
|
+
}(__BaseException));
|
|
100
|
+
export { ValidationException };
|
|
16
101
|
export var DatasetKind;
|
|
17
102
|
(function (DatasetKind) {
|
|
18
103
|
DatasetKind["NON_TABULAR"] = "NON_TABULAR";
|