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.MachineLearning.cs
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -83,6 +83,13 @@ public bool? Force
83
83
get=>Q<bool?>("force");
84
84
set=>Q("force",value);
85
85
}
86
+
87
+
///<summary>Controls the time to wait until a job is deleted. Defaults to 1 minute</summary>
88
+
publicTimeSpanTimeout
89
+
{
90
+
get=>Q<TimeSpan>("timeout");
91
+
set=>Q("timeout",value);
92
+
}
86
93
}
87
94
88
95
///<summary>Request options for DeleteDatafeed <para>https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-delete-datafeed.html</para></summary>
///<param name = "name">The name of the index (it must be a concrete index name)</param>
878
878
///<param name = "body">New index template definition, which will be included in the simulation, as if it already exists in the system</param>
879
879
///<param name = "requestParameters">Request specific configuration such as querystring parameters & request specific connection settings.</param>
880
+
///<remarks>Note: Experimental within the Elasticsearch server, this functionality is Experimental and may be changed or removed completely in a future release. Elastic will take a best effort approach to fix any issues, but experimental features are not subject to the support SLA of official GA features. This functionality is subject to potential breaking changes within a minor version, meaning that your referencing code may break when this library is upgraded.</remarks>
///<summary>POST on /_index_template/_simulate_index/{name} <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-templates.html</para></summary>
883
884
///<param name = "name">The name of the index (it must be a concrete index name)</param>
884
885
///<param name = "body">New index template definition, which will be included in the simulation, as if it already exists in the system</param>
885
886
///<param name = "requestParameters">Request specific configuration such as querystring parameters & request specific connection settings.</param>
887
+
///<remarks>Note: Experimental within the Elasticsearch server, this functionality is Experimental and may be changed or removed completely in a future release. Elastic will take a best effort approach to fix any issues, but experimental features are not subject to the support SLA of official GA features. This functionality is subject to potential breaking changes within a minor version, meaning that your referencing code may break when this library is upgraded.</remarks>
0 commit comments