mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-29 18:03:32 -04:00
* Remove `es-test-dir` book-scoped variable * Remove `plugins-examples-dir` book-scoped variable * Remove `:dependencies-dir:` and `:xes-repo-dir:` book-scoped variables - In `index.asciidoc`, two variables (`:dependencies-dir:` and `:xes-repo-dir:`) were removed. - In `sql/index.asciidoc`, the `:sql-tests:` path was updated to fuller path - In `esql/index.asciidoc`, the `:esql-tests:` path was updated idem * Replace `es-repo-dir` with `es-ref-dir` * Move `:include-xpack: true` to few files that use it, remove from index.asciidoc
54 lines
1.4 KiB
Text
54 lines
1.4 KiB
Text
[role="xpack"]
|
|
[[ml-delete-calendar-event]]
|
|
= Delete events from calendar API
|
|
++++
|
|
<titleabbrev>Delete events from calendar</titleabbrev>
|
|
++++
|
|
|
|
Deletes scheduled events from a calendar.
|
|
|
|
[[ml-delete-calendar-event-request]]
|
|
== {api-request-title}
|
|
|
|
`DELETE _ml/calendars/<calendar_id>/events/<event_id>`
|
|
|
|
[[ml-delete-calendar-event-prereqs]]
|
|
== {api-prereq-title}
|
|
|
|
Requires the `manage_ml` cluster privilege. This privilege is included in the
|
|
`machine_learning_admin` built-in role.
|
|
|
|
[[ml-delete-calendar-event-desc]]
|
|
== {api-description-title}
|
|
|
|
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>>.
|
|
|
|
[[ml-delete-calendar-event-path-parms]]
|
|
== {api-path-parms-title}
|
|
|
|
`<calendar_id>`::
|
|
(Required, string)
|
|
include::{es-ref-dir}/ml/ml-shared.asciidoc[tag=calendar-id]
|
|
|
|
`<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>>.
|
|
|
|
[[ml-delete-calendar-event-example]]
|
|
== {api-examples-title}
|
|
|
|
[source,console]
|
|
--------------------------------------------------
|
|
DELETE _ml/calendars/planned-outages/events/LS8LJGEBMTCMA-qz49st
|
|
--------------------------------------------------
|
|
// TEST[skip:catch:missing]
|
|
|
|
When the event is removed, you receive the following results:
|
|
[source,js]
|
|
----
|
|
{
|
|
"acknowledged": true
|
|
}
|
|
----
|