68 lines
4.1 KiB
Plaintext
68 lines
4.1 KiB
Plaintext
[[reference-ml-get_data_frame_analytics_stats]]
|
|
|
|
////////
|
|
===========================================================================================================================
|
|
|| ||
|
|
|| ||
|
|
|| ||
|
|
|| ██████╗ ███████╗ █████╗ ██████╗ ███╗ ███╗███████╗ ||
|
|
|| ██╔══██╗██╔════╝██╔══██╗██╔══██╗████╗ ████║██╔════╝ ||
|
|
|| ██████╔╝█████╗ ███████║██║ ██║██╔████╔██║█████╗ ||
|
|
|| ██╔══██╗██╔══╝ ██╔══██║██║ ██║██║╚██╔╝██║██╔══╝ ||
|
|
|| ██║ ██║███████╗██║ ██║██████╔╝██║ ╚═╝ ██║███████╗ ||
|
|
|| ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ ||
|
|
|| ||
|
|
|| ||
|
|
|| This file is autogenerated, DO NOT send pull requests that changes this file directly. ||
|
|
|| You should update the script that does the generation, which can be found in: ||
|
|
|| https://github.com/elastic/elastic-client-generator-js ||
|
|
|| ||
|
|
|| You can run the script with the following command: ||
|
|
|| npm run elasticsearch -- --version <version> ||
|
|
|| ||
|
|
|| ||
|
|
|| ||
|
|
===========================================================================================================================
|
|
////////
|
|
|
|
[discrete]
|
|
=== client.ml.getDataFrameAnalyticsStats
|
|
|
|
Get data frame analytics jobs usage info.
|
|
|
|
{ref}/get-dfanalytics-stats.html[{es} documentation]
|
|
|
|
[discrete]
|
|
==== Function signature
|
|
|
|
[source,ts]
|
|
----
|
|
(MlGetDataFrameAnalyticsStatsRequest, options?): Promise<MlGetDataFrameAnalyticsStatsResponse>
|
|
----
|
|
|
|
[discrete]
|
|
===== `MlGetDataFrameAnalyticsStatsRequest`
|
|
|
|
[source,ts]
|
|
----
|
|
interface MlGetDataFrameAnalyticsStatsRequest extends <<shared-type-request-base, RequestBase>> {
|
|
id?: <<shared-type-id, Id>>
|
|
allow_no_match?: boolean
|
|
from?: <<shared-type-integer, integer>>
|
|
size?: <<shared-type-integer, integer>>
|
|
verbose?: boolean
|
|
}
|
|
----
|
|
|
|
[discrete]
|
|
===== `MlGetDataFrameAnalyticsStatsResponse`
|
|
|
|
[source,ts]
|
|
----
|
|
interface MlGetDataFrameAnalyticsStatsResponse {
|
|
count: <<shared-type-long, long>>
|
|
data_frame_analytics: MlDataframeAnalytics[]
|
|
}
|
|
----
|
|
|