@@ -41,6 +41,7 @@ ISearchResponse<T> Scroll<T>(Func<ScrollDescriptor<T>, ScrollDescriptor<T>> scro
4141 /// indicating for how long the nodes that participate in the search will maintain relevant resources in
4242 /// order to continue and support it.</para><para>
4343 /// 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>
4445 /// </summary>
4546 /// <typeparam name="T">The type that represents the result hits</typeparam>
4647 /// <param name="scrollSelector">A descriptor that describes the scroll operation</param>
@@ -248,7 +249,7 @@ Task<IValidateResponse> ValidateAsync<T>(Func<ValidateQueryDescriptor<T>, Valida
248249 /// Allows to put a warmup search request on a specific index (or indices), with the body composing of a regular
249250 /// search request. Types can be provided as part of the URI if the search request is designed to be run only
250251 /// 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
252253 /// </summary>
253254 /// <param name="name">The name for the warmer that you want to register</param>
254255 /// <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
258259 /// Allows to put a warmup search request on a specific index (or indices), with the body composing of a regular
259260 /// search request. Types can be provided as part of the URI if the search request is designed to be run only
260261 /// 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
262263 /// </summary>
263264 /// <param name="name">The name for the warmer that you want to register</param>
264265 /// <param name="selector">A descriptor that further describes what the warmer should look like</param>
265266 Task < IIndicesOperationResponse > PutWarmerAsync ( string name , Func < PutWarmerDescriptor , PutWarmerDescriptor > selector ) ;
266267
267268 /// <summary>
268269 /// 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
270271 /// </summary>
271272 /// <param name="name">The name of the warmer to get</param>
272273 /// <param name="selector">An optional selector specifying additional parameters for the get warmer operation</param>
273274 IWarmerResponse GetWarmer ( string name , Func < GetWarmerDescriptor , GetWarmerDescriptor > selector = null ) ;
274275
275276 /// <summary>
276277 /// 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
278279 /// </summary>
279280 /// <param name="name">The name of the warmer to get</param>
280281 /// <param name="selector">An optional selector specifying additional parameters for the get warmer operation</param>
281282 Task < IWarmerResponse > GetWarmerAsync ( string name , Func < GetWarmerDescriptor , GetWarmerDescriptor > selector = null ) ;
282283
283284 /// <summary>
284285 /// 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
286287 /// </summary>
287288 /// <param name="name">The name of the warmer to delete</param>
288289 /// <param name="selector">An optional selector specifying additional parameters for the delete warmer operation</param>
289290 IIndicesOperationResponse DeleteWarmer ( string name , Func < DeleteWarmerDescriptor , DeleteWarmerDescriptor > selector = null ) ;
290291
291292 /// <summary>
292293 /// 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
294295 /// </summary>
295296 /// <param name="name">The name of the warmer to delete</param>
296297 /// <param name="selector">An optional selector specifying additional parameters for the delete warmer operation</param>
297298 Task < IIndicesOperationResponse > DeleteWarmerAsync ( string name , Func < DeleteWarmerDescriptor , DeleteWarmerDescriptor > selector = null ) ;
298299
299300 /// <summary>
300301 /// 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
302303 /// </summary>
303304 /// <param name="name">The name of the template to get</param>
304305 /// <param name="getTemplateSelector">An optional selector specifying additional parameters for the get template operation</param>
305306 ITemplateResponse GetTemplate ( string name , Func < GetTemplateDescriptor , GetTemplateDescriptor > getTemplateSelector = null ) ;
306307
307308 /// <summary>
308309 /// 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
310311 /// </summary>
311312 /// <param name="name">The name of the template to get</param>
312313 /// <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
334335
335336 /// <summary>
336337 /// 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
338339 /// </summary>
339340 /// <param name="name">The name of the template to delete</param>
340341 /// <param name="deleteTemplateSelector">An optional selector specifying additional parameters for the delete template operation</param>
341342 IIndicesOperationResponse DeleteTemplate ( string name , Func < DeleteTemplateDescriptor , DeleteTemplateDescriptor > deleteTemplateSelector = null ) ;
342343
343344 /// <summary>
344345 /// 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
346347 /// </summary>
347348 /// <param name="name">The name of the template to delete</param>
348349 /// <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
471472 Task < IPercolateCountResponse > PercolateCountAsync < T , K > ( K @object , Func < PercolateCountDescriptor < T , K > , PercolateCountDescriptor < T , K > > percolateSelector = null )
472473 where T : class
473474 where K : class ;
475+
474476 /// <summary>
475477 /// The put mapping API allows to register specific mapping definition for a specific type.
476478 /// <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
10341036
10351037 /// <summary>
10361038 /// 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
10381040 /// </summary>
10391041 /// <typeparam name="T">The type used to strongly type parts of the suggest operation</typeparam>
10401042 /// <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
10431045
10441046 /// <summary>
10451047 /// 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
10471049 /// </summary>
10481050 /// <typeparam name="T">The type used to strongly type parts of the suggest operation</typeparam>
10491051 /// <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
11151117 Task < IAcknowledgedResponse > DeleteRepositoryAsync ( string repository , Func < DeleteRepositoryDescriptor , DeleteRepositoryDescriptor > selector = null ) ;
11161118
11171119 /// <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
11191122 /// </summary>
11201123 /// <param name="repository">The name of the repository we want to create a snapshot in</param>
11211124 /// <param name="snapshotName">The name of the snapshot</param>
11221125 /// <param name="selector">Optionally provide more details about the snapshot operation</param>
11231126 ISnapshotResponse Snapshot ( string repository , string snapshotName , Func < SnapshotDescriptor , SnapshotDescriptor > selector = null ) ;
11241127
11251128 /// <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.
11271130 /// <para> </para>http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/modules-snapshots.html#_snapshot
11281131 /// </summary>
11291132 /// <param name="repository">The name of the repository we want to create a snapshot in</param>
0 commit comments