@@ -13752,15 +13752,15 @@ public Task<ElasticsearchResponse<DynamicDictionary>> IndicesFlushGetAsync(strin
13752
13752
///<para> - If T is of type byte[] deserialization will be shortcircuited</para>
13753
13753
///<para> - If T is of type VoidResponse the response stream will be ignored completely</para>
13754
13754
///</returns>
13755
- public ElasticsearchResponse<T> IndicesGet<T>(string index, Func<IndicesGetRequestParameters, IndicesGetRequestParameters > requestParameters = null)
13755
+ public ElasticsearchResponse<T> IndicesGet<T>(string index, Func<GetIndexRequestParameters, GetIndexRequestParameters > requestParameters = null)
13756
13756
{
13757
13757
index.ThrowIfNullOrEmpty("index");
13758
13758
var url = "{0}".F(Encoded(index));
13759
13759
IRequestParameters requestParams = null;
13760
13760
13761
13761
if (requestParameters != null)
13762
13762
{
13763
- requestParams = requestParameters(new IndicesGetRequestParameters ());
13763
+ requestParams = requestParameters(new GetIndexRequestParameters ());
13764
13764
}
13765
13765
13766
13766
@@ -13786,15 +13786,15 @@ public ElasticsearchResponse<T> IndicesGet<T>(string index, Func<IndicesGetReque
13786
13786
///<para> - If T is of type byte[] deserialization will be shortcircuited</para>
13787
13787
///<para> - If T is of type VoidResponse the response stream will be ignored completely</para>
13788
13788
///</returns>
13789
- public Task<ElasticsearchResponse<T>> IndicesGetAsync<T>(string index, Func<IndicesGetRequestParameters, IndicesGetRequestParameters > requestParameters = null)
13789
+ public Task<ElasticsearchResponse<T>> IndicesGetAsync<T>(string index, Func<GetIndexRequestParameters, GetIndexRequestParameters > requestParameters = null)
13790
13790
{
13791
13791
index.ThrowIfNullOrEmpty("index");
13792
13792
var url = "{0}".F(Encoded(index));
13793
13793
IRequestParameters requestParams = null;
13794
13794
13795
13795
if (requestParameters != null)
13796
13796
{
13797
- requestParams = requestParameters(new IndicesGetRequestParameters ());
13797
+ requestParams = requestParameters(new GetIndexRequestParameters ());
13798
13798
}
13799
13799
13800
13800
@@ -13822,15 +13822,15 @@ public Task<ElasticsearchResponse<T>> IndicesGetAsync<T>(string index, Func<Indi
13822
13822
///<para> - i.e result.Response.hits.hits[0].property.nested["nested_deeper"]</para>
13823
13823
///<para> - can be safely dispatched to a nullable type even if intermediate properties do not exist</para>
13824
13824
///</returns>
13825
- public ElasticsearchResponse<DynamicDictionary> IndicesGet(string index, Func<IndicesGetRequestParameters, IndicesGetRequestParameters > requestParameters = null)
13825
+ public ElasticsearchResponse<DynamicDictionary> IndicesGet(string index, Func<GetIndexRequestParameters, GetIndexRequestParameters > requestParameters = null)
13826
13826
{
13827
13827
index.ThrowIfNullOrEmpty("index");
13828
13828
var url = "{0}".F(Encoded(index));
13829
13829
IRequestParameters requestParams = null;
13830
13830
13831
13831
if (requestParameters != null)
13832
13832
{
13833
- requestParams = requestParameters(new IndicesGetRequestParameters ());
13833
+ requestParams = requestParameters(new GetIndexRequestParameters ());
13834
13834
}
13835
13835
13836
13836
@@ -13858,15 +13858,15 @@ public ElasticsearchResponse<DynamicDictionary> IndicesGet(string index, Func<In
13858
13858
///<para> - i.e result.Response.hits.hits[0].property.nested["nested_deeper"]</para>
13859
13859
///<para> - can be safely dispatched to a nullable type even if intermediate properties do not exist</para>
13860
13860
///</returns>
13861
- public Task<ElasticsearchResponse<DynamicDictionary>> IndicesGetAsync(string index, Func<IndicesGetRequestParameters, IndicesGetRequestParameters > requestParameters = null)
13861
+ public Task<ElasticsearchResponse<DynamicDictionary>> IndicesGetAsync(string index, Func<GetIndexRequestParameters, GetIndexRequestParameters > requestParameters = null)
13862
13862
{
13863
13863
index.ThrowIfNullOrEmpty("index");
13864
13864
var url = "{0}".F(Encoded(index));
13865
13865
IRequestParameters requestParams = null;
13866
13866
13867
13867
if (requestParameters != null)
13868
13868
{
13869
- requestParams = requestParameters(new IndicesGetRequestParameters ());
13869
+ requestParams = requestParameters(new GetIndexRequestParameters ());
13870
13870
}
13871
13871
13872
13872
@@ -13893,7 +13893,7 @@ public Task<ElasticsearchResponse<DynamicDictionary>> IndicesGetAsync(string ind
13893
13893
///<para> - If T is of type byte[] deserialization will be shortcircuited</para>
13894
13894
///<para> - If T is of type VoidResponse the response stream will be ignored completely</para>
13895
13895
///</returns>
13896
- public ElasticsearchResponse<T> IndicesGet<T>(string index, string feature, Func<IndicesGetRequestParameters, IndicesGetRequestParameters > requestParameters = null)
13896
+ public ElasticsearchResponse<T> IndicesGet<T>(string index, string feature, Func<GetIndexRequestParameters, GetIndexRequestParameters > requestParameters = null)
13897
13897
{
13898
13898
index.ThrowIfNullOrEmpty("index");
13899
13899
feature.ThrowIfNullOrEmpty("feature");
@@ -13902,7 +13902,7 @@ public ElasticsearchResponse<T> IndicesGet<T>(string index, string feature, Func
13902
13902
13903
13903
if (requestParameters != null)
13904
13904
{
13905
- requestParams = requestParameters(new IndicesGetRequestParameters ());
13905
+ requestParams = requestParameters(new GetIndexRequestParameters ());
13906
13906
}
13907
13907
13908
13908
@@ -13929,7 +13929,7 @@ public ElasticsearchResponse<T> IndicesGet<T>(string index, string feature, Func
13929
13929
///<para> - If T is of type byte[] deserialization will be shortcircuited</para>
13930
13930
///<para> - If T is of type VoidResponse the response stream will be ignored completely</para>
13931
13931
///</returns>
13932
- public Task<ElasticsearchResponse<T>> IndicesGetAsync<T>(string index, string feature, Func<IndicesGetRequestParameters, IndicesGetRequestParameters > requestParameters = null)
13932
+ public Task<ElasticsearchResponse<T>> IndicesGetAsync<T>(string index, string feature, Func<GetIndexRequestParameters, GetIndexRequestParameters > requestParameters = null)
13933
13933
{
13934
13934
index.ThrowIfNullOrEmpty("index");
13935
13935
feature.ThrowIfNullOrEmpty("feature");
@@ -13938,7 +13938,7 @@ public Task<ElasticsearchResponse<T>> IndicesGetAsync<T>(string index, string fe
13938
13938
13939
13939
if (requestParameters != null)
13940
13940
{
13941
- requestParams = requestParameters(new IndicesGetRequestParameters ());
13941
+ requestParams = requestParameters(new GetIndexRequestParameters ());
13942
13942
}
13943
13943
13944
13944
@@ -13967,7 +13967,7 @@ public Task<ElasticsearchResponse<T>> IndicesGetAsync<T>(string index, string fe
13967
13967
///<para> - i.e result.Response.hits.hits[0].property.nested["nested_deeper"]</para>
13968
13968
///<para> - can be safely dispatched to a nullable type even if intermediate properties do not exist</para>
13969
13969
///</returns>
13970
- public ElasticsearchResponse<DynamicDictionary> IndicesGet(string index, string feature, Func<IndicesGetRequestParameters, IndicesGetRequestParameters > requestParameters = null)
13970
+ public ElasticsearchResponse<DynamicDictionary> IndicesGet(string index, string feature, Func<GetIndexRequestParameters, GetIndexRequestParameters > requestParameters = null)
13971
13971
{
13972
13972
index.ThrowIfNullOrEmpty("index");
13973
13973
feature.ThrowIfNullOrEmpty("feature");
@@ -13976,7 +13976,7 @@ public ElasticsearchResponse<DynamicDictionary> IndicesGet(string index, string
13976
13976
13977
13977
if (requestParameters != null)
13978
13978
{
13979
- requestParams = requestParameters(new IndicesGetRequestParameters ());
13979
+ requestParams = requestParameters(new GetIndexRequestParameters ());
13980
13980
}
13981
13981
13982
13982
@@ -14005,7 +14005,7 @@ public ElasticsearchResponse<DynamicDictionary> IndicesGet(string index, string
14005
14005
///<para> - i.e result.Response.hits.hits[0].property.nested["nested_deeper"]</para>
14006
14006
///<para> - can be safely dispatched to a nullable type even if intermediate properties do not exist</para>
14007
14007
///</returns>
14008
- public Task<ElasticsearchResponse<DynamicDictionary>> IndicesGetAsync(string index, string feature, Func<IndicesGetRequestParameters, IndicesGetRequestParameters > requestParameters = null)
14008
+ public Task<ElasticsearchResponse<DynamicDictionary>> IndicesGetAsync(string index, string feature, Func<GetIndexRequestParameters, GetIndexRequestParameters > requestParameters = null)
14009
14009
{
14010
14010
index.ThrowIfNullOrEmpty("index");
14011
14011
feature.ThrowIfNullOrEmpty("feature");
@@ -14014,7 +14014,7 @@ public Task<ElasticsearchResponse<DynamicDictionary>> IndicesGetAsync(string ind
14014
14014
14015
14015
if (requestParameters != null)
14016
14016
{
14017
- requestParams = requestParameters(new IndicesGetRequestParameters ());
14017
+ requestParams = requestParameters(new GetIndexRequestParameters ());
14018
14018
}
14019
14019
14020
14020
0 commit comments