@aws-sdk/client-frauddetector 3.52.0 → 3.54.1
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/FraudDetectorServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +97 -5
- package/dist-cjs/protocols/Aws_json1_1.js +706 -2796
- package/dist-es/index.js +1 -0
- package/dist-es/models/FraudDetectorServiceException.js +12 -0
- package/dist-es/models/models_0.js +86 -1
- package/dist-es/protocols/Aws_json1_1.js +1592 -3055
- package/dist-types/FraudDetectorClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/FraudDetectorServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +51 -29
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/FraudDetectorClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/FraudDetectorServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -29
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
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 FraudDetectorServiceException = (function (_super) {
|
|
4
|
+
__extends(FraudDetectorServiceException, _super);
|
|
5
|
+
function FraudDetectorServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, FraudDetectorServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return FraudDetectorServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { FraudDetectorServiceException };
|
|
@@ -1,5 +1,18 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { FraudDetectorServiceException as __BaseException } from "./FraudDetectorServiceException";
|
|
4
|
+
var AccessDeniedException = (function (_super) {
|
|
5
|
+
__extends(AccessDeniedException, _super);
|
|
6
|
+
function AccessDeniedException(opts) {
|
|
7
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
8
|
+
_this.name = "AccessDeniedException";
|
|
9
|
+
_this.$fault = "client";
|
|
10
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
return AccessDeniedException;
|
|
14
|
+
}(__BaseException));
|
|
15
|
+
export { AccessDeniedException };
|
|
3
16
|
export var AsyncJobStatus;
|
|
4
17
|
(function (AsyncJobStatus) {
|
|
5
18
|
AsyncJobStatus["CANCELED"] = "CANCELED";
|
|
@@ -29,6 +42,42 @@ export var BatchCreateVariableResult;
|
|
|
29
42
|
(function (BatchCreateVariableResult) {
|
|
30
43
|
BatchCreateVariableResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
31
44
|
})(BatchCreateVariableResult || (BatchCreateVariableResult = {}));
|
|
45
|
+
var InternalServerException = (function (_super) {
|
|
46
|
+
__extends(InternalServerException, _super);
|
|
47
|
+
function InternalServerException(opts) {
|
|
48
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
49
|
+
_this.name = "InternalServerException";
|
|
50
|
+
_this.$fault = "server";
|
|
51
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
52
|
+
return _this;
|
|
53
|
+
}
|
|
54
|
+
return InternalServerException;
|
|
55
|
+
}(__BaseException));
|
|
56
|
+
export { InternalServerException };
|
|
57
|
+
var ThrottlingException = (function (_super) {
|
|
58
|
+
__extends(ThrottlingException, _super);
|
|
59
|
+
function ThrottlingException(opts) {
|
|
60
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
61
|
+
_this.name = "ThrottlingException";
|
|
62
|
+
_this.$fault = "client";
|
|
63
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
64
|
+
return _this;
|
|
65
|
+
}
|
|
66
|
+
return ThrottlingException;
|
|
67
|
+
}(__BaseException));
|
|
68
|
+
export { ThrottlingException };
|
|
69
|
+
var ValidationException = (function (_super) {
|
|
70
|
+
__extends(ValidationException, _super);
|
|
71
|
+
function ValidationException(opts) {
|
|
72
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
73
|
+
_this.name = "ValidationException";
|
|
74
|
+
_this.$fault = "client";
|
|
75
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
76
|
+
return _this;
|
|
77
|
+
}
|
|
78
|
+
return ValidationException;
|
|
79
|
+
}(__BaseException));
|
|
80
|
+
export { ValidationException };
|
|
32
81
|
export var BatchGetVariableRequest;
|
|
33
82
|
(function (BatchGetVariableRequest) {
|
|
34
83
|
BatchGetVariableRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -66,6 +115,18 @@ export var CancelBatchImportJobResult;
|
|
|
66
115
|
(function (CancelBatchImportJobResult) {
|
|
67
116
|
CancelBatchImportJobResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
68
117
|
})(CancelBatchImportJobResult || (CancelBatchImportJobResult = {}));
|
|
118
|
+
var ResourceNotFoundException = (function (_super) {
|
|
119
|
+
__extends(ResourceNotFoundException, _super);
|
|
120
|
+
function ResourceNotFoundException(opts) {
|
|
121
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
122
|
+
_this.name = "ResourceNotFoundException";
|
|
123
|
+
_this.$fault = "client";
|
|
124
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
125
|
+
return _this;
|
|
126
|
+
}
|
|
127
|
+
return ResourceNotFoundException;
|
|
128
|
+
}(__BaseException));
|
|
129
|
+
export { ResourceNotFoundException };
|
|
69
130
|
export var CancelBatchPredictionJobRequest;
|
|
70
131
|
(function (CancelBatchPredictionJobRequest) {
|
|
71
132
|
CancelBatchPredictionJobRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -205,6 +266,18 @@ export var DeleteBatchPredictionJobResult;
|
|
|
205
266
|
(function (DeleteBatchPredictionJobResult) {
|
|
206
267
|
DeleteBatchPredictionJobResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
207
268
|
})(DeleteBatchPredictionJobResult || (DeleteBatchPredictionJobResult = {}));
|
|
269
|
+
var ConflictException = (function (_super) {
|
|
270
|
+
__extends(ConflictException, _super);
|
|
271
|
+
function ConflictException(opts) {
|
|
272
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
273
|
+
_this.name = "ConflictException";
|
|
274
|
+
_this.$fault = "client";
|
|
275
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
276
|
+
return _this;
|
|
277
|
+
}
|
|
278
|
+
return ConflictException;
|
|
279
|
+
}(__BaseException));
|
|
280
|
+
export { ConflictException };
|
|
208
281
|
export var DeleteDetectorRequest;
|
|
209
282
|
(function (DeleteDetectorRequest) {
|
|
210
283
|
DeleteDetectorRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -477,6 +550,18 @@ export var GetEventPredictionResult;
|
|
|
477
550
|
(function (GetEventPredictionResult) {
|
|
478
551
|
GetEventPredictionResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
479
552
|
})(GetEventPredictionResult || (GetEventPredictionResult = {}));
|
|
553
|
+
var ResourceUnavailableException = (function (_super) {
|
|
554
|
+
__extends(ResourceUnavailableException, _super);
|
|
555
|
+
function ResourceUnavailableException(opts) {
|
|
556
|
+
var _this = _super.call(this, __assign({ name: "ResourceUnavailableException", $fault: "client" }, opts)) || this;
|
|
557
|
+
_this.name = "ResourceUnavailableException";
|
|
558
|
+
_this.$fault = "client";
|
|
559
|
+
Object.setPrototypeOf(_this, ResourceUnavailableException.prototype);
|
|
560
|
+
return _this;
|
|
561
|
+
}
|
|
562
|
+
return ResourceUnavailableException;
|
|
563
|
+
}(__BaseException));
|
|
564
|
+
export { ResourceUnavailableException };
|
|
480
565
|
export var GetEventPredictionMetadataRequest;
|
|
481
566
|
(function (GetEventPredictionMetadataRequest) {
|
|
482
567
|
GetEventPredictionMetadataRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|