@@ -5370,7 +5370,7 @@ client.cat.mlDatafeeds({
5370
5370
v: boolean
5371
5371
})
5372
5372
----
5373
- link:{ref}/ml-get-datafeed-stats .html[Documentation] +
5373
+ link:{ref}/cat-datafeeds .html[Documentation] +
5374
5374
[cols=2*]
5375
5375
|===
5376
5376
|`datafeed_id` or `datafeedId`
@@ -5415,7 +5415,7 @@ client.cat.mlJobs({
5415
5415
v: boolean
5416
5416
})
5417
5417
----
5418
- link:{ref}/ml-get-job-stats .html[Documentation] +
5418
+ link:{ref}/cat-anomaly-detectors .html[Documentation] +
5419
5419
[cols=2*]
5420
5420
|===
5421
5421
|`job_id` or `jobId`
@@ -5465,7 +5465,7 @@ client.cat.mlTrainedModels({
5465
5465
v: boolean
5466
5466
})
5467
5467
----
5468
- link:{ref}/get-inference-stats .html[Documentation] +
5468
+ link:{ref}/cat-trained-model .html[Documentation] +
5469
5469
[cols=2*]
5470
5470
|===
5471
5471
|`model_id` or `modelId`
@@ -7584,6 +7584,10 @@ link:{ref}/put-dfanalytics.html[Documentation] +
7584
7584
----
7585
7585
client.ml.putDatafeed({
7586
7586
datafeed_id: string,
7587
+ ignore_unavailable: boolean,
7588
+ allow_no_indices: boolean,
7589
+ ignore_throttled: boolean,
7590
+ expand_wildcards: 'open' | 'closed' | 'hidden' | 'none' | 'all',
7587
7591
body: object
7588
7592
})
7589
7593
----
@@ -7593,6 +7597,18 @@ link:{ref}/ml-put-datafeed.html[Documentation] +
7593
7597
|`datafeed_id` or `datafeedId`
7594
7598
|`string` - The ID of the datafeed to create
7595
7599
7600
+ |`ignore_unavailable` or `ignoreUnavailable`
7601
+ |`boolean` - Ignore unavailable indexes (default: false)
7602
+
7603
+ |`allow_no_indices` or `allowNoIndices`
7604
+ |`boolean` - Ignore if the source indices expressions resolves to no concrete indices (default: true)
7605
+
7606
+ |`ignore_throttled` or `ignoreThrottled`
7607
+ |`boolean` - Ignore indices that are marked as throttled (default: true)
7608
+
7609
+ |`expand_wildcards` or `expandWildcards`
7610
+ |`'open' \| 'closed' \| 'hidden' \| 'none' \| 'all'` - Whether source index expressions should get expanded to open or closed indices (default: open)
7611
+
7596
7612
|`body`
7597
7613
|`object` - The datafeed config
7598
7614
@@ -7827,6 +7843,10 @@ link:{ref}/ml-stop-datafeed.html[Documentation] +
7827
7843
----
7828
7844
client.ml.updateDatafeed({
7829
7845
datafeed_id: string,
7846
+ ignore_unavailable: boolean,
7847
+ allow_no_indices: boolean,
7848
+ ignore_throttled: boolean,
7849
+ expand_wildcards: 'open' | 'closed' | 'hidden' | 'none' | 'all',
7830
7850
body: object
7831
7851
})
7832
7852
----
@@ -7836,6 +7856,18 @@ link:{ref}/ml-update-datafeed.html[Documentation] +
7836
7856
|`datafeed_id` or `datafeedId`
7837
7857
|`string` - The ID of the datafeed to update
7838
7858
7859
+ |`ignore_unavailable` or `ignoreUnavailable`
7860
+ |`boolean` - Ignore unavailable indexes (default: false)
7861
+
7862
+ |`allow_no_indices` or `allowNoIndices`
7863
+ |`boolean` - Ignore if the source indices expressions resolves to no concrete indices (default: true)
7864
+
7865
+ |`ignore_throttled` or `ignoreThrottled`
7866
+ |`boolean` - Ignore indices that are marked as throttled (default: true)
7867
+
7868
+ |`expand_wildcards` or `expandWildcards`
7869
+ |`'open' \| 'closed' \| 'hidden' \| 'none' \| 'all'` - Whether source index expressions should get expanded to open or closed indices (default: open)
7870
+
7839
7871
|`body`
7840
7872
|`object` - The datafeed update settings
7841
7873
0 commit comments