66 lines
4.1 KiB
Plaintext
66 lines
4.1 KiB
Plaintext
[[reference-transform-stop_transform]]
|
|
|
|
////////
|
|
===========================================================================================================================
|
|
|| ||
|
|
|| ||
|
|
|| ||
|
|
|| ██████╗ ███████╗ █████╗ ██████╗ ███╗ ███╗███████╗ ||
|
|
|| ██╔══██╗██╔════╝██╔══██╗██╔══██╗████╗ ████║██╔════╝ ||
|
|
|| ██████╔╝█████╗ ███████║██║ ██║██╔████╔██║█████╗ ||
|
|
|| ██╔══██╗██╔══╝ ██╔══██║██║ ██║██║╚██╔╝██║██╔══╝ ||
|
|
|| ██║ ██║███████╗██║ ██║██████╔╝██║ ╚═╝ ██║███████╗ ||
|
|
|| ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ ||
|
|
|| ||
|
|
|| ||
|
|
|| 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.transform.stopTransform
|
|
|
|
Stop transforms. Stops one or more transforms.
|
|
|
|
{ref}/stop-transform.html[{es} documentation]
|
|
|
|
[discrete]
|
|
==== Function signature
|
|
|
|
[source,ts]
|
|
----
|
|
(TransformStopTransformRequest, options?): Promise<TransformStopTransformResponse>
|
|
----
|
|
|
|
[discrete]
|
|
===== `TransformStopTransformRequest`
|
|
|
|
[source,ts]
|
|
----
|
|
interface TransformStopTransformRequest extends <<shared-type-request-base, RequestBase>> {
|
|
transform_id: <<shared-type-name, Name>>
|
|
allow_no_match?: boolean
|
|
force?: boolean
|
|
timeout?: <<shared-type-duration, Duration>>
|
|
wait_for_checkpoint?: boolean
|
|
wait_for_completion?: boolean
|
|
}
|
|
----
|
|
|
|
[discrete]
|
|
===== `TransformStopTransformResponse`
|
|
|
|
[source,ts]
|
|
----
|
|
type TransformStopTransformResponse = <<shared-type-acknowledged-response-base, AcknowledgedResponseBase>>
|
|
----
|
|
|