You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[SavedObjectsSerializer](./kibana-plugin-server.savedobjectsserializer.md)| A serializer that can be used to manually convert [raw](./kibana-plugin-server.savedobjectsrawdoc.md) or [sanitized](./kibana-plugin-server.savedobjectsanitizeddoc.md) documents to the other kind. |
28
29
|[ScopedClusterClient](./kibana-plugin-server.scopedclusterclient.md)| Serves the same purpose as "normal" <code>ClusterClient</code> but exposes additional <code>callAsCurrentUser</code> method that doesn't use credentials of the Kibana internal user (as <code>callAsInternalUser</code> does) to request Elasticsearch API, but rather passes HTTP headers extracted from the current user request to the API.<!---->See [ScopedClusterClient](./kibana-plugin-server.scopedclusterclient.md)<!---->. |
29
30
30
31
## Enumerations
@@ -106,6 +107,7 @@ The plugin integrates with the core system via lifecycle events: `setup`<!-- -->
106
107
|[RouteValidatorOptions](./kibana-plugin-server.routevalidatoroptions.md)| Additional options for the RouteValidator class to modify its default behaviour. |
|[SavedObjectAttributes](./kibana-plugin-server.savedobjectattributes.md)| The data for a Saved Object is stored as an object in the <code>attributes</code> property. |
110
+
|[SavedObjectMigrationMap](./kibana-plugin-server.savedobjectmigrationmap.md)| A map of [migration functions](./kibana-plugin-server.savedobjectmigrationfn.md) to be used for a given type. The map's keys must be valid semver versions.<!---->For a given document, only migrations with a higher version number than that of the document will be applied. Migrations are executed in order, starting from the lowest version and ending with the highest one. |
109
111
|[SavedObjectReference](./kibana-plugin-server.savedobjectreference.md)| A reference to another saved object. |
|[SavedObjectsClientProviderOptions](./kibana-plugin-server.savedobjectsclientprovideroptions.md)| Options to control the creation of the Saved Objects Client. |
118
120
|[SavedObjectsClientWrapperOptions](./kibana-plugin-server.savedobjectsclientwrapperoptions.md)| Options passed to each SavedObjectsClientWrapperFactory to aid in creating the wrapper instance. |
121
+
|[SavedObjectsComplexFieldMapping](./kibana-plugin-server.savedobjectscomplexfieldmapping.md)| See [SavedObjectsFieldMapping](./kibana-plugin-server.savedobjectsfieldmapping.md) for documentation. |
122
+
|[SavedObjectsCoreFieldMapping](./kibana-plugin-server.savedobjectscorefieldmapping.md)| See [SavedObjectsFieldMapping](./kibana-plugin-server.savedobjectsfieldmapping.md) for documentation. |
@@ -132,13 +136,16 @@ The plugin integrates with the core system via lifecycle events: `setup`<!-- -->
132
136
|[SavedObjectsImportUnknownError](./kibana-plugin-server.savedobjectsimportunknownerror.md)| Represents a failure to import due to an unknown reason. |
133
137
|[SavedObjectsImportUnsupportedTypeError](./kibana-plugin-server.savedobjectsimportunsupportedtypeerror.md)| Represents a failure to import due to having an unsupported saved object type. |
|[SavedObjectsMappingProperties](./kibana-plugin-server.savedobjectsmappingproperties.md)| Describe the fields of a [saved object type](./kibana-plugin-server.savedobjectstypemappingdefinition.md)<!---->. |
|[SavedObjectsMigrationVersion](./kibana-plugin-server.savedobjectsmigrationversion.md)| Information about the migrations that have been applied to this SavedObject. When Kibana starts up, KibanaMigrator detects outdated documents and migrates them based on this value. For each migration that has been applied, the plugin's name is used as a key and the latest migration version as the value. |
137
142
|[SavedObjectsRawDoc](./kibana-plugin-server.savedobjectsrawdoc.md)| A raw document as represented directly in the saved object index. |
138
143
|[SavedObjectsRepositoryFactory](./kibana-plugin-server.savedobjectsrepositoryfactory.md)| Factory provided when invoking a [client factory provider](./kibana-plugin-server.savedobjectsclientfactoryprovider.md) See [SavedObjectsServiceSetup.setClientFactoryProvider](./kibana-plugin-server.savedobjectsservicesetup.setclientfactoryprovider.md)|
139
144
|[SavedObjectsResolveImportErrorsOptions](./kibana-plugin-server.savedobjectsresolveimporterrorsoptions.md)| Options to control the "resolve import" operation. |
140
145
|[SavedObjectsServiceSetup](./kibana-plugin-server.savedobjectsservicesetup.md)| Saved Objects is Kibana's data persistence mechanism allowing plugins to use Elasticsearch for storing and querying state. The SavedObjectsServiceSetup API exposes methods for creating and registering Saved Object client wrappers. |
141
146
|[SavedObjectsServiceStart](./kibana-plugin-server.savedobjectsservicestart.md)| Saved Objects is Kibana's data persisentence mechanism allowing plugins to use Elasticsearch for storing and querying state. The SavedObjectsServiceStart API provides a scoped Saved Objects client for interacting with Saved Objects. |
|[SessionCookieValidationResult](./kibana-plugin-server.sessioncookievalidationresult.md)| Return type from a function to validate cookie contents. |
@@ -218,10 +225,13 @@ The plugin integrates with the core system via lifecycle events: `setup`<!-- -->
218
225
|[RouteValidatorFullConfig](./kibana-plugin-server.routevalidatorfullconfig.md)| Route validations config and options merged into one object |
219
226
|[SavedObjectAttribute](./kibana-plugin-server.savedobjectattribute.md)| Type definition for a Saved Object attribute value |
220
227
|[SavedObjectAttributeSingle](./kibana-plugin-server.savedobjectattributesingle.md)| Don't use this type, it's simply a helper type for [SavedObjectAttribute](./kibana-plugin-server.savedobjectattribute.md)|
228
+
|[SavedObjectMigrationFn](./kibana-plugin-server.savedobjectmigrationfn.md)| A migration function defined for a [saved objects type](./kibana-plugin-server.savedobjectstype.md) used to migrate it's |
| [SavedObjectsClientContract](./kibana-plugin-server.savedobjectsclientcontract.md) | Saved Objects is Kibana's data persisentence mechanism allowing plugins to use Elasticsearch for storing plugin state.<!-- -->\#\# SavedObjectsClient errors<!-- -->Since the SavedObjectsClient has its hands in everything we are a little paranoid about the way we present errors back to to application code. Ideally, all errors will be either:<!-- -->1. Caused by bad implementation (ie. undefined is not a function) and as such unpredictable 2. An error that has been classified and decorated appropriately by the decorators in [SavedObjectsErrorHelpers](./kibana-plugin-server.savedobjectserrorhelpers.md)<!-- -->Type 1 errors are inevitable, but since all expected/handle-able errors should be Type 2 the <code>isXYZError()</code> helpers exposed at <code>SavedObjectsErrorHelpers</code> should be used to understand and manage error responses from the <code>SavedObjectsClient</code>.<!-- -->Type 2 errors are decorated versions of the source error, so if the elasticsearch client threw an error it will be decorated based on its type. That means that rather than looking for <code>error.body.error.type</code> or doing substring checks on <code>error.body.error.reason</code>, just use the helpers to understand the meaning of the error:<!-- -->\`\`\`<!-- -->js if (SavedObjectsErrorHelpers.isNotFoundError(error)) { // handle 404 }<!-- -->if (SavedObjectsErrorHelpers.isNotAuthorizedError(error)) { // 401 handling should be automatic, but in case you wanted to know }<!-- -->// always rethrow the error unless you handle it throw error; \`\`\`<!-- -->\#\#\# 404s from missing index<!-- -->From the perspective of application code and APIs the SavedObjectsClient is a black box that persists objects. One of the internal details that users have no control over is that we use an elasticsearch index for persistance and that index might be missing.<!-- -->At the time of writing we are in the process of transitioning away from the operating assumption that the SavedObjects index is always available. Part of this transition is handling errors resulting from an index missing. These used to trigger a 500 error in most cases, and in others cause 404s with different error messages.<!-- -->From my (Spencer) perspective, a 404 from the SavedObjectsApi is a 404; The object the request/call was targeting could not be found. This is why \#14141 takes special care to ensure that 404 errors are generic and don't distinguish between index missing or document missing.<!-- -->\#\#\# 503s from missing index<!-- -->Unlike all other methods, create requests are supposed to succeed even when the Kibana index does not exist because it will be automatically created by elasticsearch. When that is not the case it is because Elasticsearch's <code>action.auto_create_index</code> setting prevents it from being created automatically so we throw a special 503 with the intention of informing the user that their Elasticsearch settings need to be updated.<!-- -->See [SavedObjectsClient](./kibana-plugin-server.savedobjectsclient.md) See [SavedObjectsErrorHelpers](./kibana-plugin-server.savedobjectserrorhelpers.md) |
222
231
|[SavedObjectsClientFactory](./kibana-plugin-server.savedobjectsclientfactory.md)| Describes the factory used to create instances of the Saved Objects Client. |
223
232
|[SavedObjectsClientFactoryProvider](./kibana-plugin-server.savedobjectsclientfactoryprovider.md)| Provider to invoke to retrieve a [SavedObjectsClientFactory](./kibana-plugin-server.savedobjectsclientfactory.md)<!---->. |
224
233
|[SavedObjectsClientWrapperFactory](./kibana-plugin-server.savedobjectsclientwrapperfactory.md)| Describes the factory used to create instances of Saved Objects Client Wrappers. |
234
+
|[SavedObjectsFieldMapping](./kibana-plugin-server.savedobjectsfieldmapping.md)| Describe a [saved object type mapping](./kibana-plugin-server.savedobjectstypemappingdefinition.md) field.<!---->Please refer to [elasticsearch documentation](https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-types.html) For the mapping documentation |
225
235
|[ScopeableRequest](./kibana-plugin-server.scopeablerequest.md)| A user credentials container. It accommodates the necessary auth credentials to impersonate the current user.<!---->See [KibanaRequest](./kibana-plugin-server.kibanarequest.md)<!---->. |
A map of [migration functions](./kibana-plugin-server.savedobjectmigrationfn.md) to be used for a given type. The map's keys must be valid semver versions.
8
+
9
+
For a given document, only migrations with a higher version number than that of the document will be applied. Migrations are executed in order, starting from the lowest version and ending with the highest one.
0 commit comments