You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
///<summary>Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)</summary>
where T : class => this.DoRequestAsync<T>(GET, Url($"_field_caps"), cancellationToken, null, _params(requestParameters));
1990
1990
1991
1991
///<summary>Represents a GET on /{index}/_field_caps
@@ -1999,7 +1999,7 @@ public ElasticsearchResponse<T> FieldCapsGet<T>(Func<FieldCapsRequestParameters,
1999
1999
///</summary>
2000
2000
///<param name="index">A comma-separated list of index names; use the special string `_all` or Indices.All to perform the operation on all indices</param>
2001
2001
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
2002
-
public ElasticsearchResponse<T> FieldCapsGet<T>(string index, Func<FieldCapsRequestParameters, FieldCapsRequestParameters> requestParameters = null)
2002
+
public ElasticsearchResponse<T> FieldCapsGet<T>(string index, Func<FieldCapabilitiesRequestParameters, FieldCapabilitiesRequestParameters> requestParameters = null)
2003
2003
where T : class => this.DoRequest<T>(GET, Url($"{index.NotNull("index")}/_field_caps"), null, _params(requestParameters));
2004
2004
2005
2005
///<summary>Represents a GET on /{index}/_field_caps
@@ -2013,7 +2013,7 @@ public ElasticsearchResponse<T> FieldCapsGet<T>(string index, Func<FieldCapsRequ
2013
2013
///</summary>
2014
2014
///<param name="index">A comma-separated list of index names; use the special string `_all` or Indices.All to perform the operation on all indices</param>
2015
2015
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
where T : class => this.DoRequestAsync<T>(POST, Url($"_field_caps"), cancellationToken, body, _params(requestParameters));
2046
2046
2047
2047
///<summary>Represents a POST on /{index}/_field_caps
@@ -2056,7 +2056,7 @@ public ElasticsearchResponse<T> FieldCaps<T>(PostData<object> body, Func<FieldCa
2056
2056
///<param name="index">A comma-separated list of index names; use the special string `_all` or Indices.All to perform the operation on all indices</param>
2057
2057
///<param name="body">Field json objects containing an array of field names</param>
2058
2058
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
where T : class => this.DoRequest<T>(POST, Url($"{index.NotNull("index")}/_field_caps"), body, _params(requestParameters));
2061
2061
2062
2062
///<summary>Represents a POST on /{index}/_field_caps
@@ -2071,7 +2071,7 @@ public ElasticsearchResponse<T> FieldCaps<T>(string index, PostData<object> body
2071
2071
///<param name="index">A comma-separated list of index names; use the special string `_all` or Indices.All to perform the operation on all indices</param>
2072
2072
///<param name="body">Field json objects containing an array of field names</param>
2073
2073
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
1844
-
ElasticsearchResponse<T> FieldCapsGet<T>(Func<FieldCapsRequestParameters, FieldCapsRequestParameters> requestParameters = null) where T : class;
1844
+
ElasticsearchResponse<T> FieldCapsGet<T>(Func<FieldCapabilitiesRequestParameters, FieldCapabilitiesRequestParameters> requestParameters = null) where T : class;
1845
1845
1846
1846
///<summary>Represents a GET on /_field_caps
1847
1847
///<para></para>Returns: A task of ElasticsearchResponse<T> where the behaviour depends on the type of T:
@@ -1853,7 +1853,7 @@ public partial interface IElasticLowLevelClient
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
1856
-
Task<ElasticsearchResponse<T>> FieldCapsGetAsync<T>(Func<FieldCapsRequestParameters, FieldCapsRequestParameters> requestParameters = null, CancellationToken cancellationToken = default(CancellationToken)) where T : class;
1856
+
Task<ElasticsearchResponse<T>> FieldCapsGetAsync<T>(Func<FieldCapabilitiesRequestParameters, FieldCapabilitiesRequestParameters> requestParameters = null, CancellationToken cancellationToken = default(CancellationToken)) where T : class;
1857
1857
1858
1858
///<summary>Represents a GET on /{index}/_field_caps
1859
1859
///<para></para>Returns: ElasticsearchResponse<T> where the behavior depends on the type of T:
@@ -1866,7 +1866,7 @@ public partial interface IElasticLowLevelClient
1866
1866
///</summary>
1867
1867
///<param name="index">A comma-separated list of index names; use the special string `_all` or Indices.All to perform the operation on all indices</param>
1868
1868
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
1869
-
ElasticsearchResponse<T> FieldCapsGet<T>(string index, Func<FieldCapsRequestParameters, FieldCapsRequestParameters> requestParameters = null) where T : class;
1869
+
ElasticsearchResponse<T> FieldCapsGet<T>(string index, Func<FieldCapabilitiesRequestParameters, FieldCapabilitiesRequestParameters> requestParameters = null) where T : class;
1870
1870
1871
1871
///<summary>Represents a GET on /{index}/_field_caps
1872
1872
///<para></para>Returns: A task of ElasticsearchResponse<T> where the behaviour depends on the type of T:
@@ -1879,7 +1879,7 @@ public partial interface IElasticLowLevelClient
1879
1879
///</summary>
1880
1880
///<param name="index">A comma-separated list of index names; use the special string `_all` or Indices.All to perform the operation on all indices</param>
1881
1881
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
1882
-
Task<ElasticsearchResponse<T>> FieldCapsGetAsync<T>(string index, Func<FieldCapsRequestParameters, FieldCapsRequestParameters> requestParameters = null, CancellationToken cancellationToken = default(CancellationToken)) where T : class;
1882
+
Task<ElasticsearchResponse<T>> FieldCapsGetAsync<T>(string index, Func<FieldCapabilitiesRequestParameters, FieldCapabilitiesRequestParameters> requestParameters = null, CancellationToken cancellationToken = default(CancellationToken)) where T : class;
1883
1883
1884
1884
///<summary>Represents a POST on /_field_caps
1885
1885
///<para></para>Returns: ElasticsearchResponse<T> where the behavior depends on the type of T:
@@ -1892,7 +1892,7 @@ public partial interface IElasticLowLevelClient
1892
1892
///</summary>
1893
1893
///<param name="body">Field json objects containing an array of field names</param>
1894
1894
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
1895
-
ElasticsearchResponse<T> FieldCaps<T>(PostData<object> body, Func<FieldCapsRequestParameters, FieldCapsRequestParameters> requestParameters = null) where T : class;
1895
+
ElasticsearchResponse<T> FieldCaps<T>(PostData<object> body, Func<FieldCapabilitiesRequestParameters, FieldCapabilitiesRequestParameters> requestParameters = null) where T : class;
1896
1896
1897
1897
///<summary>Represents a POST on /_field_caps
1898
1898
///<para></para>Returns: A task of ElasticsearchResponse<T> where the behaviour depends on the type of T:
@@ -1905,7 +1905,7 @@ public partial interface IElasticLowLevelClient
1905
1905
///</summary>
1906
1906
///<param name="body">Field json objects containing an array of field names</param>
1907
1907
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
1908
-
Task<ElasticsearchResponse<T>> FieldCapsAsync<T>(PostData<object> body, Func<FieldCapsRequestParameters, FieldCapsRequestParameters> requestParameters = null, CancellationToken cancellationToken = default(CancellationToken)) where T : class;
1908
+
Task<ElasticsearchResponse<T>> FieldCapsAsync<T>(PostData<object> body, Func<FieldCapabilitiesRequestParameters, FieldCapabilitiesRequestParameters> requestParameters = null, CancellationToken cancellationToken = default(CancellationToken)) where T : class;
1909
1909
1910
1910
///<summary>Represents a POST on /{index}/_field_caps
1911
1911
///<para></para>Returns: ElasticsearchResponse<T> where the behavior depends on the type of T:
@@ -1919,7 +1919,7 @@ public partial interface IElasticLowLevelClient
1919
1919
///<param name="index">A comma-separated list of index names; use the special string `_all` or Indices.All to perform the operation on all indices</param>
1920
1920
///<param name="body">Field json objects containing an array of field names</param>
1921
1921
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
1922
-
ElasticsearchResponse<T> FieldCaps<T>(string index, PostData<object> body, Func<FieldCapsRequestParameters, FieldCapsRequestParameters> requestParameters = null) where T : class;
1922
+
ElasticsearchResponse<T> FieldCaps<T>(string index, PostData<object> body, Func<FieldCapabilitiesRequestParameters, FieldCapabilitiesRequestParameters> requestParameters = null) where T : class;
1923
1923
1924
1924
///<summary>Represents a POST on /{index}/_field_caps
1925
1925
///<para></para>Returns: A task of ElasticsearchResponse<T> where the behaviour depends on the type of T:
@@ -1933,7 +1933,7 @@ public partial interface IElasticLowLevelClient
1933
1933
///<param name="index">A comma-separated list of index names; use the special string `_all` or Indices.All to perform the operation on all indices</param>
1934
1934
///<param name="body">Field json objects containing an array of field names</param>
1935
1935
///<param name="requestParameters">A func that allows you to describe the querystring parameters & request specific connection settings.</param>
1936
-
Task<ElasticsearchResponse<T>> FieldCapsAsync<T>(string index, PostData<object> body, Func<FieldCapsRequestParameters, FieldCapsRequestParameters> requestParameters = null, CancellationToken cancellationToken = default(CancellationToken)) where T : class;
1936
+
Task<ElasticsearchResponse<T>> FieldCapsAsync<T>(string index, PostData<object> body, Func<FieldCapabilitiesRequestParameters, FieldCapabilitiesRequestParameters> requestParameters = null, CancellationToken cancellationToken = default(CancellationToken)) where T : class;
1937
1937
1938
1938
///<summary>Represents a GET on /_field_stats
1939
1939
///<para></para>Returns: ElasticsearchResponse<T> where the behavior depends on the type of T:
0 commit comments