Opensearch dashboards.savedobjectsimportoptions
Home > opensearch-dashboards > SavedObjectsImportOptions
SavedObjectsImportOptions interface
Options to control the import operation.
Signature:
export interface SavedObjectsImportOptions
Properties
| Property | Type | Description |
|---|---|---|
| createNewCopies | boolean | If true, will create new copies of import objects, each with a random id and undefined originId. |
| namespace? | string | (Optional) if specified, will import in given namespace, else will import as global object |
| objectLimit | number | The maximum number of object to import |
| overwrite | boolean | If true, will override existing object if present. Note: this has no effect when used with the createNewCopies option. |
| readStream | Readable | The stream of saved objects to import |
| savedObjectsClient | SavedObjectsClientContract | client to use to perform the import operation |
| typeRegistry | ISavedObjectTypeRegistry | The registry of all known saved object types |