@bitmovin/api-sdk 1.183.2 → 1.184.1

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 CHANGED
@@ -31,7 +31,7 @@ If you have any questions regarding the SDK, provided examples or our services,
31
31
  ## Installation
32
32
 
33
33
  ``` bash
34
- npm install @bitmovin/api-sdk@1.183.2
34
+ npm install @bitmovin/api-sdk@1.184.1
35
35
  ```
36
36
 
37
37
  ## Initialization
@@ -6109,7 +6109,7 @@ var HeaderHandler = /** @class */ (function (_super) {
6109
6109
  var headers = {
6110
6110
  'X-Api-Key': apiKey,
6111
6111
  'X-Api-Client': 'bitmovin-api-sdk-javascript',
6112
- 'X-Api-Client-Version': '1.183.2',
6112
+ 'X-Api-Client-Version': '1.184.1',
6113
6113
  'Content-Type': 'application/json'
6114
6114
  };
6115
6115
  if (tenantOrgId) {
@@ -6292,6 +6292,7 @@ var OutputsApi_1 = __webpack_require__(/*! ./outputs/OutputsApi */ "./encoding/o
6292
6292
  var ConfigurationsApi_1 = __webpack_require__(/*! ./configurations/ConfigurationsApi */ "./encoding/configurations/ConfigurationsApi.ts");
6293
6293
  var FiltersApi_1 = __webpack_require__(/*! ./filters/FiltersApi */ "./encoding/filters/FiltersApi.ts");
6294
6294
  var EncodingsApi_1 = __webpack_require__(/*! ./encodings/EncodingsApi */ "./encoding/encodings/EncodingsApi.ts");
6295
+ var LiveApi_1 = __webpack_require__(/*! ./live/LiveApi */ "./encoding/live/LiveApi.ts");
6295
6296
  var ManifestsApi_1 = __webpack_require__(/*! ./manifests/ManifestsApi */ "./encoding/manifests/ManifestsApi.ts");
6296
6297
  var InfrastructureApi_1 = __webpack_require__(/*! ./infrastructure/InfrastructureApi */ "./encoding/infrastructure/InfrastructureApi.ts");
6297
6298
  var StatisticsApi_1 = __webpack_require__(/*! ./statistics/StatisticsApi */ "./encoding/statistics/StatisticsApi.ts");
@@ -6314,6 +6315,7 @@ var EncodingApi = /** @class */ (function (_super) {
6314
6315
  _this.configurations = new ConfigurationsApi_1.default(configuration);
6315
6316
  _this.filters = new FiltersApi_1.default(configuration);
6316
6317
  _this.encodings = new EncodingsApi_1.default(configuration);
6318
+ _this.live = new LiveApi_1.default(configuration);
6317
6319
  _this.manifests = new ManifestsApi_1.default(configuration);
6318
6320
  _this.infrastructure = new InfrastructureApi_1.default(configuration);
6319
6321
  _this.statistics = new StatisticsApi_1.default(configuration);
@@ -40288,6 +40290,237 @@ var CustomdataApi = /** @class */ (function (_super) {
40288
40290
  exports["default"] = CustomdataApi;
40289
40291
 
40290
40292
 
40293
+ /***/ }),
40294
+
40295
+ /***/ "./encoding/live/LiveApi.ts":
40296
+ /*!**********************************!*\
40297
+ !*** ./encoding/live/LiveApi.ts ***!
40298
+ \**********************************/
40299
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
40300
+
40301
+ "use strict";
40302
+
40303
+ var __extends = (this && this.__extends) || (function () {
40304
+ var extendStatics = function (d, b) {
40305
+ extendStatics = Object.setPrototypeOf ||
40306
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
40307
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
40308
+ return extendStatics(d, b);
40309
+ };
40310
+ return function (d, b) {
40311
+ if (typeof b !== "function" && b !== null)
40312
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
40313
+ extendStatics(d, b);
40314
+ function __() { this.constructor = d; }
40315
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
40316
+ };
40317
+ })();
40318
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
40319
+ var BaseAPI_1 = __webpack_require__(/*! ../../common/BaseAPI */ "./common/BaseAPI.ts");
40320
+ var StreamKeysApi_1 = __webpack_require__(/*! ./streamKeys/StreamKeysApi */ "./encoding/live/streamKeys/StreamKeysApi.ts");
40321
+ /**
40322
+ * LiveApi - object-oriented interface
40323
+ * @export
40324
+ * @class LiveApi
40325
+ * @extends {BaseAPI}
40326
+ */
40327
+ var LiveApi = /** @class */ (function (_super) {
40328
+ __extends(LiveApi, _super);
40329
+ function LiveApi(configuration) {
40330
+ var _this = _super.call(this, configuration) || this;
40331
+ _this.streamKeys = new StreamKeysApi_1.default(configuration);
40332
+ return _this;
40333
+ }
40334
+ return LiveApi;
40335
+ }(BaseAPI_1.BaseAPI));
40336
+ exports["default"] = LiveApi;
40337
+
40338
+
40339
+ /***/ }),
40340
+
40341
+ /***/ "./encoding/live/streamKeys/StreamKeyListQueryParams.ts":
40342
+ /*!**************************************************************!*\
40343
+ !*** ./encoding/live/streamKeys/StreamKeyListQueryParams.ts ***!
40344
+ \**************************************************************/
40345
+ /***/ ((__unused_webpack_module, exports) => {
40346
+
40347
+ "use strict";
40348
+
40349
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
40350
+ exports.StreamKeyListQueryParamsBuilder = void 0;
40351
+ var StreamKeyListQueryParamsBuilder = /** @class */ (function () {
40352
+ function StreamKeyListQueryParamsBuilder() {
40353
+ this.internalParams = {};
40354
+ }
40355
+ /**
40356
+ *
40357
+ * @param offset Index of the first item to return, starting at 0. Default is 0
40358
+ */
40359
+ StreamKeyListQueryParamsBuilder.prototype.offset = function (offset) {
40360
+ this.internalParams.offset = offset;
40361
+ return this;
40362
+ };
40363
+ /**
40364
+ *
40365
+ * @param limit Maximum number of items to return. Default is 25, maximum is 100
40366
+ */
40367
+ StreamKeyListQueryParamsBuilder.prototype.limit = function (limit) {
40368
+ this.internalParams.limit = limit;
40369
+ return this;
40370
+ };
40371
+ /**
40372
+ *
40373
+ * @param sort Order list result according a stream key attribute. The fields that can be used for sorting are: + `createdAt` + `name`
40374
+ */
40375
+ StreamKeyListQueryParamsBuilder.prototype.sort = function (sort) {
40376
+ this.internalParams.sort = sort;
40377
+ return this;
40378
+ };
40379
+ /**
40380
+ *
40381
+ * @param type Filter stream keys by type
40382
+ */
40383
+ StreamKeyListQueryParamsBuilder.prototype.type = function (type) {
40384
+ this.internalParams.type = type;
40385
+ return this;
40386
+ };
40387
+ /**
40388
+ *
40389
+ * @param status Filter stream keys by status
40390
+ */
40391
+ StreamKeyListQueryParamsBuilder.prototype.status = function (status) {
40392
+ this.internalParams.status = status;
40393
+ return this;
40394
+ };
40395
+ /**
40396
+ *
40397
+ * @param assignedIngestPointId Filter stream keys by assigned ingest point id
40398
+ */
40399
+ StreamKeyListQueryParamsBuilder.prototype.assignedIngestPointId = function (assignedIngestPointId) {
40400
+ this.internalParams.assignedIngestPointId = assignedIngestPointId;
40401
+ return this;
40402
+ };
40403
+ /**
40404
+ *
40405
+ * @param assignedEncodingId Filter stream keys by assigned encoding id
40406
+ */
40407
+ StreamKeyListQueryParamsBuilder.prototype.assignedEncodingId = function (assignedEncodingId) {
40408
+ this.internalParams.assignedEncodingId = assignedEncodingId;
40409
+ return this;
40410
+ };
40411
+ StreamKeyListQueryParamsBuilder.prototype.buildQueryParams = function () {
40412
+ return this.internalParams;
40413
+ };
40414
+ return StreamKeyListQueryParamsBuilder;
40415
+ }());
40416
+ exports.StreamKeyListQueryParamsBuilder = StreamKeyListQueryParamsBuilder;
40417
+
40418
+
40419
+ /***/ }),
40420
+
40421
+ /***/ "./encoding/live/streamKeys/StreamKeysApi.ts":
40422
+ /*!***************************************************!*\
40423
+ !*** ./encoding/live/streamKeys/StreamKeysApi.ts ***!
40424
+ \***************************************************/
40425
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
40426
+
40427
+ "use strict";
40428
+
40429
+ var __extends = (this && this.__extends) || (function () {
40430
+ var extendStatics = function (d, b) {
40431
+ extendStatics = Object.setPrototypeOf ||
40432
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
40433
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
40434
+ return extendStatics(d, b);
40435
+ };
40436
+ return function (d, b) {
40437
+ if (typeof b !== "function" && b !== null)
40438
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
40439
+ extendStatics(d, b);
40440
+ function __() { this.constructor = d; }
40441
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
40442
+ };
40443
+ })();
40444
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
40445
+ var BaseAPI_1 = __webpack_require__(/*! ../../../common/BaseAPI */ "./common/BaseAPI.ts");
40446
+ var Mapper_1 = __webpack_require__(/*! ../../../common/Mapper */ "./common/Mapper.ts");
40447
+ var BitmovinResponse_1 = __webpack_require__(/*! ../../../models/BitmovinResponse */ "./models/BitmovinResponse.ts");
40448
+ var StreamKey_1 = __webpack_require__(/*! ../../../models/StreamKey */ "./models/StreamKey.ts");
40449
+ var PaginationResponse_1 = __webpack_require__(/*! ../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
40450
+ var StreamKeyListQueryParams_1 = __webpack_require__(/*! ./StreamKeyListQueryParams */ "./encoding/live/streamKeys/StreamKeyListQueryParams.ts");
40451
+ /**
40452
+ * StreamKeysApi - object-oriented interface
40453
+ * @export
40454
+ * @class StreamKeysApi
40455
+ * @extends {BaseAPI}
40456
+ */
40457
+ var StreamKeysApi = /** @class */ (function (_super) {
40458
+ __extends(StreamKeysApi, _super);
40459
+ function StreamKeysApi(configuration) {
40460
+ return _super.call(this, configuration) || this;
40461
+ }
40462
+ /**
40463
+ * @summary Create new stream key
40464
+ * @param {StreamKey} streamKey The stream key to be created
40465
+ * @throws {BitmovinError}
40466
+ * @memberof StreamKeysApi
40467
+ */
40468
+ StreamKeysApi.prototype.create = function (streamKey) {
40469
+ return this.restClient.post('/encoding/live/stream-keys', {}, streamKey).then(function (response) {
40470
+ return (0, Mapper_1.map)(response, StreamKey_1.default);
40471
+ });
40472
+ };
40473
+ /**
40474
+ * @summary Delete Stream Key
40475
+ * @param {string} streamKeyId Id of the stream key
40476
+ * @throws {BitmovinError}
40477
+ * @memberof StreamKeysApi
40478
+ */
40479
+ StreamKeysApi.prototype.delete = function (streamKeyId) {
40480
+ var pathParamMap = {
40481
+ stream_key_id: streamKeyId
40482
+ };
40483
+ return this.restClient.delete('/encoding/live/stream-keys/{stream_key_id}', pathParamMap).then(function (response) {
40484
+ return (0, Mapper_1.map)(response, BitmovinResponse_1.default);
40485
+ });
40486
+ };
40487
+ /**
40488
+ * @summary Stream Key details
40489
+ * @param {string} streamKeyId Id of the stream key
40490
+ * @throws {BitmovinError}
40491
+ * @memberof StreamKeysApi
40492
+ */
40493
+ StreamKeysApi.prototype.get = function (streamKeyId) {
40494
+ var pathParamMap = {
40495
+ stream_key_id: streamKeyId
40496
+ };
40497
+ return this.restClient.get('/encoding/live/stream-keys/{stream_key_id}', pathParamMap).then(function (response) {
40498
+ return (0, Mapper_1.map)(response, StreamKey_1.default);
40499
+ });
40500
+ };
40501
+ /**
40502
+ * @summary List Stream Keys
40503
+ * @param {*} [queryParameters] query parameters for filtering, sorting and pagination
40504
+ * @throws {BitmovinError}
40505
+ * @memberof StreamKeysApi
40506
+ */
40507
+ StreamKeysApi.prototype.list = function (queryParameters) {
40508
+ var queryParams = {};
40509
+ if (typeof queryParameters === 'function') {
40510
+ queryParams = queryParameters(new StreamKeyListQueryParams_1.StreamKeyListQueryParamsBuilder()).buildQueryParams();
40511
+ }
40512
+ else if (queryParameters) {
40513
+ queryParams = queryParameters;
40514
+ }
40515
+ return this.restClient.get('/encoding/live/stream-keys', {}, queryParams).then(function (response) {
40516
+ return new PaginationResponse_1.default(response, StreamKey_1.default);
40517
+ });
40518
+ };
40519
+ return StreamKeysApi;
40520
+ }(BaseAPI_1.BaseAPI));
40521
+ exports["default"] = StreamKeysApi;
40522
+
40523
+
40291
40524
  /***/ }),
40292
40525
 
40293
40526
  /***/ "./encoding/manifests/ManifestListQueryParams.ts":
@@ -77758,6 +77991,7 @@ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts")
77758
77991
  var Input_1 = __webpack_require__(/*! ./Input */ "./models/Input.ts");
77759
77992
  var InputType_1 = __webpack_require__(/*! ./InputType */ "./models/InputType.ts");
77760
77993
  var RtmpIngestPoint_1 = __webpack_require__(/*! ./RtmpIngestPoint */ "./models/RtmpIngestPoint.ts");
77994
+ var StaticRtmpIngestPoint_1 = __webpack_require__(/*! ./StaticRtmpIngestPoint */ "./models/StaticRtmpIngestPoint.ts");
77761
77995
  /**
77762
77996
  * @export
77763
77997
  * @class RedundantRtmpInput
@@ -77777,6 +78011,7 @@ var RedundantRtmpInput = /** @class */ (function (_super) {
77777
78011
  }
77778
78012
  _this.delayThreshold = (0, Mapper_1.map)(obj.delayThreshold);
77779
78013
  _this.ingestPoints = (0, Mapper_1.mapArray)(obj.ingestPoints, RtmpIngestPoint_1.default);
78014
+ _this.staticIngestPoints = (0, Mapper_1.mapArray)(obj.staticIngestPoints, StaticRtmpIngestPoint_1.default);
77780
78015
  return _this;
77781
78016
  }
77782
78017
  return RedundantRtmpInput;
@@ -81906,6 +82141,39 @@ var StaticIpStatus;
81906
82141
  exports["default"] = StaticIpStatus;
81907
82142
 
81908
82143
 
82144
+ /***/ }),
82145
+
82146
+ /***/ "./models/StaticRtmpIngestPoint.ts":
82147
+ /*!*****************************************!*\
82148
+ !*** ./models/StaticRtmpIngestPoint.ts ***!
82149
+ \*****************************************/
82150
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
82151
+
82152
+ "use strict";
82153
+
82154
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
82155
+ exports.StaticRtmpIngestPoint = void 0;
82156
+ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
82157
+ var StreamKeyConfiguration_1 = __webpack_require__(/*! ./StreamKeyConfiguration */ "./models/StreamKeyConfiguration.ts");
82158
+ /**
82159
+ * @export
82160
+ * @class StaticRtmpIngestPoint
82161
+ */
82162
+ var StaticRtmpIngestPoint = /** @class */ (function () {
82163
+ function StaticRtmpIngestPoint(obj) {
82164
+ if (!obj) {
82165
+ return;
82166
+ }
82167
+ this.id = (0, Mapper_1.map)(obj.id);
82168
+ this.name = (0, Mapper_1.map)(obj.name);
82169
+ this.streamKeyConfiguration = (0, Mapper_1.map)(obj.streamKeyConfiguration, StreamKeyConfiguration_1.default);
82170
+ }
82171
+ return StaticRtmpIngestPoint;
82172
+ }());
82173
+ exports.StaticRtmpIngestPoint = StaticRtmpIngestPoint;
82174
+ exports["default"] = StaticRtmpIngestPoint;
82175
+
82176
+
81909
82177
  /***/ }),
