mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
* saved objects: allow partial update without references For normal attributes, the update API for saved objects supports partial updates, where it will only attempt to change those attributes you specify. References should behave the same way otherwise they will be replaced entirely if you call update without specifying the original references.
818 B
818 B
Home > kibana-plugin-server > SavedObjectsUpdateResponse
SavedObjectsUpdateResponse interface
Signature:
export interface SavedObjectsUpdateResponse<T extends SavedObjectAttributes = any> extends Omit<SavedObject<T>, 'attributes' | 'references'>
Properties
Property | Type | Description |
---|---|---|
attributes | Partial<T> |
|
references | SavedObjectReference[] | undefined |