Still testing

This commit is contained in:
Josh Mock
2024-11-20 11:39:21 -06:00
parent be8fc5ae83
commit 15a43f3747
115 changed files with 609 additions and 818 deletions

View File

@ -50,9 +50,9 @@ Get anomaly detection job results for buckets. The API presents a chronological
interface MlGetBucketsRequest extends <<RequestBase>> {
job_id: <<Id>>
timestamp?: <<DateTime>>
from?: number
size?: number
anomaly_score?: number
from?: <<_integer, integer>>
size?: <<_integer, integer>>
anomaly_score?: <<_double, double>>
desc?: boolean
end?: <<DateTime>>
exclude_interim?: boolean
@ -75,7 +75,7 @@ interface MlGetBucketsRequest extends <<RequestBase>> {
++++
interface MlGetBucketsResponse {
buckets: MlBucketSummary[]
count: number
count: <<_long, long>>
}
[pass]