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
|
// This file is autogenerated, DO NOT EDIT
// search/search-your-data/search-application-client.asciidoc:196
[source, python]
----
resp = client.search_application.put(
name="my-example-app",
search_application={
"indices": [
"my-example-app"
],
"template": {
"script": {
"lang": "mustache",
"source": "\n {\n \"query\": {\n \"bool\": {\n \"must\": [\n {{#query}}\n {\n \"query_string\": {\n \"query\": \"{{query}}\",\n \"search_fields\": {{#toJson}}search_fields{{/toJson}}\n }\n }\n {{/query}}\n ]\n }\n }\n }\n ",
"params": {
"query": "",
"search_fields": ""
}
}
}
},
)
print(resp)
----
|