mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 10:23:14 -04:00
34 lines
1.3 KiB
Text
34 lines
1.3 KiB
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.
|
|
|
|
NOTE: You cannot access these endpoints via the Console in Kibana.
|
|
|
|
* <<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>>
|
|
* <<saved-objects-api-export>>
|
|
* <<saved-objects-api-import>>
|
|
* <<saved-objects-api-resolve-import-errors>>
|
|
|
|
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[]
|
|
include::saved-objects/export.asciidoc[]
|
|
include::saved-objects/import.asciidoc[]
|
|
include::saved-objects/resolve_import_errors.asciidoc[]
|