-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove required ConfigClass (#36609)
* remove LoggingConfig class * get rid of ElasticsearchConfig class * get rid of PluginsConfig class * get rid of HttpConfig Class * update ConfigService * update LegacyService * update testbed plugin * update docs
- Loading branch information
Showing
54 changed files
with
572 additions
and
775 deletions.
There are no files selected for viewing
25 changes: 0 additions & 25 deletions
25
docs/development/core/server/kibana-plugin-server.configservice.atpath.md
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
docs/development/core/server/kibana-plugin-server.configservice.getconfig$.md
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
docs/development/core/server/kibana-plugin-server.configservice.getunusedpaths.md
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
docs/development/core/server/kibana-plugin-server.configservice.getusedpaths.md
This file was deleted.
Oops, something went wrong.
22 changes: 0 additions & 22 deletions
22
docs/development/core/server/kibana-plugin-server.configservice.isenabledatpath.md
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
docs/development/core/server/kibana-plugin-server.configservice.md
This file was deleted.
Oops, something went wrong.
27 changes: 0 additions & 27 deletions
27
docs/development/core/server/kibana-plugin-server.configservice.optionalatpath.md
This file was deleted.
Oops, something went wrong.
25 changes: 0 additions & 25 deletions
25
docs/development/core/server/kibana-plugin-server.configservice.setschema.md
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
|
||
## CoreStart interface | ||
|
||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
|
13 changes: 13 additions & 0 deletions
13
docs/development/core/server/kibana-plugin-server.discoveredplugin.configpath.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index) > [kibana-plugin-server](./kibana-plugin-server.md) > [DiscoveredPlugin](./kibana-plugin-server.discoveredplugin.md) > [configPath](./kibana-plugin-server.discoveredplugin.configpath.md) | ||
|
||
## DiscoveredPlugin.configPath property | ||
|
||
Root configuration path used by the plugin, defaults to "id". | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
readonly configPath: ConfigPath; | ||
``` |
13 changes: 13 additions & 0 deletions
13
docs/development/core/server/kibana-plugin-server.discoveredplugin.id.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index) > [kibana-plugin-server](./kibana-plugin-server.md) > [DiscoveredPlugin](./kibana-plugin-server.discoveredplugin.md) > [id](./kibana-plugin-server.discoveredplugin.id.md) | ||
|
||
## DiscoveredPlugin.id property | ||
|
||
Identifier of the plugin. | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
readonly id: PluginName; | ||
``` |
23 changes: 23 additions & 0 deletions
23
docs/development/core/server/kibana-plugin-server.discoveredplugin.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index) > [kibana-plugin-server](./kibana-plugin-server.md) > [DiscoveredPlugin](./kibana-plugin-server.discoveredplugin.md) | ||
|
||
## DiscoveredPlugin interface | ||
|
||
Small container object used to expose information about discovered plugins that may or may not have been started. | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
export interface DiscoveredPlugin | ||
``` | ||
|
||
## Properties | ||
|
||
| Property | Type | Description | | ||
| --- | --- | --- | | ||
| [configPath](./kibana-plugin-server.discoveredplugin.configpath.md) | <code>ConfigPath</code> | Root configuration path used by the plugin, defaults to "id". | | ||
| [id](./kibana-plugin-server.discoveredplugin.id.md) | <code>PluginName</code> | Identifier of the plugin. | | ||
| [optionalPlugins](./kibana-plugin-server.discoveredplugin.optionalplugins.md) | <code>ReadonlyArray<PluginName></code> | An optional list of the other plugins that if installed and enabled \*\*may be\*\* leveraged by this plugin for some additional functionality but otherwise are not required for this plugin to work properly. | | ||
| [requiredPlugins](./kibana-plugin-server.discoveredplugin.requiredplugins.md) | <code>ReadonlyArray<PluginName></code> | An optional list of the other plugins that \*\*must be\*\* installed and enabled for this plugin to function properly. | | ||
|
13 changes: 13 additions & 0 deletions
13
...evelopment/core/server/kibana-plugin-server.discoveredplugin.optionalplugins.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index) > [kibana-plugin-server](./kibana-plugin-server.md) > [DiscoveredPlugin](./kibana-plugin-server.discoveredplugin.md) > [optionalPlugins](./kibana-plugin-server.discoveredplugin.optionalplugins.md) | ||
|
||
## DiscoveredPlugin.optionalPlugins property | ||
|
||
An optional list of the other plugins that if installed and enabled \*\*may be\*\* leveraged by this plugin for some additional functionality but otherwise are not required for this plugin to work properly. | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
readonly optionalPlugins: ReadonlyArray<PluginName>; | ||
``` |
13 changes: 13 additions & 0 deletions
13
...evelopment/core/server/kibana-plugin-server.discoveredplugin.requiredplugins.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index) > [kibana-plugin-server](./kibana-plugin-server.md) > [DiscoveredPlugin](./kibana-plugin-server.discoveredplugin.md) > [requiredPlugins](./kibana-plugin-server.discoveredplugin.requiredplugins.md) | ||
|
||
## DiscoveredPlugin.requiredPlugins property | ||
|
||
An optional list of the other plugins that \*\*must be\*\* installed and enabled for this plugin to function properly. | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
readonly requiredPlugins: ReadonlyArray<PluginName>; | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
docs/development/core/server/kibana-plugin-server.pluginsservicesetup.contracts.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index) > [kibana-plugin-server](./kibana-plugin-server.md) > [PluginsServiceSetup](./kibana-plugin-server.pluginsservicesetup.md) > [contracts](./kibana-plugin-server.pluginsservicesetup.contracts.md) | ||
|
||
## PluginsServiceSetup.contracts property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
contracts: Map<PluginName, unknown>; | ||
``` |
20 changes: 20 additions & 0 deletions
20
docs/development/core/server/kibana-plugin-server.pluginsservicesetup.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index) > [kibana-plugin-server](./kibana-plugin-server.md) > [PluginsServiceSetup](./kibana-plugin-server.pluginsservicesetup.md) | ||
|
||
## PluginsServiceSetup interface | ||
|
||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
export interface PluginsServiceSetup | ||
``` | ||
|
||
## Properties | ||
|
||
| Property | Type | Description | | ||
| --- | --- | --- | | ||
| [contracts](./kibana-plugin-server.pluginsservicesetup.contracts.md) | <code>Map<PluginName, unknown></code> | | | ||
| [uiPlugins](./kibana-plugin-server.pluginsservicesetup.uiplugins.md) | <code>{`<p/>` public: Map<PluginName, DiscoveredPlugin>;`<p/>` internal: Map<PluginName, DiscoveredPluginInternal>;`<p/>` }</code> | | | ||
|
14 changes: 14 additions & 0 deletions
14
docs/development/core/server/kibana-plugin-server.pluginsservicesetup.uiplugins.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index) > [kibana-plugin-server](./kibana-plugin-server.md) > [PluginsServiceSetup](./kibana-plugin-server.pluginsservicesetup.md) > [uiPlugins](./kibana-plugin-server.pluginsservicesetup.uiplugins.md) | ||
|
||
## PluginsServiceSetup.uiPlugins property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
uiPlugins: { | ||
public: Map<PluginName, DiscoveredPlugin>; | ||
internal: Map<PluginName, DiscoveredPluginInternal>; | ||
}; | ||
``` |
11 changes: 11 additions & 0 deletions
11
docs/development/core/server/kibana-plugin-server.pluginsservicestart.contracts.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index) > [kibana-plugin-server](./kibana-plugin-server.md) > [PluginsServiceStart](./kibana-plugin-server.pluginsservicestart.md) > [contracts](./kibana-plugin-server.pluginsservicestart.contracts.md) | ||
|
||
## PluginsServiceStart.contracts property | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
contracts: Map<PluginName, unknown>; | ||
``` |
19 changes: 19 additions & 0 deletions
19
docs/development/core/server/kibana-plugin-server.pluginsservicestart.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index) > [kibana-plugin-server](./kibana-plugin-server.md) > [PluginsServiceStart](./kibana-plugin-server.pluginsservicestart.md) | ||
|
||
## PluginsServiceStart interface | ||
|
||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
export interface PluginsServiceStart | ||
``` | ||
|
||
## Properties | ||
|
||
| Property | Type | Description | | ||
| --- | --- | --- | | ||
| [contracts](./kibana-plugin-server.pluginsservicestart.contracts.md) | <code>Map<PluginName, unknown></code> | | | ||
|
Oops, something went wrong.