@bitmovin/api-sdk 1.210.0 → 1.212.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 +1582 -34
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/encoding/infrastructure/InfrastructureApi.d.ts +2 -0
- package/dist/encoding/infrastructure/InfrastructureApi.js +2 -0
- package/dist/encoding/infrastructure/akamai/AkamaiAccountListQueryParams.d.ts +28 -0
- package/dist/encoding/infrastructure/akamai/AkamaiAccountListQueryParams.js +29 -0
- package/dist/encoding/infrastructure/akamai/AkamaiApi.d.ts +44 -0
- package/dist/encoding/infrastructure/akamai/AkamaiApi.js +96 -0
- package/dist/encoding/infrastructure/akamai/regions/AkamaiAccountRegionSettingsListQueryParams.d.ts +28 -0
- package/dist/encoding/infrastructure/akamai/regions/AkamaiAccountRegionSettingsListQueryParams.js +29 -0
- package/dist/encoding/infrastructure/akamai/regions/RegionsApi.d.ts +48 -0
- package/dist/encoding/infrastructure/akamai/regions/RegionsApi.js +107 -0
- 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/encoding/templates/EncodingTemplateResponseListQueryParams.d.ts +40 -0
- package/dist/encoding/templates/EncodingTemplateResponseListQueryParams.js +37 -0
- package/dist/encoding/templates/TemplatesApi.d.ts +33 -0
- package/dist/encoding/templates/TemplatesApi.js +62 -0
- package/dist/models/AkamaiAccount.d.ts +15 -0
- package/dist/models/AkamaiAccount.js +38 -0
- package/dist/models/AkamaiAccountRegionSettings.d.ts +27 -0
- package/dist/models/AkamaiAccountRegionSettings.js +40 -0
- package/dist/models/AkamaiCloudRegion.d.ts +20 -0
- package/dist/models/AkamaiCloudRegion.js +24 -0
- package/dist/models/EncodingTemplateDetails.d.ts +15 -0
- package/dist/models/EncodingTemplateDetails.js +38 -0
- package/dist/models/EncodingTemplateResponse.d.ts +15 -0
- package/dist/models/EncodingTemplateResponse.js +38 -0
- package/dist/models/EncodingTemplateType.d.ts +10 -0
- package/dist/models/EncodingTemplateType.js +14 -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 +18 -1
- package/dist/models/index.js +18 -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.212.0',
|
|
6033
6033
|
'Content-Type': 'application/json'
|
|
6034
6034
|
};
|
|
6035
6035
|
if (tenantOrgId) {
|
|
@@ -35338,6 +35338,7 @@ var AwsApi_1 = __webpack_require__(/*! ./aws/AwsApi */ "./encoding/infrastructur
|
|
|
35338
35338
|
var StaticIpsApi_1 = __webpack_require__(/*! ./staticIps/StaticIpsApi */ "./encoding/infrastructure/staticIps/StaticIpsApi.ts");
|
|
35339
35339
|
var AzureApi_1 = __webpack_require__(/*! ./azure/AzureApi */ "./encoding/infrastructure/azure/AzureApi.ts");
|
|
35340
35340
|
var GceApi_1 = __webpack_require__(/*! ./gce/GceApi */ "./encoding/infrastructure/gce/GceApi.ts");
|
|
35341
|
+
var AkamaiApi_1 = __webpack_require__(/*! ./akamai/AkamaiApi */ "./encoding/infrastructure/akamai/AkamaiApi.ts");
|
|
35341
35342
|
var PrewarmedEncoderPoolsApi_1 = __webpack_require__(/*! ./prewarmedEncoderPools/PrewarmedEncoderPoolsApi */ "./encoding/infrastructure/prewarmedEncoderPools/PrewarmedEncoderPoolsApi.ts");
|
|
35342
35343
|
/**
|
|
35343
35344
|
* InfrastructureApi - object-oriented interface
|
|
@@ -35353,6 +35354,7 @@ var InfrastructureApi = /** @class */ (function (_super) {
|
|
|
35353
35354
|
_this.staticIps = new StaticIpsApi_1.default(configuration);
|
|
35354
35355
|
_this.azure = new AzureApi_1.default(configuration);
|
|
35355
35356
|
_this.gce = new GceApi_1.default(configuration);
|
|
35357
|
+
_this.akamai = new AkamaiApi_1.default(configuration);
|
|
35356
35358
|
_this.prewarmedEncoderPools = new PrewarmedEncoderPoolsApi_1.default(configuration);
|
|
35357
35359
|
return _this;
|
|
35358
35360
|
}
|
|
@@ -35361,6 +35363,311 @@ var InfrastructureApi = /** @class */ (function (_super) {
|
|
|
35361
35363
|
exports["default"] = InfrastructureApi;
|
|
35362
35364
|
|
|
35363
35365
|
|
|
35366
|
+
/***/ }),
|
|
35367
|
+
|
|
35368
|
+
/***/ "./encoding/infrastructure/akamai/AkamaiAccountListQueryParams.ts":
|
|
35369
|
+
/*!************************************************************************!*\
|
|
35370
|
+
!*** ./encoding/infrastructure/akamai/AkamaiAccountListQueryParams.ts ***!
|
|
35371
|
+
\************************************************************************/
|
|
35372
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
35373
|
+
|
|
35374
|
+
"use strict";
|
|
35375
|
+
|
|
35376
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
35377
|
+
exports.AkamaiAccountListQueryParamsBuilder = void 0;
|
|
35378
|
+
var AkamaiAccountListQueryParamsBuilder = /** @class */ (function () {
|
|
35379
|
+
function AkamaiAccountListQueryParamsBuilder() {
|
|
35380
|
+
this.internalParams = {};
|
|
35381
|
+
}
|
|
35382
|
+
/**
|
|
35383
|
+
*
|
|
35384
|
+
* @param offset Index of the first item to return, starting at 0. Default is 0
|
|
35385
|
+
*/
|
|
35386
|
+
AkamaiAccountListQueryParamsBuilder.prototype.offset = function (offset) {
|
|
35387
|
+
this.internalParams.offset = offset;
|
|
35388
|
+
return this;
|
|
35389
|
+
};
|
|
35390
|
+
/**
|
|
35391
|
+
*
|
|
35392
|
+
* @param limit Maximum number of items to return. Default is 25, maximum is 100
|
|
35393
|
+
*/
|
|
35394
|
+
AkamaiAccountListQueryParamsBuilder.prototype.limit = function (limit) {
|
|
35395
|
+
this.internalParams.limit = limit;
|
|
35396
|
+
return this;
|
|
35397
|
+
};
|
|
35398
|
+
AkamaiAccountListQueryParamsBuilder.prototype.buildQueryParams = function () {
|
|
35399
|
+
return this.internalParams;
|
|
35400
|
+
};
|
|
35401
|
+
return AkamaiAccountListQueryParamsBuilder;
|
|
35402
|
+
}());
|
|
35403
|
+
exports.AkamaiAccountListQueryParamsBuilder = AkamaiAccountListQueryParamsBuilder;
|
|
35404
|
+
|
|
35405
|
+
|
|
35406
|
+
/***/ }),
|
|
35407
|
+
|
|
35408
|
+
/***/ "./encoding/infrastructure/akamai/AkamaiApi.ts":
|
|
35409
|
+
/*!*****************************************************!*\
|
|
35410
|
+
!*** ./encoding/infrastructure/akamai/AkamaiApi.ts ***!
|
|
35411
|
+
\*****************************************************/
|
|
35412
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
35413
|
+
|
|
35414
|
+
"use strict";
|
|
35415
|
+
|
|
35416
|
+
var __extends = (this && this.__extends) || (function () {
|
|
35417
|
+
var extendStatics = function (d, b) {
|
|
35418
|
+
extendStatics = Object.setPrototypeOf ||
|
|
35419
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
35420
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
35421
|
+
return extendStatics(d, b);
|
|
35422
|
+
};
|
|
35423
|
+
return function (d, b) {
|
|
35424
|
+
if (typeof b !== "function" && b !== null)
|
|
35425
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
35426
|
+
extendStatics(d, b);
|
|
35427
|
+
function __() { this.constructor = d; }
|
|
35428
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
35429
|
+
};
|
|
35430
|
+
})();
|
|
35431
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
35432
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
35433
|
+
var Mapper_1 = __webpack_require__(/*! ../../../common/Mapper */ "./common/Mapper.ts");
|
|
35434
|
+
var RegionsApi_1 = __webpack_require__(/*! ./regions/RegionsApi */ "./encoding/infrastructure/akamai/regions/RegionsApi.ts");
|
|
35435
|
+
var AkamaiAccount_1 = __webpack_require__(/*! ../../../models/AkamaiAccount */ "./models/AkamaiAccount.ts");
|
|
35436
|
+
var PaginationResponse_1 = __webpack_require__(/*! ../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
35437
|
+
var AkamaiAccountListQueryParams_1 = __webpack_require__(/*! ./AkamaiAccountListQueryParams */ "./encoding/infrastructure/akamai/AkamaiAccountListQueryParams.ts");
|
|
35438
|
+
/**
|
|
35439
|
+
* AkamaiApi - object-oriented interface
|
|
35440
|
+
* @export
|
|
35441
|
+
* @class AkamaiApi
|
|
35442
|
+
* @extends {BaseAPI}
|
|
35443
|
+
*/
|
|
35444
|
+
var AkamaiApi = /** @class */ (function (_super) {
|
|
35445
|
+
__extends(AkamaiApi, _super);
|
|
35446
|
+
function AkamaiApi(configuration) {
|
|
35447
|
+
var _this = _super.call(this, configuration) || this;
|
|
35448
|
+
_this.regions = new RegionsApi_1.default(configuration);
|
|
35449
|
+
return _this;
|
|
35450
|
+
}
|
|
35451
|
+
/**
|
|
35452
|
+
* @summary Add Akamai account
|
|
35453
|
+
* @param {AkamaiAccount} akamaiAccount The Akamai account to be added
|
|
35454
|
+
* @throws {BitmovinError}
|
|
35455
|
+
* @memberof AkamaiApi
|
|
35456
|
+
*/
|
|
35457
|
+
AkamaiApi.prototype.create = function (akamaiAccount) {
|
|
35458
|
+
return this.restClient.post('/encoding/infrastructure/akamai', {}, akamaiAccount).then(function (response) {
|
|
35459
|
+
return (0, Mapper_1.map)(response, AkamaiAccount_1.default);
|
|
35460
|
+
});
|
|
35461
|
+
};
|
|
35462
|
+
/**
|
|
35463
|
+
* @summary Delete Akamai account
|
|
35464
|
+
* @param {string} infrastructureId Id of the Akamai account
|
|
35465
|
+
* @throws {BitmovinError}
|
|
35466
|
+
* @memberof AkamaiApi
|
|
35467
|
+
*/
|
|
35468
|
+
AkamaiApi.prototype.delete = function (infrastructureId) {
|
|
35469
|
+
var pathParamMap = {
|
|
35470
|
+
infrastructure_id: infrastructureId
|
|
35471
|
+
};
|
|
35472
|
+
return this.restClient.delete('/encoding/infrastructure/akamai/{infrastructure_id}', pathParamMap).then(function (response) {
|
|
35473
|
+
return (0, Mapper_1.map)(response, AkamaiAccount_1.default);
|
|
35474
|
+
});
|
|
35475
|
+
};
|
|
35476
|
+
/**
|
|
35477
|
+
* @summary Akamai account details
|
|
35478
|
+
* @param {string} infrastructureId Id of the Akamai account
|
|
35479
|
+
* @throws {BitmovinError}
|
|
35480
|
+
* @memberof AkamaiApi
|
|
35481
|
+
*/
|
|
35482
|
+
AkamaiApi.prototype.get = function (infrastructureId) {
|
|
35483
|
+
var pathParamMap = {
|
|
35484
|
+
infrastructure_id: infrastructureId
|
|
35485
|
+
};
|
|
35486
|
+
return this.restClient.get('/encoding/infrastructure/akamai/{infrastructure_id}', pathParamMap).then(function (response) {
|
|
35487
|
+
return (0, Mapper_1.map)(response, AkamaiAccount_1.default);
|
|
35488
|
+
});
|
|
35489
|
+
};
|
|
35490
|
+
/**
|
|
35491
|
+
* @summary List Akamai accounts
|
|
35492
|
+
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
35493
|
+
* @throws {BitmovinError}
|
|
35494
|
+
* @memberof AkamaiApi
|
|
35495
|
+
*/
|
|
35496
|
+
AkamaiApi.prototype.list = function (queryParameters) {
|
|
35497
|
+
var queryParams = {};
|
|
35498
|
+
if (typeof queryParameters === 'function') {
|
|
35499
|
+
queryParams = queryParameters(new AkamaiAccountListQueryParams_1.AkamaiAccountListQueryParamsBuilder()).buildQueryParams();
|
|
35500
|
+
}
|
|
35501
|
+
else if (queryParameters) {
|
|
35502
|
+
queryParams = queryParameters;
|
|
35503
|
+
}
|
|
35504
|
+
return this.restClient.get('/encoding/infrastructure/akamai', {}, queryParams).then(function (response) {
|
|
35505
|
+
return new PaginationResponse_1.default(response, AkamaiAccount_1.default);
|
|
35506
|
+
});
|
|
35507
|
+
};
|
|
35508
|
+
return AkamaiApi;
|
|
35509
|
+
}(BaseAPI_1.BaseAPI));
|
|
35510
|
+
exports["default"] = AkamaiApi;
|
|
35511
|
+
|
|
35512
|
+
|
|
35513
|
+
/***/ }),
|
|
35514
|
+
|
|
35515
|
+
/***/ "./encoding/infrastructure/akamai/regions/AkamaiAccountRegionSettingsListQueryParams.ts":
|
|
35516
|
+
/*!**********************************************************************************************!*\
|
|
35517
|
+
!*** ./encoding/infrastructure/akamai/regions/AkamaiAccountRegionSettingsListQueryParams.ts ***!
|
|
35518
|
+
\**********************************************************************************************/
|
|
35519
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
35520
|
+
|
|
35521
|
+
"use strict";
|
|
35522
|
+
|
|
35523
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
35524
|
+
exports.AkamaiAccountRegionSettingsListQueryParamsBuilder = void 0;
|
|
35525
|
+
var AkamaiAccountRegionSettingsListQueryParamsBuilder = /** @class */ (function () {
|
|
35526
|
+
function AkamaiAccountRegionSettingsListQueryParamsBuilder() {
|
|
35527
|
+
this.internalParams = {};
|
|
35528
|
+
}
|
|
35529
|
+
/**
|
|
35530
|
+
*
|
|
35531
|
+
* @param offset Index of the first item to return, starting at 0. Default is 0
|
|
35532
|
+
*/
|
|
35533
|
+
AkamaiAccountRegionSettingsListQueryParamsBuilder.prototype.offset = function (offset) {
|
|
35534
|
+
this.internalParams.offset = offset;
|
|
35535
|
+
return this;
|
|
35536
|
+
};
|
|
35537
|
+
/**
|
|
35538
|
+
*
|
|
35539
|
+
* @param limit Maximum number of items to return. Default is 25, maximum is 100
|
|
35540
|
+
*/
|
|
35541
|
+
AkamaiAccountRegionSettingsListQueryParamsBuilder.prototype.limit = function (limit) {
|
|
35542
|
+
this.internalParams.limit = limit;
|
|
35543
|
+
return this;
|
|
35544
|
+
};
|
|
35545
|
+
AkamaiAccountRegionSettingsListQueryParamsBuilder.prototype.buildQueryParams = function () {
|
|
35546
|
+
return this.internalParams;
|
|
35547
|
+
};
|
|
35548
|
+
return AkamaiAccountRegionSettingsListQueryParamsBuilder;
|
|
35549
|
+
}());
|
|
35550
|
+
exports.AkamaiAccountRegionSettingsListQueryParamsBuilder = AkamaiAccountRegionSettingsListQueryParamsBuilder;
|
|
35551
|
+
|
|
35552
|
+
|
|
35553
|
+
/***/ }),
|
|
35554
|
+
|
|
35555
|
+
/***/ "./encoding/infrastructure/akamai/regions/RegionsApi.ts":
|
|
35556
|
+
/*!**************************************************************!*\
|
|
35557
|
+
!*** ./encoding/infrastructure/akamai/regions/RegionsApi.ts ***!
|
|
35558
|
+
\**************************************************************/
|
|
35559
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
35560
|
+
|
|
35561
|
+
"use strict";
|
|
35562
|
+
|
|
35563
|
+
var __extends = (this && this.__extends) || (function () {
|
|
35564
|
+
var extendStatics = function (d, b) {
|
|
35565
|
+
extendStatics = Object.setPrototypeOf ||
|
|
35566
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
35567
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
35568
|
+
return extendStatics(d, b);
|
|
35569
|
+
};
|
|
35570
|
+
return function (d, b) {
|
|
35571
|
+
if (typeof b !== "function" && b !== null)
|
|
35572
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
35573
|
+
extendStatics(d, b);
|
|
35574
|
+
function __() { this.constructor = d; }
|
|
35575
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
35576
|
+
};
|
|
35577
|
+
})();
|
|
35578
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
35579
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
35580
|
+
var Mapper_1 = __webpack_require__(/*! ../../../../common/Mapper */ "./common/Mapper.ts");
|
|
35581
|
+
var AkamaiAccountRegionSettings_1 = __webpack_require__(/*! ../../../../models/AkamaiAccountRegionSettings */ "./models/AkamaiAccountRegionSettings.ts");
|
|
35582
|
+
var PaginationResponse_1 = __webpack_require__(/*! ../../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
35583
|
+
var AkamaiAccountRegionSettingsListQueryParams_1 = __webpack_require__(/*! ./AkamaiAccountRegionSettingsListQueryParams */ "./encoding/infrastructure/akamai/regions/AkamaiAccountRegionSettingsListQueryParams.ts");
|
|
35584
|
+
/**
|
|
35585
|
+
* RegionsApi - object-oriented interface
|
|
35586
|
+
* @export
|
|
35587
|
+
* @class RegionsApi
|
|
35588
|
+
* @extends {BaseAPI}
|
|
35589
|
+
*/
|
|
35590
|
+
var RegionsApi = /** @class */ (function (_super) {
|
|
35591
|
+
__extends(RegionsApi, _super);
|
|
35592
|
+
function RegionsApi(configuration) {
|
|
35593
|
+
return _super.call(this, configuration) || this;
|
|
35594
|
+
}
|
|
35595
|
+
/**
|
|
35596
|
+
* @summary Add Akamai account region settings
|
|
35597
|
+
* @param {string} infrastructureId Id of the Akamai account
|
|
35598
|
+
* @param {AkamaiCloudRegion} region Akamai region
|
|
35599
|
+
* @param {AkamaiAccountRegionSettings} akamaiAccountRegionSettings The Akamai account region settings to be added
|
|
35600
|
+
* @throws {BitmovinError}
|
|
35601
|
+
* @memberof RegionsApi
|
|
35602
|
+
*/
|
|
35603
|
+
RegionsApi.prototype.create = function (infrastructureId, region, akamaiAccountRegionSettings) {
|
|
35604
|
+
var pathParamMap = {
|
|
35605
|
+
infrastructure_id: infrastructureId,
|
|
35606
|
+
region: region
|
|
35607
|
+
};
|
|
35608
|
+
return this.restClient.post('/encoding/infrastructure/akamai/{infrastructure_id}/regions/{region}', pathParamMap, akamaiAccountRegionSettings).then(function (response) {
|
|
35609
|
+
return (0, Mapper_1.map)(response, AkamaiAccountRegionSettings_1.default);
|
|
35610
|
+
});
|
|
35611
|
+
};
|
|
35612
|
+
/**
|
|
35613
|
+
* @summary Delete Akamai account region settings
|
|
35614
|
+
* @param {string} infrastructureId Id of the Akamai account
|
|
35615
|
+
* @param {AkamaiCloudRegion} region Akamai region
|
|
35616
|
+
* @throws {BitmovinError}
|
|
35617
|
+
* @memberof RegionsApi
|
|
35618
|
+
*/
|
|
35619
|
+
RegionsApi.prototype.delete = function (infrastructureId, region) {
|
|
35620
|
+
var pathParamMap = {
|
|
35621
|
+
infrastructure_id: infrastructureId,
|
|
35622
|
+
region: region
|
|
35623
|
+
};
|
|
35624
|
+
return this.restClient.delete('/encoding/infrastructure/akamai/{infrastructure_id}/regions/{region}', pathParamMap).then(function (response) {
|
|
35625
|
+
return (0, Mapper_1.map)(response, AkamaiAccountRegionSettings_1.default);
|
|
35626
|
+
});
|
|
35627
|
+
};
|
|
35628
|
+
/**
|
|
35629
|
+
* @summary Akamai account region settings details
|
|
35630
|
+
* @param {string} infrastructureId Id of the Akamai account
|
|
35631
|
+
* @param {AkamaiCloudRegion} region Akamai region
|
|
35632
|
+
* @throws {BitmovinError}
|
|
35633
|
+
* @memberof RegionsApi
|
|
35634
|
+
*/
|
|
35635
|
+
RegionsApi.prototype.get = function (infrastructureId, region) {
|
|
35636
|
+
var pathParamMap = {
|
|
35637
|
+
infrastructure_id: infrastructureId,
|
|
35638
|
+
region: region
|
|
35639
|
+
};
|
|
35640
|
+
return this.restClient.get('/encoding/infrastructure/akamai/{infrastructure_id}/regions/{region}', pathParamMap).then(function (response) {
|
|
35641
|
+
return (0, Mapper_1.map)(response, AkamaiAccountRegionSettings_1.default);
|
|
35642
|
+
});
|
|
35643
|
+
};
|
|
35644
|
+
/**
|
|
35645
|
+
* @summary List Akamai account region settings
|
|
35646
|
+
* @param {string} infrastructureId Id of the Akamai account
|
|
35647
|
+
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
35648
|
+
* @throws {BitmovinError}
|
|
35649
|
+
* @memberof RegionsApi
|
|
35650
|
+
*/
|
|
35651
|
+
RegionsApi.prototype.list = function (infrastructureId, queryParameters) {
|
|
35652
|
+
var pathParamMap = {
|
|
35653
|
+
infrastructure_id: infrastructureId
|
|
35654
|
+
};
|
|
35655
|
+
var queryParams = {};
|
|
35656
|
+
if (typeof queryParameters === 'function') {
|
|
35657
|
+
queryParams = queryParameters(new AkamaiAccountRegionSettingsListQueryParams_1.AkamaiAccountRegionSettingsListQueryParamsBuilder()).buildQueryParams();
|
|
35658
|
+
}
|
|
35659
|
+
else if (queryParameters) {
|
|
35660
|
+
queryParams = queryParameters;
|
|
35661
|
+
}
|
|
35662
|
+
return this.restClient.get('/encoding/infrastructure/akamai/{infrastructure_id}/regions', pathParamMap, queryParams).then(function (response) {
|
|
35663
|
+
return new PaginationResponse_1.default(response, AkamaiAccountRegionSettings_1.default);
|
|
35664
|
+
});
|
|
35665
|
+
};
|
|
35666
|
+
return RegionsApi;
|
|
35667
|
+
}(BaseAPI_1.BaseAPI));
|
|
35668
|
+
exports["default"] = RegionsApi;
|
|
35669
|
+
|
|
35670
|
+
|
|
35364
35671
|
/***/ }),
|
|
35365
35672
|
|
|
35366
35673
|
/***/ "./encoding/infrastructure/aws/AwsAccountListQueryParams.ts":
|
|
@@ -40730,6 +41037,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
40730
41037
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
40731
41038
|
var BaseAPI_1 = __webpack_require__(/*! ../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
40732
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");
|
|
40733
41041
|
/**
|
|
40734
41042
|
* LiveApi - object-oriented interface
|
|
40735
41043
|
* @export
|
|
@@ -40741,6 +41049,7 @@ var LiveApi = /** @class */ (function (_super) {
|
|
|
40741
41049
|
function LiveApi(configuration) {
|
|
40742
41050
|
var _this = _super.call(this, configuration) || this;
|
|
40743
41051
|
_this.streamKeys = new StreamKeysApi_1.default(configuration);
|
|
41052
|
+
_this.standbyPools = new StandbyPoolsApi_1.default(configuration);
|
|
40744
41053
|
return _this;
|
|
40745
41054
|
}
|
|
40746
41055
|
return LiveApi;
|
|
@@ -40748,6 +41057,464 @@ var LiveApi = /** @class */ (function (_super) {
|
|
|
40748
41057
|
exports["default"] = LiveApi;
|
|
40749
41058
|
|
|
40750
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
|
+
|
|
40751
41518
|
/***/ }),
|
|
40752
41519
|
|
|
40753
41520
|
/***/ "./encoding/live/streamKeys/StreamKeyListQueryParams.ts":
|
|
@@ -53513,6 +54280,54 @@ var DailyStatisticsPerLabelListQueryParamsBuilder = /** @class */ (function () {
|
|
|
53513
54280
|
exports.DailyStatisticsPerLabelListQueryParamsBuilder = DailyStatisticsPerLabelListQueryParamsBuilder;
|
|
53514
54281
|
|
|
53515
54282
|
|
|
54283
|
+
/***/ }),
|
|
54284
|
+
|
|
54285
|
+
/***/ "./encoding/templates/EncodingTemplateResponseListQueryParams.ts":
|
|
54286
|
+
/*!***********************************************************************!*\
|
|
54287
|
+
!*** ./encoding/templates/EncodingTemplateResponseListQueryParams.ts ***!
|
|
54288
|
+
\***********************************************************************/
|
|
54289
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
54290
|
+
|
|
54291
|
+
"use strict";
|
|
54292
|
+
|
|
54293
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
54294
|
+
exports.EncodingTemplateResponseListQueryParamsBuilder = void 0;
|
|
54295
|
+
var EncodingTemplateResponseListQueryParamsBuilder = /** @class */ (function () {
|
|
54296
|
+
function EncodingTemplateResponseListQueryParamsBuilder() {
|
|
54297
|
+
this.internalParams = {};
|
|
54298
|
+
}
|
|
54299
|
+
/**
|
|
54300
|
+
*
|
|
54301
|
+
* @param offset Index of the first item to return, starting at 0. Default is 0
|
|
54302
|
+
*/
|
|
54303
|
+
EncodingTemplateResponseListQueryParamsBuilder.prototype.offset = function (offset) {
|
|
54304
|
+
this.internalParams.offset = offset;
|
|
54305
|
+
return this;
|
|
54306
|
+
};
|
|
54307
|
+
/**
|
|
54308
|
+
*
|
|
54309
|
+
* @param limit Maximum number of items to return. Default is 25, maximum is 100
|
|
54310
|
+
*/
|
|
54311
|
+
EncodingTemplateResponseListQueryParamsBuilder.prototype.limit = function (limit) {
|
|
54312
|
+
this.internalParams.limit = limit;
|
|
54313
|
+
return this;
|
|
54314
|
+
};
|
|
54315
|
+
/**
|
|
54316
|
+
*
|
|
54317
|
+
* @param type Filter the stored templates by type
|
|
54318
|
+
*/
|
|
54319
|
+
EncodingTemplateResponseListQueryParamsBuilder.prototype.type = function (type) {
|
|
54320
|
+
this.internalParams.type = type;
|
|
54321
|
+
return this;
|
|
54322
|
+
};
|
|
54323
|
+
EncodingTemplateResponseListQueryParamsBuilder.prototype.buildQueryParams = function () {
|
|
54324
|
+
return this.internalParams;
|
|
54325
|
+
};
|
|
54326
|
+
return EncodingTemplateResponseListQueryParamsBuilder;
|
|
54327
|
+
}());
|
|
54328
|
+
exports.EncodingTemplateResponseListQueryParamsBuilder = EncodingTemplateResponseListQueryParamsBuilder;
|
|
54329
|
+
|
|
54330
|
+
|
|
53516
54331
|
/***/ }),
|
|
53517
54332
|
|
|
53518
54333
|
/***/ "./encoding/templates/TemplatesApi.ts":
|
|
@@ -53541,7 +54356,12 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
53541
54356
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
53542
54357
|
var BaseAPI_1 = __webpack_require__(/*! ../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
53543
54358
|
var Mapper_1 = __webpack_require__(/*! ../../common/Mapper */ "./common/Mapper.ts");
|
|
54359
|
+
var BitmovinResponse_1 = __webpack_require__(/*! ../../models/BitmovinResponse */ "./models/BitmovinResponse.ts");
|
|
54360
|
+
var EncodingTemplateDetails_1 = __webpack_require__(/*! ../../models/EncodingTemplateDetails */ "./models/EncodingTemplateDetails.ts");
|
|
54361
|
+
var EncodingTemplateResponse_1 = __webpack_require__(/*! ../../models/EncodingTemplateResponse */ "./models/EncodingTemplateResponse.ts");
|
|
53544
54362
|
var EncodingTemplateStartResponse_1 = __webpack_require__(/*! ../../models/EncodingTemplateStartResponse */ "./models/EncodingTemplateStartResponse.ts");
|
|
54363
|
+
var PaginationResponse_1 = __webpack_require__(/*! ../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
54364
|
+
var EncodingTemplateResponseListQueryParams_1 = __webpack_require__(/*! ./EncodingTemplateResponseListQueryParams */ "./encoding/templates/EncodingTemplateResponseListQueryParams.ts");
|
|
53545
54365
|
/**
|
|
53546
54366
|
* TemplatesApi - object-oriented interface
|
|
53547
54367
|
* @export
|
|
@@ -53553,6 +54373,63 @@ var TemplatesApi = /** @class */ (function (_super) {
|
|
|
53553
54373
|
function TemplatesApi(configuration) {
|
|
53554
54374
|
return _super.call(this, configuration) || this;
|
|
53555
54375
|
}
|
|
54376
|
+
/**
|
|
54377
|
+
* @summary Store an Encoding Template
|
|
54378
|
+
* @param {any} encodingTemplateRequest The Encoding Template to be stored
|
|
54379
|
+
* @throws {BitmovinError}
|
|
54380
|
+
* @memberof TemplatesApi
|
|
54381
|
+
*/
|
|
54382
|
+
TemplatesApi.prototype.create = function (encodingTemplateRequest) {
|
|
54383
|
+
return this.restClient.post('/encoding/templates', {}, encodingTemplateRequest).then(function (response) {
|
|
54384
|
+
return (0, Mapper_1.map)(response, EncodingTemplateDetails_1.default);
|
|
54385
|
+
});
|
|
54386
|
+
};
|
|
54387
|
+
/**
|
|
54388
|
+
* @summary Delete Encoding Template
|
|
54389
|
+
* @param {string} encodingTemplateId Id of the encoding template to delete
|
|
54390
|
+
* @throws {BitmovinError}
|
|
54391
|
+
* @memberof TemplatesApi
|
|
54392
|
+
*/
|
|
54393
|
+
TemplatesApi.prototype.delete = function (encodingTemplateId) {
|
|
54394
|
+
var pathParamMap = {
|
|
54395
|
+
encoding_template_id: encodingTemplateId
|
|
54396
|
+
};
|
|
54397
|
+
return this.restClient.delete('/encoding/templates/{encoding_template_id}', pathParamMap).then(function (response) {
|
|
54398
|
+
return (0, Mapper_1.map)(response, BitmovinResponse_1.default);
|
|
54399
|
+
});
|
|
54400
|
+
};
|
|
54401
|
+
/**
|
|
54402
|
+
* @summary Encoding Template details
|
|
54403
|
+
* @param {string} encodingTemplateId Id of the Encoding Template
|
|
54404
|
+
* @throws {BitmovinError}
|
|
54405
|
+
* @memberof TemplatesApi
|
|
54406
|
+
*/
|
|
54407
|
+
TemplatesApi.prototype.get = function (encodingTemplateId) {
|
|
54408
|
+
var pathParamMap = {
|
|
54409
|
+
encoding_template_id: encodingTemplateId
|
|
54410
|
+
};
|
|
54411
|
+
return this.restClient.get('/encoding/templates/{encoding_template_id}', pathParamMap).then(function (response) {
|
|
54412
|
+
return (0, Mapper_1.map)(response, EncodingTemplateDetails_1.default);
|
|
54413
|
+
});
|
|
54414
|
+
};
|
|
54415
|
+
/**
|
|
54416
|
+
* @summary List stored Encoding Templates
|
|
54417
|
+
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
54418
|
+
* @throws {BitmovinError}
|
|
54419
|
+
* @memberof TemplatesApi
|
|
54420
|
+
*/
|
|
54421
|
+
TemplatesApi.prototype.list = function (queryParameters) {
|
|
54422
|
+
var queryParams = {};
|
|
54423
|
+
if (typeof queryParameters === 'function') {
|
|
54424
|
+
queryParams = queryParameters(new EncodingTemplateResponseListQueryParams_1.EncodingTemplateResponseListQueryParamsBuilder()).buildQueryParams();
|
|
54425
|
+
}
|
|
54426
|
+
else if (queryParameters) {
|
|
54427
|
+
queryParams = queryParameters;
|
|
54428
|
+
}
|
|
54429
|
+
return this.restClient.get('/encoding/templates', {}, queryParams).then(function (response) {
|
|
54430
|
+
return new PaginationResponse_1.default(response, EncodingTemplateResponse_1.default);
|
|
54431
|
+
});
|
|
54432
|
+
};
|
|
53556
54433
|
/**
|
|
53557
54434
|
* @summary BETA: Start an Encoding defined with an Encoding Template
|
|
53558
54435
|
* @param {any} encodingTemplateRequest The Encoding Template to start an Encoding from
|
|
@@ -55914,6 +56791,141 @@ var AesEncryptionMethod;
|
|
|
55914
56791
|
exports["default"] = AesEncryptionMethod;
|
|
55915
56792
|
|
|
55916
56793
|
|
|
56794
|
+
/***/ }),
|
|
56795
|
+
|
|
56796
|
+
/***/ "./models/AkamaiAccount.ts":
|
|
56797
|
+
/*!*********************************!*\
|
|
56798
|
+
!*** ./models/AkamaiAccount.ts ***!
|
|
56799
|
+
\*********************************/
|
|
56800
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
56801
|
+
|
|
56802
|
+
"use strict";
|
|
56803
|
+
|
|
56804
|
+
var __extends = (this && this.__extends) || (function () {
|
|
56805
|
+
var extendStatics = function (d, b) {
|
|
56806
|
+
extendStatics = Object.setPrototypeOf ||
|
|
56807
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
56808
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
56809
|
+
return extendStatics(d, b);
|
|
56810
|
+
};
|
|
56811
|
+
return function (d, b) {
|
|
56812
|
+
if (typeof b !== "function" && b !== null)
|
|
56813
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
56814
|
+
extendStatics(d, b);
|
|
56815
|
+
function __() { this.constructor = d; }
|
|
56816
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
56817
|
+
};
|
|
56818
|
+
})();
|
|
56819
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
56820
|
+
exports.AkamaiAccount = void 0;
|
|
56821
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
56822
|
+
var BitmovinResource_1 = __webpack_require__(/*! ./BitmovinResource */ "./models/BitmovinResource.ts");
|
|
56823
|
+
/**
|
|
56824
|
+
* @export
|
|
56825
|
+
* @class AkamaiAccount
|
|
56826
|
+
*/
|
|
56827
|
+
var AkamaiAccount = /** @class */ (function (_super) {
|
|
56828
|
+
__extends(AkamaiAccount, _super);
|
|
56829
|
+
function AkamaiAccount(obj) {
|
|
56830
|
+
var _this = _super.call(this, obj) || this;
|
|
56831
|
+
if (!obj) {
|
|
56832
|
+
return _this;
|
|
56833
|
+
}
|
|
56834
|
+
_this.apiToken = (0, Mapper_1.map)(obj.apiToken);
|
|
56835
|
+
return _this;
|
|
56836
|
+
}
|
|
56837
|
+
return AkamaiAccount;
|
|
56838
|
+
}(BitmovinResource_1.default));
|
|
56839
|
+
exports.AkamaiAccount = AkamaiAccount;
|
|
56840
|
+
exports["default"] = AkamaiAccount;
|
|
56841
|
+
|
|
56842
|
+
|
|
56843
|
+
/***/ }),
|
|
56844
|
+
|
|
56845
|
+
/***/ "./models/AkamaiAccountRegionSettings.ts":
|
|
56846
|
+
/*!***********************************************!*\
|
|
56847
|
+
!*** ./models/AkamaiAccountRegionSettings.ts ***!
|
|
56848
|
+
\***********************************************/
|
|
56849
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
56850
|
+
|
|
56851
|
+
"use strict";
|
|
56852
|
+
|
|
56853
|
+
var __extends = (this && this.__extends) || (function () {
|
|
56854
|
+
var extendStatics = function (d, b) {
|
|
56855
|
+
extendStatics = Object.setPrototypeOf ||
|
|
56856
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
56857
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
56858
|
+
return extendStatics(d, b);
|
|
56859
|
+
};
|
|
56860
|
+
return function (d, b) {
|
|
56861
|
+
if (typeof b !== "function" && b !== null)
|
|
56862
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
56863
|
+
extendStatics(d, b);
|
|
56864
|
+
function __() { this.constructor = d; }
|
|
56865
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
56866
|
+
};
|
|
56867
|
+
})();
|
|
56868
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
56869
|
+
exports.AkamaiAccountRegionSettings = void 0;
|
|
56870
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
56871
|
+
var BitmovinResource_1 = __webpack_require__(/*! ./BitmovinResource */ "./models/BitmovinResource.ts");
|
|
56872
|
+
/**
|
|
56873
|
+
* @export
|
|
56874
|
+
* @class AkamaiAccountRegionSettings
|
|
56875
|
+
*/
|
|
56876
|
+
var AkamaiAccountRegionSettings = /** @class */ (function (_super) {
|
|
56877
|
+
__extends(AkamaiAccountRegionSettings, _super);
|
|
56878
|
+
function AkamaiAccountRegionSettings(obj) {
|
|
56879
|
+
var _this = _super.call(this, obj) || this;
|
|
56880
|
+
if (!obj) {
|
|
56881
|
+
return _this;
|
|
56882
|
+
}
|
|
56883
|
+
_this.subnetId = (0, Mapper_1.map)(obj.subnetId);
|
|
56884
|
+
_this.firewallId = (0, Mapper_1.map)(obj.firewallId);
|
|
56885
|
+
_this.region = (0, Mapper_1.map)(obj.region);
|
|
56886
|
+
return _this;
|
|
56887
|
+
}
|
|
56888
|
+
return AkamaiAccountRegionSettings;
|
|
56889
|
+
}(BitmovinResource_1.default));
|
|
56890
|
+
exports.AkamaiAccountRegionSettings = AkamaiAccountRegionSettings;
|
|
56891
|
+
exports["default"] = AkamaiAccountRegionSettings;
|
|
56892
|
+
|
|
56893
|
+
|
|
56894
|
+
/***/ }),
|
|
56895
|
+
|
|
56896
|
+
/***/ "./models/AkamaiCloudRegion.ts":
|
|
56897
|
+
/*!*************************************!*\
|
|
56898
|
+
!*** ./models/AkamaiCloudRegion.ts ***!
|
|
56899
|
+
\*************************************/
|
|
56900
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
56901
|
+
|
|
56902
|
+
"use strict";
|
|
56903
|
+
|
|
56904
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
56905
|
+
exports.AkamaiCloudRegion = void 0;
|
|
56906
|
+
/**
|
|
56907
|
+
* @export
|
|
56908
|
+
* @enum {string}
|
|
56909
|
+
*/
|
|
56910
|
+
var AkamaiCloudRegion;
|
|
56911
|
+
(function (AkamaiCloudRegion) {
|
|
56912
|
+
AkamaiCloudRegion["BR_GRU"] = "BR_GRU";
|
|
56913
|
+
AkamaiCloudRegion["ES_MAD"] = "ES_MAD";
|
|
56914
|
+
AkamaiCloudRegion["FR_PAR"] = "FR_PAR";
|
|
56915
|
+
AkamaiCloudRegion["ID_CGK"] = "ID_CGK";
|
|
56916
|
+
AkamaiCloudRegion["IN_MAA"] = "IN_MAA";
|
|
56917
|
+
AkamaiCloudRegion["IT_MIL"] = "IT_MIL";
|
|
56918
|
+
AkamaiCloudRegion["JP_OSA"] = "JP_OSA";
|
|
56919
|
+
AkamaiCloudRegion["NL_AMS"] = "NL_AMS";
|
|
56920
|
+
AkamaiCloudRegion["SE_STO"] = "SE_STO";
|
|
56921
|
+
AkamaiCloudRegion["US_LAX"] = "US_LAX";
|
|
56922
|
+
AkamaiCloudRegion["US_MIA"] = "US_MIA";
|
|
56923
|
+
AkamaiCloudRegion["US_ORD"] = "US_ORD";
|
|
56924
|
+
AkamaiCloudRegion["US_SEA"] = "US_SEA";
|
|
56925
|
+
})(AkamaiCloudRegion || (exports.AkamaiCloudRegion = AkamaiCloudRegion = {}));
|
|
56926
|
+
exports["default"] = AkamaiCloudRegion;
|
|
56927
|
+
|
|
56928
|
+
|
|
55917
56929
|
/***/ }),
|
|
55918
56930
|
|
|
55919
56931
|
/***/ "./models/AkamaiMslOutput.ts":
|
|
@@ -68859,6 +69871,55 @@ var EncodingTemplate;
|
|
|
68859
69871
|
exports["default"] = EncodingTemplate;
|
|
68860
69872
|
|
|
68861
69873
|
|
|
69874
|
+
/***/ }),
|
|
69875
|
+
|
|
69876
|
+
/***/ "./models/EncodingTemplateDetails.ts":
|
|
69877
|
+
/*!*******************************************!*\
|
|
69878
|
+
!*** ./models/EncodingTemplateDetails.ts ***!
|
|
69879
|
+
\*******************************************/
|
|
69880
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
69881
|
+
|
|
69882
|
+
"use strict";
|
|
69883
|
+
|
|
69884
|
+
var __extends = (this && this.__extends) || (function () {
|
|
69885
|
+
var extendStatics = function (d, b) {
|
|
69886
|
+
extendStatics = Object.setPrototypeOf ||
|
|
69887
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
69888
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
69889
|
+
return extendStatics(d, b);
|
|
69890
|
+
};
|
|
69891
|
+
return function (d, b) {
|
|
69892
|
+
if (typeof b !== "function" && b !== null)
|
|
69893
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
69894
|
+
extendStatics(d, b);
|
|
69895
|
+
function __() { this.constructor = d; }
|
|
69896
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
69897
|
+
};
|
|
69898
|
+
})();
|
|
69899
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
69900
|
+
exports.EncodingTemplateDetails = void 0;
|
|
69901
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
69902
|
+
var EncodingTemplateResponse_1 = __webpack_require__(/*! ./EncodingTemplateResponse */ "./models/EncodingTemplateResponse.ts");
|
|
69903
|
+
/**
|
|
69904
|
+
* @export
|
|
69905
|
+
* @class EncodingTemplateDetails
|
|
69906
|
+
*/
|
|
69907
|
+
var EncodingTemplateDetails = /** @class */ (function (_super) {
|
|
69908
|
+
__extends(EncodingTemplateDetails, _super);
|
|
69909
|
+
function EncodingTemplateDetails(obj) {
|
|
69910
|
+
var _this = _super.call(this, obj) || this;
|
|
69911
|
+
if (!obj) {
|
|
69912
|
+
return _this;
|
|
69913
|
+
}
|
|
69914
|
+
_this.url = (0, Mapper_1.map)(obj.url);
|
|
69915
|
+
return _this;
|
|
69916
|
+
}
|
|
69917
|
+
return EncodingTemplateDetails;
|
|
69918
|
+
}(EncodingTemplateResponse_1.default));
|
|
69919
|
+
exports.EncodingTemplateDetails = EncodingTemplateDetails;
|
|
69920
|
+
exports["default"] = EncodingTemplateDetails;
|
|
69921
|
+
|
|
69922
|
+
|
|
68862
69923
|
/***/ }),
|
|
68863
69924
|
|
|
68864
69925
|
/***/ "./models/EncodingTemplateRequest.ts":
|
|
@@ -68888,6 +69949,55 @@ exports.EncodingTemplateRequest = EncodingTemplateRequest;
|
|
|
68888
69949
|
exports["default"] = EncodingTemplateRequest;
|
|
68889
69950
|
|
|
68890
69951
|
|
|
69952
|
+
/***/ }),
|
|
69953
|
+
|
|
69954
|
+
/***/ "./models/EncodingTemplateResponse.ts":
|
|
69955
|
+
/*!********************************************!*\
|
|
69956
|
+
!*** ./models/EncodingTemplateResponse.ts ***!
|
|
69957
|
+
\********************************************/
|
|
69958
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
69959
|
+
|
|
69960
|
+
"use strict";
|
|
69961
|
+
|
|
69962
|
+
var __extends = (this && this.__extends) || (function () {
|
|
69963
|
+
var extendStatics = function (d, b) {
|
|
69964
|
+
extendStatics = Object.setPrototypeOf ||
|
|
69965
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
69966
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
69967
|
+
return extendStatics(d, b);
|
|
69968
|
+
};
|
|
69969
|
+
return function (d, b) {
|
|
69970
|
+
if (typeof b !== "function" && b !== null)
|
|
69971
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
69972
|
+
extendStatics(d, b);
|
|
69973
|
+
function __() { this.constructor = d; }
|
|
69974
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
69975
|
+
};
|
|
69976
|
+
})();
|
|
69977
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
69978
|
+
exports.EncodingTemplateResponse = void 0;
|
|
69979
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
69980
|
+
var BitmovinResource_1 = __webpack_require__(/*! ./BitmovinResource */ "./models/BitmovinResource.ts");
|
|
69981
|
+
/**
|
|
69982
|
+
* @export
|
|
69983
|
+
* @class EncodingTemplateResponse
|
|
69984
|
+
*/
|
|
69985
|
+
var EncodingTemplateResponse = /** @class */ (function (_super) {
|
|
69986
|
+
__extends(EncodingTemplateResponse, _super);
|
|
69987
|
+
function EncodingTemplateResponse(obj) {
|
|
69988
|
+
var _this = _super.call(this, obj) || this;
|
|
69989
|
+
if (!obj) {
|
|
69990
|
+
return _this;
|
|
69991
|
+
}
|
|
69992
|
+
_this.type = (0, Mapper_1.map)(obj.type);
|
|
69993
|
+
return _this;
|
|
69994
|
+
}
|
|
69995
|
+
return EncodingTemplateResponse;
|
|
69996
|
+
}(BitmovinResource_1.default));
|
|
69997
|
+
exports.EncodingTemplateResponse = EncodingTemplateResponse;
|
|
69998
|
+
exports["default"] = EncodingTemplateResponse;
|
|
69999
|
+
|
|
70000
|
+
|
|
68891
70001
|
/***/ }),
|
|
68892
70002
|
|
|
68893
70003
|
/***/ "./models/EncodingTemplateStartResponse.ts":
|
|
@@ -68918,6 +70028,31 @@ exports.EncodingTemplateStartResponse = EncodingTemplateStartResponse;
|
|
|
68918
70028
|
exports["default"] = EncodingTemplateStartResponse;
|
|
68919
70029
|
|
|
68920
70030
|
|
|
70031
|
+
/***/ }),
|
|
70032
|
+
|
|
70033
|
+
/***/ "./models/EncodingTemplateType.ts":
|
|
70034
|
+
/*!****************************************!*\
|
|
70035
|
+
!*** ./models/EncodingTemplateType.ts ***!
|
|
70036
|
+
\****************************************/
|
|
70037
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
70038
|
+
|
|
70039
|
+
"use strict";
|
|
70040
|
+
|
|
70041
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
70042
|
+
exports.EncodingTemplateType = void 0;
|
|
70043
|
+
/**
|
|
70044
|
+
* The Encoding Template type
|
|
70045
|
+
* @export
|
|
70046
|
+
* @enum {string}
|
|
70047
|
+
*/
|
|
70048
|
+
var EncodingTemplateType;
|
|
70049
|
+
(function (EncodingTemplateType) {
|
|
70050
|
+
EncodingTemplateType["VOD"] = "VOD";
|
|
70051
|
+
EncodingTemplateType["LIVE"] = "LIVE";
|
|
70052
|
+
})(EncodingTemplateType || (exports.EncodingTemplateType = EncodingTemplateType = {}));
|
|
70053
|
+
exports["default"] = EncodingTemplateType;
|
|
70054
|
+
|
|
70055
|
+
|
|
68921
70056
|
/***/ }),
|
|
68922
70057
|
|
|
68923
70058
|
/***/ "./models/EncodingType.ts":
|
|
@@ -73864,6 +74999,434 @@ var LiveOptionsType;
|
|
|
73864
74999
|
exports["default"] = LiveOptionsType;
|
|
73865
75000
|
|
|
73866
75001
|
|
|
75002
|
+
/***/ }),
|
|
75003
|
+
|
|
75004
|
+
/***/ "./models/LiveStandbyPoolDetails.ts":
|
|
75005
|
+
/*!******************************************!*\
|
|
75006
|
+
!*** ./models/LiveStandbyPoolDetails.ts ***!
|
|
75007
|
+
\******************************************/
|
|
75008
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
75009
|
+
|
|
75010
|
+
"use strict";
|
|
75011
|
+
|
|
75012
|
+
var __extends = (this && this.__extends) || (function () {
|
|
75013
|
+
var extendStatics = function (d, b) {
|
|
75014
|
+
extendStatics = Object.setPrototypeOf ||
|
|
75015
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
75016
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
75017
|
+
return extendStatics(d, b);
|
|
75018
|
+
};
|
|
75019
|
+
return function (d, b) {
|
|
75020
|
+
if (typeof b !== "function" && b !== null)
|
|
75021
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
75022
|
+
extendStatics(d, b);
|
|
75023
|
+
function __() { this.constructor = d; }
|
|
75024
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
75025
|
+
};
|
|
75026
|
+
})();
|
|
75027
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75028
|
+
exports.LiveStandbyPoolDetails = void 0;
|
|
75029
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75030
|
+
var LiveStandbyPoolResponse_1 = __webpack_require__(/*! ./LiveStandbyPoolResponse */ "./models/LiveStandbyPoolResponse.ts");
|
|
75031
|
+
/**
|
|
75032
|
+
* @export
|
|
75033
|
+
* @class LiveStandbyPoolDetails
|
|
75034
|
+
*/
|
|
75035
|
+
var LiveStandbyPoolDetails = /** @class */ (function (_super) {
|
|
75036
|
+
__extends(LiveStandbyPoolDetails, _super);
|
|
75037
|
+
function LiveStandbyPoolDetails(obj) {
|
|
75038
|
+
var _this = _super.call(this, obj) || this;
|
|
75039
|
+
if (!obj) {
|
|
75040
|
+
return _this;
|
|
75041
|
+
}
|
|
75042
|
+
_this.encodingTemplate = (0, Mapper_1.map)(obj.encodingTemplate);
|
|
75043
|
+
return _this;
|
|
75044
|
+
}
|
|
75045
|
+
return LiveStandbyPoolDetails;
|
|
75046
|
+
}(LiveStandbyPoolResponse_1.default));
|
|
75047
|
+
exports.LiveStandbyPoolDetails = LiveStandbyPoolDetails;
|
|
75048
|
+
exports["default"] = LiveStandbyPoolDetails;
|
|
75049
|
+
|
|
75050
|
+
|
|
75051
|
+
/***/ }),
|
|
75052
|
+
|
|
75053
|
+
/***/ "./models/LiveStandbyPoolEncoding.ts":
|
|
75054
|
+
/*!*******************************************!*\
|
|
75055
|
+
!*** ./models/LiveStandbyPoolEncoding.ts ***!
|
|
75056
|
+
\*******************************************/
|
|
75057
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
75058
|
+
|
|
75059
|
+
"use strict";
|
|
75060
|
+
|
|
75061
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75062
|
+
exports.LiveStandbyPoolEncoding = void 0;
|
|
75063
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75064
|
+
var LiveStandbyPoolEncodingIngestPoint_1 = __webpack_require__(/*! ./LiveStandbyPoolEncodingIngestPoint */ "./models/LiveStandbyPoolEncodingIngestPoint.ts");
|
|
75065
|
+
var LiveStandbyPoolEncodingManifest_1 = __webpack_require__(/*! ./LiveStandbyPoolEncodingManifest */ "./models/LiveStandbyPoolEncodingManifest.ts");
|
|
75066
|
+
/**
|
|
75067
|
+
* @export
|
|
75068
|
+
* @class LiveStandbyPoolEncoding
|
|
75069
|
+
*/
|
|
75070
|
+
var LiveStandbyPoolEncoding = /** @class */ (function () {
|
|
75071
|
+
function LiveStandbyPoolEncoding(obj) {
|
|
75072
|
+
if (!obj) {
|
|
75073
|
+
return;
|
|
75074
|
+
}
|
|
75075
|
+
this.id = (0, Mapper_1.map)(obj.id);
|
|
75076
|
+
this.createdAt = (0, Mapper_1.map)(obj.createdAt);
|
|
75077
|
+
this.modifiedAt = (0, Mapper_1.map)(obj.modifiedAt);
|
|
75078
|
+
this.encodingId = (0, Mapper_1.map)(obj.encodingId);
|
|
75079
|
+
this.manifests = (0, Mapper_1.mapArray)(obj.manifests, LiveStandbyPoolEncodingManifest_1.default);
|
|
75080
|
+
this.ingestPoints = (0, Mapper_1.mapArray)(obj.ingestPoints, LiveStandbyPoolEncodingIngestPoint_1.default);
|
|
75081
|
+
this.status = (0, Mapper_1.map)(obj.status);
|
|
75082
|
+
}
|
|
75083
|
+
return LiveStandbyPoolEncoding;
|
|
75084
|
+
}());
|
|
75085
|
+
exports.LiveStandbyPoolEncoding = LiveStandbyPoolEncoding;
|
|
75086
|
+
exports["default"] = LiveStandbyPoolEncoding;
|
|
75087
|
+
|
|
75088
|
+
|
|
75089
|
+
/***/ }),
|
|
75090
|
+
|
|
75091
|
+
/***/ "./models/LiveStandbyPoolEncodingIngestPoint.ts":
|
|
75092
|
+
/*!******************************************************!*\
|
|
75093
|
+
!*** ./models/LiveStandbyPoolEncodingIngestPoint.ts ***!
|
|
75094
|
+
\******************************************************/
|
|
75095
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
75096
|
+
|
|
75097
|
+
"use strict";
|
|
75098
|
+
|
|
75099
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75100
|
+
exports.LiveStandbyPoolEncodingIngestPoint = void 0;
|
|
75101
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75102
|
+
/**
|
|
75103
|
+
* @export
|
|
75104
|
+
* @class LiveStandbyPoolEncodingIngestPoint
|
|
75105
|
+
*/
|
|
75106
|
+
var LiveStandbyPoolEncodingIngestPoint = /** @class */ (function () {
|
|
75107
|
+
function LiveStandbyPoolEncodingIngestPoint(obj) {
|
|
75108
|
+
if (!obj) {
|
|
75109
|
+
return;
|
|
75110
|
+
}
|
|
75111
|
+
this.streamBaseUrl = (0, Mapper_1.map)(obj.streamBaseUrl);
|
|
75112
|
+
this.streamKey = (0, Mapper_1.map)(obj.streamKey);
|
|
75113
|
+
}
|
|
75114
|
+
return LiveStandbyPoolEncodingIngestPoint;
|
|
75115
|
+
}());
|
|
75116
|
+
exports.LiveStandbyPoolEncodingIngestPoint = LiveStandbyPoolEncodingIngestPoint;
|
|
75117
|
+
exports["default"] = LiveStandbyPoolEncodingIngestPoint;
|
|
75118
|
+
|
|
75119
|
+
|
|
75120
|
+
/***/ }),
|
|
75121
|
+
|
|
75122
|
+
/***/ "./models/LiveStandbyPoolEncodingManifest.ts":
|
|
75123
|
+
/*!***************************************************!*\
|
|
75124
|
+
!*** ./models/LiveStandbyPoolEncodingManifest.ts ***!
|
|
75125
|
+
\***************************************************/
|
|
75126
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
75127
|
+
|
|
75128
|
+
"use strict";
|
|
75129
|
+
|
|
75130
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75131
|
+
exports.LiveStandbyPoolEncodingManifest = void 0;
|
|
75132
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75133
|
+
/**
|
|
75134
|
+
* @export
|
|
75135
|
+
* @class LiveStandbyPoolEncodingManifest
|
|
75136
|
+
*/
|
|
75137
|
+
var LiveStandbyPoolEncodingManifest = /** @class */ (function () {
|
|
75138
|
+
function LiveStandbyPoolEncodingManifest(obj) {
|
|
75139
|
+
if (!obj) {
|
|
75140
|
+
return;
|
|
75141
|
+
}
|
|
75142
|
+
this.url = (0, Mapper_1.map)(obj.url);
|
|
75143
|
+
this.manifestId = (0, Mapper_1.map)(obj.manifestId);
|
|
75144
|
+
this.type = (0, Mapper_1.map)(obj.type);
|
|
75145
|
+
}
|
|
75146
|
+
return LiveStandbyPoolEncodingManifest;
|
|
75147
|
+
}());
|
|
75148
|
+
exports.LiveStandbyPoolEncodingManifest = LiveStandbyPoolEncodingManifest;
|
|
75149
|
+
exports["default"] = LiveStandbyPoolEncodingManifest;
|
|
75150
|
+
|
|
75151
|
+
|
|
75152
|
+
/***/ }),
|
|
75153
|
+
|
|
75154
|
+
/***/ "./models/LiveStandbyPoolEncodingManifestType.ts":
|
|
75155
|
+
/*!*******************************************************!*\
|
|
75156
|
+
!*** ./models/LiveStandbyPoolEncodingManifestType.ts ***!
|
|
75157
|
+
\*******************************************************/
|
|
75158
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
75159
|
+
|
|
75160
|
+
"use strict";
|
|
75161
|
+
|
|
75162
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75163
|
+
exports.LiveStandbyPoolEncodingManifestType = void 0;
|
|
75164
|
+
/**
|
|
75165
|
+
* Type of the manifest
|
|
75166
|
+
* @export
|
|
75167
|
+
* @enum {string}
|
|
75168
|
+
*/
|
|
75169
|
+
var LiveStandbyPoolEncodingManifestType;
|
|
75170
|
+
(function (LiveStandbyPoolEncodingManifestType) {
|
|
75171
|
+
LiveStandbyPoolEncodingManifestType["DASH"] = "DASH";
|
|
75172
|
+
LiveStandbyPoolEncodingManifestType["HLS"] = "HLS";
|
|
75173
|
+
})(LiveStandbyPoolEncodingManifestType || (exports.LiveStandbyPoolEncodingManifestType = LiveStandbyPoolEncodingManifestType = {}));
|
|
75174
|
+
exports["default"] = LiveStandbyPoolEncodingManifestType;
|
|
75175
|
+
|
|
75176
|
+
|
|
75177
|
+
/***/ }),
|
|
75178
|
+
|
|
75179
|
+
/***/ "./models/LiveStandbyPoolEncodingStatus.ts":
|
|
75180
|
+
/*!*************************************************!*\
|
|
75181
|
+
!*** ./models/LiveStandbyPoolEncodingStatus.ts ***!
|
|
75182
|
+
\*************************************************/
|
|
75183
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
75184
|
+
|
|
75185
|
+
"use strict";
|
|
75186
|
+
|
|
75187
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75188
|
+
exports.LiveStandbyPoolEncodingStatus = void 0;
|
|
75189
|
+
/**
|
|
75190
|
+
* Status of the standby pool encoding
|
|
75191
|
+
* @export
|
|
75192
|
+
* @enum {string}
|
|
75193
|
+
*/
|
|
75194
|
+
var LiveStandbyPoolEncodingStatus;
|
|
75195
|
+
(function (LiveStandbyPoolEncodingStatus) {
|
|
75196
|
+
LiveStandbyPoolEncodingStatus["TO_BE_CREATED"] = "TO_BE_CREATED";
|
|
75197
|
+
LiveStandbyPoolEncodingStatus["CREATING"] = "CREATING";
|
|
75198
|
+
LiveStandbyPoolEncodingStatus["PREPARING"] = "PREPARING";
|
|
75199
|
+
LiveStandbyPoolEncodingStatus["READY"] = "READY";
|
|
75200
|
+
LiveStandbyPoolEncodingStatus["TO_BE_DELETED"] = "TO_BE_DELETED";
|
|
75201
|
+
LiveStandbyPoolEncodingStatus["DELETING"] = "DELETING";
|
|
75202
|
+
LiveStandbyPoolEncodingStatus["ACQUIRED"] = "ACQUIRED";
|
|
75203
|
+
LiveStandbyPoolEncodingStatus["ERROR"] = "ERROR";
|
|
75204
|
+
})(LiveStandbyPoolEncodingStatus || (exports.LiveStandbyPoolEncodingStatus = LiveStandbyPoolEncodingStatus = {}));
|
|
75205
|
+
exports["default"] = LiveStandbyPoolEncodingStatus;
|
|
75206
|
+
|
|
75207
|
+
|
|
75208
|
+
/***/ }),
|
|
75209
|
+
|
|
75210
|
+
/***/ "./models/LiveStandbyPoolEventLog.ts":
|
|
75211
|
+
/*!*******************************************!*\
|
|
75212
|
+
!*** ./models/LiveStandbyPoolEventLog.ts ***!
|
|
75213
|
+
\*******************************************/
|
|
75214
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
75215
|
+
|
|
75216
|
+
"use strict";
|
|
75217
|
+
|
|
75218
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75219
|
+
exports.LiveStandbyPoolEventLog = void 0;
|
|
75220
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75221
|
+
/**
|
|
75222
|
+
* @export
|
|
75223
|
+
* @class LiveStandbyPoolEventLog
|
|
75224
|
+
*/
|
|
75225
|
+
var LiveStandbyPoolEventLog = /** @class */ (function () {
|
|
75226
|
+
function LiveStandbyPoolEventLog(obj) {
|
|
75227
|
+
if (!obj) {
|
|
75228
|
+
return;
|
|
75229
|
+
}
|
|
75230
|
+
this.id = (0, Mapper_1.map)(obj.id);
|
|
75231
|
+
this.standbyPoolId = (0, Mapper_1.map)(obj.standbyPoolId);
|
|
75232
|
+
this.standbyPoolEncodingId = (0, Mapper_1.map)(obj.standbyPoolEncodingId);
|
|
75233
|
+
this.createdAt = (0, Mapper_1.map)(obj.createdAt);
|
|
75234
|
+
this.message = (0, Mapper_1.map)(obj.message);
|
|
75235
|
+
this.details = (0, Mapper_1.map)(obj.details);
|
|
75236
|
+
this.eventType = (0, Mapper_1.map)(obj.eventType);
|
|
75237
|
+
}
|
|
75238
|
+
return LiveStandbyPoolEventLog;
|
|
75239
|
+
}());
|
|
75240
|
+
exports.LiveStandbyPoolEventLog = LiveStandbyPoolEventLog;
|
|
75241
|
+
exports["default"] = LiveStandbyPoolEventLog;
|
|
75242
|
+
|
|
75243
|
+
|
|
75244
|
+
/***/ }),
|
|
75245
|
+
|
|
75246
|
+
/***/ "./models/LiveStandbyPoolEventLogType.ts":
|
|
75247
|
+
/*!***********************************************!*\
|
|
75248
|
+
!*** ./models/LiveStandbyPoolEventLogType.ts ***!
|
|
75249
|
+
\***********************************************/
|
|
75250
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
75251
|
+
|
|
75252
|
+
"use strict";
|
|
75253
|
+
|
|
75254
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75255
|
+
exports.LiveStandbyPoolEventLogType = void 0;
|
|
75256
|
+
/**
|
|
75257
|
+
* Event log type of the standby pool
|
|
75258
|
+
* @export
|
|
75259
|
+
* @enum {string}
|
|
75260
|
+
*/
|
|
75261
|
+
var LiveStandbyPoolEventLogType;
|
|
75262
|
+
(function (LiveStandbyPoolEventLogType) {
|
|
75263
|
+
LiveStandbyPoolEventLogType["INFO"] = "INFO";
|
|
75264
|
+
LiveStandbyPoolEventLogType["WARN"] = "WARN";
|
|
75265
|
+
LiveStandbyPoolEventLogType["ERROR"] = "ERROR";
|
|
75266
|
+
})(LiveStandbyPoolEventLogType || (exports.LiveStandbyPoolEventLogType = LiveStandbyPoolEventLogType = {}));
|
|
75267
|
+
exports["default"] = LiveStandbyPoolEventLogType;
|
|
75268
|
+
|
|
75269
|
+
|
|
75270
|
+
/***/ }),
|
|
75271
|
+
|
|
75272
|
+
/***/ "./models/LiveStandbyPoolRequest.ts":
|
|
75273
|
+
/*!******************************************!*\
|
|
75274
|
+
!*** ./models/LiveStandbyPoolRequest.ts ***!
|
|
75275
|
+
\******************************************/
|
|
75276
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
75277
|
+
|
|
75278
|
+
"use strict";
|
|
75279
|
+
|
|
75280
|
+
var __extends = (this && this.__extends) || (function () {
|
|
75281
|
+
var extendStatics = function (d, b) {
|
|
75282
|
+
extendStatics = Object.setPrototypeOf ||
|
|
75283
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
75284
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
75285
|
+
return extendStatics(d, b);
|
|
75286
|
+
};
|
|
75287
|
+
return function (d, b) {
|
|
75288
|
+
if (typeof b !== "function" && b !== null)
|
|
75289
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
75290
|
+
extendStatics(d, b);
|
|
75291
|
+
function __() { this.constructor = d; }
|
|
75292
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
75293
|
+
};
|
|
75294
|
+
})();
|
|
75295
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75296
|
+
exports.LiveStandbyPoolRequest = void 0;
|
|
75297
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75298
|
+
var BitmovinResource_1 = __webpack_require__(/*! ./BitmovinResource */ "./models/BitmovinResource.ts");
|
|
75299
|
+
/**
|
|
75300
|
+
* @export
|
|
75301
|
+
* @class LiveStandbyPoolRequest
|
|
75302
|
+
*/
|
|
75303
|
+
var LiveStandbyPoolRequest = /** @class */ (function (_super) {
|
|
75304
|
+
__extends(LiveStandbyPoolRequest, _super);
|
|
75305
|
+
function LiveStandbyPoolRequest(obj) {
|
|
75306
|
+
var _this = _super.call(this, obj) || this;
|
|
75307
|
+
if (!obj) {
|
|
75308
|
+
return _this;
|
|
75309
|
+
}
|
|
75310
|
+
_this.targetPoolSize = (0, Mapper_1.map)(obj.targetPoolSize);
|
|
75311
|
+
_this.encodingTemplate = (0, Mapper_1.map)(obj.encodingTemplate);
|
|
75312
|
+
return _this;
|
|
75313
|
+
}
|
|
75314
|
+
return LiveStandbyPoolRequest;
|
|
75315
|
+
}(BitmovinResource_1.default));
|
|
75316
|
+
exports.LiveStandbyPoolRequest = LiveStandbyPoolRequest;
|
|
75317
|
+
exports["default"] = LiveStandbyPoolRequest;
|
|
75318
|
+
|
|
75319
|
+
|
|
75320
|
+
/***/ }),
|
|
75321
|
+
|
|
75322
|
+
/***/ "./models/LiveStandbyPoolResponse.ts":
|
|
75323
|
+
/*!*******************************************!*\
|
|
75324
|
+
!*** ./models/LiveStandbyPoolResponse.ts ***!
|
|
75325
|
+
\*******************************************/
|
|
75326
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
75327
|
+
|
|
75328
|
+
"use strict";
|
|
75329
|
+
|
|
75330
|
+
var __extends = (this && this.__extends) || (function () {
|
|
75331
|
+
var extendStatics = function (d, b) {
|
|
75332
|
+
extendStatics = Object.setPrototypeOf ||
|
|
75333
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
75334
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
75335
|
+
return extendStatics(d, b);
|
|
75336
|
+
};
|
|
75337
|
+
return function (d, b) {
|
|
75338
|
+
if (typeof b !== "function" && b !== null)
|
|
75339
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
75340
|
+
extendStatics(d, b);
|
|
75341
|
+
function __() { this.constructor = d; }
|
|
75342
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
75343
|
+
};
|
|
75344
|
+
})();
|
|
75345
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75346
|
+
exports.LiveStandbyPoolResponse = void 0;
|
|
75347
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75348
|
+
var BitmovinResource_1 = __webpack_require__(/*! ./BitmovinResource */ "./models/BitmovinResource.ts");
|
|
75349
|
+
/**
|
|
75350
|
+
* @export
|
|
75351
|
+
* @class LiveStandbyPoolResponse
|
|
75352
|
+
*/
|
|
75353
|
+
var LiveStandbyPoolResponse = /** @class */ (function (_super) {
|
|
75354
|
+
__extends(LiveStandbyPoolResponse, _super);
|
|
75355
|
+
function LiveStandbyPoolResponse(obj) {
|
|
75356
|
+
var _this = _super.call(this, obj) || this;
|
|
75357
|
+
if (!obj) {
|
|
75358
|
+
return _this;
|
|
75359
|
+
}
|
|
75360
|
+
_this.targetPoolSize = (0, Mapper_1.map)(obj.targetPoolSize);
|
|
75361
|
+
_this.readyEncodings = (0, Mapper_1.map)(obj.readyEncodings);
|
|
75362
|
+
_this.preparingEncodings = (0, Mapper_1.map)(obj.preparingEncodings);
|
|
75363
|
+
_this.errorEncodings = (0, Mapper_1.map)(obj.errorEncodings);
|
|
75364
|
+
_this.encodingTemplateName = (0, Mapper_1.map)(obj.encodingTemplateName);
|
|
75365
|
+
_this.poolStatus = (0, Mapper_1.map)(obj.poolStatus);
|
|
75366
|
+
return _this;
|
|
75367
|
+
}
|
|
75368
|
+
return LiveStandbyPoolResponse;
|
|
75369
|
+
}(BitmovinResource_1.default));
|
|
75370
|
+
exports.LiveStandbyPoolResponse = LiveStandbyPoolResponse;
|
|
75371
|
+
exports["default"] = LiveStandbyPoolResponse;
|
|
75372
|
+
|
|
75373
|
+
|
|
75374
|
+
/***/ }),
|
|
75375
|
+
|
|
75376
|
+
/***/ "./models/LiveStandbyPoolStatus.ts":
|
|
75377
|
+
/*!*****************************************!*\
|
|
75378
|
+
!*** ./models/LiveStandbyPoolStatus.ts ***!
|
|
75379
|
+
\*****************************************/
|
|
75380
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
75381
|
+
|
|
75382
|
+
"use strict";
|
|
75383
|
+
|
|
75384
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75385
|
+
exports.LiveStandbyPoolStatus = void 0;
|
|
75386
|
+
/**
|
|
75387
|
+
* Status of the live standby pool
|
|
75388
|
+
* @export
|
|
75389
|
+
* @enum {string}
|
|
75390
|
+
*/
|
|
75391
|
+
var LiveStandbyPoolStatus;
|
|
75392
|
+
(function (LiveStandbyPoolStatus) {
|
|
75393
|
+
LiveStandbyPoolStatus["HEALTHY"] = "HEALTHY";
|
|
75394
|
+
LiveStandbyPoolStatus["ERROR"] = "ERROR";
|
|
75395
|
+
})(LiveStandbyPoolStatus || (exports.LiveStandbyPoolStatus = LiveStandbyPoolStatus = {}));
|
|
75396
|
+
exports["default"] = LiveStandbyPoolStatus;
|
|
75397
|
+
|
|
75398
|
+
|
|
75399
|
+
/***/ }),
|
|
75400
|
+
|
|
75401
|
+
/***/ "./models/LiveStandbyPoolUpdate.ts":
|
|
75402
|
+
/*!*****************************************!*\
|
|
75403
|
+
!*** ./models/LiveStandbyPoolUpdate.ts ***!
|
|
75404
|
+
\*****************************************/
|
|
75405
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
75406
|
+
|
|
75407
|
+
"use strict";
|
|
75408
|
+
|
|
75409
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
75410
|
+
exports.LiveStandbyPoolUpdate = void 0;
|
|
75411
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
75412
|
+
/**
|
|
75413
|
+
* @export
|
|
75414
|
+
* @class LiveStandbyPoolUpdate
|
|
75415
|
+
*/
|
|
75416
|
+
var LiveStandbyPoolUpdate = /** @class */ (function () {
|
|
75417
|
+
function LiveStandbyPoolUpdate(obj) {
|
|
75418
|
+
if (!obj) {
|
|
75419
|
+
return;
|
|
75420
|
+
}
|
|
75421
|
+
this.targetPoolSize = (0, Mapper_1.map)(obj.targetPoolSize);
|
|
75422
|
+
this.encodingTemplate = (0, Mapper_1.map)(obj.encodingTemplate);
|
|
75423
|
+
}
|
|
75424
|
+
return LiveStandbyPoolUpdate;
|
|
75425
|
+
}());
|
|
75426
|
+
exports.LiveStandbyPoolUpdate = LiveStandbyPoolUpdate;
|
|
75427
|
+
exports["default"] = LiveStandbyPoolUpdate;
|
|
75428
|
+
|
|
75429
|
+
|
|
73867
75430
|
/***/ }),
|
|
73868
75431
|
|
|
73869
75432
|
/***/ "./models/LocalInput.ts":
|
|
@@ -74875,7 +76438,6 @@ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts")
|
|
|
74875
76438
|
var DolbyVisionMuxingConfiguration_1 = __webpack_require__(/*! ./DolbyVisionMuxingConfiguration */ "./models/DolbyVisionMuxingConfiguration.ts");
|
|
74876
76439
|
var Muxing_1 = __webpack_require__(/*! ./Muxing */ "./models/Muxing.ts");
|
|
74877
76440
|
var MuxingType_1 = __webpack_require__(/*! ./MuxingType */ "./models/MuxingType.ts");
|
|
74878
|
-
var TimeCode_1 = __webpack_require__(/*! ./TimeCode */ "./models/TimeCode.ts");
|
|
74879
76441
|
/**
|
|
74880
76442
|
* @export
|
|
74881
76443
|
* @class Mp4Muxing
|
|
@@ -74895,7 +76457,6 @@ var Mp4Muxing = /** @class */ (function (_super) {
|
|
|
74895
76457
|
}
|
|
74896
76458
|
_this.filename = (0, Mapper_1.map)(obj.filename);
|
|
74897
76459
|
_this.fragmentDuration = (0, Mapper_1.map)(obj.fragmentDuration);
|
|
74898
|
-
_this.timeCode = (0, Mapper_1.map)(obj.timeCode, TimeCode_1.default);
|
|
74899
76460
|
_this.fragmentedMP4MuxingManifestType = (0, Mapper_1.map)(obj.fragmentedMP4MuxingManifestType);
|
|
74900
76461
|
_this.dolbyVisionConfiguration = (0, Mapper_1.map)(obj.dolbyVisionConfiguration, DolbyVisionMuxingConfiguration_1.default);
|
|
74901
76462
|
return _this;
|
|
@@ -85221,36 +86782,6 @@ exports.TimeBasedTrimmingInputStream = TimeBasedTrimmingInputStream;
|
|
|
85221
86782
|
exports["default"] = TimeBasedTrimmingInputStream;
|
|
85222
86783
|
|
|
85223
86784
|
|
|
85224
|
-
/***/ }),
|
|
85225
|
-
|
|
85226
|
-
/***/ "./models/TimeCode.ts":
|
|
85227
|
-
/*!****************************!*\
|
|
85228
|
-
!*** ./models/TimeCode.ts ***!
|
|
85229
|
-
\****************************/
|
|
85230
|
-
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
85231
|
-
|
|
85232
|
-
"use strict";
|
|
85233
|
-
|
|
85234
|
-
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
85235
|
-
exports.TimeCode = void 0;
|
|
85236
|
-
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
85237
|
-
/**
|
|
85238
|
-
* @export
|
|
85239
|
-
* @class TimeCode
|
|
85240
|
-
*/
|
|
85241
|
-
var TimeCode = /** @class */ (function () {
|
|
85242
|
-
function TimeCode(obj) {
|
|
85243
|
-
if (!obj) {
|
|
85244
|
-
return;
|
|
85245
|
-
}
|
|
85246
|
-
this.timeCodeStart = (0, Mapper_1.map)(obj.timeCodeStart);
|
|
85247
|
-
}
|
|
85248
|
-
return TimeCode;
|
|
85249
|
-
}());
|
|
85250
|
-
exports.TimeCode = TimeCode;
|
|
85251
|
-
exports["default"] = TimeCode;
|
|
85252
|
-
|
|
85253
|
-
|
|
85254
86785
|
/***/ }),
|
|
85255
86786
|
|
|
85256
86787
|
/***/ "./models/TimeSpan.ts":
|
|
@@ -87796,6 +89327,9 @@ __exportStar(__webpack_require__(/*! ./AdaptationSetTypeResponse */ "./models/Ad
|
|
|
87796
89327
|
__exportStar(__webpack_require__(/*! ./AdaptiveQuantMode */ "./models/AdaptiveQuantMode.ts"), exports);
|
|
87797
89328
|
__exportStar(__webpack_require__(/*! ./AesEncryptionDrm */ "./models/AesEncryptionDrm.ts"), exports);
|
|
87798
89329
|
__exportStar(__webpack_require__(/*! ./AesEncryptionMethod */ "./models/AesEncryptionMethod.ts"), exports);
|
|
89330
|
+
__exportStar(__webpack_require__(/*! ./AkamaiAccount */ "./models/AkamaiAccount.ts"), exports);
|
|
89331
|
+
__exportStar(__webpack_require__(/*! ./AkamaiAccountRegionSettings */ "./models/AkamaiAccountRegionSettings.ts"), exports);
|
|
89332
|
+
__exportStar(__webpack_require__(/*! ./AkamaiCloudRegion */ "./models/AkamaiCloudRegion.ts"), exports);
|
|
87799
89333
|
__exportStar(__webpack_require__(/*! ./AkamaiMslOutput */ "./models/AkamaiMslOutput.ts"), exports);
|
|
87800
89334
|
__exportStar(__webpack_require__(/*! ./AkamaiMslStreamFormat */ "./models/AkamaiMslStreamFormat.ts"), exports);
|
|
87801
89335
|
__exportStar(__webpack_require__(/*! ./AkamaiMslVersion */ "./models/AkamaiMslVersion.ts"), exports);
|
|
@@ -88104,8 +89638,11 @@ __exportStar(__webpack_require__(/*! ./EncodingStats */ "./models/EncodingStats.
|
|
|
88104
89638
|
__exportStar(__webpack_require__(/*! ./EncodingStreamInput */ "./models/EncodingStreamInput.ts"), exports);
|
|
88105
89639
|
__exportStar(__webpack_require__(/*! ./EncodingStreamInputDetails */ "./models/EncodingStreamInputDetails.ts"), exports);
|
|
88106
89640
|
__exportStar(__webpack_require__(/*! ./EncodingTemplate */ "./models/EncodingTemplate.ts"), exports);
|
|
89641
|
+
__exportStar(__webpack_require__(/*! ./EncodingTemplateDetails */ "./models/EncodingTemplateDetails.ts"), exports);
|
|
88107
89642
|
__exportStar(__webpack_require__(/*! ./EncodingTemplateRequest */ "./models/EncodingTemplateRequest.ts"), exports);
|
|
89643
|
+
__exportStar(__webpack_require__(/*! ./EncodingTemplateResponse */ "./models/EncodingTemplateResponse.ts"), exports);
|
|
88108
89644
|
__exportStar(__webpack_require__(/*! ./EncodingTemplateStartResponse */ "./models/EncodingTemplateStartResponse.ts"), exports);
|
|
89645
|
+
__exportStar(__webpack_require__(/*! ./EncodingTemplateType */ "./models/EncodingTemplateType.ts"), exports);
|
|
88109
89646
|
__exportStar(__webpack_require__(/*! ./EncodingType */ "./models/EncodingType.ts"), exports);
|
|
88110
89647
|
__exportStar(__webpack_require__(/*! ./EncryptionMode */ "./models/EncryptionMode.ts"), exports);
|
|
88111
89648
|
__exportStar(__webpack_require__(/*! ./EnhancedDeinterlaceAutoEnable */ "./models/EnhancedDeinterlaceAutoEnable.ts"), exports);
|
|
@@ -88229,6 +89766,18 @@ __exportStar(__webpack_require__(/*! ./LiveOptionsEntry */ "./models/LiveOptions
|
|
|
88229
89766
|
__exportStar(__webpack_require__(/*! ./LiveOptionsStatistics */ "./models/LiveOptionsStatistics.ts"), exports);
|
|
88230
89767
|
__exportStar(__webpack_require__(/*! ./LiveOptionsSummary */ "./models/LiveOptionsSummary.ts"), exports);
|
|
88231
89768
|
__exportStar(__webpack_require__(/*! ./LiveOptionsType */ "./models/LiveOptionsType.ts"), exports);
|
|
89769
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolDetails */ "./models/LiveStandbyPoolDetails.ts"), exports);
|
|
89770
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolEncoding */ "./models/LiveStandbyPoolEncoding.ts"), exports);
|
|
89771
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolEncodingIngestPoint */ "./models/LiveStandbyPoolEncodingIngestPoint.ts"), exports);
|
|
89772
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolEncodingManifest */ "./models/LiveStandbyPoolEncodingManifest.ts"), exports);
|
|
89773
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolEncodingManifestType */ "./models/LiveStandbyPoolEncodingManifestType.ts"), exports);
|
|
89774
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolEncodingStatus */ "./models/LiveStandbyPoolEncodingStatus.ts"), exports);
|
|
89775
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolEventLog */ "./models/LiveStandbyPoolEventLog.ts"), exports);
|
|
89776
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolEventLogType */ "./models/LiveStandbyPoolEventLogType.ts"), exports);
|
|
89777
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolRequest */ "./models/LiveStandbyPoolRequest.ts"), exports);
|
|
89778
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolResponse */ "./models/LiveStandbyPoolResponse.ts"), exports);
|
|
89779
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolStatus */ "./models/LiveStandbyPoolStatus.ts"), exports);
|
|
89780
|
+
__exportStar(__webpack_require__(/*! ./LiveStandbyPoolUpdate */ "./models/LiveStandbyPoolUpdate.ts"), exports);
|
|
88232
89781
|
__exportStar(__webpack_require__(/*! ./LocalInput */ "./models/LocalInput.ts"), exports);
|
|
88233
89782
|
__exportStar(__webpack_require__(/*! ./LocalOutput */ "./models/LocalOutput.ts"), exports);
|
|
88234
89783
|
__exportStar(__webpack_require__(/*! ./Manifest */ "./models/Manifest.ts"), exports);
|
|
@@ -88519,7 +90068,6 @@ __exportStar(__webpack_require__(/*! ./Thumbnail */ "./models/Thumbnail.ts"), ex
|
|
|
88519
90068
|
__exportStar(__webpack_require__(/*! ./ThumbnailAspectMode */ "./models/ThumbnailAspectMode.ts"), exports);
|
|
88520
90069
|
__exportStar(__webpack_require__(/*! ./ThumbnailUnit */ "./models/ThumbnailUnit.ts"), exports);
|
|
88521
90070
|
__exportStar(__webpack_require__(/*! ./TimeBasedTrimmingInputStream */ "./models/TimeBasedTrimmingInputStream.ts"), exports);
|
|
88522
|
-
__exportStar(__webpack_require__(/*! ./TimeCode */ "./models/TimeCode.ts"), exports);
|
|
88523
90071
|
__exportStar(__webpack_require__(/*! ./TimeSpan */ "./models/TimeSpan.ts"), exports);
|
|
88524
90072
|
__exportStar(__webpack_require__(/*! ./TimecodeTrackTrimmingInputStream */ "./models/TimecodeTrackTrimmingInputStream.ts"), exports);
|
|
88525
90073
|
__exportStar(__webpack_require__(/*! ./TransferRetry */ "./models/TransferRetry.ts"), exports);
|