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:
Artem Shelkovnikov 2024-05-08 18:29:41 +02:00 committed by GitHub
parent 1852d981a0
commit b3e6f74234
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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,