Added missing parameters to the "delete_by_query" API

(Added parameters related to qs queries.)
This commit is contained in:
Karel Minarik 2013-06-22 17:04:21 +02:00
parent b966f74f4d
commit b3645bbeb9
1 changed files with 18 additions and 0 deletions

View File

@ -17,11 +17,25 @@
}
},
"params": {
"analyzer": {
"type" : "string",
"description" : "The analyzer to use for the query string"
},
"consistency": {
"type" : "enum",
"options" : ["one", "quorum", "all"],
"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": {
"type" : "enum",
"options" : ["none","missing"],
@ -34,6 +48,10 @@
"default" : "sync",
"description" : "Specific replication type"
},
"q": {
"type" : "string",
"description" : "Query in the Lucene query string syntax"
},
"routing": {
"type" : "string",
"description" : "Specific routing value"