We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extend all connectors with 'custom' functionality to be named as users want
Feature request to 1. solve this issue, 2. extend functionallity to users
Allow users to modify the prefix name of all connectors in the UI like so:
yaml integration:
components_mapping: - type: ComponentMappingDefinition field_path: ["**", "name"] value: "custom_{{components_values['name']}}"
to
components_mapping: - type: ComponentMappingDefinition field_path: ["**", "name"] value: "custom_{{components_values['name']}}" custom_table_prefix_default: "custom_"
py integration:
stream = AdsInsights( api=api, account_ids=config.account_ids, name=f"Custom{insight.name}",
stream = AdsInsights( api=api, account_ids=config.account_ids, name=f"{insight.name}", custom_table_prefix_default="Custom"
Then allow users to change it in UI:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Topic
Extend all connectors with 'custom' functionality to be named as users want
Relevant information
Feature request to 1. solve this issue, 2. extend functionallity to users
Allow users to modify the prefix name of all connectors in the UI like so:
yaml integration:
to
py integration:
to
Then allow users to change it in UI:
The text was updated successfully, but these errors were encountered: