创建日历 API

编辑

实例化一个日历。

请求

编辑

PUT _ml/calendars/<calendar_id>

先决条件

编辑

需要 manage_ml 集群权限。此权限包含在 machine_learning_admin 内置角色中。

描述

编辑

有关更多信息,请参阅 日历和计划事件

路径参数

编辑
<calendar_id>
(必需,字符串)唯一标识日历的字符串。

请求正文

编辑
description
(可选,字符串)日历的描述。

示例

编辑
resp = client.ml.put_calendar(
    calendar_id="planned-outages",
)
print(resp)
response = client.ml.put_calendar(
  calendar_id: 'planned-outages'
)
puts response
const response = await client.ml.putCalendar({
  calendar_id: "planned-outages",
});
console.log(response);
PUT _ml/calendars/planned-outages

创建日历后,您将收到以下结果

{
  "calendar_id": "planned-outages",
  "job_ids": []
}