从日历 API 中删除事件
编辑从日历 API 中删除事件
编辑从日历中删除已计划的事件。
请求
编辑DELETE _ml/calendars/<calendar_id>/events/<event_id>
先决条件
编辑需要 manage_ml
集群权限。此权限包含在 machine_learning_admin
内置角色中。
路径参数
编辑-
<calendar_id>
- (必需,字符串)唯一标识日历的字符串。
-
<event_id>
- (必需,字符串)计划事件的标识符。您可以使用获取日历事件 API 获取此标识符。
示例
编辑resp = client.ml.delete_calendar_event( calendar_id="planned-outages", event_id="LS8LJGEBMTCMA-qz49st", ) print(resp)
response = client.ml.delete_calendar_event( calendar_id: 'planned-outages', event_id: 'LS8LJGEBMTCMA-qz49st' ) puts response
const response = await client.ml.deleteCalendarEvent({ calendar_id: "planned-outages", event_id: "LS8LJGEBMTCMA-qz49st", }); console.log(response);
DELETE _ml/calendars/planned-outages/events/LS8LJGEBMTCMA-qz49st
当事件被删除时,您将收到以下结果
{ "acknowledged": true }