mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Add * as default value for 3 more native connectors (#182957)
## Summary This PR adds "*" as default value for 3 more native connector fields that specify comma-separate values: - MySQL connector field "tables" - Oracle connector field "tables" - Sharepoint Online field "site_collections" Similar PR in connectors: https://github.com/elastic/connectors/pull/2532 ### For maintainers - [ ] This was checked for breaking API changes and was [labeled appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)
This commit is contained in:
parent
1852d981a0
commit
b3e6f74234
1 changed files with 3 additions and 3 deletions
|
@ -2605,7 +2605,7 @@ export const NATIVE_CONNECTOR_DEFINITIONS: Record<string, NativeConnector | unde
|
|||
type: FieldType.LIST,
|
||||
ui_restrictions: [],
|
||||
validations: [],
|
||||
value: '',
|
||||
value: '*',
|
||||
},
|
||||
ssl_enabled: {
|
||||
default_value: false,
|
||||
|
@ -3147,7 +3147,7 @@ export const NATIVE_CONNECTOR_DEFINITIONS: Record<string, NativeConnector | unde
|
|||
type: FieldType.LIST,
|
||||
ui_restrictions: [],
|
||||
validations: [],
|
||||
value: '',
|
||||
value: '*',
|
||||
},
|
||||
fetch_size: {
|
||||
default_value: 50,
|
||||
|
@ -4284,7 +4284,7 @@ export const NATIVE_CONNECTOR_DEFINITIONS: Record<string, NativeConnector | unde
|
|||
type: FieldType.LIST,
|
||||
ui_restrictions: [],
|
||||
validations: [],
|
||||
value: '',
|
||||
value: '*',
|
||||
},
|
||||
use_text_extraction_service: {
|
||||
default_value: false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue