n8n/packages/nodes-base/credentials/ElasticSearchApi.credentials.ts

37 lines
842 B
TypeScript
Raw Normal View History

2021-05-14 07:50:58 -07:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class ElasticSearchApi implements ICredentialType {
name = 'elasticSearchApi';
displayName = 'Elastic Search API';
documentationUrl = 'elasticSearch';
properties = [
{
displayName: 'Username',
name: 'username',
type: 'string' as NodePropertyTypes,
default: '',
placeholder: 'hello@n8n.io',
},
{
displayName: 'Password',
name: 'password',
type: 'string' as NodePropertyTypes,
typeOptions: {
password: true,
},
default: '',
},
{
displayName: 'Base URL',
name: 'baseUrl',
type: 'string' as NodePropertyTypes,
default: '',
placeholder: 'https://a-b-optimized-deployment-ffc9df.es.us-west1.gcp.cloud.es.io:9243',
description: 'Referred to as \'endpoint\' in the ElasticSearch dashboard.',
},
];
}