原文地址: https://www.elastic.co/guide/en/elasticsearch/reference/7.7/ilm-delete.html, 原文档版权归 www.elastic.co 所有

Deleteedit

Phases allowed: delete.

Permanently removes the index.

Exampleedit

PUT _ilm/policy/my_policy
{
  "policy": {
    "phases": {
      "delete": {
        "actions": {
          "delete" : { }
        }
      }
    }
  }
}