Updates to Elasticsearch VectoreStore Functionality.

This commit is contained in:
vinodkiran
2023-10-10 20:03:21 +05:30
parent f108c62acf
commit 57760dc633
4 changed files with 245 additions and 237 deletions
@@ -14,14 +14,19 @@ class ElasticSearchUserPassword implements INodeCredential {
this.description =
'Refer to <a target="_blank" href="https://www.elastic.co/guide/en/kibana/current/tutorial-secure-access-to-kibana.html">official guide</a> on how to get User Password from ElasticSearch'
this.inputs = [
{
label: 'Cloud ID',
name: 'cloudId',
type: 'string'
},
{
label: 'ElasticSearch User',
name: 'elasticSearchUser',
name: 'username',
type: 'string'
},
{
label: 'ElasticSearch Password',
name: 'elasticSearchPassword',
name: 'password',
type: 'password'
}
]