-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathml.put_datafeed.json
51 lines (51 loc) · 1.47 KB
/
ml.put_datafeed.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"ml.put_datafeed": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-put-datafeed.html",
"description": "Instantiates a datafeed."
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"],
"content_type": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_ml/datafeeds/{datafeed_id}",
"methods": ["PUT"],
"parts": {
"datafeed_id": {
"type": "string",
"description": "The ID of the datafeed to create"
}
}
}
]
},
"body": {
"description": "The datafeed config",
"required": true
},
"params": {
"ignore_unavailable": {
"type": "boolean",
"description": "Ignore unavailable indexes (default: false)"
},
"allow_no_indices": {
"type": "boolean",
"description": "Ignore if the source indices expressions resolves to no concrete indices (default: true)"
},
"ignore_throttled": {
"type": "boolean",
"description": "Ignore indices that are marked as throttled (default: true)"
},
"expand_wildcards": {
"type": "enum",
"options": ["open", "closed", "hidden", "none", "all"],
"description": "Whether source index expressions should get expanded to open or closed indices (default: open)"
}
}
}
}