mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 10:23:14 -04:00
* add _bulk_create rest endpoint * document bulk_create api * provide 409 status code when conflicts exist * add overwrite and version to documenation * clean up assert statements and 2 places where bulkCreate is getting used with new output * properly stub bulkCreate return * remove version of documenation example
26 lines
981 B
Text
26 lines
981 B
Text
[[saved-objects-api]]
|
|
== Saved Objects API
|
|
|
|
The saved objects API allows people to manage Kibana saved objects, including
|
|
but not limited to dashboards, visualizations, and index patterns.
|
|
|
|
Traditionally, developers would perform this level of integration by writing
|
|
documents directly to the `.kibana` index. *Do not do this!* Writing directly
|
|
to the `.kibana` index is not safe and it _will_ result in corrupted data that
|
|
permanently breaks Kibana in a future version.
|
|
|
|
* <<saved-objects-api-get>>
|
|
* <<saved-objects-api-bulk-get>>
|
|
* <<saved-objects-api-find>>
|
|
* <<saved-objects-api-create>>
|
|
* <<saved-objects-api-bulk-create>>
|
|
* <<saved-objects-api-update>>
|
|
* <<saved-objects-api-delete>>
|
|
|
|
include::saved-objects/get.asciidoc[]
|
|
include::saved-objects/bulk_get.asciidoc[]
|
|
include::saved-objects/find.asciidoc[]
|
|
include::saved-objects/create.asciidoc[]
|
|
include::saved-objects/bulk_create.asciidoc[]
|
|
include::saved-objects/update.asciidoc[]
|
|
include::saved-objects/delete.asciidoc[]
|