Skip to content

Commit 730f1b8

Browse files
committed
fix(ingest/powerbi): Doc updates
1 parent 6f99d99 commit 730f1b8

File tree

1 file changed

+4
-2
lines changed
  • metadata-ingestion/src/datahub/ingestion/source/powerbi

1 file changed

+4
-2
lines changed

metadata-ingestion/src/datahub/ingestion/source/powerbi/config.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -305,13 +305,15 @@ class PowerBiDashboardSourceConfig(
305305
# PowerBi workspace identifier
306306
workspace_id_pattern: AllowDenyPattern = pydantic.Field(
307307
default=AllowDenyPattern.allow_all(),
308-
description="Regex patterns to filter PowerBI workspaces in ingestion."
308+
description="Regex patterns to filter PowerBI workspaces in ingestion by ID."
309+
" By default all IDs are allowed unless they are filtered by name using 'workspace_name_pattern'."
309310
" Note: This field works in conjunction with 'workspace_type_filter' and both must be considered when filtering workspaces.",
310311
)
311312
# PowerBi workspace name
312313
workspace_name_pattern: AllowDenyPattern = pydantic.Field(
313314
default=AllowDenyPattern.allow_all(),
314-
description="Regex patterns to filter PowerBI workspaces in ingestion."
315+
description="Regex patterns to filter PowerBI workspaces in ingestion by name."
316+
" By default all names are allowed unless they are filtered by ID using 'workspace_id_pattern'."
315317
" Note: This field works in conjunction with 'workspace_type_filter' and both must be considered when filtering workspaces.",
316318
)
317319

0 commit comments

Comments
 (0)