@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
25 lines (24 loc) • 819 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OutputType = void 0;
/**
* @export
* @enum {string}
*/
var OutputType;
(function (OutputType) {
OutputType["AKAMAI_NETSTORAGE"] = "AKAMAI_NETSTORAGE";
OutputType["AZURE"] = "AZURE";
OutputType["GENERIC_S3"] = "GENERIC_S3";
OutputType["GCS"] = "GCS";
OutputType["FTP"] = "FTP";
OutputType["LOCAL"] = "LOCAL";
OutputType["S3"] = "S3";
OutputType["S3_ROLE_BASED"] = "S3_ROLE_BASED";
OutputType["SFTP"] = "SFTP";
OutputType["AKAMAI_MSL"] = "AKAMAI_MSL";
OutputType["LIVE_MEDIA_INGEST"] = "LIVE_MEDIA_INGEST";
OutputType["GCS_SERVICE_ACCOUNT"] = "GCS_SERVICE_ACCOUNT";
OutputType["CDN"] = "CDN";
})(OutputType || (exports.OutputType = OutputType = {}));
exports.default = OutputType;