2018-01-24 08:14:23 -08:00
|
|
|
[role="xpack"]
|
2018-08-31 16:49:24 -07:00
|
|
|
[testenv="platinum"]
|
2018-01-24 08:14:23 -08:00
|
|
|
[[ml-delete-calendar-event]]
|
2018-12-20 10:23:28 -08:00
|
|
|
=== Delete events from calendar API
|
2018-01-24 08:14:23 -08:00
|
|
|
++++
|
2018-12-20 10:23:28 -08:00
|
|
|
<titleabbrev>Delete events from calendar</titleabbrev>
|
2018-01-24 08:14:23 -08:00
|
|
|
++++
|
|
|
|
|
2018-06-13 13:37:35 -07:00
|
|
|
Deletes scheduled events from a calendar.
|
2018-01-24 08:14:23 -08:00
|
|
|
|
2019-06-27 09:42:47 -07:00
|
|
|
[[ml-delete-calendar-event-request]]
|
|
|
|
==== {api-request-title}
|
2018-01-24 08:14:23 -08:00
|
|
|
|
2018-12-07 20:34:11 +00:00
|
|
|
`DELETE _ml/calendars/<calendar_id>/events/<event_id>`
|
2018-01-24 08:14:23 -08:00
|
|
|
|
2019-06-27 13:58:42 -07:00
|
|
|
[[ml-delete-calendar-event-prereqs]]
|
|
|
|
==== {api-prereq-title}
|
|
|
|
|
|
|
|
* If the {es} {security-features} are enabled, you must have `manage_ml` or
|
|
|
|
`manage` cluster privileges to use this API. See
|
2019-10-07 15:23:19 -07:00
|
|
|
<<security-privileges>>.
|
2019-06-27 13:58:42 -07:00
|
|
|
|
2019-06-27 09:42:47 -07:00
|
|
|
[[ml-delete-calendar-event-desc]]
|
|
|
|
==== {api-description-title}
|
2018-01-24 08:14:23 -08:00
|
|
|
|
|
|
|
This API removes individual events from a calendar. To remove all scheduled
|
|
|
|
events and delete the calendar, see the
|
|
|
|
<<ml-delete-calendar,delete calendar API>>.
|
|
|
|
|
2019-06-27 09:42:47 -07:00
|
|
|
[[ml-delete-calendar-event-path-parms]]
|
|
|
|
==== {api-path-parms-title}
|
2018-01-24 08:14:23 -08:00
|
|
|
|
2019-07-12 08:26:31 -07:00
|
|
|
`<calendar_id>`::
|
|
|
|
(Required, string) Identifier for the calendar.
|
2018-01-24 08:14:23 -08:00
|
|
|
|
2019-07-12 08:26:31 -07:00
|
|
|
`<event_id>`::
|
|
|
|
(Required, string) Identifier for the scheduled event. You can obtain this
|
|
|
|
identifier by using the <<ml-get-calendar-event,get calendar events API>>.
|
2018-01-24 08:14:23 -08:00
|
|
|
|
2019-06-27 09:42:47 -07:00
|
|
|
[[ml-delete-calendar-event-example]]
|
|
|
|
==== {api-examples-title}
|
2018-01-24 08:14:23 -08:00
|
|
|
|
|
|
|
The following example deletes a scheduled event from the `planned-outages`
|
|
|
|
calendar:
|
|
|
|
|
2019-09-06 11:31:13 -04:00
|
|
|
[source,console]
|
2018-01-24 08:14:23 -08:00
|
|
|
--------------------------------------------------
|
2018-12-07 20:34:11 +00:00
|
|
|
DELETE _ml/calendars/planned-outages/events/LS8LJGEBMTCMA-qz49st
|
2018-01-24 08:14:23 -08:00
|
|
|
--------------------------------------------------
|
2018-08-31 16:49:24 -07:00
|
|
|
// TEST[skip:catch:missing]
|
2018-01-24 08:14:23 -08:00
|
|
|
|
|
|
|
When the event is removed, you receive the following results:
|
|
|
|
[source,js]
|
|
|
|
----
|
|
|
|
{
|
|
|
|
"acknowledged": true
|
|
|
|
}
|
|
|
|
----
|