カレンダーAPIから異常検出ジョブを削除
カレンダーから異常検出ジョブを削除します。
リクエスト
DELETE _ml/calendars/<calendar_id>/jobs/<job_id>
前提条件
manage_ml
クラスター権限が必要です。この権限は machine_learning_admin
ビルトインロールに含まれています。
パスパラメータ
<calendar_id>
- (必須、文字列)カレンダーを一意に識別する文字列。
<job_id>
- (必須、文字列)異常検出ジョブの識別子。ジョブ識別子、グループ名、またはカンマ区切りのジョブまたはグループのリストであることができます。
例
Python
resp = client.ml.delete_calendar_job(
calendar_id="planned-outages",
job_id="total-requests",
)
print(resp)
Ruby
response = client.ml.delete_calendar_job(
calendar_id: 'planned-outages',
job_id: 'total-requests'
)
puts response
Js
const response = await client.ml.deleteCalendarJob({
calendar_id: "planned-outages",
job_id: "total-requests",
});
console.log(response);
コンソール
DELETE _ml/calendars/planned-outages/jobs/total-requests
コンソール-結果
{
"calendar_id": "planned-outages",
"job_ids": []
}