Skip to content

Auto-generated code for 8.16 #2806

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/reference.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -6811,7 +6811,7 @@ be retrieved and then added to another cluster.

[discrete]
==== get_data_frame_analytics_stats
Get data frame analytics jobs usage info.
Get data frame analytics job stats.

{ref}/get-dfanalytics-stats.html[Endpoint documentation]
[source,ts]
Expand Down Expand Up @@ -6843,7 +6843,7 @@ there are no matches or only partial matches.

[discrete]
==== get_datafeed_stats
Get datafeeds usage info.
Get datafeeds stats.
You can get statistics for multiple datafeeds in a single API request by
using a list of datafeeds or a wildcard expression. You can
get statistics for all datafeeds by using `_all`, by specifying `*` as the
Expand Down Expand Up @@ -6967,7 +6967,7 @@ means it is unset and results are not limited to specific timestamps.

[discrete]
==== get_job_stats
Get anomaly detection jobs usage info.
Get anomaly detection job stats.

{ref}/ml-get-job-stats.html[Endpoint documentation]
[source,ts]
Expand Down
6 changes: 3 additions & 3 deletions src/api/api/ml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -988,7 +988,7 @@ export default class Ml {
}

/**
* Get data frame analytics jobs usage info.
* Get data frame analytics job stats.
* @see {@link https://www.elastic.co/guide/en/elasticsearch/reference/8.16/get-dfanalytics-stats.html | Elasticsearch API documentation}
*/
async getDataFrameAnalyticsStats (this: That, params?: T.MlGetDataFrameAnalyticsStatsRequest | TB.MlGetDataFrameAnalyticsStatsRequest, options?: TransportRequestOptionsWithOutMeta): Promise<T.MlGetDataFrameAnalyticsStatsResponse>
Expand Down Expand Up @@ -1028,7 +1028,7 @@ export default class Ml {
}

/**
* Get datafeeds usage info. You can get statistics for multiple datafeeds in a single API request by using a comma-separated list of datafeeds or a wildcard expression. You can get statistics for all datafeeds by using `_all`, by specifying `*` as the `<feed_id>`, or by omitting the `<feed_id>`. If the datafeed is stopped, the only information you receive is the `datafeed_id` and the `state`. This API returns a maximum of 10,000 datafeeds.
* Get datafeeds stats. You can get statistics for multiple datafeeds in a single API request by using a comma-separated list of datafeeds or a wildcard expression. You can get statistics for all datafeeds by using `_all`, by specifying `*` as the `<feed_id>`, or by omitting the `<feed_id>`. If the datafeed is stopped, the only information you receive is the `datafeed_id` and the `state`. This API returns a maximum of 10,000 datafeeds.
* @see {@link https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ml-get-datafeed-stats.html | Elasticsearch API documentation}
*/
async getDatafeedStats (this: That, params?: T.MlGetDatafeedStatsRequest | TB.MlGetDatafeedStatsRequest, options?: TransportRequestOptionsWithOutMeta): Promise<T.MlGetDatafeedStatsResponse>
Expand Down Expand Up @@ -1192,7 +1192,7 @@ export default class Ml {
}

/**
* Get anomaly detection jobs usage info.
* Get anomaly detection job stats.
* @see {@link https://www.elastic.co/guide/en/elasticsearch/reference/8.16/ml-get-job-stats.html | Elasticsearch API documentation}
*/
async getJobStats (this: That, params?: T.MlGetJobStatsRequest | TB.MlGetJobStatsRequest, options?: TransportRequestOptionsWithOutMeta): Promise<T.MlGetJobStatsResponse>
Expand Down