-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathSearchTemplateRequest.cs
68 lines (49 loc) · 2.3 KB
/
SearchTemplateRequest.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Licensed to Elasticsearch B.V under one or more agreements.
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
// See the LICENSE file in the project root for more information
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
using Elasticsearch.Net;
namespace Nest
{
[ReadAs(typeof(SearchTemplateRequest))]
[MapsApi("search_template.json")]
public partial interface ISearchTemplateRequest : ITypedSearchRequest
{
[DataMember(Name ="id")]
string Id { get; set; }
[DataMember(Name ="params")]
IDictionary<string, object> Params { get; set; }
[DataMember(Name ="source")]
string Source { get; set; }
}
public partial class SearchTemplateRequest
{
public string Id { get; set; }
public IDictionary<string, object> Params { get; set; }
public string Source { get; set; }
protected Type ClrType { get; set; }
Type ITypedSearchRequest.ClrType => ClrType;
protected sealed override void RequestDefaults(SearchTemplateRequestParameters parameters) => TypedKeys = true;
}
public class SearchTemplateRequest<T> : SearchTemplateRequest
where T : class
{
public SearchTemplateRequest() : base(typeof(T)) => ClrType = typeof(T);
public SearchTemplateRequest(Indices indices) : base(indices) => ClrType = typeof(T);
}
public partial class SearchTemplateDescriptor<TDocument> where TDocument : class
{
Type ITypedSearchRequest.ClrType => typeof(TDocument);
string ISearchTemplateRequest.Id { get; set; }
IDictionary<string, object> ISearchTemplateRequest.Params { get; set; }
string ISearchTemplateRequest.Source { get; set; }
protected sealed override void RequestDefaults(SearchTemplateRequestParameters parameters) => TypedKeys();
public SearchTemplateDescriptor<TDocument> Source(string template) => Assign(template, (a, v) => a.Source = v);
public SearchTemplateDescriptor<TDocument> Id(string id) => Assign(id, (a, v) => a.Id = v);
public SearchTemplateDescriptor<TDocument> Params(Dictionary<string, object> paramDictionary) => Assign(paramDictionary, (a, v) => a.Params = v);
public SearchTemplateDescriptor<TDocument> Params(Func<FluentDictionary<string, object>, FluentDictionary<string, object>> paramDictionary) =>
Assign(paramDictionary, (a, v) => a.Params = v?.Invoke(new FluentDictionary<string, object>()));
}
}