forked from BotBuilderCommunity/botbuilder-community-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ElasticsearchStorageOptions.cs
52 lines (47 loc) · 1.48 KB
/
ElasticsearchStorageOptions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
using System;
using System.Collections.Generic;
using System.Text;
namespace Bot.Builder.Community.Storage.Elasticsearch
{
/// <summary>
/// Elasticsearch Storage Options.
/// </summary>
public class ElasticsearchStorageOptions
{
/// <summary>
/// Gets or sets the Elasticsearch endpoint.
/// </summary>
/// <value>
/// The Elasticsearch endpoint.
/// </value>
public Uri ElasticsearchEndpoint { get; set; }
/// <summary>
/// Gets or sets the user name for Elasticsearch.
/// </summary>
/// <value>
/// The user name for Elasticsearch.
/// </value>
public string UserName { get; set; }
/// <summary>
/// Gets or sets the password for Elasticsearch.
/// </summary>
/// <value>
/// The password for Elasticsearch.
/// </value>
public string Password { get; set; }
/// <summary>
/// Gets or sets the index name for Elasticsearch instance.
/// </summary>
/// <value>
/// The index name for Elasticsearch instance.
/// </value>
public string IndexName { get; set; }
/// <summary>
/// Gets or sets the index mapping depth limit for the Elasticsearch index.
/// </summary>
/// <value>
/// The index mapping depth limit for the Elasticsearch index.
/// </value>
public int? IndexMappingDepthLimit { get; set; }
}
}