Deletes a calendar.
Requires the manage_ml
cluster privilege. This privilege is included in the
machine_learning_admin
built-in role.
resp = client.ml.delete_calendar( calendar_id="planned-outages", ) print(resp)
response = client.ml.delete_calendar( calendar_id: 'planned-outages' ) puts response
const response = await client.ml.deleteCalendar({ calendar_id: "planned-outages", }); console.log(response);
DELETE _ml/calendars/planned-outages
When the calendar is deleted, you receive the following results:
{ "acknowledged": true }