81910
82178
 
81911
82179
  /***/ "./models/Statistics.ts":
@@ -82532,6 +82800,164 @@ exports.StreamInput = StreamInput;
82532
82800
  exports["default"] = StreamInput;
82533
82801
 
82534
82802
 
82803
+ /***/ }),
82804
+
82805
+ /***/ "./models/StreamKey.ts":
82806
+ /*!*****************************!*\
82807
+ !*** ./models/StreamKey.ts ***!
82808
+ \*****************************/
82809
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
82810
+
82811
+ "use strict";
82812
+
82813
+ var __extends = (this && this.__extends) || (function () {
82814
+ var extendStatics = function (d, b) {
82815
+ extendStatics = Object.setPrototypeOf ||
82816
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
82817
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
82818
+ return extendStatics(d, b);
82819
+ };
82820
+ return function (d, b) {
82821
+ if (typeof b !== "function" && b !== null)
82822
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
82823
+ extendStatics(d, b);
82824
+ function __() { this.constructor = d; }
82825
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
82826
+ };
82827
+ })();
82828
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
82829
+ exports.StreamKey = void 0;
82830
+ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
82831
+ var BitmovinResource_1 = __webpack_require__(/*! ./BitmovinResource */ "./models/BitmovinResource.ts");
82832
+ /**
82833
+ * @export
82834
+ * @class StreamKey
82835
+ */
82836
+ var StreamKey = /** @class */ (function (_super) {
82837
+ __extends(StreamKey, _super);
82838
+ function StreamKey(obj) {
82839
+ var _this = _super.call(this, obj) || this;
82840
+ if (!obj) {
82841
+ return _this;
82842
+ }
82843
+ _this.value = (0, Mapper_1.map)(obj.value);
82844
+ _this.status = (0, Mapper_1.map)(obj.status);
82845
+ _this.type = (0, Mapper_1.map)(obj.type);
82846
+ _this.assignedEncodingId = (0, Mapper_1.map)(obj.assignedEncodingId);
82847
+ _this.assignedIngestPointId = (0, Mapper_1.map)(obj.assignedIngestPointId);
82848
+ return _this;
82849
+ }
82850
+ return StreamKey;
82851
+ }(BitmovinResource_1.default));
82852
+ exports.StreamKey = StreamKey;
82853
+ exports["default"] = StreamKey;
82854
+
82855
+
82856
+ /***/ }),
82857
+
82858
+ /***/ "./models/StreamKeyConfiguration.ts":
82859
+ /*!******************************************!*\
82860
+ !*** ./models/StreamKeyConfiguration.ts ***!
82861
+ \******************************************/
82862
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
82863
+
82864
+ "use strict";
82865
+
82866
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
82867
+ exports.StreamKeyConfiguration = void 0;
82868
+ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
82869
+ /**
82870
+ * @export
82871
+ * @class StreamKeyConfiguration
82872
+ */
82873
+ var StreamKeyConfiguration = /** @class */ (function () {
82874
+ function StreamKeyConfiguration(obj) {
82875
+ if (!obj) {
82876
+ return;
82877
+ }
82878
+ this.type = (0, Mapper_1.map)(obj.type);
82879
+ this.streamKeyId = (0, Mapper_1.map)(obj.streamKeyId);
82880
+ }
82881
+ return StreamKeyConfiguration;
82882
+ }());
82883
+ exports.StreamKeyConfiguration = StreamKeyConfiguration;
82884
+ exports["default"] = StreamKeyConfiguration;
82885
+
82886
+
82887
+ /***/ }),
82888
+
82889
+ /***/ "./models/StreamKeyConfigurationType.ts":
82890
+ /*!**********************************************!*\
82891
+ !*** ./models/StreamKeyConfigurationType.ts ***!
82892
+ \**********************************************/
82893
+ /***/ ((__unused_webpack_module, exports) => {
82894
+
82895
+ "use strict";
82896
+
82897
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
82898
+ exports.StreamKeyConfigurationType = void 0;
82899
+ /**
82900
+ * @export
82901
+ * @enum {string}
82902
+ */
82903
+ var StreamKeyConfigurationType;
82904
+ (function (StreamKeyConfigurationType) {
82905
+ StreamKeyConfigurationType["GENERATE"] = "GENERATE";
82906
+ StreamKeyConfigurationType["ASSIGN"] = "ASSIGN";
82907
+ })(StreamKeyConfigurationType || (exports.StreamKeyConfigurationType = StreamKeyConfigurationType = {}));
82908
+ exports["default"] = StreamKeyConfigurationType;
82909
+
82910
+
82911
+ /***/ }),
82912
+
82913
+ /***/ "./models/StreamKeyStatus.ts":
82914
+ /*!***********************************!*\
82915
+ !*** ./models/StreamKeyStatus.ts ***!
82916
+ \***********************************/
82917
+ /***/ ((__unused_webpack_module, exports) => {
82918
+
82919
+ "use strict";
82920
+
82921
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
82922
+ exports.StreamKeyStatus = void 0;
82923
+ /**
82924
+ * Status of the stream key
82925
+ * @export
82926
+ * @enum {string}
82927
+ */
82928
+ var StreamKeyStatus;
82929
+ (function (StreamKeyStatus) {
82930
+ StreamKeyStatus["ASSIGNED"] = "ASSIGNED";
82931
+ StreamKeyStatus["UNASSIGNED"] = "UNASSIGNED";
82932
+ })(StreamKeyStatus || (exports.StreamKeyStatus = StreamKeyStatus = {}));
82933
+ exports["default"] = StreamKeyStatus;
82934
+
82935
+
82936
+ /***/ }),
82937
+
82938
+ /***/ "./models/StreamKeyType.ts":
82939
+ /*!*********************************!*\
82940
+ !*** ./models/StreamKeyType.ts ***!
82941
+ \*********************************/
82942
+ /***/ ((__unused_webpack_module, exports) => {
82943
+
82944
+ "use strict";
82945
+
82946
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
82947
+ exports.StreamKeyType = void 0;
82948
+ /**
82949
+ * Type of the stream key
82950
+ * @export
82951
+ * @enum {string}
82952
+ */
82953
+ var StreamKeyType;
82954
+ (function (StreamKeyType) {
82955
+ StreamKeyType["RESERVED"] = "RESERVED";
82956
+ StreamKeyType["TEMPORARY"] = "TEMPORARY";
82957
+ })(StreamKeyType || (exports.StreamKeyType = StreamKeyType = {}));
82958
+ exports["default"] = StreamKeyType;
82959
+
82960
+
82535
82961
  /***/ }),
