12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- [role="xpack"]
- [testenv="platinum"]
- [[delete-dfanalytics]]
- === Delete {dfanalytics-jobs} API
- [subs="attributes"]
- ++++
- <titleabbrev>Delete {dfanalytics-jobs}</titleabbrev>
- ++++
- Deletes an existing {dfanalytics-job}.
- experimental[]
- [[ml-delete-dfanalytics-request]]
- ==== {api-request-title}
- `DELETE _ml/data_frame/analytics/<data_frame_analytics_id>`
- [[ml-delete-dfanalytics-prereq]]
- ==== {api-prereq-title}
- * You must have `machine_learning_admin` built-in role to use this API. For more
- information, see {stack-ov}/security-privileges.html[Security privileges] and
- {stack-ov}/built-in-roles.html[Built-in roles].
- [[ml-delete-dfanalytics-path-params]]
- ==== {api-path-parms-title}
- `<data_frame_analytics_id>`::
- (Required, string) Identifier for the {dfanalytics-job} you want to delete.
- [[ml-delete-dfanalytics-example]]
- ==== {api-examples-title}
- The following example deletes the `loganalytics` {dfanalytics-job}:
- [source,js]
- --------------------------------------------------
- DELETE _ml/data_frame/analytics/loganalytics
- --------------------------------------------------
- // CONSOLE
- // TEST[skip:TBD]
- The API returns the following result:
- [source,js]
- ----
- {
- "acknowledged" : true
- }
- ----
- // TESTRESPONSE
|