@bitmovin/api-sdk 1.211.0 → 1.213.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/README.md +1 -1
- package/dist/bitmovin-api-sdk.browser.js +904 -34
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/encoding/live/LiveApi.d.ts +2 -0
- package/dist/encoding/live/LiveApi.js +2 -0
- package/dist/encoding/live/standbyPools/StandbyPoolsApi.d.ts +58 -0
- package/dist/encoding/live/standbyPools/StandbyPoolsApi.js +108 -0
- package/dist/encoding/live/standbyPools/actions/ActionsApi.d.ts +26 -0
- package/dist/encoding/live/standbyPools/actions/ActionsApi.js +62 -0
- package/dist/encoding/live/standbyPools/encodings/EncodingsApi.d.ts +31 -0
- package/dist/encoding/live/standbyPools/encodings/EncodingsApi.js +75 -0
- package/dist/encoding/live/standbyPools/encodings/LiveStandbyPoolEncodingListQueryParams.d.ts +50 -0
- package/dist/encoding/live/standbyPools/encodings/LiveStandbyPoolEncodingListQueryParams.js +45 -0
- package/dist/encoding/live/standbyPools/logs/LiveStandbyPoolEventLogListQueryParams.d.ts +50 -0
- package/dist/encoding/live/standbyPools/logs/LiveStandbyPoolEventLogListQueryParams.js +45 -0
- package/dist/encoding/live/standbyPools/logs/LogsApi.d.ts +22 -0
- package/dist/encoding/live/standbyPools/logs/LogsApi.js +57 -0
- package/dist/models/LiveEncodingStatsEventDetails.d.ts +18 -0
- package/dist/models/LiveEncodingStatsEventDetails.js +3 -0
- package/dist/models/LiveStandbyPoolDetails.d.ts +15 -0
- package/dist/models/LiveStandbyPoolDetails.js +38 -0
- package/dist/models/LiveStandbyPoolEncoding.d.ts +47 -0
- package/dist/models/LiveStandbyPoolEncoding.js +27 -0
- package/dist/models/LiveStandbyPoolEncodingIngestPoint.d.ts +20 -0
- package/dist/models/LiveStandbyPoolEncodingIngestPoint.js +20 -0
- package/dist/models/LiveStandbyPoolEncodingManifest.d.ts +26 -0
- package/dist/models/LiveStandbyPoolEncodingManifest.js +21 -0
- package/dist/models/LiveStandbyPoolEncodingManifestType.d.ts +10 -0
- package/dist/models/LiveStandbyPoolEncodingManifestType.js +14 -0
- package/dist/models/LiveStandbyPoolEncodingStatus.d.ts +16 -0
- package/dist/models/LiveStandbyPoolEncodingStatus.js +20 -0
- package/dist/models/LiveStandbyPoolEventLog.d.ts +50 -0
- package/dist/models/LiveStandbyPoolEventLog.js +25 -0
- package/dist/models/LiveStandbyPoolEventLogType.d.ts +11 -0
- package/dist/models/LiveStandbyPoolEventLogType.js +15 -0
- package/dist/models/LiveStandbyPoolRequest.d.ts +21 -0
- package/dist/models/LiveStandbyPoolRequest.js +39 -0
- package/dist/models/LiveStandbyPoolResponse.d.ts +45 -0
- package/dist/models/LiveStandbyPoolResponse.js +43 -0
- package/dist/models/LiveStandbyPoolStatus.d.ts +10 -0
- package/dist/models/LiveStandbyPoolStatus.js +14 -0
- package/dist/models/LiveStandbyPoolUpdate.d.ts +20 -0
- package/dist/models/LiveStandbyPoolUpdate.js +20 -0
- package/dist/models/Mp4Muxing.d.ts +0 -6
- package/dist/models/Mp4Muxing.js +0 -2
- package/dist/models/index.d.ts +12 -1
- package/dist/models/index.js +12 -1
- package/package.json +1 -1
- package/dist/models/TimeCode.d.ts +0 -14
- package/dist/models/TimeCode.js +0 -19
|
@@ -6029,7 +6029,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
6029
6029
|
var headers = {
|
|
6030
6030
|
'X-Api-Key': apiKey,
|
|
6031
6031
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
6032
|
-
'X-Api-Client-Version': '1.
|
|
6032
|
+
'X-Api-Client-Version': '1.213.0',
|
|
6033
6033
|
'Content-Type': 'application/json'
|
|
6034
6034
|
};
|
|
6035
6035
|
if (tenantOrgId) {
|
|
@@ -41037,6 +41037,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
41037
41037
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
41038
41038
|
var BaseAPI_1 = __webpack_require__(/*! ../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
41039
41039
|
var StreamKeysApi_1 = __webpack_require__(/*! ./streamKeys/StreamKeysApi */ "./encoding/live/streamKeys/StreamKeysApi.ts");
|
|
41040
|
+
var StandbyPoolsApi_1 = __webpack_require__(/*! ./standbyPools/StandbyPoolsApi */ "./encoding/live/standbyPools/StandbyPoolsApi.ts");
|
|
41040
41041
|
/**
|
|
41041
41042
|
* LiveApi - object-oriented interface
|
|
41042
41043
|
* @export
|
|
@@ -41048,6 +41049,7 @@ var LiveApi = /** @class */ (function (_super) {
|
|
|
41048
41049
|
function LiveApi(configuration) {
|
|
41049
41050
|
var _this = _super.call(this, configuration) || this;
|
|
41050
41051
|
_this.streamKeys = new StreamKeysApi_1.default(configuration);
|
|
41052
|
+
_this.standbyPools = new StandbyPoolsApi_1.default(configuration);
|
|
41051
41053
|
return _this;
|
|
41052
41054
|
}
|
|
41053
41055
|
return LiveApi;
|
|
@@ -41055,6 +41057,464 @@ var LiveApi = /** @class */ (function (_super) {
|
|
|
41055
41057
|
exports["default"] = LiveApi;
|
|
41056
41058
|
|
|
41057
41059
|
|
|
41060
|
+
/***/ }),
|
|
41061
|
+
|
|
41062
|
+
/***/ "./encoding/live/standbyPools/StandbyPoolsApi.ts":
|
|
41063
|
+
/*!*******************************************************!*\
|
|
41064
|
+
!*** ./encoding/live/standbyPools/StandbyPoolsApi.ts ***!
|
|
41065
|
+
\*******************************************************/
|
|
41066
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
41067
|
+
|
|
41068
|
+
"use strict";
|
|
41069
|
+
|
|
41070
|
+
var __extends = (this && this.__extends) || (function () {
|
|
41071
|
+
var extendStatics = function (d, b) {
|
|
41072
|
+
extendStatics = Object.setPrototypeOf ||
|
|
41073
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
41074
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
41075
|
+
return extendStatics(d, b);
|
|
41076
|
+
};
|
|
41077
|
+
return function (d, b) {
|
|
41078
|
+
if (typeof b !== "function" && b !== null)
|
|
41079
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
41080
|
+
extendStatics(d, b);
|
|
41081
|
+
function __() { this.constructor = d; }
|
|
41082
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
41083
|
+
};
|
|
41084
|
+
})();
|
|
41085
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
41086
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
41087
|
+
var Mapper_1 = __webpack_require__(/*! ../../../common/Mapper */ "./common/Mapper.ts");
|
|
41088
|
+
var ActionsApi_1 = __webpack_require__(/*! ./actions/ActionsApi */ "./encoding/live/standbyPools/actions/ActionsApi.ts");
|
|
41089
|
+
var EncodingsApi_1 = __webpack_require__(/*! ./encodings/EncodingsApi */ "./encoding/live/standbyPools/encodings/EncodingsApi.ts");
|
|
41090
|
+
var LogsApi_1 = __webpack_require__(/*! ./logs/LogsApi */ "./encoding/live/standbyPools/logs/LogsApi.ts");
|
|
41091
|
+
var BitmovinResponse_1 = __webpack_require__(/*! ../../../models/BitmovinResponse */ "./models/BitmovinResponse.ts");
|
|
41092
|
+
var LiveStandbyPoolDetails_1 = __webpack_require__(/*! ../../../models/LiveStandbyPoolDetails */ "./models/LiveStandbyPoolDetails.ts");
|
|
41093
|
+
var LiveStandbyPoolResponse_1 = __webpack_require__(/*! ../../../models/LiveStandbyPoolResponse */ "./models/LiveStandbyPoolResponse.ts");
|
|
41094
|
+
var PaginationResponse_1 = __webpack_require__(/*! ../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
41095
|
+
/**
|
|
41096
|
+
* StandbyPoolsApi - object-oriented interface
|
|
41097
|
+
* @export
|
|
41098
|
+
* @class StandbyPoolsApi
|
|
41099
|
+
* @extends {BaseAPI}
|
|
41100
|
+
*/
|
|
41101
|
+
var StandbyPoolsApi = /** @class */ (function (_super) {
|
|
41102
|
+
__extends(StandbyPoolsApi, _super);
|
|
41103
|
+
function StandbyPoolsApi(configuration) {
|
|
41104
|
+
var _this = _super.call(this, configuration) || this;
|
|
41105
|
+
_this.actions = new ActionsApi_1.default(configuration);
|
|
41106
|
+
_this.encodings = new EncodingsApi_1.default(configuration);
|
|
41107
|
+
_this.logs = new LogsApi_1.default(configuration);
|
|
41108
|
+
return _this;
|
|
41109
|
+
}
|
|
41110
|
+
/**
|
|
41111
|
+
* @summary Create new standby pool
|
|
41112
|
+
* @param {LiveStandbyPoolRequest} liveStandbyPoolRequest The pool to be created
|
|
41113
|
+
* @throws {BitmovinError}
|
|
41114
|
+
* @memberof StandbyPoolsApi
|
|
41115
|
+
*/
|
|
41116
|
+
StandbyPoolsApi.prototype.create = function (liveStandbyPoolRequest) {
|
|
41117
|
+
return this.restClient.post('/encoding/live/standby-pools', {}, liveStandbyPoolRequest).then(function (response) {
|
|
41118
|
+
return (0, Mapper_1.map)(response, LiveStandbyPoolDetails_1.default);
|
|
41119
|
+
});
|
|
41120
|
+
};
|
|
41121
|
+
/**
|
|
41122
|
+
* @summary Delete standby pool by id
|
|
41123
|
+
* @param {string} poolId Id of the standby pool
|
|
41124
|
+
* @throws {BitmovinError}
|
|
41125
|
+
* @memberof StandbyPoolsApi
|
|
41126
|
+
*/
|
|
41127
|
+
StandbyPoolsApi.prototype.delete = function (poolId) {
|
|
41128
|
+
var pathParamMap = {
|
|
41129
|
+
pool_id: poolId
|
|
41130
|
+
};
|
|
41131
|
+
return this.restClient.delete('/encoding/live/standby-pools/{pool_id}', pathParamMap).then(function (response) {
|
|
41132
|
+
return (0, Mapper_1.map)(response, BitmovinResponse_1.default);
|
|
41133
|
+
});
|
|
41134
|
+
};
|
|
41135
|
+
/**
|
|
41136
|
+
* @summary Get details of a standby pool by id
|
|
41137
|
+
* @param {string} poolId Id of the standby pool
|
|
41138
|
+
* @throws {BitmovinError}
|
|
41139
|
+
* @memberof StandbyPoolsApi
|
|
41140
|
+
*/
|
|
41141
|
+
StandbyPoolsApi.prototype.get = function (poolId) {
|
|
41142
|
+
var pathParamMap = {
|
|
41143
|
+
pool_id: poolId
|
|
41144
|
+
};
|
|
41145
|
+
return this.restClient.get('/encoding/live/standby-pools/{pool_id}', pathParamMap).then(function (response) {
|
|
41146
|
+
return (0, Mapper_1.map)(response, LiveStandbyPoolDetails_1.default);
|
|
41147
|
+
});
|
|
41148
|
+
};
|
|
41149
|
+
/**
|
|
41150
|
+
* @summary List Standby pools
|
|
41151
|
+
* @throws {BitmovinError}
|
|
41152
|
+
* @memberof StandbyPoolsApi
|
|
41153
|
+
*/
|
|
41154
|
+
StandbyPoolsApi.prototype.list = function () {
|
|
41155
|
+
return this.restClient.get('/encoding/live/standby-pools', {}).then(function (response) {
|
|
41156
|
+
return new PaginationResponse_1.default(response, LiveStandbyPoolResponse_1.default);
|
|
41157
|
+
});
|
|
41158
|
+
};
|
|
41159
|
+
/**
|
|
41160
|
+
* @summary Partially update standby pool by id
|
|
41161
|
+
* @param {string} poolId Id of the standby pool
|
|
41162
|
+
* @param {LiveStandbyPoolUpdate} liveStandbyPoolUpdate The updated standby pool object.
|
|
41163
|
+
* @throws {BitmovinError}
|
|
41164
|
+
* @memberof StandbyPoolsApi
|
|
41165
|
+
*/
|
|
41166
|
+
StandbyPoolsApi.prototype.patch = function (poolId, liveStandbyPoolUpdate) {
|
|
41167
|
+
var pathParamMap = {
|
|
41168
|
+
pool_id: poolId
|
|
41169
|
+
};
|
|
41170
|
+
return this.restClient.patch('/encoding/live/standby-pools/{pool_id}', pathParamMap, liveStandbyPoolUpdate).then(function (response) {
|
|
41171
|
+
return (0, Mapper_1.map)(response, LiveStandbyPoolDetails_1.default);
|
|
41172
|
+
});
|
|
41173
|
+
};
|
|
41174
|
+
return StandbyPoolsApi;
|
|
41175
|
+
}(BaseAPI_1.BaseAPI));
|
|
41176
|
+
exports["default"] = StandbyPoolsApi;
|
|
41177
|
+
|
|
41178
|
+
|
|
41179
|
+
/***/ }),
|
|
41180
|
+
|
|
41181
|
+
/***/ "./encoding/live/standbyPools/actions/ActionsApi.ts":
|
|
41182
|
+
/*!**********************************************************!*\
|
|
41183
|
+
!*** ./encoding/live/standbyPools/actions/ActionsApi.ts ***!
|
|
41184
|
+
\**********************************************************/
|
|
41185
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
41186
|
+
|
|
41187
|
+
"use strict";
|
|
41188
|
+
|
|
41189
|
+
var __extends = (this && this.__extends) || (function () {
|
|
41190
|
+
var extendStatics = function (d, b) {
|
|
41191
|
+
extendStatics = Object.setPrototypeOf ||
|
|
41192
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
41193
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
41194
|
+
return extendStatics(d, b);
|
|
41195
|
+
};
|
|
41196
|
+
return function (d, b) {
|
|
41197
|
+
if (typeof b !== "function" && b !== null)
|
|
41198
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
41199
|
+
extendStatics(d, b);
|
|
41200
|
+
function __() { this.constructor = d; }
|
|
41201
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
41202
|
+
};
|
|
41203
|
+
})();
|
|
41204
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
41205
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
41206
|
+
var Mapper_1 = __webpack_require__(/*! ../../../../common/Mapper */ "./common/Mapper.ts");
|
|
41207
|
+
var LiveStandbyPoolEncoding_1 = __webpack_require__(/*! ../../../../models/LiveStandbyPoolEncoding */ "./models/LiveStandbyPoolEncoding.ts");
|
|
41208
|
+
/**
|
|
41209
|
+
* ActionsApi - object-oriented interface
|
|
41210
|
+
* @export
|
|
41211
|
+
* @class ActionsApi
|
|
41212
|
+
* @extends {BaseAPI}
|
|
41213
|
+
*/
|
|
41214
|
+
var ActionsApi = /** @class */ (function (_super) {
|
|
41215
|
+
__extends(ActionsApi, _super);
|
|
41216
|
+
function ActionsApi(configuration) {
|
|
41217
|
+
return _super.call(this, configuration) || this;
|
|
41218
|
+
}
|
|
41219
|
+
/**
|
|
41220
|
+
* @summary Acquire an encoding from a standby pool
|
|
41221
|
+
* @param {string} poolId Id of the standby pool
|
|
41222
|
+
* @throws {BitmovinError}
|
|
41223
|
+
* @memberof ActionsApi
|
|
41224
|
+
*/
|
|
41225
|
+
ActionsApi.prototype.acquireEncoding = function (poolId) {
|
|
41226
|
+
var pathParamMap = {
|
|
41227
|
+
pool_id: poolId
|
|
41228
|
+
};
|
|
41229
|
+
return this.restClient.post('/encoding/live/standby-pools/{pool_id}/actions/acquire-encoding', pathParamMap).then(function (response) {
|
|
41230
|
+
return (0, Mapper_1.map)(response, LiveStandbyPoolEncoding_1.default);
|
|
41231
|
+
});
|
|
41232
|
+
};
|
|
41233
|
+
/**
|
|
41234
|
+
* @summary Delete error encodings from the standby pool
|
|
41235
|
+
* @param {string} poolId Id of the standby pool
|
|
41236
|
+
* @throws {BitmovinError}
|
|
41237
|
+
* @memberof ActionsApi
|
|
41238
|
+
*/
|
|
41239
|
+
ActionsApi.prototype.deleteErrorEncodings = function (poolId) {
|
|
41240
|
+
var pathParamMap = {
|
|
41241
|
+
pool_id: poolId
|
|
41242
|
+
};
|
|
41243
|
+
return this.restClient.post('/encoding/live/standby-pools/{pool_id}/actions/delete-error-encodings', pathParamMap).then(function (response) {
|
|
41244
|
+
return (0, Mapper_1.map)(response, LiveStandbyPoolEncoding_1.default);
|
|
41245
|
+
});
|
|
41246
|
+
};
|
|
41247
|
+
return ActionsApi;
|
|
41248
|
+
}(BaseAPI_1.BaseAPI));
|
|
41249
|
+
exports["default"] = ActionsApi;
|
|
41250
|
+
|
|
41251
|
+
|
|
41252
|
+
/***/ }),
|
|
41253
|
+
|
|
41254
|
+
/***/ "./encoding/live/standbyPools/encodings/EncodingsApi.ts":
|
|
41255
|
+
/*!**************************************************************!*\
|
|
41256
|
+
!*** ./encoding/live/standbyPools/encodings/EncodingsApi.ts ***!
|
|
41257
|
+
\**************************************************************/
|
|
41258
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
41259
|
+
|
|
41260
|
+
"use strict";
|
|
41261
|
+
|
|
41262
|
+
var __extends = (this && this.__extends) || (function () {
|
|
41263
|
+
var extendStatics = function (d, b) {
|
|
41264
|
+
extendStatics = Object.setPrototypeOf ||
|
|
41265
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
41266
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
41267
|
+
return extendStatics(d, b);
|
|
41268
|
+
};
|
|
41269
|
+
return function (d, b) {
|
|
41270
|
+
if (typeof b !== "function" && b !== null)
|
|
41271
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
41272
|
+
extendStatics(d, b);
|
|
41273
|
+
function __() { this.constructor = d; }
|
|
41274
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
41275
|
+
};
|
|
41276
|
+
})();
|
|
41277
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
41278
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
41279
|
+
var Mapper_1 = __webpack_require__(/*! ../../../../common/Mapper */ "./common/Mapper.ts");
|
|
41280
|
+
var BitmovinResponse_1 = __webpack_require__(/*! ../../../../models/BitmovinResponse */ "./models/BitmovinResponse.ts");
|
|
41281
|
+
var LiveStandbyPoolEncoding_1 = __webpack_require__(/*! ../../../../models/LiveStandbyPoolEncoding */ "./models/LiveStandbyPoolEncoding.ts");
|
|
41282
|
+
var PaginationResponse_1 = __webpack_require__(/*! ../../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
41283
|
+
var LiveStandbyPoolEncodingListQueryParams_1 = __webpack_require__(/*! ./LiveStandbyPoolEncodingListQueryParams */ "./encoding/live/standbyPools/encodings/LiveStandbyPoolEncodingListQueryParams.ts");
|
|
41284
|
+
/**
|
|
41285
|
+
* EncodingsApi - object-oriented interface
|
|
41286
|
+
* @export
|
|
41287
|
+
* @class EncodingsApi
|
|
41288
|
+
* @extends {BaseAPI}
|
|
41289
|
+
*/
|
|
41290
|
+
var EncodingsApi = /** @class */ (function (_super) {
|
|
41291
|
+
__extends(EncodingsApi, _super);
|
|
41292
|
+
function EncodingsApi(configuration) {
|
|
41293
|
+
return _super.call(this, configuration) || this;
|
|
41294
|
+
}
|
|
41295
|
+
/**
|
|
41296
|
+
* @summary Delete encoding from pool by id
|
|
41297
|
+
* @param {string} poolId Id of the standby pool
|
|
41298
|
+
* @param {string} id Id of the standby pool encoding
|
|
41299
|
+
* @throws {BitmovinError}
|
|
41300
|
+
* @memberof EncodingsApi
|
|
41301
|
+
*/
|
|
41302
|
+
EncodingsApi.prototype.delete = function (poolId, id) {
|
|
41303
|
+
var pathParamMap = {
|
|
41304
|
+
pool_id: poolId,
|
|
41305
|
+
id: id
|
|
41306
|
+
};
|
|
41307
|
+
return this.restClient.delete('/encoding/live/standby-pools/{pool_id}/encodings/{id}', pathParamMap).then(function (response) {
|
|
41308
|
+
return (0, Mapper_1.map)(response, BitmovinResponse_1.default);
|
|
41309
|
+
});
|
|
41310
|
+
};
|
|
41311
|
+
/**
|
|
41312
|
+
* @summary List encodings from a standby pool
|
|
41313
|
+
* @param {string} poolId Id of the standby pool
|
|
41314
|
+
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
41315
|
+
* @throws {BitmovinError}
|
|
41316
|
+
* @memberof EncodingsApi
|
|
41317
|
+
*/
|
|
41318
|
+
EncodingsApi.prototype.list = function (poolId, queryParameters) {
|
|
41319
|
+
var pathParamMap = {
|
|
41320
|
+
pool_id: poolId
|
|
41321
|
+
};
|
|
41322
|
+
var queryParams = {};
|
|
41323
|
+
if (typeof queryParameters === 'function') {
|
|
41324
|
+
queryParams = queryParameters(new LiveStandbyPoolEncodingListQueryParams_1.LiveStandbyPoolEncodingListQueryParamsBuilder()).buildQueryParams();
|
|
41325
|
+
}
|
|
41326
|
+
else if (queryParameters) {
|
|
41327
|
+
queryParams = queryParameters;
|
|
41328
|
+
}
|
|
41329
|
+
return this.restClient.get('/encoding/live/standby-pools/{pool_id}/encodings', pathParamMap, queryParams).then(function (response) {
|
|
41330
|
+
return new PaginationResponse_1.default(response, LiveStandbyPoolEncoding_1.default);
|
|
41331
|
+
});
|
|
41332
|
+
};
|
|
41333
|
+
return EncodingsApi;
|
|
41334
|
+
}(BaseAPI_1.BaseAPI));
|
|
41335
|
+
exports["default"] = EncodingsApi;
|
|
41336
|
+
|
|
41337
|
+
|
|
41338
|
+
/***/ }),
|
|
41339
|
+
|
|
41340
|
+
/***/ "./encoding/live/standbyPools/encodings/LiveStandbyPoolEncodingListQueryParams.ts":
|
|
41341
|
+
/*!****************************************************************************************!*\
|
|
41342
|
+
!*** ./encoding/live/standbyPools/encodings/LiveStandbyPoolEncodingListQueryParams.ts ***!
|
|
41343
|
+
\****************************************************************************************/
|
|
41344
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
41345
|
+
|
|
41346
|
+
"use strict";
|
|
41347
|
+
|
|
41348
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
41349
|
+
exports.LiveStandbyPoolEncodingListQueryParamsBuilder = void 0;
|
|
41350
|
+
var LiveStandbyPoolEncodingListQueryParamsBuilder = /** @class */ (function () {
|
|
41351
|
+
function LiveStandbyPoolEncodingListQueryParamsBuilder() {
|
|
41352
|
+
this.internalParams = {};
|
|
41353
|
+
}
|
|
41354
|
+
/**
|
|
41355
|
+
*
|
|
41356
|
+
* @param offset Index of the first item to return, starting at 0. Default is 0
|
|
41357
|
+
*/
|
|
41358
|
+
LiveStandbyPoolEncodingListQueryParamsBuilder.prototype.offset = function (offset) {
|
|
41359
|
+
this.internalParams.offset = offset;
|
|
41360
|
+
return this;
|
|
41361
|
+
};
|
|
41362
|
+
/**
|
|
41363
|
+
*
|
|
41364
|
+
* @param limit Maximum number of items to return. Default is 25, maximum is 100
|
|
41365
|
+
*/
|
|
41366
|
+
LiveStandbyPoolEncodingListQueryParamsBuilder.prototype.limit = function (limit) {
|
|
41367
|
+
this.internalParams.limit = limit;
|
|
41368
|
+
return this;
|
|
41369
|
+
};
|
|
41370
|
+
/**
|
|
41371
|
+
*
|
|
41372
|
+
* @param sort Order list result according a stream key attribute. The fields that can be used for sorting are: + `createdAt` + `name` + `status`
|
|
41373
|
+
*/
|
|
41374
|
+
LiveStandbyPoolEncodingListQueryParamsBuilder.prototype.sort = function (sort) {
|
|
41375
|
+
this.internalParams.sort = sort;
|
|
41376
|
+
return this;
|
|
41377
|
+
};
|
|
41378
|
+
/**
|
|
41379
|
+
*
|
|
41380
|
+
* @param status Filter standby encodings by status
|
|
41381
|
+
*/
|
|
41382
|
+
LiveStandbyPoolEncodingListQueryParamsBuilder.prototype.status = function (status) {
|
|
41383
|
+
this.internalParams.status = status;
|
|
41384
|
+
return this;
|
|
41385
|
+
};
|
|
41386
|
+
LiveStandbyPoolEncodingListQueryParamsBuilder.prototype.buildQueryParams = function () {
|
|
41387
|
+
return this.internalParams;
|
|
41388
|
+
};
|
|
41389
|
+
return LiveStandbyPoolEncodingListQueryParamsBuilder;
|
|
41390
|
+
}());
|
|
41391
|
+
exports.LiveStandbyPoolEncodingListQueryParamsBuilder = LiveStandbyPoolEncodingListQueryParamsBuilder;
|
|
41392
|
+
|
|
41393
|
+
|
|
41394
|
+
/***/ }),
|
|
41395
|
+
|
|
41396
|
+
/***/ "./encoding/live/standbyPools/logs/LiveStandbyPoolEventLogListQueryParams.ts":
|
|
41397
|
+
/*!***********************************************************************************!*\
|
|
41398
|
+
!*** ./encoding/live/standbyPools/logs/LiveStandbyPoolEventLogListQueryParams.ts ***!
|
|
41399
|
+
\***********************************************************************************/
|
|
41400
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
41401
|
+
|
|
41402
|
+
"use strict";
|
|
41403
|
+
|
|
41404
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
41405
|
+
exports.LiveStandbyPoolEventLogListQueryParamsBuilder = void 0;
|
|
41406
|
+
var LiveStandbyPoolEventLogListQueryParamsBuilder = /** @class */ (function () {
|
|
41407
|
+
function LiveStandbyPoolEventLogListQueryParamsBuilder() {
|
|
41408
|
+
this.internalParams = {};
|
|
41409
|
+
}
|
|
41410
|
+
/**
|
|
41411
|
+
*
|
|
41412
|
+
* @param offset Index of the first item to return, starting at 0. Default is 0
|
|
41413
|
+
*/
|
|
41414
|
+
LiveStandbyPoolEventLogListQueryParamsBuilder.prototype.offset = function (offset) {
|
|
41415
|
+
this.internalParams.offset = offset;
|
|
41416
|
+
return this;
|
|
41417
|
+
};
|
|
41418
|
+
/**
|
|
41419
|
+
*
|
|
41420
|
+
* @param limit Maximum number of items to return. Default is 25, maximum is 100
|
|
41421
|
+
*/
|
|
41422
|
+
LiveStandbyPoolEventLogListQueryParamsBuilder.prototype.limit = function (limit) {
|
|
41423
|
+
this.internalParams.limit = limit;
|
|
41424
|
+
return this;
|
|
41425
|
+
};
|
|
41426
|
+
/**
|
|
41427
|
+
*
|
|
41428
|
+
* @param sort Order list result according a event log attribute. The fields that can be used for sorting are: + `createdAt` + `eventType` + `standByPoolId`
|
|
41429
|
+
*/
|
|
41430
|
+
LiveStandbyPoolEventLogListQueryParamsBuilder.prototype.sort = function (sort) {
|
|
41431
|
+
this.internalParams.sort = sort;
|
|
41432
|
+
return this;
|
|
41433
|
+
};
|
|
41434
|
+
/**
|
|
41435
|
+
*
|
|
41436
|
+
* @param eventType Filter event logs by log type. Allowed values are: + `INFO` + `WARN` + `ERROR`
|
|
41437
|
+
*/
|
|
41438
|
+
LiveStandbyPoolEventLogListQueryParamsBuilder.prototype.eventType = function (eventType) {
|
|
41439
|
+
this.internalParams.eventType = eventType;
|
|
41440
|
+
return this;
|
|
41441
|
+
};
|
|
41442
|
+
LiveStandbyPoolEventLogListQueryParamsBuilder.prototype.buildQueryParams = function () {
|
|
41443
|
+
return this.internalParams;
|
|
41444
|
+
};
|
|
41445
|
+
return LiveStandbyPoolEventLogListQueryParamsBuilder;
|
|
41446
|
+
}());
|
|
41447
|
+
exports.LiveStandbyPoolEventLogListQueryParamsBuilder = LiveStandbyPoolEventLogListQueryParamsBuilder;
|
|
41448
|
+
|
|
41449
|
+
|
|
41450
|
+
/***/ }),
|
|
41451
|
+
|
|
41452
|
+
/***/ "./encoding/live/standbyPools/logs/LogsApi.ts":
|
|
41453
|
+
/*!****************************************************!*\
|
|
41454
|
+
!*** ./encoding/live/standbyPools/logs/LogsApi.ts ***!
|
|
41455
|
+
\****************************************************/
|
|
41456
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
41457
|
+
|
|
41458
|
+
"use strict";
|
|
41459
|
+
|
|
41460
|
+
var __extends = (this && this.__extends) || (function () {
|
|
41461
|
+
var extendStatics = function (d, b) {
|
|
41462
|
+
extendStatics = Object.setPrototypeOf ||
|
|
41463
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
41464
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
41465
|
+
return extendStatics(d, b);
|
|
41466
|
+
};
|
|
41467
|
+
return function (d, b) {
|
|
41468
|
+
if (typeof b !== "function" && b !== null)
|
|
41469
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
41470
|
+
extendStatics(d, b);
|
|
41471
|
+
function __() { this.constructor = d; }
|
|
41472
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
41473
|
+
};
|
|
41474
|
+
})();
|
|
41475
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
41476
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
41477
|
+
var LiveStandbyPoolEventLog_1 = __webpack_require__(/*! ../../../../models/LiveStandbyPoolEventLog */ "./models/LiveStandbyPoolEventLog.ts");
|
|
41478
|
+
var PaginationResponse_1 = __webpack_require__(/*! ../../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
41479
|
+
var LiveStandbyPoolEventLogListQueryParams_1 = __webpack_require__(/*! ./LiveStandbyPoolEventLogListQueryParams */ "./encoding/live/standbyPools/logs/LiveStandbyPoolEventLogListQueryParams.ts");
|
|
41480
|
+
/**
|
|
41481
|
+
* LogsApi - object-oriented interface
|
|
41482
|
+
* @export
|
|
41483
|
+
* @class LogsApi
|
|
41484
|
+
* @extends {BaseAPI}
|
|
41485
|
+
*/
|
|
41486
|
+
var LogsApi = /** @class */ (function (_super) {
|
|
41487
|
+
__extends(LogsApi, _super);
|
|
41488
|
+
function LogsApi(configuration) {
|
|
41489
|
+
return _super.call(this, configuration) || this;
|
|
41490
|
+
}
|
|
41491
|
+
/**
|
|
41492
|
+
* @summary List event logs for a standby pool
|
|
41493
|
+
* @param {string} poolId Id of the standby pool
|
|
41494
|
+
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
41495
|
+
* @throws {BitmovinError}
|
|
41496
|
+
* @memberof LogsApi
|
|
41497
|
+
*/
|
|
41498
|
+
LogsApi.prototype.list = function (poolId, queryParameters) {
|
|
41499
|
+
var pathParamMap = {
|
|
41500
|
+
pool_id: poolId
|
|
41501
|
+
};
|
|
41502
|
+
var queryParams = {};
|
|
41503
|
+
if (typeof queryParameters === 'function') {
|
|
41504
|
+
queryParams = queryParameters(new LiveStandbyPoolEventLogListQueryParams_1.LiveStandbyPoolEventLogListQueryParamsBuilder()).buildQueryParams();
|
|
41505
|
+
}
|
|
41506
|
+
else if (queryParameters) {
|
|
41507
|
+
queryParams = queryParameters;
|
|
41508
|
+
}
|
|
41509
|
+
return this.restClient.get('/encoding/live/standby-pools/{pool_id}/logs', pathParamMap, queryParams).then(function (response) {
|
|
41510
|
+
return new PaginationResponse_1.default(response, LiveStandbyPoolEventLog_1.default);
|
|
41511
|
+
});
|
|
41512
|
+
};
|
|
41513
|
+
return LogsApi;
|
|
41514
|
+
}(BaseAPI_1.BaseAPI));
|
|
41515
|
+
exports["default"] = LogsApi;
|
|
41516
|
+
|
|
41517
|
+
|
|
41058
41518
|
/***/ }),
|
|
41059
41519
|
|
|
41060
41520
|
/***/ "./encoding/live/streamKeys/StreamKeyListQueryParams.ts":
|
|
@@ -74261,6 +74721,9 @@ var LiveEncodingStatsEventDetails = /** @class */ (function () {
|
|
|
74261
74721
|
return;
|
|
74262
74722
|
}
|
|
74263
74723
|
this.eventType = (0, Mapper_1.map)(obj.eventType);
|
|
74724
|
+
this.message = (0, Mapper_1.map)(obj.message);
|
|
74725
|
+
this.midRollAssetNames = (0, Mapper_1.mapArray)(obj.midRollAssetNames);
|
|
74726
|
+
this.durationInSeconds = (0, Mapper_1.map)(obj.durationInSeconds);
|
|
74264
74727
|
}
|
|
74265
74728
|
return LiveEncodingStatsEventDetails;
|
|
74266
74729
|
}());
|
|
@@ -74539,6 +75002,434 @@ var LiveOptionsType;
|
|
|
74539
75002
|
exports["default"] = LiveOptionsType;
|
|
74540
75003
|
|
|
74541
75004
|
|
|
75005
|
+
/***/ }),
|
|
75006
|
+
|
|
75007
|
+
/***/ "./models/LiveStandbyPoolDetails.ts":
|
|
75008
|
+
/*!******************************************!*\
|
|
75009
|
+
!*** ./models/LiveStandbyPoolDetails.ts ***!
|
|
75010
|
+
\******************************************/
|
|
75011
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
75012
|
+
|
|
75013
|
+
"use strict";
|
|
75014
|
+
|
|
75015
|
+
var __extends = (this && this.__extends) || (function () {
|
|
75016
|
+
var extendStatics = function (d, b) {
|
|
75017
|
+
extendStatics = Object.setPrototypeOf ||
|
|
75018
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
75019
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
75020
|
+
return extendStatics(d, b);
|
|
75021
|
+
};
|
|
75022
|
+
return function (d, b) {
|
|
75023
|
+
if (typeof b !== "function" && b !== null)
|
|
75024
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
75025
|
+
extendStatics(d, b);
|
|
75026
|
+
function __() { this.constructor = d; }
|
|
75027
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
75028
|
+
};
|
|
75029
|
+
})();
|
|
75030
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75031
|
+
exports.LiveStandbyPoolDetails = void 0;
|
|
75032
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75033
|
+
var LiveStandbyPoolResponse_1 = __webpack_require__(/*! ./LiveStandbyPoolResponse */ "./models/LiveStandbyPoolResponse.ts");
|
|
75034
|
+
/**
|
|
75035
|
+
* @export
|
|
75036
|
+
* @class LiveStandbyPoolDetails
|
|
75037
|
+
*/
|
|
75038
|
+
var LiveStandbyPoolDetails = /** @class */ (function (_super) {
|
|
75039
|
+
__extends(LiveStandbyPoolDetails, _super);
|
|
75040
|
+
function LiveStandbyPoolDetails(obj) {
|
|
75041
|
+
var _this = _super.call(this, obj) || this;
|
|
75042
|
+
if (!obj) {
|
|
75043
|
+
return _this;
|
|
75044
|
+
}
|
|
75045
|
+
_this.encodingTemplate = (0, Mapper_1.map)(obj.encodingTemplate);
|
|
75046
|
+
return _this;
|
|
75047
|
+
}
|
|
75048
|
+
return LiveStandbyPoolDetails;
|
|
75049
|
+
}(LiveStandbyPoolResponse_1.default));
|
|
75050
|
+
exports.LiveStandbyPoolDetails = LiveStandbyPoolDetails;
|
|
75051
|
+
exports["default"] = LiveStandbyPoolDetails;
|
|
75052
|
+
|
|
75053
|
+
|
|
75054
|
+
/***/ }),
|
|
75055
|
+
|
|
75056
|
+
/***/ "./models/LiveStandbyPoolEncoding.ts":
|
|
75057
|
+
/*!*******************************************!*\
|
|
75058
|
+
!*** ./models/LiveStandbyPoolEncoding.ts ***!
|
|
75059
|
+
\*******************************************/
|
|
75060
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
75061
|
+
|
|
75062
|
+
"use strict";
|
|
75063
|
+
|
|
75064
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75065
|
+
exports.LiveStandbyPoolEncoding = void 0;
|
|
75066
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75067
|
+
var LiveStandbyPoolEncodingIngestPoint_1 = __webpack_require__(/*! ./LiveStandbyPoolEncodingIngestPoint */ "./models/LiveStandbyPoolEncodingIngestPoint.ts");
|
|
75068
|
+
var LiveStandbyPoolEncodingManifest_1 = __webpack_require__(/*! ./LiveStandbyPoolEncodingManifest */ "./models/LiveStandbyPoolEncodingManifest.ts");
|
|
75069
|
+
/**
|
|
75070
|
+
* @export
|
|
75071
|
+
* @class LiveStandbyPoolEncoding
|
|
75072
|
+
*/
|
|
75073
|
+
var LiveStandbyPoolEncoding = /** @class */ (function () {
|
|
75074
|
+
function LiveStandbyPoolEncoding(obj) {
|
|
75075
|
+
if (!obj) {
|
|
75076
|
+
return;
|
|
75077
|
+
}
|
|
75078
|
+
this.id = (0, Mapper_1.map)(obj.id);
|
|
75079
|
+
this.createdAt = (0, Mapper_1.map)(obj.createdAt);
|
|
75080
|
+
this.modifiedAt = (0, Mapper_1.map)(obj.modifiedAt);
|
|
75081
|
+
this.encodingId = (0, Mapper_1.map)(obj.encodingId);
|
|
75082
|
+
this.manifests = (0, Mapper_1.mapArray)(obj.manifests, LiveStandbyPoolEncodingManifest_1.default);
|
|
75083
|
+
this.ingestPoints = (0, Mapper_1.mapArray)(obj.ingestPoints, LiveStandbyPoolEncodingIngestPoint_1.default);
|
|
75084
|
+
this.status = (0, Mapper_1.map)(obj.status);
|
|
75085
|
+
}
|
|
75086
|
+
return LiveStandbyPoolEncoding;
|
|
75087
|
+
}());
|
|
75088
|
+
exports.LiveStandbyPoolEncoding = LiveStandbyPoolEncoding;
|
|
75089
|
+
exports["default"] = LiveStandbyPoolEncoding;
|
|
75090
|
+
|
|
75091
|
+
|
|
75092
|
+
/***/ }),
|
|
75093
|
+
|
|
75094
|
+
/***/ "./models/LiveStandbyPoolEncodingIngestPoint.ts":
|
|
75095
|
+
/*!******************************************************!*\
|
|
75096
|
+
!*** ./models/LiveStandbyPoolEncodingIngestPoint.ts ***!
|
|
75097
|
+
\******************************************************/
|
|
75098
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
75099
|
+
|
|
75100
|
+
"use strict";
|
|
75101
|
+
|
|
75102
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75103
|
+
exports.LiveStandbyPoolEncodingIngestPoint = void 0;
|
|
75104
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75105
|
+
/**
|
|
75106
|
+
* @export
|
|
75107
|
+
* @class LiveStandbyPoolEncodingIngestPoint
|
|
75108
|
+
*/
|
|
75109
|
+
var LiveStandbyPoolEncodingIngestPoint = /** @class */ (function () {
|
|
75110
|
+
function LiveStandbyPoolEncodingIngestPoint(obj) {
|
|
75111
|
+
if (!obj) {
|
|
75112
|
+
return;
|
|
75113
|
+
}
|
|
75114
|
+
this.streamBaseUrl = (0, Mapper_1.map)(obj.streamBaseUrl);
|
|
75115
|
+
this.streamKey = (0, Mapper_1.map)(obj.streamKey);
|
|
75116
|
+
}
|
|
75117
|
+
return LiveStandbyPoolEncodingIngestPoint;
|
|
75118
|
+
}());
|
|
75119
|
+
exports.LiveStandbyPoolEncodingIngestPoint = LiveStandbyPoolEncodingIngestPoint;
|
|
75120
|
+
exports["default"] = LiveStandbyPoolEncodingIngestPoint;
|
|
75121
|
+
|
|
75122
|
+
|
|
75123
|
+
/***/ }),
|
|
75124
|
+
|
|
75125
|
+
/***/ "./models/LiveStandbyPoolEncodingManifest.ts":
|
|
75126
|
+
/*!***************************************************!*\
|
|
75127
|
+
!*** ./models/LiveStandbyPoolEncodingManifest.ts ***!
|
|
75128
|
+
\***************************************************/
|
|
75129
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
75130
|
+
|
|
75131
|
+
"use strict";
|
|
75132
|
+
|
|
75133
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75134
|
+
exports.LiveStandbyPoolEncodingManifest = void 0;
|
|
75135
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75136
|
+
/**
|
|
75137
|
+
* @export
|
|
75138
|
+
* @class LiveStandbyPoolEncodingManifest
|
|
75139
|
+
*/
|
|
75140
|
+
var LiveStandbyPoolEncodingManifest = /** @class */ (function () {
|
|
75141
|
+
function LiveStandbyPoolEncodingManifest(obj) {
|
|
75142
|
+
if (!obj) {
|
|
75143
|
+
return;
|
|
75144
|
+
}
|
|
75145
|
+
this.url = (0, Mapper_1.map)(obj.url);
|
|
75146
|
+
this.manifestId = (0, Mapper_1.map)(obj.manifestId);
|
|
75147
|
+
this.type = (0, Mapper_1.map)(obj.type);
|
|
75148
|
+
}
|
|
75149
|
+
return LiveStandbyPoolEncodingManifest;
|
|
75150
|
+
}());
|
|
75151
|
+
exports.LiveStandbyPoolEncodingManifest = LiveStandbyPoolEncodingManifest;
|
|
75152
|
+
exports["default"] = LiveStandbyPoolEncodingManifest;
|
|
75153
|
+
|
|
75154
|
+
|
|
75155
|
+
/***/ }),
|
|
75156
|
+
|
|
75157
|
+
/***/ "./models/LiveStandbyPoolEncodingManifestType.ts":
|
|
75158
|
+
/*!*******************************************************!*\
|
|
75159
|
+
!*** ./models/LiveStandbyPoolEncodingManifestType.ts ***!
|
|
75160
|
+
\*******************************************************/
|
|
75161
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
75162
|
+
|
|
75163
|
+
"use strict";
|
|
75164
|
+
|
|
75165
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75166
|
+
exports.LiveStandbyPoolEncodingManifestType = void 0;
|
|
75167
|
+
/**
|
|
75168
|
+
* Type of the manifest
|
|
75169
|
+
* @export
|
|
75170
|
+
* @enum {string}
|
|
75171
|
+
*/
|
|
75172
|
+
var LiveStandbyPoolEncodingManifestType;
|
|
75173
|
+
(function (LiveStandbyPoolEncodingManifestType) {
|
|
75174
|
+
LiveStandbyPoolEncodingManifestType["DASH"] = "DASH";
|
|
75175
|
+
LiveStandbyPoolEncodingManifestType["HLS"] = "HLS";
|
|
75176
|
+
})(LiveStandbyPoolEncodingManifestType || (exports.LiveStandbyPoolEncodingManifestType = LiveStandbyPoolEncodingManifestType = {}));
|
|
75177
|
+
exports["default"] = LiveStandbyPoolEncodingManifestType;
|
|
75178
|
+
|
|
75179
|
+
|
|
75180
|
+
/***/ }),
|
|
75181
|
+
|
|
75182
|
+
/***/ "./models/LiveStandbyPoolEncodingStatus.ts":
|
|
75183
|
+
/*!*************************************************!*\
|
|
75184
|
+
!*** ./models/LiveStandbyPoolEncodingStatus.ts ***!
|
|
75185
|
+
\*************************************************/
|
|
75186
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
75187
|
+
|
|
75188
|
+
"use strict";
|
|
75189
|
+
|
|
75190
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75191
|
+
exports.LiveStandbyPoolEncodingStatus = void 0;
|
|
75192
|
+
/**
|
|
75193
|
+
* Status of the standby pool encoding
|
|
75194
|
+
* @export
|
|
75195
|
+
* @enum {string}
|
|
75196
|
+
*/
|
|
75197
|
+
var LiveStandbyPoolEncodingStatus;
|
|
75198
|
+
(function (LiveStandbyPoolEncodingStatus) {
|
|
75199
|
+
LiveStandbyPoolEncodingStatus["TO_BE_CREATED"] = "TO_BE_CREATED";
|
|
75200
|
+
LiveStandbyPoolEncodingStatus["CREATING"] = "CREATING";
|
|
75201
|
+
LiveStandbyPoolEncodingStatus["PREPARING"] = "PREPARING";
|
|
75202
|
+
LiveStandbyPoolEncodingStatus["READY"] = "READY";
|
|
75203
|
+
LiveStandbyPoolEncodingStatus["TO_BE_DELETED"] = "TO_BE_DELETED";
|
|
75204
|
+
LiveStandbyPoolEncodingStatus["DELETING"] = "DELETING";
|
|
75205
|
+
LiveStandbyPoolEncodingStatus["ACQUIRED"] = "ACQUIRED";
|
|
75206
|
+
LiveStandbyPoolEncodingStatus["ERROR"] = "ERROR";
|
|
75207
|
+
})(LiveStandbyPoolEncodingStatus || (exports.LiveStandbyPoolEncodingStatus = LiveStandbyPoolEncodingStatus = {}));
|
|
75208
|
+
exports["default"] = LiveStandbyPoolEncodingStatus;
|
|
75209
|
+
|
|
75210
|
+
|
|
75211
|
+
/***/ }),
|
|
75212
|
+
|
|
75213
|
+
/***/ "./models/LiveStandbyPoolEventLog.ts":
|
|
75214
|
+
/*!*******************************************!*\
|
|
75215
|
+
!*** ./models/LiveStandbyPoolEventLog.ts ***!
|
|
75216
|
+
\*******************************************/
|
|
75217
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
75218
|
+
|
|
75219
|
+
"use strict";
|
|
75220
|
+
|
|
75221
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75222
|
+
exports.LiveStandbyPoolEventLog = void 0;
|
|
75223
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75224
|
+
/**
|
|
75225
|
+
* @export
|
|
75226
|
+
* @class LiveStandbyPoolEventLog
|
|
75227
|
+
*/
|
|
75228
|
+
var LiveStandbyPoolEventLog = /** @class */ (function () {
|
|
75229
|
+
function LiveStandbyPoolEventLog(obj) {
|
|
75230
|
+
if (!obj) {
|
|
75231
|
+
return;
|
|
75232
|
+
}
|
|
75233
|
+
this.id = (0, Mapper_1.map)(obj.id);
|
|
75234
|
+
this.standbyPoolId = (0, Mapper_1.map)(obj.standbyPoolId);
|
|
75235
|
+
this.standbyPoolEncodingId = (0, Mapper_1.map)(obj.standbyPoolEncodingId);
|
|
75236
|
+
this.createdAt = (0, Mapper_1.map)(obj.createdAt);
|
|
75237
|
+
this.message = (0, Mapper_1.map)(obj.message);
|
|
75238
|
+
this.details = (0, Mapper_1.map)(obj.details);
|
|
75239
|
+
this.eventType = (0, Mapper_1.map)(obj.eventType);
|
|
75240
|
+
}
|
|
75241
|
+
return LiveStandbyPoolEventLog;
|
|
75242
|
+
}());
|
|
75243
|
+
exports.LiveStandbyPoolEventLog = LiveStandbyPoolEventLog;
|
|
75244
|
+
exports["default"] = LiveStandbyPoolEventLog;
|
|
75245
|
+
|
|
75246
|
+
|
|
75247
|
+
/***/ }),
|
|
75248
|
+
|
|
75249
|
+
/***/ "./models/LiveStandbyPoolEventLogType.ts":
|
|
75250
|
+
/*!***********************************************!*\
|
|
75251
|
+
!*** ./models/LiveStandbyPoolEventLogType.ts ***!
|
|
75252
|
+
\***********************************************/
|
|
75253
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
75254
|
+
|
|
75255
|
+
"use strict";
|
|
75256
|
+
|
|
75257
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75258
|
+
exports.LiveStandbyPoolEventLogType = void 0;
|
|
75259
|
+
/**
|
|
75260
|
+
* Event log type of the standby pool
|
|
75261
|
+
* @export
|
|
75262
|
+
* @enum {string}
|
|
75263
|
+
*/
|
|
75264
|
+
var LiveStandbyPoolEventLogType;
|
|
75265
|
+
(function (LiveStandbyPoolEventLogType) {
|
|
75266
|
+
LiveStandbyPoolEventLogType["INFO"] = "INFO";
|
|
75267
|
+
LiveStandbyPoolEventLogType["WARN"] = "WARN";
|
|
75268
|
+
LiveStandbyPoolEventLogType["ERROR"] = "ERROR";
|
|
75269
|
+
})(LiveStandbyPoolEventLogType || (exports.LiveStandbyPoolEventLogType = LiveStandbyPoolEventLogType = {}));
|
|
75270
|
+
exports["default"] = LiveStandbyPoolEventLogType;
|
|
75271
|
+
|
|
75272
|
+
|
|
75273
|
+
/***/ }),
|
|
75274
|
+
|
|
75275
|
+
/***/ "./models/LiveStandbyPoolRequest.ts":
|
|
75276
|
+
/*!******************************************!*\
|
|
75277
|
+
!*** ./models/LiveStandbyPoolRequest.ts ***!
|
|
75278
|
+
\******************************************/
|
|
75279
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
75280
|
+
|
|
75281
|
+
"use strict";
|
|
75282
|
+
|
|
75283
|
+
var __extends = (this && this.__extends) || (function () {
|
|
75284
|
+
var extendStatics = function (d, b) {
|
|
75285
|
+
extendStatics = Object.setPrototypeOf ||
|
|
75286
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
75287
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
75288
|
+
return extendStatics(d, b);
|
|
75289
|
+
};
|
|
75290
|
+
return function (d, b) {
|
|
75291
|
+
if (typeof b !== "function" && b !== null)
|
|
75292
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
75293
|
+
extendStatics(d, b);
|
|
75294
|
+
function __() { this.constructor = d; }
|
|
75295
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
75296
|
+
};
|
|
75297
|
+
})();
|
|
75298
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75299
|
+
exports.LiveStandbyPoolRequest = void 0;
|
|
75300
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75301
|
+
var BitmovinResource_1 = __webpack_require__(/*! ./BitmovinResource */ "./models/BitmovinResource.ts");
|
|
75302
|
+
/**
|
|
75303
|
+
* @export
|
|
75304
|
+
* @class LiveStandbyPoolRequest
|
|
75305
|
+
*/
|
|
75306
|
+
var LiveStandbyPoolRequest = /** @class */ (function (_super) {
|
|
75307
|
+
__extends(LiveStandbyPoolRequest, _super);
|
|
75308
|
+
function LiveStandbyPoolRequest(obj) {
|
|
75309
|
+
var _this = _super.call(this, obj) || this;
|
|
75310
|
+
if (!obj) {
|
|
75311
|
+
return _this;
|
|
75312
|
+
}
|
|
75313
|
+
_this.targetPoolSize = (0, Mapper_1.map)(obj.targetPoolSize);
|
|
75314
|
+
_this.encodingTemplate = (0, Mapper_1.map)(obj.encodingTemplate);
|
|
75315
|
+
return _this;
|
|
75316
|
+
}
|
|
75317
|
+
return LiveStandbyPoolRequest;
|
|
75318
|
+
}(BitmovinResource_1.default));
|
|
75319
|
+
exports.LiveStandbyPoolRequest = LiveStandbyPoolRequest;
|
|
75320
|
+
exports["default"] = LiveStandbyPoolRequest;
|
|
75321
|
+
|
|
75322
|
+
|
|
75323
|
+
/***/ }),
|
|
75324
|
+
|
|
75325
|
+
/***/ "./models/LiveStandbyPoolResponse.ts":
|
|
75326
|
+
/*!*******************************************!*\
|
|
75327
|
+
!*** ./models/LiveStandbyPoolResponse.ts ***!
|
|
75328
|
+
\*******************************************/
|
|
75329
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
75330
|
+
|
|
75331
|
+
"use strict";
|
|
75332
|
+
|
|
75333
|
+
var __extends = (this && this.__extends) || (function () {
|
|
75334
|
+
var extendStatics = function (d, b) {
|
|
75335
|
+
extendStatics = Object.setPrototypeOf ||
|
|
75336
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
75337
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
75338
|
+
return extendStatics(d, b);
|
|
75339
|
+
};
|
|
75340
|
+
return function (d, b) {
|
|
75341
|
+
if (typeof b !== "function" && b !== null)
|
|
75342
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
75343
|
+
extendStatics(d, b);
|
|
75344
|
+
function __() { this.constructor = d; }
|
|
75345
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
75346
|
+
};
|
|
75347
|
+
})();
|
|
75348
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75349
|
+
exports.LiveStandbyPoolResponse = void 0;
|
|
75350
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75351
|
+
var BitmovinResource_1 = __webpack_require__(/*! ./BitmovinResource */ "./models/BitmovinResource.ts");
|
|
75352
|
+
/**
|
|
75353
|
+
* @export
|
|
75354
|
+
* @class LiveStandbyPoolResponse
|
|
75355
|
+
*/
|
|
75356
|
+
var LiveStandbyPoolResponse = /** @class */ (function (_super) {
|
|
75357
|
+
__extends(LiveStandbyPoolResponse, _super);
|
|
75358
|
+
function LiveStandbyPoolResponse(obj) {
|
|
75359
|
+
var _this = _super.call(this, obj) || this;
|
|
75360
|
+
if (!obj) {
|
|
75361
|
+
return _this;
|
|
75362
|
+
}
|
|
75363
|
+
_this.targetPoolSize = (0, Mapper_1.map)(obj.targetPoolSize);
|
|
75364
|
+
_this.readyEncodings = (0, Mapper_1.map)(obj.readyEncodings);
|
|
75365
|
+
_this.preparingEncodings = (0, Mapper_1.map)(obj.preparingEncodings);
|
|
75366
|
+
_this.errorEncodings = (0, Mapper_1.map)(obj.errorEncodings);
|
|
75367
|
+
_this.encodingTemplateName = (0, Mapper_1.map)(obj.encodingTemplateName);
|
|
75368
|
+
_this.poolStatus = (0, Mapper_1.map)(obj.poolStatus);
|
|
75369
|
+
return _this;
|
|
75370
|
+
}
|
|
75371
|
+
return LiveStandbyPoolResponse;
|
|
75372
|
+
}(BitmovinResource_1.default));
|
|
75373
|
+
exports.LiveStandbyPoolResponse = LiveStandbyPoolResponse;
|
|
75374
|
+
exports["default"] = LiveStandbyPoolResponse;
|
|
75375
|
+
|
|
75376
|
+
|
|
75377
|
+
/***/ }),
|
|
75378
|
+
|
|
75379
|
+
/***/ "./models/LiveStandbyPoolStatus.ts":
|
|
75380
|
+
/*!*****************************************!*\
|
|
75381
|
+
!*** ./models/LiveStandbyPoolStatus.ts ***!
|
|
75382
|
+
\*****************************************/
|
|
75383
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
75384
|
+
|
|
75385
|
+
"use strict";
|
|
75386
|
+
|
|
75387
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75388
|
+
exports.LiveStandbyPoolStatus = void 0;
|
|
75389
|
+
/**
|
|
75390
|
+
* Status of the live standby pool
|
|
75391
|
+
* @export
|
|
75392
|
+
* @enum {string}
|
|
75393
|
+
*/
|
|
75394
|
+
var LiveStandbyPoolStatus;
|
|
75395
|
+
(function (LiveStandbyPoolStatus) {
|
|
75396
|
+
LiveStandbyPoolStatus["HEALTHY"] = "HEALTHY";
|
|
75397
|
+
LiveStandbyPoolStatus["ERROR"] = "ERROR";
|
|
75398
|
+
})(LiveStandbyPoolStatus || (exports.LiveStandbyPoolStatus = LiveStandbyPoolStatus = {}));
|
|
75399
|
+
exports["default"] = LiveStandbyPoolStatus;
|
|
75400
|
+
|
|
75401
|
+
|
|
75402
|
+
/***/ }),
|
|
75403
|
+
|
|
75404
|
+
/***/ "./models/LiveStandbyPoolUpdate.ts":
|
|
75405
|
+
/*!*****************************************!*\
|
|
75406
|
+
!*** ./models/LiveStandbyPoolUpdate.ts ***!
|
|
75407
|
+
\*****************************************/
|
|
75408
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
75409
|
+
|
|
75410
|
+
"use strict";
|
|
75411
|
+
|
|
75412
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75413
|
+
exports.LiveStandbyPoolUpdate = void 0;
|
|
75414
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75415
|
+
/**
|
|
75416
|
+
* @export
|
|
75417
|
+
* @class LiveStandbyPoolUpdate
|
|
75418
|
+
*/
|
|
75419
|
+
var LiveStandbyPoolUpdate = /** @class */ (function () {
|
|
75420
|
+
function LiveStandbyPoolUpdate(obj) {
|
|
75421
|
+
if (!obj) {
|
|
75422
|
+
return;
|
|
75423
|
+
}
|
|
75424
|
+
this.targetPoolSize = (0, Mapper_1.map)(obj.targetPoolSize);
|
|
75425
|
+
this.encodingTemplate = (0, Mapper_1.map)(obj.encodingTemplate);
|
|
75426
|
+
}
|
|
75427
|
+
return LiveStandbyPoolUpdate;
|
|
75428
|
+
}());
|
|
75429
|
+
exports.LiveStandbyPoolUpdate = LiveStandbyPoolUpdate;
|
|
75430
|
+
exports["default"] = LiveStandbyPoolUpdate;
|
|
75431
|
+
|
|
75432
|
+
|
|
74542
75433
|
/***/ }),
|
|
74543
75434
|
|
|
74544
75435
|
/***/ "./models/LocalInput.ts":
|
|
@@ -75550,7 +76441,6 @@ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts")
|
|
|
75550
76441
|
var DolbyVisionMuxingConfiguration_1 = __webpack_require__(/*! ./DolbyVisionMuxingConfiguration */ "./models/DolbyVisionMuxingConfiguration.ts");
|
|
75551
76442
|
var Muxing_1 = __webpack_require__(/*! ./Muxing */ "./models/Muxing.ts");
|
|
75552
76443
|
var MuxingType_1 = __webpack_require__(/*! ./MuxingType */ "./models/MuxingType.ts");
|
|
75553
|
-
var TimeCode_1 = __webpack_require__(/*! ./TimeCode */ "./models/TimeCode.ts");
|
|
75554
76444
|
/**
|
|
75555
76445
|
* @export
|
|
75556
76446
|
* @class Mp4Muxing
|
|
@@ -75570,7 +76460,6 @@ var Mp4Muxing = /** @class */ (function (_super) {
|
|
|
75570
76460
|
}
|
|
75571
76461
|
_this.filename = (0, Mapper_1.map)(obj.filename);
|
|
75572
76462
|
_this.fragmentDuration = (0, Mapper_1.map)(obj.fragmentDuration);
|
|
75573
|
-
_this.timeCode = (0, Mapper_1.map)(obj.timeCode, TimeCode_1.default);
|
|
75574
76463
|
_this.fragmentedMP4MuxingManifestType = (0, Mapper_1.map)(obj.fragmentedMP4MuxingManifestType);
|
|
75575
76464
|
_this.dolbyVisionConfiguration = (0, Mapper_1.map)(obj.dolbyVisionConfiguration, DolbyVisionMuxingConfiguration_1.default);
|
|
75576
76465
|
return _this;
|
|
@@ -85896,36 +86785,6 @@ exports.TimeBasedTrimmingInputStream = TimeBasedTrimmingInputStream;
|
|
|
85896
86785
|
exports["default"] = TimeBasedTrimmingInputStream;
|
|
85897
86786
|
|
|
85898
86787
|
|
|
85899
|
-
/***/ }),
|
|
85900
|
-
|
|
85901
|
-
/***/ "./models/TimeCode.ts":
|
|
85902
|
-
/*!****************************!*\
|
|
85903
|
-
!*** ./models/TimeCode.ts ***!
|
|
85904
|
-
\****************************/
|
|
85905
|
-
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
85906
|
-
|
|
85907
|
-
"use strict";
|
|
85908
|
-
|
|
85909
|
-
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
85910
|
-
exports.TimeCode = void 0;
|
|
85911
|
-
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
85912
|
-
/**
|
|
85913
|
-
* @export
|
|
85914
|
-
* @class TimeCode
|
|
85915
|
-
*/
|
|
85916
|
-
var TimeCode = /** @class */ (function () {
|
|
85917
|
-
function TimeCode(obj) {
|
|
85918
|
-
if (!obj) {
|
|
85919
|
-
return;
|
|
85920
|
-
}
|
|
85921
|
-
this.timeCodeStart = (0, Mapper_1.map)(obj.timeCodeStart);
|
|
85922
|
-
}
|
|
85923
|
-
return TimeCode;
|
|
85924
|
-
}());
|
|
85925
|
-
exports.TimeCode = TimeCode;
|
|
85926
|
-
exports["default"] = TimeCode;
|
|
85927
|
-
|
|
85928
|
-
|
|
85929
86788
|
/***/ }),
|
|
85930
86789
|
|
|
85931
86790
|
/***/ "./models/TimeSpan.ts":
|
|
@@ -88910,6 +89769,18 @@ __exportStar(__webpack_require__(/*! ./LiveOptionsEntry */ "./models/LiveOptions
|
|
|
88910
89769
|
__exportStar(__webpack_require__(/*! ./LiveOptionsStatistics */ "./models/LiveOptionsStatistics.ts"), exports);
|
|
88911
89770
|
__exportStar(__webpack_require__(/*! ./LiveOptionsSummary */ "./models/LiveOptionsSummary.ts"), exports);
|
|
88912
89771
|
__exportStar(__webpack_require__(/*! ./LiveOptionsType */ "./models/LiveOptionsType.ts"), exports);
|
|
89772
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolDetails */ "./models/LiveStandbyPoolDetails.ts"), exports);
|
|
89773
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolEncoding */ "./models/LiveStandbyPoolEncoding.ts"), exports);
|
|
89774
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolEncodingIngestPoint */ "./models/LiveStandbyPoolEncodingIngestPoint.ts"), exports);
|
|
89775
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolEncodingManifest */ "./models/LiveStandbyPoolEncodingManifest.ts"), exports);
|
|
89776
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolEncodingManifestType */ "./models/LiveStandbyPoolEncodingManifestType.ts"), exports);
|
|
89777
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolEncodingStatus */ "./models/LiveStandbyPoolEncodingStatus.ts"), exports);
|
|
89778
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolEventLog */ "./models/LiveStandbyPoolEventLog.ts"), exports);
|
|
89779
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolEventLogType */ "./models/LiveStandbyPoolEventLogType.ts"), exports);
|
|
89780
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolRequest */ "./models/LiveStandbyPoolRequest.ts"), exports);
|
|
89781
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolResponse */ "./models/LiveStandbyPoolResponse.ts"), exports);
|
|
89782
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolStatus */ "./models/LiveStandbyPoolStatus.ts"), exports);
|
|
89783
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolUpdate */ "./models/LiveStandbyPoolUpdate.ts"), exports);
|
|
88913
89784
|
__exportStar(__webpack_require__(/*! ./LocalInput */ "./models/LocalInput.ts"), exports);
|
|
88914
89785
|
__exportStar(__webpack_require__(/*! ./LocalOutput */ "./models/LocalOutput.ts"), exports);
|
|
88915
89786
|
__exportStar(__webpack_require__(/*! ./Manifest */ "./models/Manifest.ts"), exports);
|
|
@@ -89200,7 +90071,6 @@ __exportStar(__webpack_require__(/*! ./Thumbnail */ "./models/Thumbnail.ts"), ex
|
|
|
89200
90071
|
__exportStar(__webpack_require__(/*! ./ThumbnailAspectMode */ "./models/ThumbnailAspectMode.ts"), exports);
|
|
89201
90072
|
__exportStar(__webpack_require__(/*! ./ThumbnailUnit */ "./models/ThumbnailUnit.ts"), exports);
|
|
89202
90073
|
__exportStar(__webpack_require__(/*! ./TimeBasedTrimmingInputStream */ "./models/TimeBasedTrimmingInputStream.ts"), exports);
|
|
89203
|
-
__exportStar(__webpack_require__(/*! ./TimeCode */ "./models/TimeCode.ts"), exports);
|
|
89204
90074
|
__exportStar(__webpack_require__(/*! ./TimeSpan */ "./models/TimeSpan.ts"), exports);
|
|
89205
90075
|
__exportStar(__webpack_require__(/*! ./TimecodeTrackTrimmingInputStream */ "./models/TimecodeTrackTrimmingInputStream.ts"), exports);
|
|
89206
90076
|
__exportStar(__webpack_require__(/*! ./TransferRetry */ "./models/TransferRetry.ts"), exports);
|