stop_data_frame.asciidoc 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --
  2. :api: stop-data-frame-transform
  3. :request: StopDataFrameTransformRequest
  4. :response: StopDataFrameTransformResponse
  5. --
  6. [id="{upid}-{api}"]
  7. === Stop {dataframe-transform} API
  8. Stop a started {dataframe-transform}.
  9. It accepts a +{request}+ object and responds with a +{response}+ object.
  10. [id="{upid}-{api}-request"]
  11. ==== Stop {dataframe-transform} request
  12. A +{request}+ object requires a non-null `id`. `id` can be a comma separated
  13. list of IDs 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-transform}
  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-transform} stops.
  27. <3> Whether to ignore if a wildcard expression matches no transforms.
  28. include::../execution.asciidoc[]
  29. ==== Response
  30. The returned +{response}+ object acknowledges the {dataframe-transform} has stopped.