|
9 | 9 |
|
10 | 10 | namespace Nest |
11 | 11 | { |
12 | | - public partial class ElasticClient : IElasticClient |
| 12 | + public partial class ElasticClient |
13 | 13 | { |
14 | 14 | public ISearchResponse<T> SearchTemplate<T>(Func<SearchTemplateDescriptor<T>, SearchTemplateDescriptor<T>> selector) where T : class |
15 | 15 | { |
@@ -131,5 +131,65 @@ private JsonConverter CreateCovariantSearchSelector<T, TResult>(ISearchTemplateR |
131 | 131 | SearchTemplatePathInfo.CloseOverAutomagicCovariantResultSelector(this.Infer, originalSearchDescriptor); |
132 | 132 | return originalSearchDescriptor.TypeSelector == null ? null : new ConcreteTypeConverter<TResult>(originalSearchDescriptor.TypeSelector); |
133 | 133 | } |
| 134 | + |
| 135 | + public IGetSearchTemplateResponse GetSearchTemplate(Func<GetSearchTemplateDescriptor, GetSearchTemplateDescriptor> selector) |
| 136 | + { |
| 137 | + throw new NotImplementedException(); |
| 138 | + } |
| 139 | + |
| 140 | + public IGetSearchTemplateResponse GetSearchTemplate(IGetSearchTemplateRequest request) |
| 141 | + { |
| 142 | + throw new NotImplementedException(); |
| 143 | + } |
| 144 | + |
| 145 | + public Task<IGetSearchTemplateResponse> GetSearchTemplateAsync(Func<GetSearchTemplateDescriptor, GetSearchTemplateDescriptor> selector) |
| 146 | + { |
| 147 | + throw new NotImplementedException(); |
| 148 | + } |
| 149 | + |
| 150 | + public Task<IGetSearchTemplateResponse> GetSearchTemplateAsync(IGetSearchTemplateRequest request) |
| 151 | + { |
| 152 | + throw new NotImplementedException(); |
| 153 | + } |
| 154 | + |
| 155 | + public IPutSearchTemplateResponse PutSearchTemplate(Func<PutSearchTemplateDescriptor, PutSearchTemplateDescriptor> selector) |
| 156 | + { |
| 157 | + throw new NotImplementedException(); |
| 158 | + } |
| 159 | + |
| 160 | + public IPutSearchTemplateResponse PutSearchTemplate(IPutSearchTemplateRequest request) |
| 161 | + { |
| 162 | + throw new NotImplementedException(); |
| 163 | + } |
| 164 | + |
| 165 | + public Task<IPutSearchTemplateResponse> PutSearchTemplateAsync(Func<PutSearchTemplateDescriptor, PutSearchTemplateDescriptor> selector) |
| 166 | + { |
| 167 | + throw new NotImplementedException(); |
| 168 | + } |
| 169 | + |
| 170 | + public Task<IPutSearchTemplateResponse> PutSearchTemplateAsync(IPutSearchTemplateRequest request) |
| 171 | + { |
| 172 | + throw new NotImplementedException(); |
| 173 | + } |
| 174 | + |
| 175 | + public IDeleteSearchTemplateResponse DeleteSearchTemplate(Func<DeleteSearchTemplateDescriptor, DeleteSearchTemplateDescriptor> selector) |
| 176 | + { |
| 177 | + throw new NotImplementedException(); |
| 178 | + } |
| 179 | + |
| 180 | + public IDeleteSearchTemplateResponse DeleteSearchTemplate(IDeleteSearchTemplateRequest request) |
| 181 | + { |
| 182 | + throw new NotImplementedException(); |
| 183 | + } |
| 184 | + |
| 185 | + public Task<IDeleteSearchTemplateResponse> DeleteSearchTemplateAsync(Func<DeleteSearchTemplateDescriptor, DeleteSearchTemplateDescriptor> selector) |
| 186 | + { |
| 187 | + throw new NotImplementedException(); |
| 188 | + } |
| 189 | + |
| 190 | + public Task<IDeleteSearchTemplateResponse> DeleteSearchTemplateAsync(IDeleteSearchTemplateRequest request) |
| 191 | + { |
| 192 | + throw new NotImplementedException(); |
| 193 | + } |
134 | 194 | } |
135 | 195 | } |
0 commit comments