mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
36 lines
771 B
TypeScript
36 lines
771 B
TypeScript
|
import {
|
||
|
ICredentialType,
|
||
|
NodePropertyTypes,
|
||
|
} from 'n8n-workflow';
|
||
|
|
||
|
export class ElasticsearchApi implements ICredentialType {
|
||
|
name = 'elasticsearchApi';
|
||
|
displayName = 'Elasticsearch API';
|
||
|
documentationUrl = 'elasticsearch';
|
||
|
properties = [
|
||
|
{
|
||
|
displayName: 'Username',
|
||
|
name: 'username',
|
||
|
type: 'string' as NodePropertyTypes,
|
||
|
default: '',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Password',
|
||
|
name: 'password',
|
||
|
type: 'string' as NodePropertyTypes,
|
||
|
typeOptions: {
|
||
|
password: true,
|
||
|
},
|
||
|
default: '',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Base URL',
|
||
|
name: 'baseUrl',
|
||
|
type: 'string' as NodePropertyTypes,
|
||
|
default: '',
|
||
|
placeholder: 'https://abc.elastic-cloud.com:9243',
|
||
|
description: 'Referred to as \'endpoint\' in the Elasticsearch dashboard.',
|
||
|
},
|
||
|
];
|
||
|
}
|