82536
82962
 
82537
82963
  /***/ "./models/StreamMetadata.ts":
@@ -87438,6 +87864,7 @@ __exportStar(__webpack_require__(/*! ./StartLiveEncodingRequest */ "./models/Sta
87438
87864
  __exportStar(__webpack_require__(/*! ./StartManifestRequest */ "./models/StartManifestRequest.ts"), exports);
87439
87865
  __exportStar(__webpack_require__(/*! ./StaticIp */ "./models/StaticIp.ts"), exports);
87440
87866
  __exportStar(__webpack_require__(/*! ./StaticIpStatus */ "./models/StaticIpStatus.ts"), exports);
87867
+ __exportStar(__webpack_require__(/*! ./StaticRtmpIngestPoint */ "./models/StaticRtmpIngestPoint.ts"), exports);
87441
87868
  __exportStar(__webpack_require__(/*! ./Statistics */ "./models/Statistics.ts"), exports);
87442
87869
  __exportStar(__webpack_require__(/*! ./StatisticsPerLabel */ "./models/StatisticsPerLabel.ts"), exports);
87443
87870
  __exportStar(__webpack_require__(/*! ./StatisticsPerMuxing */ "./models/StatisticsPerMuxing.ts"), exports);
@@ -87454,6 +87881,11 @@ __exportStar(__webpack_require__(/*! ./StreamInfo */ "./models/StreamInfo.ts"),
87454
87881
  __exportStar(__webpack_require__(/*! ./StreamInfos */ "./models/StreamInfos.ts"), exports);
87455
87882
  __exportStar(__webpack_require__(/*! ./StreamInfosDetails */ "./models/StreamInfosDetails.ts"), exports);
87456
87883
  __exportStar(__webpack_require__(/*! ./StreamInput */ "./models/StreamInput.ts"), exports);
87884
+ __exportStar(__webpack_require__(/*! ./StreamKey */ "./models/StreamKey.ts"), exports);
87885
+ __exportStar(__webpack_require__(/*! ./StreamKeyConfiguration */ "./models/StreamKeyConfiguration.ts"), exports);
87886
+ __exportStar(__webpack_require__(/*! ./StreamKeyConfigurationType */ "./models/StreamKeyConfigurationType.ts"), exports);
87887
+ __exportStar(__webpack_require__(/*! ./StreamKeyStatus */ "./models/StreamKeyStatus.ts"), exports);
87888
+ __exportStar(__webpack_require__(/*! ./StreamKeyType */ "./models/StreamKeyType.ts"), exports);
87457
87889
  __exportStar(__webpack_require__(/*! ./StreamMetadata */ "./models/StreamMetadata.ts"), exports);
87458
87890
  __exportStar(__webpack_require__(/*! ./StreamMode */ "./models/StreamMode.ts"), exports);
87459
87891
  __exportStar(__webpack_require__(/*! ./StreamPerTitleFixedResolutionAndBitrateSettings */ "./models/StreamPerTitleFixedResolutionAndBitrateSettings.ts"), exports);