UNPKG

dtamind-components

Version:

Apps integration for Dtamind. Contain Nodes and Credentials.

42 lines 1.2 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class RedisCacheApi { constructor() { this.label = 'Redis API'; this.name = 'redisCacheApi'; this.version = 1.0; this.inputs = [ { label: 'Redis Host', name: 'redisCacheHost', type: 'string', default: '127.0.0.1' }, { label: 'Port', name: 'redisCachePort', type: 'number', default: '6379' }, { label: 'User', name: 'redisCacheUser', type: 'string', placeholder: '<REDIS_USERNAME>' }, { label: 'Password', name: 'redisCachePwd', type: 'password', placeholder: '<REDIS_PASSWORD>' }, { label: 'Use SSL', name: 'redisCacheSslEnabled', type: 'boolean' } ]; } } module.exports = { credClass: RedisCacheApi }; //# sourceMappingURL=RedisCacheApi.credential.js.map