Identifier for the data frame analytics job. This identifier can contain lowercase alphanumeric characters (a-z and 0-9), hyphens, and underscores. It must start and end with alphanumeric characters.
Specifies what to do when the request:
The default value is true, which returns an empty data_frame_analytics array when there are no matches and the subset of results when there are partial matches. If this parameter is false, the request returns a 404 status code when there are no matches or only partial matches.
If true, the data frame analytics job is stopped forcefully.
Controls the amount of time to wait until the data frame analytics job stops. Defaults to 20 seconds.
If provided, must be the same identifier as in the path.
Specifies what to do when the request:
The default value is true, which returns an empty data_frame_analytics array when there are no matches and the subset of results when there are partial matches. If this parameter is false, the request returns a 404 status code when there are no matches or only partial matches.
Default value is true.
If true, the data frame analytics job is stopped forcefully.
Default value is false.
Controls the amount of time to wait until the data frame analytics job stops. Defaults to 20 seconds.
POST _ml/data_frame/analytics/loganalytics/_stop
resp = client.ml.stop_data_frame_analytics(
id="loganalytics",
)
const response = await client.ml.stopDataFrameAnalytics({
id: "loganalytics",
});
response = client.ml.stop_data_frame_analytics(
id: "loganalytics"
)
$resp = $client->ml()->stopDataFrameAnalytics([
"id" => "loganalytics",
]);
curl -X POST -H "Authorization: ApiKey $ELASTIC_API_KEY" "$ELASTICSEARCH_URL/_ml/data_frame/analytics/loganalytics/_stop"
client.ml().stopDataFrameAnalytics(s -> s
.id("loganalytics")
);