@bitmovin/api-sdk 1.223.0 → 1.224.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 +719 -1
- 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/oci/OciAccountListQueryParams.d.ts +28 -0
- package/dist/encoding/infrastructure/oci/OciAccountListQueryParams.js +29 -0
- package/dist/encoding/infrastructure/oci/OciApi.d.ts +44 -0
- package/dist/encoding/infrastructure/oci/OciApi.js +96 -0
- package/dist/encoding/infrastructure/oci/regions/OciAccountRegionSettingsListQueryParams.d.ts +28 -0
- package/dist/encoding/infrastructure/oci/regions/OciAccountRegionSettingsListQueryParams.js +29 -0
- package/dist/encoding/infrastructure/oci/regions/RegionsApi.d.ts +48 -0
- package/dist/encoding/infrastructure/oci/regions/RegionsApi.js +107 -0
- package/dist/models/CacheControl.d.ts +14 -0
- package/dist/models/CacheControl.js +19 -0
- package/dist/models/CacheControlSettings.d.ts +29 -0
- package/dist/models/CacheControlSettings.js +24 -0
- package/dist/models/CacheControlSettingsDash.d.ts +21 -0
- package/dist/models/CacheControlSettingsDash.js +21 -0
- package/dist/models/CacheControlSettingsHls.d.ts +21 -0
- package/dist/models/CacheControlSettingsHls.js +21 -0
- package/dist/models/CacheControlSettingsSegments.d.ts +21 -0
- package/dist/models/CacheControlSettingsSegments.js +21 -0
- package/dist/models/EsamSettings.d.ts +39 -0
- package/dist/models/EsamSettings.js +24 -0
- package/dist/models/OciAccount.d.ts +21 -0
- package/dist/models/OciAccount.js +39 -0
- package/dist/models/OciAccountRegionSettings.d.ts +22 -0
- package/dist/models/OciAccountRegionSettings.js +39 -0
- package/dist/models/OciCloudRegion.d.ts +9 -0
- package/dist/models/OciCloudRegion.js +13 -0
- package/dist/models/PlayerLicenseUpdateRequest.d.ts +14 -0
- package/dist/models/PlayerLicenseUpdateRequest.js +19 -0
- package/dist/models/PoisEndpointCredentials.d.ts +20 -0
- package/dist/models/PoisEndpointCredentials.js +20 -0
- package/dist/models/StartLiveEncodingRequest.d.ts +14 -0
- package/dist/models/StartLiveEncodingRequest.js +4 -0
- package/dist/models/index.d.ts +11 -0
- package/dist/models/index.js +11 -0
- package/dist/player/licenses/LicensesApi.d.ts +9 -0
- package/dist/player/licenses/LicensesApi.js +15 -0
- package/package.json +1 -1
|
@@ -6782,7 +6782,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
6782
6782
|
var headers = {
|
|
6783
6783
|
'X-Api-Key': apiKey,
|
|
6784
6784
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
6785
|
-
'X-Api-Client-Version': '1.
|
|
6785
|
+
'X-Api-Client-Version': '1.224.0',
|
|
6786
6786
|
'Content-Type': 'application/json'
|
|
6787
6787
|
};
|
|
6788
6788
|
if (tenantOrgId) {
|
|
@@ -36251,6 +36251,7 @@ var StaticIpsApi_1 = __webpack_require__(/*! ./staticIps/StaticIpsApi */ "./enco
|
|
|
36251
36251
|
var AzureApi_1 = __webpack_require__(/*! ./azure/AzureApi */ "./encoding/infrastructure/azure/AzureApi.ts");
|
|
36252
36252
|
var GceApi_1 = __webpack_require__(/*! ./gce/GceApi */ "./encoding/infrastructure/gce/GceApi.ts");
|
|
36253
36253
|
var AkamaiApi_1 = __webpack_require__(/*! ./akamai/AkamaiApi */ "./encoding/infrastructure/akamai/AkamaiApi.ts");
|
|
36254
|
+
var OciApi_1 = __webpack_require__(/*! ./oci/OciApi */ "./encoding/infrastructure/oci/OciApi.ts");
|
|
36254
36255
|
var PrewarmedEncoderPoolsApi_1 = __webpack_require__(/*! ./prewarmedEncoderPools/PrewarmedEncoderPoolsApi */ "./encoding/infrastructure/prewarmedEncoderPools/PrewarmedEncoderPoolsApi.ts");
|
|
36255
36256
|
/**
|
|
36256
36257
|
* InfrastructureApi - object-oriented interface
|
|
@@ -36267,6 +36268,7 @@ var InfrastructureApi = /** @class */ (function (_super) {
|
|
|
36267
36268
|
_this.azure = new AzureApi_1.default(configuration);
|
|
36268
36269
|
_this.gce = new GceApi_1.default(configuration);
|
|
36269
36270
|
_this.akamai = new AkamaiApi_1.default(configuration);
|
|
36271
|
+
_this.oci = new OciApi_1.default(configuration);
|
|
36270
36272
|
_this.prewarmedEncoderPools = new PrewarmedEncoderPoolsApi_1.default(configuration);
|
|
36271
36273
|
return _this;
|
|
36272
36274
|
}
|
|
@@ -37495,6 +37497,311 @@ var RegionsApi = /** @class */ (function (_super) {
|
|
|
37495
37497
|
exports["default"] = RegionsApi;
|
|
37496
37498
|
|
|
37497
37499
|
|
|
37500
|
+
/***/ }),
|
|
37501
|
+
|
|
37502
|
+
/***/ "./encoding/infrastructure/oci/OciAccountListQueryParams.ts":
|
|
37503
|
+
/*!******************************************************************!*\
|
|
37504
|
+
!*** ./encoding/infrastructure/oci/OciAccountListQueryParams.ts ***!
|
|
37505
|
+
\******************************************************************/
|
|
37506
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
37507
|
+
|
|
37508
|
+
"use strict";
|
|
37509
|
+
|
|
37510
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
37511
|
+
exports.OciAccountListQueryParamsBuilder = void 0;
|
|
37512
|
+
var OciAccountListQueryParamsBuilder = /** @class */ (function () {
|
|
37513
|
+
function OciAccountListQueryParamsBuilder() {
|
|
37514
|
+
this.internalParams = {};
|
|
37515
|
+
}
|
|
37516
|
+
/**
|
|
37517
|
+
*
|
|
37518
|
+
* @param offset Index of the first item to return, starting at 0. Default is 0
|
|
37519
|
+
*/
|
|
37520
|
+
OciAccountListQueryParamsBuilder.prototype.offset = function (offset) {
|
|
37521
|
+
this.internalParams.offset = offset;
|
|
37522
|
+
return this;
|
|
37523
|
+
};
|
|
37524
|
+
/**
|
|
37525
|
+
*
|
|
37526
|
+
* @param limit Maximum number of items to return. Default is 25, maximum is 100
|
|
37527
|
+
*/
|
|
37528
|
+
OciAccountListQueryParamsBuilder.prototype.limit = function (limit) {
|
|
37529
|
+
this.internalParams.limit = limit;
|
|
37530
|
+
return this;
|
|
37531
|
+
};
|
|
37532
|
+
OciAccountListQueryParamsBuilder.prototype.buildQueryParams = function () {
|
|
37533
|
+
return this.internalParams;
|
|
37534
|
+
};
|
|
37535
|
+
return OciAccountListQueryParamsBuilder;
|
|
37536
|
+
}());
|
|
37537
|
+
exports.OciAccountListQueryParamsBuilder = OciAccountListQueryParamsBuilder;
|
|
37538
|
+
|
|
37539
|
+
|
|
37540
|
+
/***/ }),
|
|
37541
|
+
|
|
37542
|
+
/***/ "./encoding/infrastructure/oci/OciApi.ts":
|
|
37543
|
+
/*!***********************************************!*\
|
|
37544
|
+
!*** ./encoding/infrastructure/oci/OciApi.ts ***!
|
|
37545
|
+
\***********************************************/
|
|
37546
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
37547
|
+
|
|
37548
|
+
"use strict";
|
|
37549
|
+
|
|
37550
|
+
var __extends = (this && this.__extends) || (function () {
|
|
37551
|
+
var extendStatics = function (d, b) {
|
|
37552
|
+
extendStatics = Object.setPrototypeOf ||
|
|
37553
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
37554
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
37555
|
+
return extendStatics(d, b);
|
|
37556
|
+
};
|
|
37557
|
+
return function (d, b) {
|
|
37558
|
+
if (typeof b !== "function" && b !== null)
|
|
37559
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
37560
|
+
extendStatics(d, b);
|
|
37561
|
+
function __() { this.constructor = d; }
|
|
37562
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
37563
|
+
};
|
|
37564
|
+
})();
|
|
37565
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
37566
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
37567
|
+
var Mapper_1 = __webpack_require__(/*! ../../../common/Mapper */ "./common/Mapper.ts");
|
|
37568
|
+
var RegionsApi_1 = __webpack_require__(/*! ./regions/RegionsApi */ "./encoding/infrastructure/oci/regions/RegionsApi.ts");
|
|
37569
|
+
var OciAccount_1 = __webpack_require__(/*! ../../../models/OciAccount */ "./models/OciAccount.ts");
|
|
37570
|
+
var PaginationResponse_1 = __webpack_require__(/*! ../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
37571
|
+
var OciAccountListQueryParams_1 = __webpack_require__(/*! ./OciAccountListQueryParams */ "./encoding/infrastructure/oci/OciAccountListQueryParams.ts");
|
|
37572
|
+
/**
|
|
37573
|
+
* OciApi - object-oriented interface
|
|
37574
|
+
* @export
|
|
37575
|
+
* @class OciApi
|
|
37576
|
+
* @extends {BaseAPI}
|
|
37577
|
+
*/
|
|
37578
|
+
var OciApi = /** @class */ (function (_super) {
|
|
37579
|
+
__extends(OciApi, _super);
|
|
37580
|
+
function OciApi(configuration) {
|
|
37581
|
+
var _this = _super.call(this, configuration) || this;
|
|
37582
|
+
_this.regions = new RegionsApi_1.default(configuration);
|
|
37583
|
+
return _this;
|
|
37584
|
+
}
|
|
37585
|
+
/**
|
|
37586
|
+
* @summary Add OCI account
|
|
37587
|
+
* @param {OciAccount} ociAccount The OCI account to be added
|
|
37588
|
+
* @throws {BitmovinError}
|
|
37589
|
+
* @memberof OciApi
|
|
37590
|
+
*/
|
|
37591
|
+
OciApi.prototype.create = function (ociAccount) {
|
|
37592
|
+
return this.restClient.post('/encoding/infrastructure/oci', {}, ociAccount).then(function (response) {
|
|
37593
|
+
return (0, Mapper_1.map)(response, OciAccount_1.default);
|
|
37594
|
+
});
|
|
37595
|
+
};
|
|
37596
|
+
/**
|
|
37597
|
+
* @summary Delete OCI account
|
|
37598
|
+
* @param {string} infrastructureId Id of the OCI account
|
|
37599
|
+
* @throws {BitmovinError}
|
|
37600
|
+
* @memberof OciApi
|
|
37601
|
+
*/
|
|
37602
|
+
OciApi.prototype.delete = function (infrastructureId) {
|
|
37603
|
+
var pathParamMap = {
|
|
37604
|
+
infrastructure_id: infrastructureId
|
|
37605
|
+
};
|
|
37606
|
+
return this.restClient.delete('/encoding/infrastructure/oci/{infrastructure_id}', pathParamMap).then(function (response) {
|
|
37607
|
+
return (0, Mapper_1.map)(response, OciAccount_1.default);
|
|
37608
|
+
});
|
|
37609
|
+
};
|
|
37610
|
+
/**
|
|
37611
|
+
* @summary OCI account details
|
|
37612
|
+
* @param {string} infrastructureId Id of the OCI account
|
|
37613
|
+
* @throws {BitmovinError}
|
|
37614
|
+
* @memberof OciApi
|
|
37615
|
+
*/
|
|
37616
|
+
OciApi.prototype.get = function (infrastructureId) {
|
|
37617
|
+
var pathParamMap = {
|
|
37618
|
+
infrastructure_id: infrastructureId
|
|
37619
|
+
};
|
|
37620
|
+
return this.restClient.get('/encoding/infrastructure/oci/{infrastructure_id}', pathParamMap).then(function (response) {
|
|
37621
|
+
return (0, Mapper_1.map)(response, OciAccount_1.default);
|
|
37622
|
+
});
|
|
37623
|
+
};
|
|
37624
|
+
/**
|
|
37625
|
+
* @summary List OCI accounts
|
|
37626
|
+
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
37627
|
+
* @throws {BitmovinError}
|
|
37628
|
+
* @memberof OciApi
|
|
37629
|
+
*/
|
|
37630
|
+
OciApi.prototype.list = function (queryParameters) {
|
|
37631
|
+
var queryParams = {};
|
|
37632
|
+
if (typeof queryParameters === 'function') {
|
|
37633
|
+
queryParams = queryParameters(new OciAccountListQueryParams_1.OciAccountListQueryParamsBuilder()).buildQueryParams();
|
|
37634
|
+
}
|
|
37635
|
+
else if (queryParameters) {
|
|
37636
|
+
queryParams = queryParameters;
|
|
37637
|
+
}
|
|
37638
|
+
return this.restClient.get('/encoding/infrastructure/oci', {}, queryParams).then(function (response) {
|
|
37639
|
+
return new PaginationResponse_1.default(response, OciAccount_1.default);
|
|
37640
|
+
});
|
|
37641
|
+
};
|
|
37642
|
+
return OciApi;
|
|
37643
|
+
}(BaseAPI_1.BaseAPI));
|
|
37644
|
+
exports["default"] = OciApi;
|
|
37645
|
+
|
|
37646
|
+
|
|
37647
|
+
/***/ }),
|
|
37648
|
+
|
|
37649
|
+
/***/ "./encoding/infrastructure/oci/regions/OciAccountRegionSettingsListQueryParams.ts":
|
|
37650
|
+
/*!****************************************************************************************!*\
|
|
37651
|
+
!*** ./encoding/infrastructure/oci/regions/OciAccountRegionSettingsListQueryParams.ts ***!
|
|
37652
|
+
\****************************************************************************************/
|
|
37653
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
37654
|
+
|
|
37655
|
+
"use strict";
|
|
37656
|
+
|
|
37657
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
37658
|
+
exports.OciAccountRegionSettingsListQueryParamsBuilder = void 0;
|
|
37659
|
+
var OciAccountRegionSettingsListQueryParamsBuilder = /** @class */ (function () {
|
|
37660
|
+
function OciAccountRegionSettingsListQueryParamsBuilder() {
|
|
37661
|
+
this.internalParams = {};
|
|
37662
|
+
}
|
|
37663
|
+
/**
|
|
37664
|
+
*
|
|
37665
|
+
* @param offset Index of the first item to return, starting at 0. Default is 0
|
|
37666
|
+
*/
|
|
37667
|
+
OciAccountRegionSettingsListQueryParamsBuilder.prototype.offset = function (offset) {
|
|
37668
|
+
this.internalParams.offset = offset;
|
|
37669
|
+
return this;
|
|
37670
|
+
};
|
|
37671
|
+
/**
|
|
37672
|
+
*
|
|
37673
|
+
* @param limit Maximum number of items to return. Default is 25, maximum is 100
|
|
37674
|
+
*/
|
|
37675
|
+
OciAccountRegionSettingsListQueryParamsBuilder.prototype.limit = function (limit) {
|
|
37676
|
+
this.internalParams.limit = limit;
|
|
37677
|
+
return this;
|
|
37678
|
+
};
|
|
37679
|
+
OciAccountRegionSettingsListQueryParamsBuilder.prototype.buildQueryParams = function () {
|
|
37680
|
+
return this.internalParams;
|
|
37681
|
+
};
|
|
37682
|
+
return OciAccountRegionSettingsListQueryParamsBuilder;
|
|
37683
|
+
}());
|
|
37684
|
+
exports.OciAccountRegionSettingsListQueryParamsBuilder = OciAccountRegionSettingsListQueryParamsBuilder;
|
|
37685
|
+
|
|
37686
|
+
|
|
37687
|
+
/***/ }),
|
|
37688
|
+
|
|
37689
|
+
/***/ "./encoding/infrastructure/oci/regions/RegionsApi.ts":
|
|
37690
|
+
/*!***********************************************************!*\
|
|
37691
|
+
!*** ./encoding/infrastructure/oci/regions/RegionsApi.ts ***!
|
|
37692
|
+
\***********************************************************/
|
|
37693
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
37694
|
+
|
|
37695
|
+
"use strict";
|
|
37696
|
+
|
|
37697
|
+
var __extends = (this && this.__extends) || (function () {
|
|
37698
|
+
var extendStatics = function (d, b) {
|
|
37699
|
+
extendStatics = Object.setPrototypeOf ||
|
|
37700
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
37701
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
37702
|
+
return extendStatics(d, b);
|
|
37703
|
+
};
|
|
37704
|
+
return function (d, b) {
|
|
37705
|
+
if (typeof b !== "function" && b !== null)
|
|
37706
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
37707
|
+
extendStatics(d, b);
|
|
37708
|
+
function __() { this.constructor = d; }
|
|
37709
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
37710
|
+
};
|
|
37711
|
+
})();
|
|
37712
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
37713
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
37714
|
+
var Mapper_1 = __webpack_require__(/*! ../../../../common/Mapper */ "./common/Mapper.ts");
|
|
37715
|
+
var OciAccountRegionSettings_1 = __webpack_require__(/*! ../../../../models/OciAccountRegionSettings */ "./models/OciAccountRegionSettings.ts");
|
|
37716
|
+
var PaginationResponse_1 = __webpack_require__(/*! ../../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
|
|
37717
|
+
var OciAccountRegionSettingsListQueryParams_1 = __webpack_require__(/*! ./OciAccountRegionSettingsListQueryParams */ "./encoding/infrastructure/oci/regions/OciAccountRegionSettingsListQueryParams.ts");
|
|
37718
|
+
/**
|
|
37719
|
+
* RegionsApi - object-oriented interface
|
|
37720
|
+
* @export
|
|
37721
|
+
* @class RegionsApi
|
|
37722
|
+
* @extends {BaseAPI}
|
|
37723
|
+
*/
|
|
37724
|
+
var RegionsApi = /** @class */ (function (_super) {
|
|
37725
|
+
__extends(RegionsApi, _super);
|
|
37726
|
+
function RegionsApi(configuration) {
|
|
37727
|
+
return _super.call(this, configuration) || this;
|
|
37728
|
+
}
|
|
37729
|
+
/**
|
|
37730
|
+
* @summary Add OCI account region settings
|
|
37731
|
+
* @param {string} infrastructureId Id of the OCI account
|
|
37732
|
+
* @param {OciCloudRegion} region OCI region
|
|
37733
|
+
* @param {OciAccountRegionSettings} ociAccountRegionSettings The OCI account region settings to be added
|
|
37734
|
+
* @throws {BitmovinError}
|
|
37735
|
+
* @memberof RegionsApi
|
|
37736
|
+
*/
|
|
37737
|
+
RegionsApi.prototype.create = function (infrastructureId, region, ociAccountRegionSettings) {
|
|
37738
|
+
var pathParamMap = {
|
|
37739
|
+
infrastructure_id: infrastructureId,
|
|
37740
|
+
region: region
|
|
37741
|
+
};
|
|
37742
|
+
return this.restClient.post('/encoding/infrastructure/oci/{infrastructure_id}/regions/{region}', pathParamMap, ociAccountRegionSettings).then(function (response) {
|
|
37743
|
+
return (0, Mapper_1.map)(response, OciAccountRegionSettings_1.default);
|
|
37744
|
+
});
|
|
37745
|
+
};
|
|
37746
|
+
/**
|
|
37747
|
+
* @summary Delete OCI account region settings
|
|
37748
|
+
* @param {string} infrastructureId Id of the OCI account
|
|
37749
|
+
* @param {OciCloudRegion} region OCI region
|
|
37750
|
+
* @throws {BitmovinError}
|
|
37751
|
+
* @memberof RegionsApi
|
|
37752
|
+
*/
|
|
37753
|
+
RegionsApi.prototype.delete = function (infrastructureId, region) {
|
|
37754
|
+
var pathParamMap = {
|
|
37755
|
+
infrastructure_id: infrastructureId,
|
|
37756
|
+
region: region
|
|
37757
|
+
};
|
|
37758
|
+
return this.restClient.delete('/encoding/infrastructure/oci/{infrastructure_id}/regions/{region}', pathParamMap).then(function (response) {
|
|
37759
|
+
return (0, Mapper_1.map)(response, OciAccountRegionSettings_1.default);
|
|
37760
|
+
});
|
|
37761
|
+
};
|
|
37762
|
+
/**
|
|
37763
|
+
* @summary OCI account region settings details
|
|
37764
|
+
* @param {string} infrastructureId Id of the OCI account
|
|
37765
|
+
* @param {OciCloudRegion} region OCI region
|
|
37766
|
+
* @throws {BitmovinError}
|
|
37767
|
+
* @memberof RegionsApi
|
|
37768
|
+
*/
|
|
37769
|
+
RegionsApi.prototype.get = function (infrastructureId, region) {
|
|
37770
|
+
var pathParamMap = {
|
|
37771
|
+
infrastructure_id: infrastructureId,
|
|
37772
|
+
region: region
|
|
37773
|
+
};
|
|
37774
|
+
return this.restClient.get('/encoding/infrastructure/oci/{infrastructure_id}/regions/{region}', pathParamMap).then(function (response) {
|
|
37775
|
+
return (0, Mapper_1.map)(response, OciAccountRegionSettings_1.default);
|
|
37776
|
+
});
|
|
37777
|
+
};
|
|
37778
|
+
/**
|
|
37779
|
+
* @summary List OCI account region settings
|
|
37780
|
+
* @param {string} infrastructureId Id of the OCI account
|
|
37781
|
+
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
37782
|
+
* @throws {BitmovinError}
|
|
37783
|
+
* @memberof RegionsApi
|
|
37784
|
+
*/
|
|
37785
|
+
RegionsApi.prototype.list = function (infrastructureId, queryParameters) {
|
|
37786
|
+
var pathParamMap = {
|
|
37787
|
+
infrastructure_id: infrastructureId
|
|
37788
|
+
};
|
|
37789
|
+
var queryParams = {};
|
|
37790
|
+
if (typeof queryParameters === 'function') {
|
|
37791
|
+
queryParams = queryParameters(new OciAccountRegionSettingsListQueryParams_1.OciAccountRegionSettingsListQueryParamsBuilder()).buildQueryParams();
|
|
37792
|
+
}
|
|
37793
|
+
else if (queryParameters) {
|
|
37794
|
+
queryParams = queryParameters;
|
|
37795
|
+
}
|
|
37796
|
+
return this.restClient.get('/encoding/infrastructure/oci/{infrastructure_id}/regions', pathParamMap, queryParams).then(function (response) {
|
|
37797
|
+
return new PaginationResponse_1.default(response, OciAccountRegionSettings_1.default);
|
|
37798
|
+
});
|
|
37799
|
+
};
|
|
37800
|
+
return RegionsApi;
|
|
37801
|
+
}(BaseAPI_1.BaseAPI));
|
|
37802
|
+
exports["default"] = RegionsApi;
|
|
37803
|
+
|
|
37804
|
+
|
|
37498
37805
|
/***/ }),
|
|
37499
37806
|
|
|
37500
37807
|
/***/ "./encoding/infrastructure/prewarmedEncoderPools/PrewarmedEncoderPoolListQueryParams.ts":
|
|
@@ -63713,6 +64020,167 @@ exports.BurnInSubtitleSrt = BurnInSubtitleSrt;
|
|
|
63713
64020
|
exports["default"] = BurnInSubtitleSrt;
|
|
63714
64021
|
|
|
63715
64022
|
|
|
64023
|
+
/***/ }),
|
|
64024
|
+
|
|
64025
|
+
/***/ "./models/CacheControl.ts":
|
|
64026
|
+
/*!********************************!*\
|
|
64027
|
+
!*** ./models/CacheControl.ts ***!
|
|
64028
|
+
\********************************/
|
|
64029
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
64030
|
+
|
|
64031
|
+
"use strict";
|
|
64032
|
+
|
|
64033
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
64034
|
+
exports.CacheControl = void 0;
|
|
64035
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
64036
|
+
/**
|
|
64037
|
+
* @export
|
|
64038
|
+
* @class CacheControl
|
|
64039
|
+
*/
|
|
64040
|
+
var CacheControl = /** @class */ (function () {
|
|
64041
|
+
function CacheControl(obj) {
|
|
64042
|
+
if (!obj) {
|
|
64043
|
+
return;
|
|
64044
|
+
}
|
|
64045
|
+
this.cacheControl = (0, Mapper_1.map)(obj.cacheControl);
|
|
64046
|
+
}
|
|
64047
|
+
return CacheControl;
|
|
64048
|
+
}());
|
|
64049
|
+
exports.CacheControl = CacheControl;
|
|
64050
|
+
exports["default"] = CacheControl;
|
|
64051
|
+
|
|
64052
|
+
|
|
64053
|
+
/***/ }),
|
|
64054
|
+
|
|
64055
|
+
/***/ "./models/CacheControlSettings.ts":
|
|
64056
|
+
/*!****************************************!*\
|
|
64057
|
+
!*** ./models/CacheControlSettings.ts ***!
|
|
64058
|
+
\****************************************/
|
|
64059
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
64060
|
+
|
|
64061
|
+
"use strict";
|
|
64062
|
+
|
|
64063
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
64064
|
+
exports.CacheControlSettings = void 0;
|
|
64065
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
64066
|
+
var CacheControlSettingsDash_1 = __webpack_require__(/*! ./CacheControlSettingsDash */ "./models/CacheControlSettingsDash.ts");
|
|
64067
|
+
var CacheControlSettingsHls_1 = __webpack_require__(/*! ./CacheControlSettingsHls */ "./models/CacheControlSettingsHls.ts");
|
|
64068
|
+
var CacheControlSettingsSegments_1 = __webpack_require__(/*! ./CacheControlSettingsSegments */ "./models/CacheControlSettingsSegments.ts");
|
|
64069
|
+
/**
|
|
64070
|
+
* @export
|
|
64071
|
+
* @class CacheControlSettings
|
|
64072
|
+
*/
|
|
64073
|
+
var CacheControlSettings = /** @class */ (function () {
|
|
64074
|
+
function CacheControlSettings(obj) {
|
|
64075
|
+
if (!obj) {
|
|
64076
|
+
return;
|
|
64077
|
+
}
|
|
64078
|
+
this.hls = (0, Mapper_1.map)(obj.hls, CacheControlSettingsHls_1.default);
|
|
64079
|
+
this.dash = (0, Mapper_1.map)(obj.dash, CacheControlSettingsDash_1.default);
|
|
64080
|
+
this.segments = (0, Mapper_1.map)(obj.segments, CacheControlSettingsSegments_1.default);
|
|
64081
|
+
}
|
|
64082
|
+
return CacheControlSettings;
|
|
64083
|
+
}());
|
|
64084
|
+
exports.CacheControlSettings = CacheControlSettings;
|
|
64085
|
+
exports["default"] = CacheControlSettings;
|
|
64086
|
+
|
|
64087
|
+
|
|
64088
|
+
/***/ }),
|
|
64089
|
+
|
|
64090
|
+
/***/ "./models/CacheControlSettingsDash.ts":
|
|
64091
|
+
/*!********************************************!*\
|
|
64092
|
+
!*** ./models/CacheControlSettingsDash.ts ***!
|
|
64093
|
+
\********************************************/
|
|
64094
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
64095
|
+
|
|
64096
|
+
"use strict";
|
|
64097
|
+
|
|
64098
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
64099
|
+
exports.CacheControlSettingsDash = void 0;
|
|
64100
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
64101
|
+
var CacheControl_1 = __webpack_require__(/*! ./CacheControl */ "./models/CacheControl.ts");
|
|
64102
|
+
/**
|
|
64103
|
+
* @export
|
|
64104
|
+
* @class CacheControlSettingsDash
|
|
64105
|
+
*/
|
|
64106
|
+
var CacheControlSettingsDash = /** @class */ (function () {
|
|
64107
|
+
function CacheControlSettingsDash(obj) {
|
|
64108
|
+
if (!obj) {
|
|
64109
|
+
return;
|
|
64110
|
+
}
|
|
64111
|
+
this.timelineManifest = (0, Mapper_1.map)(obj.timelineManifest, CacheControl_1.default);
|
|
64112
|
+
this.templateManifest = (0, Mapper_1.map)(obj.templateManifest, CacheControl_1.default);
|
|
64113
|
+
}
|
|
64114
|
+
return CacheControlSettingsDash;
|
|
64115
|
+
}());
|
|
64116
|
+
exports.CacheControlSettingsDash = CacheControlSettingsDash;
|
|
64117
|
+
exports["default"] = CacheControlSettingsDash;
|
|
64118
|
+
|
|
64119
|
+
|
|
64120
|
+
/***/ }),
|
|
64121
|
+
|
|
64122
|
+
/***/ "./models/CacheControlSettingsHls.ts":
|
|
64123
|
+
/*!*******************************************!*\
|
|
64124
|
+
!*** ./models/CacheControlSettingsHls.ts ***!
|
|
64125
|
+
\*******************************************/
|
|
64126
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
64127
|
+
|
|
64128
|
+
"use strict";
|
|
64129
|
+
|
|
64130
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
64131
|
+
exports.CacheControlSettingsHls = void 0;
|
|
64132
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
64133
|
+
var CacheControl_1 = __webpack_require__(/*! ./CacheControl */ "./models/CacheControl.ts");
|
|
64134
|
+
/**
|
|
64135
|
+
* @export
|
|
64136
|
+
* @class CacheControlSettingsHls
|
|
64137
|
+
*/
|
|
64138
|
+
var CacheControlSettingsHls = /** @class */ (function () {
|
|
64139
|
+
function CacheControlSettingsHls(obj) {
|
|
64140
|
+
if (!obj) {
|
|
64141
|
+
return;
|
|
64142
|
+
}
|
|
64143
|
+
this.multiVariantPlaylist = (0, Mapper_1.map)(obj.multiVariantPlaylist, CacheControl_1.default);
|
|
64144
|
+
this.variantPlaylist = (0, Mapper_1.map)(obj.variantPlaylist, CacheControl_1.default);
|
|
64145
|
+
}
|
|
64146
|
+
return CacheControlSettingsHls;
|
|
64147
|
+
}());
|
|
64148
|
+
exports.CacheControlSettingsHls = CacheControlSettingsHls;
|
|
64149
|
+
exports["default"] = CacheControlSettingsHls;
|
|
64150
|
+
|
|
64151
|
+
|
|
64152
|
+
/***/ }),
|
|
64153
|
+
|
|
64154
|
+
/***/ "./models/CacheControlSettingsSegments.ts":
|
|
64155
|
+
/*!************************************************!*\
|
|
64156
|
+
!*** ./models/CacheControlSettingsSegments.ts ***!
|
|
64157
|
+
\************************************************/
|
|
64158
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
64159
|
+
|
|
64160
|
+
"use strict";
|
|
64161
|
+
|
|
64162
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
64163
|
+
exports.CacheControlSettingsSegments = void 0;
|
|
64164
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
64165
|
+
var CacheControl_1 = __webpack_require__(/*! ./CacheControl */ "./models/CacheControl.ts");
|
|
64166
|
+
/**
|
|
64167
|
+
* @export
|
|
64168
|
+
* @class CacheControlSettingsSegments
|
|
64169
|
+
*/
|
|
64170
|
+
var CacheControlSettingsSegments = /** @class */ (function () {
|
|
64171
|
+
function CacheControlSettingsSegments(obj) {
|
|
64172
|
+
if (!obj) {
|
|
64173
|
+
return;
|
|
64174
|
+
}
|
|
64175
|
+
this.initSegment = (0, Mapper_1.map)(obj.initSegment, CacheControl_1.default);
|
|
64176
|
+
this.mediaSegment = (0, Mapper_1.map)(obj.mediaSegment, CacheControl_1.default);
|
|
64177
|
+
}
|
|
64178
|
+
return CacheControlSettingsSegments;
|
|
64179
|
+
}());
|
|
64180
|
+
exports.CacheControlSettingsSegments = CacheControlSettingsSegments;
|
|
64181
|
+
exports["default"] = CacheControlSettingsSegments;
|
|
64182
|
+
|
|
64183
|
+
|
|
63716
64184
|
/***/ }),
|
|
63717
64185
|
|
|
63718
64186
|
/***/ "./models/CaptionCharacterEncoding.ts":
|
|
@@ -71556,6 +72024,41 @@ var ErrorRetryHint;
|
|
|
71556
72024
|
exports["default"] = ErrorRetryHint;
|
|
71557
72025
|
|
|
71558
72026
|
|
|
72027
|
+
/***/ }),
|
|
72028
|
+
|
|
72029
|
+
/***/ "./models/EsamSettings.ts":
|
|
72030
|
+
/*!********************************!*\
|
|
72031
|
+
!*** ./models/EsamSettings.ts ***!
|
|
72032
|
+
\********************************/
|
|
72033
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
72034
|
+
|
|
72035
|
+
"use strict";
|
|
72036
|
+
|
|
72037
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
72038
|
+
exports.EsamSettings = void 0;
|
|
72039
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
72040
|
+
var PoisEndpointCredentials_1 = __webpack_require__(/*! ./PoisEndpointCredentials */ "./models/PoisEndpointCredentials.ts");
|
|
72041
|
+
/**
|
|
72042
|
+
* @export
|
|
72043
|
+
* @class EsamSettings
|
|
72044
|
+
*/
|
|
72045
|
+
var EsamSettings = /** @class */ (function () {
|
|
72046
|
+
function EsamSettings(obj) {
|
|
72047
|
+
if (!obj) {
|
|
72048
|
+
return;
|
|
72049
|
+
}
|
|
72050
|
+
this.poisEndpoint = (0, Mapper_1.map)(obj.poisEndpoint);
|
|
72051
|
+
this.acquisitionPointIdentity = (0, Mapper_1.map)(obj.acquisitionPointIdentity);
|
|
72052
|
+
this.zoneIdentity = (0, Mapper_1.map)(obj.zoneIdentity);
|
|
72053
|
+
this.adAvailOffset = (0, Mapper_1.map)(obj.adAvailOffset);
|
|
72054
|
+
this.poisEndpointCredentials = (0, Mapper_1.map)(obj.poisEndpointCredentials, PoisEndpointCredentials_1.default);
|
|
72055
|
+
}
|
|
72056
|
+
return EsamSettings;
|
|
72057
|
+
}());
|
|
72058
|
+
exports.EsamSettings = EsamSettings;
|
|
72059
|
+
exports["default"] = EsamSettings;
|
|
72060
|
+
|
|
72061
|
+
|
|
71559
72062
|
/***/ }),
|
|
71560
72063
|
|
|
71561
72064
|
/***/ "./models/ExternalIdMode.ts":
|
|
@@ -78319,6 +78822,130 @@ var NotificationStates;
|
|
|
78319
78822
|
exports["default"] = NotificationStates;
|
|
78320
78823
|
|
|
78321
78824
|
|
|
78825
|
+
/***/ }),
|
|
78826
|
+
|
|
78827
|
+
/***/ "./models/OciAccount.ts":
|
|
78828
|
+
/*!******************************!*\
|
|
78829
|
+
!*** ./models/OciAccount.ts ***!
|
|
78830
|
+
\******************************/
|
|
78831
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
78832
|
+
|
|
78833
|
+
"use strict";
|
|
78834
|
+
|
|
78835
|
+
var __extends = (this && this.__extends) || (function () {
|
|
78836
|
+
var extendStatics = function (d, b) {
|
|
78837
|
+
extendStatics = Object.setPrototypeOf ||
|
|
78838
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
78839
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
78840
|
+
return extendStatics(d, b);
|
|
78841
|
+
};
|
|
78842
|
+
return function (d, b) {
|
|
78843
|
+
if (typeof b !== "function" && b !== null)
|
|
78844
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
78845
|
+
extendStatics(d, b);
|
|
78846
|
+
function __() { this.constructor = d; }
|
|
78847
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
78848
|
+
};
|
|
78849
|
+
})();
|
|
78850
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
78851
|
+
exports.OciAccount = void 0;
|
|
78852
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
78853
|
+
var BitmovinResource_1 = __webpack_require__(/*! ./BitmovinResource */ "./models/BitmovinResource.ts");
|
|
78854
|
+
/**
|
|
78855
|
+
* @export
|
|
78856
|
+
* @class OciAccount
|
|
78857
|
+
*/
|
|
78858
|
+
var OciAccount = /** @class */ (function (_super) {
|
|
78859
|
+
__extends(OciAccount, _super);
|
|
78860
|
+
function OciAccount(obj) {
|
|
78861
|
+
var _this = _super.call(this, obj) || this;
|
|
78862
|
+
if (!obj) {
|
|
78863
|
+
return _this;
|
|
78864
|
+
}
|
|
78865
|
+
_this.tenancyId = (0, Mapper_1.map)(obj.tenancyId);
|
|
78866
|
+
_this.compartmentId = (0, Mapper_1.map)(obj.compartmentId);
|
|
78867
|
+
return _this;
|
|
78868
|
+
}
|
|
78869
|
+
return OciAccount;
|
|
78870
|
+
}(BitmovinResource_1.default));
|
|
78871
|
+
exports.OciAccount = OciAccount;
|
|
78872
|
+
exports["default"] = OciAccount;
|
|
78873
|
+
|
|
78874
|
+
|
|
78875
|
+
/***/ }),
|
|
78876
|
+
|
|
78877
|
+
/***/ "./models/OciAccountRegionSettings.ts":
|
|
78878
|
+
/*!********************************************!*\
|
|
78879
|
+
!*** ./models/OciAccountRegionSettings.ts ***!
|
|
78880
|
+
\********************************************/
|
|
78881
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
78882
|
+
|
|
78883
|
+
"use strict";
|
|
78884
|
+
|
|
78885
|
+
var __extends = (this && this.__extends) || (function () {
|
|
78886
|
+
var extendStatics = function (d, b) {
|
|
78887
|
+
extendStatics = Object.setPrototypeOf ||
|
|
78888
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
78889
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
78890
|
+
return extendStatics(d, b);
|
|
78891
|
+
};
|
|
78892
|
+
return function (d, b) {
|
|
78893
|
+
if (typeof b !== "function" && b !== null)
|
|
78894
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
78895
|
+
extendStatics(d, b);
|
|
78896
|
+
function __() { this.constructor = d; }
|
|
78897
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
78898
|
+
};
|
|
78899
|
+
})();
|
|
78900
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
78901
|
+
exports.OciAccountRegionSettings = void 0;
|
|
78902
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
78903
|
+
var BitmovinResource_1 = __webpack_require__(/*! ./BitmovinResource */ "./models/BitmovinResource.ts");
|
|
78904
|
+
/**
|
|
78905
|
+
* @export
|
|
78906
|
+
* @class OciAccountRegionSettings
|
|
78907
|
+
*/
|
|
78908
|
+
var OciAccountRegionSettings = /** @class */ (function (_super) {
|
|
78909
|
+
__extends(OciAccountRegionSettings, _super);
|
|
78910
|
+
function OciAccountRegionSettings(obj) {
|
|
78911
|
+
var _this = _super.call(this, obj) || this;
|
|
78912
|
+
if (!obj) {
|
|
78913
|
+
return _this;
|
|
78914
|
+
}
|
|
78915
|
+
_this.subnetId = (0, Mapper_1.map)(obj.subnetId);
|
|
78916
|
+
_this.region = (0, Mapper_1.map)(obj.region);
|
|
78917
|
+
return _this;
|
|
78918
|
+
}
|
|
78919
|
+
return OciAccountRegionSettings;
|
|
78920
|
+
}(BitmovinResource_1.default));
|
|
78921
|
+
exports.OciAccountRegionSettings = OciAccountRegionSettings;
|
|
78922
|
+
exports["default"] = OciAccountRegionSettings;
|
|
78923
|
+
|
|
78924
|
+
|
|
78925
|
+
/***/ }),
|
|
78926
|
+
|
|
78927
|
+
/***/ "./models/OciCloudRegion.ts":
|
|
78928
|
+
/*!**********************************!*\
|
|
78929
|
+
!*** ./models/OciCloudRegion.ts ***!
|
|
78930
|
+
\**********************************/
|
|
78931
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
78932
|
+
|
|
78933
|
+
"use strict";
|
|
78934
|
+
|
|
78935
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
78936
|
+
exports.OciCloudRegion = void 0;
|
|
78937
|
+
/**
|
|
78938
|
+
* @export
|
|
78939
|
+
* @enum {string}
|
|
78940
|
+
*/
|
|
78941
|
+
var OciCloudRegion;
|
|
78942
|
+
(function (OciCloudRegion) {
|
|
78943
|
+
OciCloudRegion["EU_FRANKFURT_1"] = "EU_FRANKFURT_1";
|
|
78944
|
+
OciCloudRegion["US_ASHBURN_1"] = "US_ASHBURN_1";
|
|
78945
|
+
})(OciCloudRegion || (exports.OciCloudRegion = OciCloudRegion = {}));
|
|
78946
|
+
exports["default"] = OciCloudRegion;
|
|
78947
|
+
|
|
78948
|
+
|
|
78322
78949
|
/***/ }),
|
|
78323
78950
|
|
|
78324
78951
|
/***/ "./models/OpusAudioConfiguration.ts":
|
|
@@ -79784,6 +80411,36 @@ exports.PlayerLicenseAnalytics = PlayerLicenseAnalytics;
|
|
|
79784
80411
|
exports["default"] = PlayerLicenseAnalytics;
|
|
79785
80412
|
|
|
79786
80413
|
|
|
80414
|
+
/***/ }),
|
|
80415
|
+
|
|
80416
|
+
/***/ "./models/PlayerLicenseUpdateRequest.ts":
|
|
80417
|
+
/*!**********************************************!*\
|
|
80418
|
+
!*** ./models/PlayerLicenseUpdateRequest.ts ***!
|
|
80419
|
+
\**********************************************/
|
|
80420
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
80421
|
+
|
|
80422
|
+
"use strict";
|
|
80423
|
+
|
|
80424
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
80425
|
+
exports.PlayerLicenseUpdateRequest = void 0;
|
|
80426
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
80427
|
+
/**
|
|
80428
|
+
* @export
|
|
80429
|
+
* @class PlayerLicenseUpdateRequest
|
|
80430
|
+
*/
|
|
80431
|
+
var PlayerLicenseUpdateRequest = /** @class */ (function () {
|
|
80432
|
+
function PlayerLicenseUpdateRequest(obj) {
|
|
80433
|
+
if (!obj) {
|
|
80434
|
+
return;
|
|
80435
|
+
}
|
|
80436
|
+
this.name = (0, Mapper_1.map)(obj.name);
|
|
80437
|
+
}
|
|
80438
|
+
return PlayerLicenseUpdateRequest;
|
|
80439
|
+
}());
|
|
80440
|
+
exports.PlayerLicenseUpdateRequest = PlayerLicenseUpdateRequest;
|
|
80441
|
+
exports["default"] = PlayerLicenseUpdateRequest;
|
|
80442
|
+
|
|
80443
|
+
|
|
79787
80444
|
/***/ }),
|
|
79788
80445
|
|
|
79789
80446
|
/***/ "./models/PlayerThirdPartyLicensing.ts":
|
|
@@ -79893,6 +80550,37 @@ exports.PlayerVersion = PlayerVersion;
|
|
|
79893
80550
|
exports["default"] = PlayerVersion;
|
|
79894
80551
|
|
|
79895
80552
|
|
|
80553
|
+
/***/ }),
|
|
80554
|
+
|
|
80555
|
+
/***/ "./models/PoisEndpointCredentials.ts":
|
|
80556
|
+
/*!*******************************************!*\
|
|
80557
|
+
!*** ./models/PoisEndpointCredentials.ts ***!
|
|
80558
|
+
\*******************************************/
|
|
80559
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
80560
|
+
|
|
80561
|
+
"use strict";
|
|
80562
|
+
|
|
80563
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
80564
|
+
exports.PoisEndpointCredentials = void 0;
|
|
80565
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
80566
|
+
/**
|
|
80567
|
+
* @export
|
|
80568
|
+
* @class PoisEndpointCredentials
|
|
80569
|
+
*/
|
|
80570
|
+
var PoisEndpointCredentials = /** @class */ (function () {
|
|
80571
|
+
function PoisEndpointCredentials(obj) {
|
|
80572
|
+
if (!obj) {
|
|
80573
|
+
return;
|
|
80574
|
+
}
|
|
80575
|
+
this.username = (0, Mapper_1.map)(obj.username);
|
|
80576
|
+
this.password = (0, Mapper_1.map)(obj.password);
|
|
80577
|
+
}
|
|
80578
|
+
return PoisEndpointCredentials;
|
|
80579
|
+
}());
|
|
80580
|
+
exports.PoisEndpointCredentials = PoisEndpointCredentials;
|
|
80581
|
+
exports["default"] = PoisEndpointCredentials;
|
|
80582
|
+
|
|
80583
|
+
|
|
79896
80584
|
/***/ }),
|
|
79897
80585
|
|
|
79898
80586
|
/***/ "./models/Policy.ts":
|
|
@@ -85363,6 +86051,8 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
85363
86051
|
exports.StartLiveEncodingRequest = void 0;
|
|
85364
86052
|
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
85365
86053
|
var AutoRestartConfiguration_1 = __webpack_require__(/*! ./AutoRestartConfiguration */ "./models/AutoRestartConfiguration.ts");
|
|
86054
|
+
var CacheControlSettings_1 = __webpack_require__(/*! ./CacheControlSettings */ "./models/CacheControlSettings.ts");
|
|
86055
|
+
var EsamSettings_1 = __webpack_require__(/*! ./EsamSettings */ "./models/EsamSettings.ts");
|
|
85366
86056
|
var LiveAutoShutdownConfiguration_1 = __webpack_require__(/*! ./LiveAutoShutdownConfiguration */ "./models/LiveAutoShutdownConfiguration.ts");
|
|
85367
86057
|
var LiveDashManifest_1 = __webpack_require__(/*! ./LiveDashManifest */ "./models/LiveDashManifest.ts");
|
|
85368
86058
|
var LiveHlsManifest_1 = __webpack_require__(/*! ./LiveHlsManifest */ "./models/LiveHlsManifest.ts");
|
|
@@ -85384,6 +86074,8 @@ var StartLiveEncodingRequest = /** @class */ (function () {
|
|
|
85384
86074
|
this.manifestGenerator = (0, Mapper_1.map)(obj.manifestGenerator);
|
|
85385
86075
|
this.autoRestartConfiguration = (0, Mapper_1.map)(obj.autoRestartConfiguration, AutoRestartConfiguration_1.default);
|
|
85386
86076
|
this.autoShutdownConfiguration = (0, Mapper_1.map)(obj.autoShutdownConfiguration, LiveAutoShutdownConfiguration_1.default);
|
|
86077
|
+
this.esamSettings = (0, Mapper_1.map)(obj.esamSettings, EsamSettings_1.default);
|
|
86078
|
+
this.cacheControlSettings = (0, Mapper_1.map)(obj.cacheControlSettings, CacheControlSettings_1.default);
|
|
85387
86079
|
}
|
|
85388
86080
|
return StartLiveEncodingRequest;
|
|
85389
86081
|
}());
|
|
@@ -90788,6 +91480,11 @@ __exportStar(__webpack_require__(/*! ./BroadcastTsTransportConfiguration */ "./m
|
|
|
90788
91480
|
__exportStar(__webpack_require__(/*! ./BroadcastTsVideoInputStreamConfiguration */ "./models/BroadcastTsVideoInputStreamConfiguration.ts"), exports);
|
|
90789
91481
|
__exportStar(__webpack_require__(/*! ./BurnInSubtitleDvbSub */ "./models/BurnInSubtitleDvbSub.ts"), exports);
|
|
90790
91482
|
__exportStar(__webpack_require__(/*! ./BurnInSubtitleSrt */ "./models/BurnInSubtitleSrt.ts"), exports);
|
|
91483
|
+
__exportStar(__webpack_require__(/*! ./CacheControl */ "./models/CacheControl.ts"), exports);
|
|
91484
|
+
__exportStar(__webpack_require__(/*! ./CacheControlSettings */ "./models/CacheControlSettings.ts"), exports);
|
|
91485
|
+
__exportStar(__webpack_require__(/*! ./CacheControlSettingsDash */ "./models/CacheControlSettingsDash.ts"), exports);
|
|
91486
|
+
__exportStar(__webpack_require__(/*! ./CacheControlSettingsHls */ "./models/CacheControlSettingsHls.ts"), exports);
|
|
91487
|
+
__exportStar(__webpack_require__(/*! ./CacheControlSettingsSegments */ "./models/CacheControlSettingsSegments.ts"), exports);
|
|
90791
91488
|
__exportStar(__webpack_require__(/*! ./CaptionCharacterEncoding */ "./models/CaptionCharacterEncoding.ts"), exports);
|
|
90792
91489
|
__exportStar(__webpack_require__(/*! ./CdnOutput */ "./models/CdnOutput.ts"), exports);
|
|
90793
91490
|
__exportStar(__webpack_require__(/*! ./CdnProvider */ "./models/CdnProvider.ts"), exports);
|
|
@@ -90980,6 +91677,7 @@ __exportStar(__webpack_require__(/*! ./EnhancedDeinterlaceParity */ "./models/En
|
|
|
90980
91677
|
__exportStar(__webpack_require__(/*! ./EnhancedWatermarkFilter */ "./models/EnhancedWatermarkFilter.ts"), exports);
|
|
90981
91678
|
__exportStar(__webpack_require__(/*! ./ErrorDetails */ "./models/ErrorDetails.ts"), exports);
|
|
90982
91679
|
__exportStar(__webpack_require__(/*! ./ErrorRetryHint */ "./models/ErrorRetryHint.ts"), exports);
|
|
91680
|
+
__exportStar(__webpack_require__(/*! ./EsamSettings */ "./models/EsamSettings.ts"), exports);
|
|
90983
91681
|
__exportStar(__webpack_require__(/*! ./ExternalIdMode */ "./models/ExternalIdMode.ts"), exports);
|
|
90984
91682
|
__exportStar(__webpack_require__(/*! ./FairPlayDrm */ "./models/FairPlayDrm.ts"), exports);
|
|
90985
91683
|
__exportStar(__webpack_require__(/*! ./FileInputStream */ "./models/FileInputStream.ts"), exports);
|
|
@@ -91148,6 +91846,9 @@ __exportStar(__webpack_require__(/*! ./NexGuardWatermarkingType */ "./models/Nex
|
|
|
91148
91846
|
__exportStar(__webpack_require__(/*! ./Notification */ "./models/Notification.ts"), exports);
|
|
91149
91847
|
__exportStar(__webpack_require__(/*! ./NotificationStateEntry */ "./models/NotificationStateEntry.ts"), exports);
|
|
91150
91848
|
__exportStar(__webpack_require__(/*! ./NotificationStates */ "./models/NotificationStates.ts"), exports);
|
|
91849
|
+
__exportStar(__webpack_require__(/*! ./OciAccount */ "./models/OciAccount.ts"), exports);
|
|
91850
|
+
__exportStar(__webpack_require__(/*! ./OciAccountRegionSettings */ "./models/OciAccountRegionSettings.ts"), exports);
|
|
91851
|
+
__exportStar(__webpack_require__(/*! ./OciCloudRegion */ "./models/OciCloudRegion.ts"), exports);
|
|
91151
91852
|
__exportStar(__webpack_require__(/*! ./OpusAudioConfiguration */ "./models/OpusAudioConfiguration.ts"), exports);
|
|
91152
91853
|
__exportStar(__webpack_require__(/*! ./OpusChannelLayout */ "./models/OpusChannelLayout.ts"), exports);
|
|
91153
91854
|
__exportStar(__webpack_require__(/*! ./OrConjunction */ "./models/OrConjunction.ts"), exports);
|
|
@@ -91186,9 +91887,11 @@ __exportStar(__webpack_require__(/*! ./PlayReadyEncryptionMethod */ "./models/Pl
|
|
|
91186
91887
|
__exportStar(__webpack_require__(/*! ./PlayerChannel */ "./models/PlayerChannel.ts"), exports);
|
|
91187
91888
|
__exportStar(__webpack_require__(/*! ./PlayerLicense */ "./models/PlayerLicense.ts"), exports);
|
|
91188
91889
|
__exportStar(__webpack_require__(/*! ./PlayerLicenseAnalytics */ "./models/PlayerLicenseAnalytics.ts"), exports);
|
|
91890
|
+
__exportStar(__webpack_require__(/*! ./PlayerLicenseUpdateRequest */ "./models/PlayerLicenseUpdateRequest.ts"), exports);
|
|
91189
91891
|
__exportStar(__webpack_require__(/*! ./PlayerThirdPartyLicensing */ "./models/PlayerThirdPartyLicensing.ts"), exports);
|
|
91190
91892
|
__exportStar(__webpack_require__(/*! ./PlayerThirdPartyLicensingErrorAction */ "./models/PlayerThirdPartyLicensingErrorAction.ts"), exports);
|
|
91191
91893
|
__exportStar(__webpack_require__(/*! ./PlayerVersion */ "./models/PlayerVersion.ts"), exports);
|
|
91894
|
+
__exportStar(__webpack_require__(/*! ./PoisEndpointCredentials */ "./models/PoisEndpointCredentials.ts"), exports);
|
|
91192
91895
|
__exportStar(__webpack_require__(/*! ./Policy */ "./models/Policy.ts"), exports);
|
|
91193
91896
|
__exportStar(__webpack_require__(/*! ./PositionMode */ "./models/PositionMode.ts"), exports);
|
|
91194
91897
|
__exportStar(__webpack_require__(/*! ./PositionUnit */ "./models/PositionUnit.ts"), exports);
|
|
@@ -94915,6 +95618,21 @@ var LicensesApi = /** @class */ (function (_super) {
|
|
|
94915
95618
|
return new PaginationResponse_1.default(response, PlayerLicense_1.default);
|
|
94916
95619
|
});
|
|
94917
95620
|
};
|
|
95621
|
+
/**
|
|
95622
|
+
* @summary Update License
|
|
95623
|
+
* @param {string} licenseId License id
|
|
95624
|
+
* @param {PlayerLicenseUpdateRequest} playerLicenseUpdateRequest Player License details to be updated
|
|
95625
|
+
* @throws {BitmovinError}
|
|
95626
|
+
* @memberof LicensesApi
|
|
95627
|
+
*/
|
|
95628
|
+
LicensesApi.prototype.update = function (licenseId, playerLicenseUpdateRequest) {
|
|
95629
|
+
var pathParamMap = {
|
|
95630
|
+
license_id: licenseId
|
|
95631
|
+
};
|
|
95632
|
+
return this.restClient.put('/player/licenses/{license_id}', pathParamMap, playerLicenseUpdateRequest).then(function (response) {
|
|
95633
|
+
return (0, Mapper_1.map)(response, PlayerLicense_1.default);
|
|
95634
|
+
});
|
|
95635
|
+
};
|
|
94918
95636
|
return LicensesApi;
|
|
94919
95637
|
}(BaseAPI_1.BaseAPI));
|
|
94920
95638
|
exports["default"] = LicensesApi;
|