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
Copy file name to clipboardExpand all lines: src/Elasticsearch.Net/Api/RequestParameters/RequestParameters.Cat.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -526,8 +526,8 @@ public bool? Verbose
526
526
}
527
527
}
528
528
529
-
///<summary>Request options for MlDataFrameAnalytics <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-dfanalytics.html</para></summary>
///<summary>Request options for DataFrameAnalytics <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-dfanalytics.html</para></summary>
///<summary>Whether to ignore if a wildcard expression matches no configs. (This includes `_all` string or when no configs have been specified)</summary>
///<summary>GET on /_cat/ml/data_frame/analytics <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-dfanalytics.html</para></summary>
180
180
///<param name = "requestParameters">Request specific configuration such as querystring parameters & request specific connection settings.</param>
///<summary>GET on /_cat/ml/data_frame/analytics <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-dfanalytics.html</para></summary>
184
184
///<param name = "requestParameters">Request specific configuration such as querystring parameters & request specific connection settings.</param>
///<summary>GET on /_cat/ml/data_frame/analytics/{id} <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-dfanalytics.html</para></summary>
189
189
///<param name = "id">The ID of the data frame analytics to fetch</param>
190
190
///<param name = "requestParameters">Request specific configuration such as querystring parameters & request specific connection settings.</param>
///<summary>GET on /_cat/ml/data_frame/analytics/{id} <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-dfanalytics.html</para></summary>
194
194
///<param name = "id">The ID of the data frame analytics to fetch</param>
195
195
///<param name = "requestParameters">Request specific configuration such as querystring parameters & request specific connection settings.</param>
///<summary>Descriptor for DataFrameAnalytics <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-dfanalytics.html</para></summary>
///<summary>Whether to ignore if a wildcard expression matches no configs. (This includes `_all` string or when no configs have been specified)</summary>
///<summary>Whether to ignore if a wildcard expression matches no configs. (This includes `_all` string or when no configs have been specified)</summary>
714
+
publicbool?AllowNoMatch
715
+
{
716
+
get=>Q<bool?>("allow_no_match");
717
+
set=>Q("allow_no_match",value);
718
+
}
719
+
720
+
///<summary>The unit in which to display byte values</summary>
721
+
publicBytes?Bytes
722
+
{
723
+
get=>Q<Bytes?>("bytes");
724
+
set=>Q("bytes",value);
725
+
}
726
+
727
+
///<summary>a short version of the Accept header, e.g. json, yaml</summary>
728
+
publicstringFormat
729
+
{
730
+
get=>Q<string>("format");
731
+
set
732
+
{
733
+
Q("format",value);
734
+
SetAcceptHeader(value);
735
+
}
736
+
}
737
+
738
+
///<summary>Comma-separated list of column names to display</summary>
739
+
publicstring[]Headers
740
+
{
741
+
get=>Q<string[]>("h");
742
+
set=>Q("h",value);
743
+
}
744
+
745
+
///<summary>Return help information</summary>
746
+
publicbool?Help
747
+
{
748
+
get=>Q<bool?>("help");
749
+
set=>Q("help",value);
750
+
}
751
+
752
+
///<summary>Comma-separated list of column names or column aliases to sort by</summary>
0 commit comments