2017-12-20 16:52:58 -05:00
|
|
|
[role="xpack"]
|
2018-08-31 19:49:24 -04:00
|
|
|
[testenv="platinum"]
|
2017-12-20 16:52:58 -05:00
|
|
|
[[ml-delete-calendar-job]]
|
|
|
|
=== Delete Jobs from Calendar API
|
|
|
|
++++
|
|
|
|
<titleabbrev>Delete Jobs from Calendar</titleabbrev>
|
|
|
|
++++
|
|
|
|
|
2018-06-13 16:37:35 -04:00
|
|
|
Deletes jobs from a calendar.
|
2017-12-20 16:52:58 -05:00
|
|
|
|
|
|
|
|
|
|
|
==== Request
|
|
|
|
|
|
|
|
`DELETE _xpack/ml/calendars/<calendar_id>/jobs/<job_id>`
|
|
|
|
|
|
|
|
|
|
|
|
==== Path Parameters
|
|
|
|
|
|
|
|
`calendar_id`(required)::
|
|
|
|
(string) Identifier for the calendar.
|
|
|
|
|
|
|
|
`job_id` (required)::
|
2018-02-08 06:44:16 -05:00
|
|
|
(string) An identifier for the job. It can be a job identifier, a group name, or a
|
|
|
|
comma-separated list of jobs or groups.
|
2017-12-20 16:52:58 -05:00
|
|
|
|
|
|
|
|
|
|
|
==== Authorization
|
|
|
|
|
|
|
|
You must have `manage_ml`, or `manage` cluster privileges to use this API.
|
|
|
|
For more information, see {xpack-ref}/security-privileges.html[Security Privileges].
|
|
|
|
|
2018-01-24 11:14:23 -05:00
|
|
|
==== Examples
|
|
|
|
|
|
|
|
The following example removes the association between the `planned-outages`
|
|
|
|
calendar and `total-requests` job:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
DELETE _xpack/ml/calendars/planned-outages/jobs/total-requests
|
|
|
|
--------------------------------------------------
|
|
|
|
// CONSOLE
|
2018-08-31 19:49:24 -04:00
|
|
|
// TEST[skip:setup:calendar_outages_addjob]
|
2018-01-24 11:14:23 -05:00
|
|
|
|
|
|
|
When the job is removed from the calendar, you receive the following
|
|
|
|
results:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
----
|
|
|
|
{
|
|
|
|
"calendar_id": "planned-outages",
|
|
|
|
"job_ids": []
|
|
|
|
}
|
|
|
|
----
|
2018-08-31 19:49:24 -04:00
|
|
|
// TESTRESPONSE
|