dtamind-components
Version:
DTAmindai Components
32 lines • 924 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class OpenSearchUrl {
constructor() {
this.label = 'OpenSearch';
this.name = 'openSearchUrl';
this.version = 2.0;
this.inputs = [
{
label: 'OpenSearch Url',
name: 'openSearchUrl',
type: 'string'
},
{
label: 'User',
name: 'user',
type: 'string',
placeholder: '<OPENSEARCH_USERNAME>',
optional: true
},
{
label: 'Password',
name: 'password',
type: 'password',
placeholder: '<OPENSEARCH_PASSWORD>',
optional: true
}
];
}
}
module.exports = { credClass: OpenSearchUrl };
//# sourceMappingURL=OpenSearchUrl.credential.js.map