stop_data_frame.asciidoc 1.3 KB

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