@aws-sdk/client-apigatewayv2 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/ApiGatewayV2ServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +77 -4
- package/dist-cjs/protocols/Aws_restJson1.js +576 -2062
- package/dist-es/index.js +1 -0
- package/dist-es/models/ApiGatewayV2ServiceException.js +12 -0
- package/dist-es/models/models_0.js +69 -1
- package/dist-es/protocols/Aws_restJson1.js +1357 -2356
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ApiGatewayV2ServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +37 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ApiGatewayV2ServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +2 -1
- 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 ApiGatewayV2ServiceException = (function (_super) {
|
|
4
|
+
__extends(ApiGatewayV2ServiceException, _super);
|
|
5
|
+
function ApiGatewayV2ServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, ApiGatewayV2ServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return ApiGatewayV2ServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { ApiGatewayV2ServiceException };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { ApiGatewayV2ServiceException as __BaseException } from "./ApiGatewayV2ServiceException";
|
|
2
3
|
export var Cors;
|
|
3
4
|
(function (Cors) {
|
|
4
5
|
Cors.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -161,6 +162,45 @@ export var VpcLink;
|
|
|
161
162
|
(function (VpcLink) {
|
|
162
163
|
VpcLink.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
163
164
|
})(VpcLink || (VpcLink = {}));
|
|
165
|
+
var AccessDeniedException = (function (_super) {
|
|
166
|
+
__extends(AccessDeniedException, _super);
|
|
167
|
+
function AccessDeniedException(opts) {
|
|
168
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
169
|
+
_this.name = "AccessDeniedException";
|
|
170
|
+
_this.$fault = "client";
|
|
171
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
172
|
+
_this.Message = opts.Message;
|
|
173
|
+
return _this;
|
|
174
|
+
}
|
|
175
|
+
return AccessDeniedException;
|
|
176
|
+
}(__BaseException));
|
|
177
|
+
export { AccessDeniedException };
|
|
178
|
+
var BadRequestException = (function (_super) {
|
|
179
|
+
__extends(BadRequestException, _super);
|
|
180
|
+
function BadRequestException(opts) {
|
|
181
|
+
var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
|
|
182
|
+
_this.name = "BadRequestException";
|
|
183
|
+
_this.$fault = "client";
|
|
184
|
+
Object.setPrototypeOf(_this, BadRequestException.prototype);
|
|
185
|
+
_this.Message = opts.Message;
|
|
186
|
+
return _this;
|
|
187
|
+
}
|
|
188
|
+
return BadRequestException;
|
|
189
|
+
}(__BaseException));
|
|
190
|
+
export { BadRequestException };
|
|
191
|
+
var ConflictException = (function (_super) {
|
|
192
|
+
__extends(ConflictException, _super);
|
|
193
|
+
function ConflictException(opts) {
|
|
194
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
195
|
+
_this.name = "ConflictException";
|
|
196
|
+
_this.$fault = "client";
|
|
197
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
198
|
+
_this.Message = opts.Message;
|
|
199
|
+
return _this;
|
|
200
|
+
}
|
|
201
|
+
return ConflictException;
|
|
202
|
+
}(__BaseException));
|
|
203
|
+
export { ConflictException };
|
|
164
204
|
export var CreateApiRequest;
|
|
165
205
|
(function (CreateApiRequest) {
|
|
166
206
|
CreateApiRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -169,6 +209,34 @@ export var CreateApiResponse;
|
|
|
169
209
|
(function (CreateApiResponse) {
|
|
170
210
|
CreateApiResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
171
211
|
})(CreateApiResponse || (CreateApiResponse = {}));
|
|
212
|
+
var NotFoundException = (function (_super) {
|
|
213
|
+
__extends(NotFoundException, _super);
|
|
214
|
+
function NotFoundException(opts) {
|
|
215
|
+
var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
|
|
216
|
+
_this.name = "NotFoundException";
|
|
217
|
+
_this.$fault = "client";
|
|
218
|
+
Object.setPrototypeOf(_this, NotFoundException.prototype);
|
|
219
|
+
_this.Message = opts.Message;
|
|
220
|
+
_this.ResourceType = opts.ResourceType;
|
|
221
|
+
return _this;
|
|
222
|
+
}
|
|
223
|
+
return NotFoundException;
|
|
224
|
+
}(__BaseException));
|
|
225
|
+
export { NotFoundException };
|
|
226
|
+
var TooManyRequestsException = (function (_super) {
|
|
227
|
+
__extends(TooManyRequestsException, _super);
|
|
228
|
+
function TooManyRequestsException(opts) {
|
|
229
|
+
var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
|
|
230
|
+
_this.name = "TooManyRequestsException";
|
|
231
|
+
_this.$fault = "client";
|
|
232
|
+
Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
|
|
233
|
+
_this.LimitType = opts.LimitType;
|
|
234
|
+
_this.Message = opts.Message;
|
|
235
|
+
return _this;
|
|
236
|
+
}
|
|
237
|
+
return TooManyRequestsException;
|
|
238
|
+
}(__BaseException));
|
|
239
|
+
export { TooManyRequestsException };
|
|
172
240
|
export var CreateApiMappingRequest;
|
|
173
241
|
(function (CreateApiMappingRequest) {
|
|
174
242
|
CreateApiMappingRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|