mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-24 23:27:25 -04:00
[ML] Data Frame HLRC Get API (#40209)
This commit is contained in:
parent
2d1402b8d1
commit
09d4e7eb9e
13 changed files with 672 additions and 49 deletions
45
docs/java-rest/high-level/dataframe/get_data_frame.asciidoc
Normal file
45
docs/java-rest/high-level/dataframe/get_data_frame.asciidoc
Normal file
|
@ -0,0 +1,45 @@
|
|||
--
|
||||
:api: get-data-frame-transform
|
||||
:request: GetDataFrameTransformRequest
|
||||
:response: GetDataFrameTransformResponse
|
||||
--
|
||||
[id="{upid}-{api}"]
|
||||
=== Get Data Frame Transform API
|
||||
|
||||
The Get Data Frame Transform API is used get one or more {dataframe-transform}.
|
||||
The API accepts a +{request}+ object and returns a +{response}+.
|
||||
|
||||
[id="{upid}-{api}-request"]
|
||||
==== Get Data Frame Request
|
||||
|
||||
A +{request}+ requires either a data frame transform id, a comma separated list of ids or
|
||||
the special wildcard `_all` to get all {dataframe-transform}s
|
||||
|
||||
["source","java",subs="attributes,callouts,macros"]
|
||||
--------------------------------------------------
|
||||
include-tagged::{doc-tests-file}[{api}-request]
|
||||
--------------------------------------------------
|
||||
<1> Constructing a new GET request referencing an existing {dataframe-transform}
|
||||
|
||||
==== Optional Arguments
|
||||
|
||||
The following arguments are optional.
|
||||
|
||||
["source","java",subs="attributes,callouts,macros"]
|
||||
--------------------------------------------------
|
||||
include-tagged::{doc-tests-file}[{api}-request-options]
|
||||
--------------------------------------------------
|
||||
<1> Page {dataframe-transform}s starting from this value
|
||||
<2> Return at most `size` {dataframe-transform}s
|
||||
|
||||
include::../execution.asciidoc[]
|
||||
|
||||
[id="{upid}-{api}-response"]
|
||||
==== Response
|
||||
|
||||
The returned +{response}+ contains the requested {dataframe-transform}s.
|
||||
|
||||
["source","java",subs="attributes,callouts,macros"]
|
||||
--------------------------------------------------
|
||||
include-tagged::{doc-tests-file}[{api}-response]
|
||||
--------------------------------------------------
|
|
@ -554,6 +554,7 @@ include::ilm/remove_lifecycle_policy_from_index.asciidoc[]
|
|||
|
||||
The Java High Level REST Client supports the following Data Frame APIs:
|
||||
|
||||
* <<{upid}-get-data-frame-transform>>
|
||||
* <<{upid}-get-data-frame-transform-stats>>
|
||||
* <<{upid}-put-data-frame-transform>>
|
||||
* <<{upid}-delete-data-frame-transform>>
|
||||
|
@ -561,6 +562,7 @@ The Java High Level REST Client supports the following Data Frame APIs:
|
|||
* <<{upid}-start-data-frame-transform>>
|
||||
* <<{upid}-stop-data-frame-transform>>
|
||||
|
||||
include::dataframe/get_data_frame.asciidoc[]
|
||||
include::dataframe/get_data_frame_stats.asciidoc[]
|
||||
include::dataframe/put_data_frame.asciidoc[]
|
||||
include::dataframe/delete_data_frame.asciidoc[]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue