Skip to content
New issue

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

[pull] master from datahub-project:master #1038

Merged
merged 1 commit into from
Jan 8, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -300,11 +300,16 @@ class LookerDashboardSourceConfig(

folder_path_pattern: AllowDenyPattern = Field(
default=AllowDenyPattern.allow_all(),
description="Allow or deny dashboards from specific folders. "
description="Allow or deny dashboards from specific folders using their fully qualified paths. "
"For example: \n"
"deny: \n"
" - sales/deprecated \n"
"This pattern will deny the ingestion of all dashboards and looks within the sales/deprecated folder. \n"
" - Shared/deprecated \n"
"This pattern will deny the ingestion of all dashboards and looks within the Shared/deprecated folder. \n"
"allow: \n"
" - Shared/sales \n"
"This pattern will allow only the ingestion of dashboards within the Shared/sales folder. \n"
"To get the correct path from Looker, take the folder hierarchy shown in the UI and join it with slashes. "
"For example, Shared -> Customer Reports -> Sales becomes Shared/Customer Reports/Sales. "
"Dashboards will only be ingested if they're allowed by both this config and dashboard_pattern.",
)

Expand Down
Loading