stop_data_frame.asciidoc 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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`.
  13. ["source","java",subs="attributes,callouts,macros"]
  14. ---------------------------------------------------
  15. include-tagged::{doc-tests-file}[{api}-request]
  16. ---------------------------------------------------
  17. <1> Constructing a new stop request referencing an existing {dataframe-job}
  18. ==== Optional Arguments
  19. The following arguments are optional.
  20. ["source","java",subs="attributes,callouts,macros"]
  21. --------------------------------------------------
  22. include-tagged::{doc-tests-file}[{api}-request-options]
  23. --------------------------------------------------
  24. <1> If true wait for the data frame task to stop before responding
  25. <2> Controls the amount of time to wait until the {dataframe-job} stops.
  26. include::../execution.asciidoc[]
  27. ==== Response
  28. The returned +{response}+ object acknowledges the {dataframe-job} has stopped.