Added missing parameters to the "delete_by_query" API
(Added parameters related to qs queries.)
This commit is contained in:
parent
b966f74f4d
commit
b3645bbeb9
|
@ -17,11 +17,25 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"params": {
|
"params": {
|
||||||
|
"analyzer": {
|
||||||
|
"type" : "string",
|
||||||
|
"description" : "The analyzer to use for the query string"
|
||||||
|
},
|
||||||
"consistency": {
|
"consistency": {
|
||||||
"type" : "enum",
|
"type" : "enum",
|
||||||
"options" : ["one", "quorum", "all"],
|
"options" : ["one", "quorum", "all"],
|
||||||
"description" : "Specific write consistency setting for the operation"
|
"description" : "Specific write consistency setting for the operation"
|
||||||
},
|
},
|
||||||
|
"default_operator": {
|
||||||
|
"type" : "enum",
|
||||||
|
"options" : ["AND","OR"],
|
||||||
|
"default" : "OR",
|
||||||
|
"description" : "The default operator for query string query (AND or OR)"
|
||||||
|
},
|
||||||
|
"df": {
|
||||||
|
"type" : "string",
|
||||||
|
"description" : "The field to use as default where no field prefix is given in the query string"
|
||||||
|
},
|
||||||
"ignore_indices": {
|
"ignore_indices": {
|
||||||
"type" : "enum",
|
"type" : "enum",
|
||||||
"options" : ["none","missing"],
|
"options" : ["none","missing"],
|
||||||
|
@ -34,6 +48,10 @@
|
||||||
"default" : "sync",
|
"default" : "sync",
|
||||||
"description" : "Specific replication type"
|
"description" : "Specific replication type"
|
||||||
},
|
},
|
||||||
|
"q": {
|
||||||
|
"type" : "string",
|
||||||
|
"description" : "Query in the Lucene query string syntax"
|
||||||
|
},
|
||||||
"routing": {
|
"routing": {
|
||||||
"type" : "string",
|
"type" : "string",
|
||||||
"description" : "Specific routing value"
|
"description" : "Specific routing value"
|
||||||
|
|
Loading…
Reference in New Issue