dtamind-components
Version:
Apps integration for Dtamind. Contain Nodes and Credentials.
25 lines • 867 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class ElectricsearchAPI {
constructor() {
this.label = 'Elasticsearch API';
this.name = 'elasticsearchApi';
this.version = 1.0;
this.description =
'Refer to <a target="_blank" href="https://www.elastic.co/guide/en/kibana/current/api-keys.html">official guide</a> on how to get an API Key from ElasticSearch';
this.inputs = [
{
label: 'Elasticsearch Endpoint',
name: 'endpoint',
type: 'string'
},
{
label: 'Elasticsearch API Key',
name: 'apiKey',
type: 'password'
}
];
}
}
module.exports = { credClass: ElectricsearchAPI };
//# sourceMappingURL=ElasticsearchAPI.credential.js.map