rest-api-spec.api.ml.update_datafeed.json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api-spec Show documentation
Show all versions of rest-api-spec Show documentation
Elasticsearch subproject :rest-api-spec
{
"ml.update_datafeed":{
"documentation":{
"url":"https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-update-datafeed.html",
"description":"Updates certain properties of a datafeed."
},
"stability":"stable",
"visibility":"public",
"headers":{
"accept": [ "application/json"],
"content_type": ["application/json"]
},
"url":{
"paths":[
{
"path":"/_ml/datafeeds/{datafeed_id}/_update",
"methods":[
"POST"
],
"parts":{
"datafeed_id":{
"type":"string",
"description":"The ID of the datafeed to update"
}
}
}
]
},
"body":{
"description":"The datafeed update settings",
"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)"
}
}
}
}