1
0

stop_data_frame.asciidoc 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. --
  2. :api: stop-data-frame-transform
  3. :request: StopDataFrameTransformRequest
  4. :response: StopDataFrameTransformResponse
  5. --
  6. [role="xpack"]
  7. [id="{upid}-{api}"]
  8. === Stop {transform} API
  9. Stops a started {transform}.
  10. It accepts a +{request}+ object and responds with a +{response}+ object.
  11. [id="{upid}-{api}-request"]
  12. ==== Stop {transform} request
  13. A +{request}+ object requires a non-null `id`. `id` can be a comma separated
  14. list of IDs or a single ID. Wildcards, `*` and `_all` are also accepted.
  15. ["source","java",subs="attributes,callouts,macros"]
  16. ---------------------------------------------------
  17. include-tagged::{doc-tests-file}[{api}-request]
  18. ---------------------------------------------------
  19. <1> Constructing a new stop request referencing an existing {transform}
  20. ==== Optional arguments
  21. The following arguments are optional.
  22. ["source","java",subs="attributes,callouts,macros"]
  23. --------------------------------------------------
  24. include-tagged::{doc-tests-file}[{api}-request-options]
  25. --------------------------------------------------
  26. <1> If true wait for the data frame task to stop before responding
  27. <2> Controls the amount of time to wait until the {transform} stops.
  28. <3> Whether to ignore if a wildcard expression matches no {transforms}.
  29. include::../execution.asciidoc[]
  30. ==== Response
  31. The returned +{response}+ object acknowledges the {transform} has stopped.