64 lines
4.2 KiB
Plaintext
64 lines
4.2 KiB
Plaintext
[[reference-indices-delete_data_lifecycle]]
|
|
|
|
////////
|
|
===========================================================================================================================
|
|
|| ||
|
|
|| ||
|
|
|| ||
|
|
|| ██████╗ ███████╗ █████╗ ██████╗ ███╗ ███╗███████╗ ||
|
|
|| ██╔══██╗██╔════╝██╔══██╗██╔══██╗████╗ ████║██╔════╝ ||
|
|
|| ██████╔╝█████╗ ███████║██║ ██║██╔████╔██║█████╗ ||
|
|
|| ██╔══██╗██╔══╝ ██╔══██║██║ ██║██║╚██╔╝██║██╔══╝ ||
|
|
|| ██║ ██║███████╗██║ ██║██████╔╝██║ ╚═╝ ██║███████╗ ||
|
|
|| ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ ||
|
|
|| ||
|
|
|| ||
|
|
|| This file is autogenerated, DO NOT send pull requests that changes this file directly. ||
|
|
|| You should update the script that does the generation, which can be found in: ||
|
|
|| https://github.com/elastic/elastic-client-generator-js ||
|
|
|| ||
|
|
|| You can run the script with the following command: ||
|
|
|| npm run elasticsearch -- --version <version> ||
|
|
|| ||
|
|
|| ||
|
|
|| ||
|
|
===========================================================================================================================
|
|
////////
|
|
|
|
[discrete]
|
|
=== client.indices.deleteDataLifecycle
|
|
|
|
Delete data stream lifecycles. Removes the data stream lifecycle from a data stream, rendering it not managed by the data stream lifecycle.
|
|
|
|
{ref}/data-streams-delete-lifecycle.html[{es} documentation]
|
|
|
|
[discrete]
|
|
==== Function signature
|
|
|
|
[source,ts]
|
|
----
|
|
(IndicesDeleteDataLifecycleRequest, options?): Promise<IndicesDeleteDataLifecycleResponse>
|
|
----
|
|
|
|
[discrete]
|
|
===== `IndicesDeleteDataLifecycleRequest`
|
|
|
|
[source,ts]
|
|
----
|
|
interface IndicesDeleteDataLifecycleRequest extends <<shared-type-request-base, RequestBase>> {
|
|
name: <<shared-type-data-stream-names, DataStreamNames>>
|
|
expand_wildcards?: <<shared-type-expand-wildcards, ExpandWildcards>>
|
|
master_timeout?: <<shared-type-duration, Duration>>
|
|
timeout?: <<shared-type-duration, Duration>>
|
|
}
|
|
----
|
|
|
|
[discrete]
|
|
===== `IndicesDeleteDataLifecycleResponse`
|
|
|
|
[source,ts]
|
|
----
|
|
type IndicesDeleteDataLifecycleResponse = <<shared-type-acknowledged-response-base, AcknowledgedResponseBase>>
|
|
----
|
|
|