@@ -41,6 +41,7 @@ ISearchResponse<T> Scroll<T>(Func<ScrollDescriptor<T>, ScrollDescriptor<T>> scro
41
41
/// indicating for how long the nodes that participate in the search will maintain relevant resources in
42
42
/// order to continue and support it.</para><para>
43
43
/// This is very similar in its idea to opening a cursor against a database.</para>
44
+ /// <para> </para><para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-request-scroll.html</para>
44
45
/// </summary>
45
46
/// <typeparam name="T">The type that represents the result hits</typeparam>
46
47
/// <param name="scrollSelector">A descriptor that describes the scroll operation</param>
@@ -248,7 +249,7 @@ Task<IValidateResponse> ValidateAsync<T>(Func<ValidateQueryDescriptor<T>, Valida
248
249
/// Allows to put a warmup search request on a specific index (or indices), with the body composing of a regular
249
250
/// search request. Types can be provided as part of the URI if the search request is designed to be run only
250
251
/// against the specific types.
251
- /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-warmers.html
252
+ /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-warmers.html#warmer-adding
252
253
/// </summary>
253
254
/// <param name="name">The name for the warmer that you want to register</param>
254
255
/// <param name="selector">A descriptor that further describes what the warmer should look like</param>
@@ -258,55 +259,55 @@ Task<IValidateResponse> ValidateAsync<T>(Func<ValidateQueryDescriptor<T>, Valida
258
259
/// Allows to put a warmup search request on a specific index (or indices), with the body composing of a regular
259
260
/// search request. Types can be provided as part of the URI if the search request is designed to be run only
260
261
/// against the specific types.
261
- /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-warmers.html
262
+ /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-warmers.html#warmer-adding
262
263
/// </summary>
263
264
/// <param name="name">The name for the warmer that you want to register</param>
264
265
/// <param name="selector">A descriptor that further describes what the warmer should look like</param>
265
266
Task < IIndicesOperationResponse > PutWarmerAsync ( string name , Func < PutWarmerDescriptor , PutWarmerDescriptor > selector ) ;
266
267
267
268
/// <summary>
268
269
/// Getting a warmer for specific index (or alias, or several indices) based on its name.
269
- /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-warmers.html
270
+ /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-warmers.html#warmer-retrieving
270
271
/// </summary>
271
272
/// <param name="name">The name of the warmer to get</param>
272
273
/// <param name="selector">An optional selector specifying additional parameters for the get warmer operation</param>
273
274
IWarmerResponse GetWarmer ( string name , Func < GetWarmerDescriptor , GetWarmerDescriptor > selector = null ) ;
274
275
275
276
/// <summary>
276
277
/// Getting a warmer for specific index (or alias, or several indices) based on its name.
277
- /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-warmers.html
278
+ /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-warmers.html#warmer-retrieving
278
279
/// </summary>
279
280
/// <param name="name">The name of the warmer to get</param>
280
281
/// <param name="selector">An optional selector specifying additional parameters for the get warmer operation</param>
281
282
Task < IWarmerResponse > GetWarmerAsync ( string name , Func < GetWarmerDescriptor , GetWarmerDescriptor > selector = null ) ;
282
283
283
284
/// <summary>
284
285
/// Deletes a warmer
285
- /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-warmers.html
286
+ /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-warmers.html#removing
286
287
/// </summary>
287
288
/// <param name="name">The name of the warmer to delete</param>
288
289
/// <param name="selector">An optional selector specifying additional parameters for the delete warmer operation</param>
289
290
IIndicesOperationResponse DeleteWarmer ( string name , Func < DeleteWarmerDescriptor , DeleteWarmerDescriptor > selector = null ) ;
290
291
291
292
/// <summary>
292
293
/// Deletes a warmer
293
- /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-warmers.html
294
+ /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-warmers.html#removing
294
295
/// </summary>
295
296
/// <param name="name">The name of the warmer to delete</param>
296
297
/// <param name="selector">An optional selector specifying additional parameters for the delete warmer operation</param>
297
298
Task < IIndicesOperationResponse > DeleteWarmerAsync ( string name , Func < DeleteWarmerDescriptor , DeleteWarmerDescriptor > selector = null ) ;
298
299
299
300
/// <summary>
300
301
/// Gets an index template
301
- /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-templates.html
302
+ /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-templates.html#getting
302
303
/// </summary>
303
304
/// <param name="name">The name of the template to get</param>
304
305
/// <param name="getTemplateSelector">An optional selector specifying additional parameters for the get template operation</param>
305
306
ITemplateResponse GetTemplate ( string name , Func < GetTemplateDescriptor , GetTemplateDescriptor > getTemplateSelector = null ) ;
306
307
307
308
/// <summary>
308
309
/// Gets an index template
309
- /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-templates.html
310
+ /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-templates.html#getting
310
311
/// </summary>
311
312
/// <param name="name">The name of the template to get</param>
312
313
/// <param name="getTemplateSelector">An optional selector specifying additional parameters for the get template operation</param>
@@ -334,15 +335,15 @@ Task<IValidateResponse> ValidateAsync<T>(Func<ValidateQueryDescriptor<T>, Valida
334
335
335
336
/// <summary>
336
337
/// Deletes an index template
337
- /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-templates.html
338
+ /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-templates.html#delete
338
339
/// </summary>
339
340
/// <param name="name">The name of the template to delete</param>
340
341
/// <param name="deleteTemplateSelector">An optional selector specifying additional parameters for the delete template operation</param>
341
342
IIndicesOperationResponse DeleteTemplate ( string name , Func < DeleteTemplateDescriptor , DeleteTemplateDescriptor > deleteTemplateSelector = null ) ;
342
343
343
344
/// <summary>
344
345
/// Deletes an index template
345
- /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-templates.html
346
+ /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-templates.html#delete
346
347
/// </summary>
347
348
/// <param name="name">The name of the template to delete</param>
348
349
/// <param name="deleteTemplateSelector">An optional selector specifying additional parameters for the delete template operation</param>
@@ -471,6 +472,7 @@ IPercolateCountResponse PercolateCount<T, K>(K @object, Func<PercolateCountDescr
471
472
Task < IPercolateCountResponse > PercolateCountAsync < T , K > ( K @object , Func < PercolateCountDescriptor < T , K > , PercolateCountDescriptor < T , K > > percolateSelector = null )
472
473
where T : class
473
474
where K : class ;
475
+
474
476
/// <summary>
475
477
/// The put mapping API allows to register specific mapping definition for a specific type.
476
478
/// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-put-mapping.html
@@ -1034,7 +1036,7 @@ Task<IBulkResponse> IndexManyAsync<T>(IEnumerable<T> objects, string index = nul
1034
1036
1035
1037
/// <summary>
1036
1038
/// The suggest feature suggests similar looking terms based on a provided text by using a suggester.
1037
- /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-status .html
1039
+ /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-suggesters .html
1038
1040
/// </summary>
1039
1041
/// <typeparam name="T">The type used to strongly type parts of the suggest operation</typeparam>
1040
1042
/// <param name="selector">The suggesters to use this operation (can be multiple)</param>
@@ -1043,7 +1045,7 @@ ISuggestResponse Suggest<T>(Func<SuggestDescriptor<T>, SuggestDescriptor<T>> sel
1043
1045
1044
1046
/// <summary>
1045
1047
/// The suggest feature suggests similar looking terms based on a provided text by using a suggester.
1046
- /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-status .html
1048
+ /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-suggesters .html
1047
1049
/// </summary>
1048
1050
/// <typeparam name="T">The type used to strongly type parts of the suggest operation</typeparam>
1049
1051
/// <param name="selector">The suggesters to use this operation (can be multiple)</param>
@@ -1115,15 +1117,16 @@ Task<IExistsResponse> DocumentExistsAsync<T>(Func<DocumentExistsDescriptor<T>, D
1115
1117
Task < IAcknowledgedResponse > DeleteRepositoryAsync ( string repository , Func < DeleteRepositoryDescriptor , DeleteRepositoryDescriptor > selector = null ) ;
1116
1118
1117
1119
/// <summary>
1118
- /// A repository can contain multiple snapshots of the same cluster. Snapshot are identified by unique names within the cluster.
1120
+ /// A repository can contain multiple snapshots of the same cluster. Snapshot are identified by unique names within the cluster.
1121
+ /// /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/modules-snapshots.html#_snapshot
1119
1122
/// </summary>
1120
1123
/// <param name="repository">The name of the repository we want to create a snapshot in</param>
1121
1124
/// <param name="snapshotName">The name of the snapshot</param>
1122
1125
/// <param name="selector">Optionally provide more details about the snapshot operation</param>
1123
1126
ISnapshotResponse Snapshot ( string repository , string snapshotName , Func < SnapshotDescriptor , SnapshotDescriptor > selector = null ) ;
1124
1127
1125
1128
/// <summary>
1126
- /// A repository can contain multiple snapshots of the same cluster. Snapshot are identified by unique names within the cluster.
1129
+ /// A repository can contain multiple snapshots of the same cluster. Snapshot are identified by unique names within the cluster.
1127
1130
/// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/modules-snapshots.html#_snapshot
1128
1131
/// </summary>
1129
1132
/// <param name="repository">The name of the repository we want to create a snapshot in</param>
0 commit comments