@aws-sdk/client-lex-model-building-service 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/LexModelBuildingServiceServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +111 -3
- package/dist-cjs/protocols/Aws_restJson1.js +465 -1641
- package/dist-es/index.js +1 -0
- package/dist-es/models/LexModelBuildingServiceServiceException.js +12 -0
- package/dist-es/models/models_0.js +101 -1
- package/dist-es/protocols/Aws_restJson1.js +975 -1818
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/LexModelBuildingServiceServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +58 -32
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/LexModelBuildingServiceServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +42 -32
- 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 LexModelBuildingServiceServiceException = (function (_super) {
|
|
4
|
+
__extends(LexModelBuildingServiceServiceException, _super);
|
|
5
|
+
function LexModelBuildingServiceServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, LexModelBuildingServiceServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return LexModelBuildingServiceServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { LexModelBuildingServiceServiceException };
|
|
@@ -1,5 +1,42 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { LexModelBuildingServiceServiceException as __BaseException } from "./LexModelBuildingServiceServiceException";
|
|
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 };
|
|
16
|
+
var BadRequestException = (function (_super) {
|
|
17
|
+
__extends(BadRequestException, _super);
|
|
18
|
+
function BadRequestException(opts) {
|
|
19
|
+
var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
|
|
20
|
+
_this.name = "BadRequestException";
|
|
21
|
+
_this.$fault = "client";
|
|
22
|
+
Object.setPrototypeOf(_this, BadRequestException.prototype);
|
|
23
|
+
return _this;
|
|
24
|
+
}
|
|
25
|
+
return BadRequestException;
|
|
26
|
+
}(__BaseException));
|
|
27
|
+
export { BadRequestException };
|
|
28
|
+
var ConflictException = (function (_super) {
|
|
29
|
+
__extends(ConflictException, _super);
|
|
30
|
+
function ConflictException(opts) {
|
|
31
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
32
|
+
_this.name = "ConflictException";
|
|
33
|
+
_this.$fault = "client";
|
|
34
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
35
|
+
return _this;
|
|
36
|
+
}
|
|
37
|
+
return ConflictException;
|
|
38
|
+
}(__BaseException));
|
|
39
|
+
export { ConflictException };
|
|
3
40
|
export var CreateBotVersionRequest;
|
|
4
41
|
(function (CreateBotVersionRequest) {
|
|
5
42
|
CreateBotVersionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -54,6 +91,55 @@ export var CreateBotVersionResponse;
|
|
|
54
91
|
(function (CreateBotVersionResponse) {
|
|
55
92
|
CreateBotVersionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
56
93
|
})(CreateBotVersionResponse || (CreateBotVersionResponse = {}));
|
|
94
|
+
var InternalFailureException = (function (_super) {
|
|
95
|
+
__extends(InternalFailureException, _super);
|
|
96
|
+
function InternalFailureException(opts) {
|
|
97
|
+
var _this = _super.call(this, __assign({ name: "InternalFailureException", $fault: "server" }, opts)) || this;
|
|
98
|
+
_this.name = "InternalFailureException";
|
|
99
|
+
_this.$fault = "server";
|
|
100
|
+
Object.setPrototypeOf(_this, InternalFailureException.prototype);
|
|
101
|
+
return _this;
|
|
102
|
+
}
|
|
103
|
+
return InternalFailureException;
|
|
104
|
+
}(__BaseException));
|
|
105
|
+
export { InternalFailureException };
|
|
106
|
+
var LimitExceededException = (function (_super) {
|
|
107
|
+
__extends(LimitExceededException, _super);
|
|
108
|
+
function LimitExceededException(opts) {
|
|
109
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
110
|
+
_this.name = "LimitExceededException";
|
|
111
|
+
_this.$fault = "client";
|
|
112
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
113
|
+
_this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
114
|
+
return _this;
|
|
115
|
+
}
|
|
116
|
+
return LimitExceededException;
|
|
117
|
+
}(__BaseException));
|
|
118
|
+
export { LimitExceededException };
|
|
119
|
+
var NotFoundException = (function (_super) {
|
|
120
|
+
__extends(NotFoundException, _super);
|
|
121
|
+
function NotFoundException(opts) {
|
|
122
|
+
var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
|
|
123
|
+
_this.name = "NotFoundException";
|
|
124
|
+
_this.$fault = "client";
|
|
125
|
+
Object.setPrototypeOf(_this, NotFoundException.prototype);
|
|
126
|
+
return _this;
|
|
127
|
+
}
|
|
128
|
+
return NotFoundException;
|
|
129
|
+
}(__BaseException));
|
|
130
|
+
export { NotFoundException };
|
|
131
|
+
var PreconditionFailedException = (function (_super) {
|
|
132
|
+
__extends(PreconditionFailedException, _super);
|
|
133
|
+
function PreconditionFailedException(opts) {
|
|
134
|
+
var _this = _super.call(this, __assign({ name: "PreconditionFailedException", $fault: "client" }, opts)) || this;
|
|
135
|
+
_this.name = "PreconditionFailedException";
|
|
136
|
+
_this.$fault = "client";
|
|
137
|
+
Object.setPrototypeOf(_this, PreconditionFailedException.prototype);
|
|
138
|
+
return _this;
|
|
139
|
+
}
|
|
140
|
+
return PreconditionFailedException;
|
|
141
|
+
}(__BaseException));
|
|
142
|
+
export { PreconditionFailedException };
|
|
57
143
|
export var CreateIntentVersionRequest;
|
|
58
144
|
(function (CreateIntentVersionRequest) {
|
|
59
145
|
CreateIntentVersionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -153,6 +239,20 @@ export var ReferenceType;
|
|
|
153
239
|
ReferenceType["BOTCHANNEL"] = "BotChannel";
|
|
154
240
|
ReferenceType["INTENT"] = "Intent";
|
|
155
241
|
})(ReferenceType || (ReferenceType = {}));
|
|
242
|
+
var ResourceInUseException = (function (_super) {
|
|
243
|
+
__extends(ResourceInUseException, _super);
|
|
244
|
+
function ResourceInUseException(opts) {
|
|
245
|
+
var _this = _super.call(this, __assign({ name: "ResourceInUseException", $fault: "client" }, opts)) || this;
|
|
246
|
+
_this.name = "ResourceInUseException";
|
|
247
|
+
_this.$fault = "client";
|
|
248
|
+
Object.setPrototypeOf(_this, ResourceInUseException.prototype);
|
|
249
|
+
_this.referenceType = opts.referenceType;
|
|
250
|
+
_this.exampleReference = opts.exampleReference;
|
|
251
|
+
return _this;
|
|
252
|
+
}
|
|
253
|
+
return ResourceInUseException;
|
|
254
|
+
}(__BaseException));
|
|
255
|
+
export { ResourceInUseException };
|
|
156
256
|
export var DeleteBotAliasRequest;
|
|
157
257
|
(function (DeleteBotAliasRequest) {
|
|
158
258
|
DeleteBotAliasRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|