Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 1.6 KB

kibana-plugin-core-server.savedobjectsbulkupdateobject.md

File metadata and controls

22 lines (14 loc) · 1.6 KB

Home > kibana-plugin-core-server > SavedObjectsBulkUpdateObject

SavedObjectsBulkUpdateObject interface

Signature:

export interface SavedObjectsBulkUpdateObject<T = unknown> extends Pick<SavedObjectsUpdateOptions, 'version' | 'references'> 

Properties

Property Type Description
attributes Partial<T> The data for a Saved Object is stored as an object in the attributes property.
id string The ID of this Saved Object, guaranteed to be unique for all objects of the same type
namespace string Optional namespace string to use when searching for this object. If this is defined, it will supersede the namespace ID that is in SavedObjectsBulkUpdateOptions.Note: the default namespace's string representation is 'default', and its ID representation is undefined.
type string The type of this Saved Object. Each plugin can define it's own custom Saved Object types.