API generation
This commit is contained in:
@ -7250,7 +7250,8 @@ link:{ref}/ml-delete-calendar-job.html[Documentation] +
|
||||
----
|
||||
client.ml.deleteDataFrameAnalytics({
|
||||
id: string,
|
||||
force: boolean
|
||||
force: boolean,
|
||||
timeout: string
|
||||
})
|
||||
----
|
||||
link:{ref}/delete-dfanalytics.html[Documentation] +
|
||||
@ -7262,6 +7263,9 @@ link:{ref}/delete-dfanalytics.html[Documentation] +
|
||||
|`force`
|
||||
|`boolean` - True if the job should be forcefully deleted
|
||||
|
||||
|`timeout`
|
||||
|`string` - Controls the time to wait until a job is deleted. Defaults to 1 minute
|
||||
|
||||
|===
|
||||
|
||||
=== ml.deleteDatafeed
|
||||
@ -7289,12 +7293,24 @@ link:{ref}/ml-delete-datafeed.html[Documentation] +
|
||||
[source,ts]
|
||||
----
|
||||
client.ml.deleteExpiredData({
|
||||
job_id: string,
|
||||
requests_per_second: number,
|
||||
timeout: string,
|
||||
body: object
|
||||
})
|
||||
----
|
||||
link:{ref}/ml-delete-expired-data.html[Documentation] +
|
||||
[cols=2*]
|
||||
|===
|
||||
|`job_id` or `jobId`
|
||||
|`string` - The ID of the job(s) to perform expired data hygiene for
|
||||
|
||||
|`requests_per_second` or `requestsPerSecond`
|
||||
|`number` - The desired requests per second for the deletion processes.
|
||||
|
||||
|`timeout`
|
||||
|`string` - How long can the underlying delete processes run until they are canceled
|
||||
|
||||
|`body`
|
||||
|`object` - deleting expired data parameters
|
||||
|
||||
@ -7733,6 +7749,7 @@ client.ml.getCategories({
|
||||
category_id: number,
|
||||
from: number,
|
||||
size: number,
|
||||
partition_field_value: string,
|
||||
body: object
|
||||
})
|
||||
----
|
||||
@ -7751,6 +7768,9 @@ link:{ref}/ml-get-category.html[Documentation] +
|
||||
|`size`
|
||||
|`number` - specifies a max number of categories to get
|
||||
|
||||
|`partition_field_value` or `partitionFieldValue`
|
||||
|`string` - Specifies the partition to retrieve categories for. This is optional, and should never be used for jobs where per-partition categorization is disabled.
|
||||
|
||||
|`body`
|
||||
|`object` - Category selection details if not provided in URI
|
||||
|
||||
|
||||
Reference in New Issue
Block a user