@aws-sdk/client-lex-runtime-v2 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/LexRuntimeV2ServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +107 -2
- package/dist-cjs/protocols/Aws_restJson1.js +126 -357
- package/dist-es/index.js +1 -0
- package/dist-es/models/LexRuntimeV2ServiceException.js +12 -0
- package/dist-es/models/models_0.js +98 -1
- package/dist-es/protocols/Aws_restJson1.js +199 -391
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/LexRuntimeV2ServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +58 -33
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/LexRuntimeV2ServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +42 -33
- package/package.json +30 -30
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 LexRuntimeV2ServiceException = (function (_super) {
|
|
4
|
+
__extends(LexRuntimeV2ServiceException, _super);
|
|
5
|
+
function LexRuntimeV2ServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, LexRuntimeV2ServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return LexRuntimeV2ServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { LexRuntimeV2ServiceException };
|
|
@@ -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 { LexRuntimeV2ServiceException as __BaseException } from "./LexRuntimeV2ServiceException";
|
|
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 ActiveContextTimeToLive;
|
|
4
17
|
(function (ActiveContextTimeToLive) {
|
|
5
18
|
ActiveContextTimeToLive.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -16,6 +29,18 @@ export var AudioResponseEvent;
|
|
|
16
29
|
(function (AudioResponseEvent) {
|
|
17
30
|
AudioResponseEvent.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
18
31
|
})(AudioResponseEvent || (AudioResponseEvent = {}));
|
|
32
|
+
var ConflictException = (function (_super) {
|
|
33
|
+
__extends(ConflictException, _super);
|
|
34
|
+
function ConflictException(opts) {
|
|
35
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
36
|
+
_this.name = "ConflictException";
|
|
37
|
+
_this.$fault = "client";
|
|
38
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
39
|
+
return _this;
|
|
40
|
+
}
|
|
41
|
+
return ConflictException;
|
|
42
|
+
}(__BaseException));
|
|
43
|
+
export { ConflictException };
|
|
19
44
|
export var DeleteSessionRequest;
|
|
20
45
|
(function (DeleteSessionRequest) {
|
|
21
46
|
DeleteSessionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -24,6 +49,54 @@ export var DeleteSessionResponse;
|
|
|
24
49
|
(function (DeleteSessionResponse) {
|
|
25
50
|
DeleteSessionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
26
51
|
})(DeleteSessionResponse || (DeleteSessionResponse = {}));
|
|
52
|
+
var InternalServerException = (function (_super) {
|
|
53
|
+
__extends(InternalServerException, _super);
|
|
54
|
+
function InternalServerException(opts) {
|
|
55
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
56
|
+
_this.name = "InternalServerException";
|
|
57
|
+
_this.$fault = "server";
|
|
58
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
59
|
+
return _this;
|
|
60
|
+
}
|
|
61
|
+
return InternalServerException;
|
|
62
|
+
}(__BaseException));
|
|
63
|
+
export { InternalServerException };
|
|
64
|
+
var ResourceNotFoundException = (function (_super) {
|
|
65
|
+
__extends(ResourceNotFoundException, _super);
|
|
66
|
+
function ResourceNotFoundException(opts) {
|
|
67
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
68
|
+
_this.name = "ResourceNotFoundException";
|
|
69
|
+
_this.$fault = "client";
|
|
70
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
71
|
+
return _this;
|
|
72
|
+
}
|
|
73
|
+
return ResourceNotFoundException;
|
|
74
|
+
}(__BaseException));
|
|
75
|
+
export { ResourceNotFoundException };
|
|
76
|
+
var ThrottlingException = (function (_super) {
|
|
77
|
+
__extends(ThrottlingException, _super);
|
|
78
|
+
function ThrottlingException(opts) {
|
|
79
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
80
|
+
_this.name = "ThrottlingException";
|
|
81
|
+
_this.$fault = "client";
|
|
82
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
83
|
+
return _this;
|
|
84
|
+
}
|
|
85
|
+
return ThrottlingException;
|
|
86
|
+
}(__BaseException));
|
|
87
|
+
export { ThrottlingException };
|
|
88
|
+
var ValidationException = (function (_super) {
|
|
89
|
+
__extends(ValidationException, _super);
|
|
90
|
+
function ValidationException(opts) {
|
|
91
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
92
|
+
_this.name = "ValidationException";
|
|
93
|
+
_this.$fault = "client";
|
|
94
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
95
|
+
return _this;
|
|
96
|
+
}
|
|
97
|
+
return ValidationException;
|
|
98
|
+
}(__BaseException));
|
|
99
|
+
export { ValidationException };
|
|
27
100
|
export var GetSessionRequest;
|
|
28
101
|
(function (GetSessionRequest) {
|
|
29
102
|
GetSessionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -121,6 +194,30 @@ export var RuntimeHints;
|
|
|
121
194
|
(function (RuntimeHints) {
|
|
122
195
|
RuntimeHints.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
123
196
|
})(RuntimeHints || (RuntimeHints = {}));
|
|
197
|
+
var BadGatewayException = (function (_super) {
|
|
198
|
+
__extends(BadGatewayException, _super);
|
|
199
|
+
function BadGatewayException(opts) {
|
|
200
|
+
var _this = _super.call(this, __assign({ name: "BadGatewayException", $fault: "server" }, opts)) || this;
|
|
201
|
+
_this.name = "BadGatewayException";
|
|
202
|
+
_this.$fault = "server";
|
|
203
|
+
Object.setPrototypeOf(_this, BadGatewayException.prototype);
|
|
204
|
+
return _this;
|
|
205
|
+
}
|
|
206
|
+
return BadGatewayException;
|
|
207
|
+
}(__BaseException));
|
|
208
|
+
export { BadGatewayException };
|
|
209
|
+
var DependencyFailedException = (function (_super) {
|
|
210
|
+
__extends(DependencyFailedException, _super);
|
|
211
|
+
function DependencyFailedException(opts) {
|
|
212
|
+
var _this = _super.call(this, __assign({ name: "DependencyFailedException", $fault: "client" }, opts)) || this;
|
|
213
|
+
_this.name = "DependencyFailedException";
|
|
214
|
+
_this.$fault = "client";
|
|
215
|
+
Object.setPrototypeOf(_this, DependencyFailedException.prototype);
|
|
216
|
+
return _this;
|
|
217
|
+
}
|
|
218
|
+
return DependencyFailedException;
|
|
219
|
+
}(__BaseException));
|
|
220
|
+
export { DependencyFailedException };
|
|
124
221
|
export var PutSessionResponse;
|
|
125
222
|
(function (PutSessionResponse) {
|
|
126
223
|
PutSessionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|