Search + K

Command Palette

Search for a command to run...

Sign In

Delete data stream lifecycles

DELETE /_data_stream/{name}/_lifecycle
Copy endpoint

Removes the data stream lifecycle from a data stream, rendering it not managed by the data stream lifecycle.

Parameters

path Path Parameters

Name Type
name required

A comma-separated list of data streams of which the data stream lifecycle will be deleted. Use * to get all data streams

type TypesDataStreamNames = type TypesDataStreamName = string | type TypesDataStreamName = string[]

query Query Parameters

Name Type
expand_wildcards

Whether wildcard expressions should get expanded to open or closed indices (default: open)

type TypesExpandWildcards = type TypesExpandWildcard = "all" | "open" | "closed" | "hidden" | "none" | type TypesExpandWildcard = "all" | "open" | "closed" | "hidden" | "none"[]
master_timeout

The period to wait for a connection to the master node.

type TypesDuration = string | "-1" | "0"
timeout

The period to wait for a response.

type TypesDuration = string | "-1" | "0"

Responses

200 application/json
interface TypesAcknowledgedResponseBase {
acknowledged: boolean;
}