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

37 lines
841 B
TypeScript
Raw Normal View History

2021-05-14 07:50:58 -07:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
2021-05-27 00:44:48 -07:00
export class ElasticsearchApi implements ICredentialType {
name = 'elasticsearchApi';
displayName = 'Elasticsearch API';
documentationUrl = 'elasticsearch';
2021-05-14 07:50:58 -07:00
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',
2021-05-27 00:44:48 -07:00
description: 'Referred to as \'endpoint\' in the Elasticsearch dashboard.',
2021-05-14 07:50:58 -07:00
},
];
}