@aws-sdk/client-mediatailor 3.51.0 → 3.54.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/MediaTailorServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +18 -3
- package/dist-cjs/protocols/Aws_restJson1.js +187 -409
- package/dist-es/index.js +1 -0
- package/dist-es/models/MediaTailorServiceException.js +12 -0
- package/dist-es/models/models_0.js +15 -1
- package/dist-es/protocols/Aws_restJson1.js +349 -321
- package/dist-types/MediaTailorClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/MediaTailorServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +9 -4
- 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/MediaTailorClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/MediaTailorServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +7 -4
- 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 +33 -33
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 MediaTailorServiceException = (function (_super) {
|
|
4
|
+
__extends(MediaTailorServiceException, _super);
|
|
5
|
+
function MediaTailorServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, MediaTailorServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return MediaTailorServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { MediaTailorServiceException };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { MediaTailorServiceException as __BaseException } from "./MediaTailorServiceException";
|
|
2
3
|
export var MessageType;
|
|
3
4
|
(function (MessageType) {
|
|
4
5
|
MessageType["SPLICE_INSERT"] = "SPLICE_INSERT";
|
|
@@ -160,6 +161,19 @@ export var VodSource;
|
|
|
160
161
|
(function (VodSource) {
|
|
161
162
|
VodSource.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
162
163
|
})(VodSource || (VodSource = {}));
|
|
164
|
+
var BadRequestException = (function (_super) {
|
|
165
|
+
__extends(BadRequestException, _super);
|
|
166
|
+
function BadRequestException(opts) {
|
|
167
|
+
var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
|
|
168
|
+
_this.name = "BadRequestException";
|
|
169
|
+
_this.$fault = "client";
|
|
170
|
+
Object.setPrototypeOf(_this, BadRequestException.prototype);
|
|
171
|
+
_this.Message = opts.Message;
|
|
172
|
+
return _this;
|
|
173
|
+
}
|
|
174
|
+
return BadRequestException;
|
|
175
|
+
}(__BaseException));
|
|
176
|
+
export { BadRequestException };
|
|
163
177
|
export var ChannelState;
|
|
164
178
|
(function (ChannelState) {
|
|
165
179
|
ChannelState["RUNNING"] = "RUNNING";
|