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 expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified)</summary>
///<summary>GET on /_cat/ml/datafeeds/{datafeed_id} <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-datafeeds.html</para></summary>
209
209
///<param name = "datafeedId">The ID of the datafeeds stats to fetch</param>
210
210
///<param name = "requestParameters">Request specific configuration such as querystring parameters & request specific connection settings.</param>
///<summary>GET on /_cat/ml/datafeeds/{datafeed_id} <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-datafeeds.html</para></summary>
214
214
///<param name = "datafeedId">The ID of the datafeeds stats to fetch</param>
215
215
///<param name = "requestParameters">Request specific configuration such as querystring parameters & request specific connection settings.</param>
///<summary>GET on /_cat/ml/anomaly_detectors <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-anomaly-detectors.html</para></summary>
220
220
///<param name = "requestParameters">Request specific configuration such as querystring parameters & request specific connection settings.</param>
///<summary>Whether to ignore if a wildcard expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified)</summary>
///<summary>Whether to ignore if a wildcard expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified)</summary>
714
+
publicbool?AllowNoDatafeeds
715
+
{
716
+
get=>Q<bool?>("allow_no_datafeeds");
717
+
set=>Q("allow_no_datafeeds",value);
718
+
}
719
+
720
+
///<summary>a short version of the Accept header, e.g. json, yaml</summary>
721
+
publicstringFormat
722
+
{
723
+
get=>Q<string>("format");
724
+
set
725
+
{
726
+
Q("format",value);
727
+
SetAcceptHeader(value);
728
+
}
729
+
}
730
+
731
+
///<summary>Comma-separated list of column names to display</summary>
732
+
publicstring[]Headers
733
+
{
734
+
get=>Q<string[]>("h");
735
+
set=>Q("h",value);
736
+
}
737
+
738
+
///<summary>Return help information</summary>
739
+
publicbool?Help
740
+
{
741
+
get=>Q<bool?>("help");
742
+
set=>Q("help",value);
743
+
}
744
+
745
+
///<summary>Comma-separated list of column names or column aliases to sort by</summary>
0 commit comments