@aws-sdk/client-mediapackage 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/MediaPackageServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +87 -2
- package/dist-cjs/protocols/Aws_restJson1.js +226 -816
- package/dist-es/index.js +1 -0
- package/dist-es/models/MediaPackageServiceException.js +12 -0
- package/dist-es/models/models_0.js +80 -1
- package/dist-es/protocols/Aws_restJson1.js +451 -878
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/MediaPackageServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +44 -19
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/MediaPackageServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +32 -19
- 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 MediaPackageServiceException = (function (_super) {
|
|
4
|
+
__extends(MediaPackageServiceException, _super);
|
|
5
|
+
function MediaPackageServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, MediaPackageServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return MediaPackageServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { MediaPackageServiceException };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { MediaPackageServiceException as __BaseException } from "./MediaPackageServiceException";
|
|
2
3
|
export var __AdTriggersElement;
|
|
3
4
|
(function (__AdTriggersElement) {
|
|
4
5
|
__AdTriggersElement["BREAK"] = "BREAK";
|
|
@@ -186,6 +187,84 @@ export var ConfigureLogsResponse;
|
|
|
186
187
|
(function (ConfigureLogsResponse) {
|
|
187
188
|
ConfigureLogsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
188
189
|
})(ConfigureLogsResponse || (ConfigureLogsResponse = {}));
|
|
190
|
+
var ForbiddenException = (function (_super) {
|
|
191
|
+
__extends(ForbiddenException, _super);
|
|
192
|
+
function ForbiddenException(opts) {
|
|
193
|
+
var _this = _super.call(this, __assign({ name: "ForbiddenException", $fault: "client" }, opts)) || this;
|
|
194
|
+
_this.name = "ForbiddenException";
|
|
195
|
+
_this.$fault = "client";
|
|
196
|
+
Object.setPrototypeOf(_this, ForbiddenException.prototype);
|
|
197
|
+
_this.Message = opts.Message;
|
|
198
|
+
return _this;
|
|
199
|
+
}
|
|
200
|
+
return ForbiddenException;
|
|
201
|
+
}(__BaseException));
|
|
202
|
+
export { ForbiddenException };
|
|
203
|
+
var InternalServerErrorException = (function (_super) {
|
|
204
|
+
__extends(InternalServerErrorException, _super);
|
|
205
|
+
function InternalServerErrorException(opts) {
|
|
206
|
+
var _this = _super.call(this, __assign({ name: "InternalServerErrorException", $fault: "server" }, opts)) || this;
|
|
207
|
+
_this.name = "InternalServerErrorException";
|
|
208
|
+
_this.$fault = "server";
|
|
209
|
+
Object.setPrototypeOf(_this, InternalServerErrorException.prototype);
|
|
210
|
+
_this.Message = opts.Message;
|
|
211
|
+
return _this;
|
|
212
|
+
}
|
|
213
|
+
return InternalServerErrorException;
|
|
214
|
+
}(__BaseException));
|
|
215
|
+
export { InternalServerErrorException };
|
|
216
|
+
var NotFoundException = (function (_super) {
|
|
217
|
+
__extends(NotFoundException, _super);
|
|
218
|
+
function NotFoundException(opts) {
|
|
219
|
+
var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
|
|
220
|
+
_this.name = "NotFoundException";
|
|
221
|
+
_this.$fault = "client";
|
|
222
|
+
Object.setPrototypeOf(_this, NotFoundException.prototype);
|
|
223
|
+
_this.Message = opts.Message;
|
|
224
|
+
return _this;
|
|
225
|
+
}
|
|
226
|
+
return NotFoundException;
|
|
227
|
+
}(__BaseException));
|
|
228
|
+
export { NotFoundException };
|
|
229
|
+
var ServiceUnavailableException = (function (_super) {
|
|
230
|
+
__extends(ServiceUnavailableException, _super);
|
|
231
|
+
function ServiceUnavailableException(opts) {
|
|
232
|
+
var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
|
|
233
|
+
_this.name = "ServiceUnavailableException";
|
|
234
|
+
_this.$fault = "server";
|
|
235
|
+
Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
|
|
236
|
+
_this.Message = opts.Message;
|
|
237
|
+
return _this;
|
|
238
|
+
}
|
|
239
|
+
return ServiceUnavailableException;
|
|
240
|
+
}(__BaseException));
|
|
241
|
+
export { ServiceUnavailableException };
|
|
242
|
+
var TooManyRequestsException = (function (_super) {
|
|
243
|
+
__extends(TooManyRequestsException, _super);
|
|
244
|
+
function TooManyRequestsException(opts) {
|
|
245
|
+
var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
|
|
246
|
+
_this.name = "TooManyRequestsException";
|
|
247
|
+
_this.$fault = "client";
|
|
248
|
+
Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
|
|
249
|
+
_this.Message = opts.Message;
|
|
250
|
+
return _this;
|
|
251
|
+
}
|
|
252
|
+
return TooManyRequestsException;
|
|
253
|
+
}(__BaseException));
|
|
254
|
+
export { TooManyRequestsException };
|
|
255
|
+
var UnprocessableEntityException = (function (_super) {
|
|
256
|
+
__extends(UnprocessableEntityException, _super);
|
|
257
|
+
function UnprocessableEntityException(opts) {
|
|
258
|
+
var _this = _super.call(this, __assign({ name: "UnprocessableEntityException", $fault: "client" }, opts)) || this;
|
|
259
|
+
_this.name = "UnprocessableEntityException";
|
|
260
|
+
_this.$fault = "client";
|
|
261
|
+
Object.setPrototypeOf(_this, UnprocessableEntityException.prototype);
|
|
262
|
+
_this.Message = opts.Message;
|
|
263
|
+
return _this;
|
|
264
|
+
}
|
|
265
|
+
return UnprocessableEntityException;
|
|
266
|
+
}(__BaseException));
|
|
267
|
+
export { UnprocessableEntityException };
|
|
189
268
|
export var CreateChannelRequest;
|
|
190
269
|
(function (CreateChannelRequest) {
|
|
191
270
|
CreateChannelRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|