mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[DOCS] Adds missing breaking change (#20057)
This commit is contained in:
parent
72dc8b31f7
commit
2516f9ecc3
1 changed files with 16 additions and 0 deletions
|
@ -6,6 +6,22 @@ your application to Kibana 6.0.
|
|||
|
||||
See also <<release-highlights>> and <<release-notes>>.
|
||||
|
||||
[float]
|
||||
=== Saved objects `bulk_get` and `find` endpoints renamed
|
||||
//{pull}17512[#17512]
|
||||
|
||||
*Details:*
|
||||
To support sending larger and more expressive queries to the Saved Objects find
|
||||
API, we added a POST endpoint for find and therefore needed a way to disambiguate
|
||||
the find API from from the POST API used to create Saved Objects.
|
||||
|
||||
*Impact:*
|
||||
Starting in {kib} 6.3, endpoints that are not simple CRUD operations on a single
|
||||
object will be named and their name will start with an underscore. For example,
|
||||
{es} `GET /api/saved_objects` is now `GET /api/saved_objects/_find`,
|
||||
`GET /api/saved_objects/{type}` is now `GET /api/saved_objects/_find?type={type}`,
|
||||
and `GET /api/saved_objects/bulk_get` is now `GET /api/saved_objects/_bulk_get`.
|
||||
|
||||
[float]
|
||||
=== Types removed from Kibana index
|
||||
*Details:*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue