[DOCS] Adds missing breaking change (#20057)

This commit is contained in:
Lisa Cawley 2018-06-19 17:17:08 -07:00 committed by GitHub
parent 72dc8b31f7
commit 2516f9ecc3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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:*