123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- [role="xpack"]
- [[get-search-application]]
- === Get Search Application
- beta::[]
- ++++
- <titleabbrev>Get Search Application</titleabbrev>
- ++++
- Retrieves information about a search application.
- If the search application has an inconsistent state between its alias and configured indices, a warning header will be returned with the response.
- To resolve this inconsistent state, issue an updated <<put-search-application>> command.
- [[get-search-application-request]]
- ==== {api-request-title}
- `GET _application/search_application/<name>`
- [[get-search-application-prereq]]
- ==== {api-prereq-title}
- Requires the `manage_search_application` cluster privilege.
- [[get-search-application-path-params]]
- ==== {api-path-parms-title}
- `<name>`::
- (Required, string)
- [[get-search-application-response-codes]]
- ==== {api-response-codes-title}
- `400`::
- The `name` was not provided.
- `404` (Missing resources)::
- No Search Application matching `name` could be found.
- [[get-search-application-example]]
- ==== {api-examples-title}
- The following example gets the Search Application named `my-app`:
- ////
- [source,console]
- --------------------------------------------------
- PUT index1
- PUT index2
- PUT _application/search_application/my-app
- {
- "indices": ["index1", "index2"],
- "updated_at_millis": 1682105622204,
- "template": {
- "script": {
- "source": {
- "query": {
- "query_string": {
- "query": "{{query_string}}",
- "default_field": "{{default_field}}"
- }
- }
- },
- "params": {
- "query_string": "*",
- "default_field": "*"
- }
- }
- }
- }
- --------------------------------------------------
- // TESTSETUP
- [source,console]
- --------------------------------------------------
- DELETE _application/search_application/my-app
- DELETE index1
- DELETE index2
- --------------------------------------------------
- // TEARDOWN
- ////
- [source,console]
- ----
- GET _application/search_application/my-app/
- ----
- A sample response:
- [source,console-result]
- ----
- {
- "name": "my-app",
- "updated_at_millis": 1682105622204,
- "template": {
- "script": {
- "source": {
- "query": {
- "query_string": {
- "query": "{{query_string}}",
- "default_field": "{{default_field}}"
- }
- }
- },
- "lang": "mustache",
- "options": {
- "content_type": "application/json;charset=utf-8"
- },
- "params": {
- "query_string": "*",
- "default_field": "*"
- }
- }
- }
- }
- ----
- // TESTRESPONSE[s/"updated_at_millis": 1682105622204/"updated_at_millis": $body.$_path/]
- [NOTE]
- ====
- The indices associated with a search application are not returned with the GET response.
- To view the indices, use the <<indices-get-alias, get alias>> API.
- The alias name will match the search application name, for example `my-app` in the example above.
- ====
|