@@ -18,7 +18,7 @@ namespace Elasticsearch.Net
1818 ///Generated of commit
1919 ///</pre>
2020 ///</summary>
21- public interface IElasticsearchClient
21+ public partial interface IElasticsearchClient
2222 {
2323 //IConnection Connection { get; }
2424 //IConnectionConfigurationValues Settings { get; }
@@ -20080,26 +20080,5 @@ public interface IElasticsearchClient
2008020080
2008120081 Task<ElasticsearchResponse<DynamicDictionary>> UpdateAsync(string index, string type, string id, object body, Func<UpdateRequestParameters, UpdateRequestParameters> requestParameters = null);
2008220082
20083- /// <summary>
20084- /// Perform any request you want over the configured IConnection synchronously while taking advantage of the cluster failover.
20085- /// </summary>
20086- /// <typeparam name="T">The type representing the response JSON</typeparam>
20087- /// <param name="method">the HTTP Method to use</param>
20088- /// <param name="path">The path of the the url that you would like to hit</param>
20089- /// <param name="data">The body of the request, string and byte[] are posted as is other types will be serialized to JSON</param>
20090- /// <param name="requestParameters">Optionally configure request specific timeouts, headers</param>
20091- /// <returns>An ElasticsearchResponse of T where T represents the JSON response body</returns>
20092- ElasticsearchResponse<T> DoRequest<T>(string method, string path, object data = null, IRequestParameters requestParameters = null);
20093-
20094- /// <summary>
20095- /// Perform any request you want over the configured IConnection asynchronously while taking advantage of the cluster failover.
20096- /// </summary>
20097- /// <typeparam name="T">The type representing the response JSON</typeparam>
20098- /// <param name="method">the HTTP Method to use</param>
20099- /// <param name="path">The path of the the url that you would like to hit</param>
20100- /// <param name="data">The body of the request, string and byte[] are posted as is other types will be serialized to JSON</param>
20101- /// <param name="requestParameters">Optionally configure request specific timeouts, headers</param>
20102- /// <returns>A task of ElasticsearchResponse of T where T represents the JSON response body</returns>
20103- Task<ElasticsearchResponse<T>> DoRequestAsync<T>(string method, string path, object data = null, IRequestParameters requestParameters = null);
2010420083 }
2010520084}
0 commit comments