elasticsearch/docs/reference/dlm/apis
Andrei Dan 83402605ea
Remove the lifecycle field in the PUT _lifecycle request (#95201)
This removes a redundant `lifecycle` field in the `PUT _lifecycle`
request.

Before we had
```
PUT _data_stream/logs-nginx/_lifecycle
{
    "lifecycle": {
        "data_retention": "7d"
    }
}
```

This changes the request to
```
PUT _data_stream/logs-nginx/_lifecycle
{
  "data_retention": "7d"
}
```
2023-04-13 09:12:48 +01:00
..
delete-lifecycle.asciidoc Add new endpoints to configure data lifecycle on a data stream level. (#94590) 2023-04-04 18:37:38 +02:00
dlm-api.asciidoc Add new endpoints to configure data lifecycle on a data stream level. (#94590) 2023-04-04 18:37:38 +02:00
explain-data-lifecycle.asciidoc Introduce a _lifecycle/explain API for data stream backing indices (#94621) 2023-03-27 08:44:40 +01:00
get-lifecycle.asciidoc Add new endpoints to configure data lifecycle on a data stream level. (#94590) 2023-04-04 18:37:38 +02:00
put-lifecycle.asciidoc Remove the lifecycle field in the PUT _lifecycle request (#95201) 2023-04-13 09:12:48 +01:00