@kaltura-ng/kaltura-client
Version:
Kaltura Typescript client
89 lines • 6.09 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
import { KalturaObjectBase } from '../kaltura-object-base';
import { KalturaTypesFactory } from '../kaltura-types-factory';
var KalturaBatchJobType = (function (_super) {
__extends(KalturaBatchJobType, _super);
function KalturaBatchJobType(value) {
var _this = _super.call(this) || this;
_this._value = value + '';
return _this;
}
KalturaBatchJobType.prototype.equals = function (obj) {
return obj && obj.toString() === this._value;
};
KalturaBatchJobType.prototype.toString = function () {
return this._value;
};
KalturaBatchJobType.bulkdownload = new KalturaBatchJobType('19');
KalturaBatchJobType.bulkupload = new KalturaBatchJobType('4');
KalturaBatchJobType.captureThumb = new KalturaBatchJobType('30');
KalturaBatchJobType.chunkedEncodeJobScheduler = new KalturaBatchJobType('44');
KalturaBatchJobType.cleanup = new KalturaBatchJobType('17');
KalturaBatchJobType.concat = new KalturaBatchJobType('35');
KalturaBatchJobType.convert = new KalturaBatchJobType('0');
KalturaBatchJobType.convertCollection = new KalturaBatchJobType('22');
KalturaBatchJobType.convertLiveSegment = new KalturaBatchJobType('36');
KalturaBatchJobType.convertProfile = new KalturaBatchJobType('10');
KalturaBatchJobType.copy = new KalturaBatchJobType('34');
KalturaBatchJobType.copyCaptions = new KalturaBatchJobType('43');
KalturaBatchJobType.copyPartner = new KalturaBatchJobType('37');
KalturaBatchJobType.dbCleanup = new KalturaBatchJobType('20');
KalturaBatchJobType.delete = new KalturaBatchJobType('2');
KalturaBatchJobType.deleteFile = new KalturaBatchJobType('31');
KalturaBatchJobType.distributionDelete = new KalturaBatchJobType('contentDistribution.DistributionDelete');
KalturaBatchJobType.distributionDisable = new KalturaBatchJobType('contentDistribution.DistributionDisable');
KalturaBatchJobType.distributionEnable = new KalturaBatchJobType('contentDistribution.DistributionEnable');
KalturaBatchJobType.distributionFetchReport = new KalturaBatchJobType('contentDistribution.DistributionFetchReport');
KalturaBatchJobType.distributionSubmit = new KalturaBatchJobType('contentDistribution.DistributionSubmit');
KalturaBatchJobType.distributionSync = new KalturaBatchJobType('contentDistribution.DistributionSync');
KalturaBatchJobType.distributionUpdate = new KalturaBatchJobType('contentDistribution.DistributionUpdate');
KalturaBatchJobType.download = new KalturaBatchJobType('6');
KalturaBatchJobType.dropFolderContentProcessor = new KalturaBatchJobType('dropFolder.DropFolderContentProcessor');
KalturaBatchJobType.dropFolderWatcher = new KalturaBatchJobType('dropFolder.DropFolderWatcher');
KalturaBatchJobType.dvdcreator = new KalturaBatchJobType('5');
KalturaBatchJobType.emailIngestion = new KalturaBatchJobType('26');
KalturaBatchJobType.eventNotificationHandler = new KalturaBatchJobType('eventNotification.EventNotificationHandler');
KalturaBatchJobType.extractMedia = new KalturaBatchJobType('14');
KalturaBatchJobType.filesyncImport = new KalturaBatchJobType('29');
KalturaBatchJobType.flatten = new KalturaBatchJobType('3');
KalturaBatchJobType.import = new KalturaBatchJobType('1');
KalturaBatchJobType.index = new KalturaBatchJobType('32');
KalturaBatchJobType.indexTags = new KalturaBatchJobType('tagSearch.IndexTagsByPrivacyContext');
KalturaBatchJobType.integration = new KalturaBatchJobType('integration.Integration');
KalturaBatchJobType.liveReportExport = new KalturaBatchJobType('40');
KalturaBatchJobType.liveToVod = new KalturaBatchJobType('42');
KalturaBatchJobType.mail = new KalturaBatchJobType('15');
KalturaBatchJobType.metadataImport = new KalturaBatchJobType('27');
KalturaBatchJobType.metadataTransform = new KalturaBatchJobType('28');
KalturaBatchJobType.moveCategoryEntries = new KalturaBatchJobType('33');
KalturaBatchJobType.notification = new KalturaBatchJobType('16');
KalturaBatchJobType.ooconvert = new KalturaBatchJobType('7');
KalturaBatchJobType.parseCaptionAsset = new KalturaBatchJobType('captionSearch.parseCaptionAsset');
KalturaBatchJobType.parseMultiLanguageCaptionAsset = new KalturaBatchJobType('caption.parsemultilanguagecaptionasset');
KalturaBatchJobType.postconvert = new KalturaBatchJobType('11');
KalturaBatchJobType.provisionDelete = new KalturaBatchJobType('24');
KalturaBatchJobType.provisionProvide = new KalturaBatchJobType('21');
KalturaBatchJobType.recalculateCache = new KalturaBatchJobType('41');
KalturaBatchJobType.scheduledTask = new KalturaBatchJobType('scheduledTask.ScheduledTask');
KalturaBatchJobType.schedulerHelper = new KalturaBatchJobType('18');
KalturaBatchJobType.storageDelete = new KalturaBatchJobType('25');
KalturaBatchJobType.storageExport = new KalturaBatchJobType('23');
KalturaBatchJobType.syncCategoryPrivacyContext = new KalturaBatchJobType('39');
KalturaBatchJobType.tagResolve = new KalturaBatchJobType('tagSearch.TagResolve');
KalturaBatchJobType.validateLiveMediaServers = new KalturaBatchJobType('38');
KalturaBatchJobType.virusScan = new KalturaBatchJobType('virusScan.VirusScan');
KalturaBatchJobType.widevineRepositorySync = new KalturaBatchJobType('widevine.WidevineRepositorySync');
return KalturaBatchJobType;
}(KalturaObjectBase));
export { KalturaBatchJobType };
KalturaTypesFactory.registerType('KalturaBatchJobType', KalturaBatchJobType);
//# sourceMappingURL=KalturaBatchJobType.js.map