mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Updated docs
This commit is contained in:
parent
1a63438f94
commit
c9512ced1f
9 changed files with 69 additions and 0 deletions
|
@ -0,0 +1,11 @@
|
|||
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||||
|
||||
[Home](./index.md) > [kibana-plugin-server](./kibana-plugin-server.md) > [DeprecationSettings](./kibana-plugin-server.deprecationsettings.md) > [docLinksKey](./kibana-plugin-server.deprecationsettings.doclinkskey.md)
|
||||
|
||||
## DeprecationSettings.docLinksKey property
|
||||
|
||||
<b>Signature:</b>
|
||||
|
||||
```typescript
|
||||
docLinksKey: string;
|
||||
```
|
|
@ -0,0 +1,21 @@
|
|||
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||||
|
||||
[Home](./index.md) > [kibana-plugin-server](./kibana-plugin-server.md) > [DeprecationSettings](./kibana-plugin-server.deprecationsettings.md)
|
||||
|
||||
## DeprecationSettings interface
|
||||
|
||||
UiSettings deprecation field options.
|
||||
|
||||
<b>Signature:</b>
|
||||
|
||||
```typescript
|
||||
export interface DeprecationSettings
|
||||
```
|
||||
|
||||
## Properties
|
||||
|
||||
| Property | Type | Description |
|
||||
| --- | --- | --- |
|
||||
| [docLinksKey](./kibana-plugin-server.deprecationsettings.doclinkskey.md) | <code>string</code> | |
|
||||
| [message](./kibana-plugin-server.deprecationsettings.message.md) | <code>string</code> | |
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||||
|
||||
[Home](./index.md) > [kibana-plugin-server](./kibana-plugin-server.md) > [DeprecationSettings](./kibana-plugin-server.deprecationsettings.md) > [message](./kibana-plugin-server.deprecationsettings.message.md)
|
||||
|
||||
## DeprecationSettings.message property
|
||||
|
||||
<b>Signature:</b>
|
||||
|
||||
```typescript
|
||||
message: string;
|
||||
```
|
|
@ -56,6 +56,7 @@ The plugin integrates with the core system via lifecycle events: `setup`<!-- -->
|
|||
| [DeprecationAPIClientParams](./kibana-plugin-server.deprecationapiclientparams.md) | |
|
||||
| [DeprecationAPIResponse](./kibana-plugin-server.deprecationapiresponse.md) | |
|
||||
| [DeprecationInfo](./kibana-plugin-server.deprecationinfo.md) | |
|
||||
| [DeprecationSettings](./kibana-plugin-server.deprecationsettings.md) | UiSettings deprecation field options. |
|
||||
| [DiscoveredPlugin](./kibana-plugin-server.discoveredplugin.md) | Small container object used to expose information about discovered plugins that may or may not have been started. |
|
||||
| [ElasticsearchError](./kibana-plugin-server.elasticsearcherror.md) | |
|
||||
| [ElasticsearchServiceSetup](./kibana-plugin-server.elasticsearchservicesetup.md) | |
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||||
|
||||
[Home](./index.md) > [kibana-plugin-server](./kibana-plugin-server.md) > [UiSettingsParams](./kibana-plugin-server.uisettingsparams.md) > [deprecation](./kibana-plugin-server.uisettingsparams.deprecation.md)
|
||||
|
||||
## UiSettingsParams.deprecation property
|
||||
|
||||
optional deprecation information. Used to generate a deprecation warning.
|
||||
|
||||
<b>Signature:</b>
|
||||
|
||||
```typescript
|
||||
deprecation?: DeprecationSettings;
|
||||
```
|
|
@ -17,6 +17,7 @@ export interface UiSettingsParams
|
|||
| Property | Type | Description |
|
||||
| --- | --- | --- |
|
||||
| [category](./kibana-plugin-server.uisettingsparams.category.md) | <code>string[]</code> | used to group the configured setting in the UI |
|
||||
| [deprecation](./kibana-plugin-server.uisettingsparams.deprecation.md) | <code>DeprecationSettings</code> | optional deprecation information. Used to generate a deprecation warning. |
|
||||
| [description](./kibana-plugin-server.uisettingsparams.description.md) | <code>string</code> | description provided to a user in UI |
|
||||
| [name](./kibana-plugin-server.uisettingsparams.name.md) | <code>string</code> | title in the UI |
|
||||
| [optionLabels](./kibana-plugin-server.uisettingsparams.optionlabels.md) | <code>Record<string, string></code> | text labels for 'select' type UI element |
|
||||
|
|
|
@ -211,6 +211,7 @@ export {
|
|||
|
||||
export {
|
||||
IUiSettingsClient,
|
||||
DeprecationSettings,
|
||||
UiSettingsParams,
|
||||
UiSettingsType,
|
||||
UiSettingsServiceSetup,
|
||||
|
|
|
@ -635,6 +635,14 @@ export interface DeprecationInfo {
|
|||
url: string;
|
||||
}
|
||||
|
||||
// @public
|
||||
export interface DeprecationSettings {
|
||||
// (undocumented)
|
||||
docLinksKey: string;
|
||||
// (undocumented)
|
||||
message: string;
|
||||
}
|
||||
|
||||
// @public
|
||||
export interface DiscoveredPlugin {
|
||||
readonly configPath: ConfigPath;
|
||||
|
@ -1928,6 +1936,7 @@ export type SharedGlobalConfig = RecursiveReadonly_2<{
|
|||
// @public
|
||||
export interface UiSettingsParams {
|
||||
category?: string[];
|
||||
deprecation?: DeprecationSettings;
|
||||
description?: string;
|
||||
name?: string;
|
||||
optionLabels?: Record<string, string>;
|
||||
|
|
|
@ -26,6 +26,7 @@ export {
|
|||
UiSettingsServiceSetup,
|
||||
UiSettingsServiceStart,
|
||||
IUiSettingsClient,
|
||||
DeprecationSettings,
|
||||
UiSettingsParams,
|
||||
InternalUiSettingsServiceSetup,
|
||||
InternalUiSettingsServiceStart,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue