Commit 730f1b8 1 parent 6f99d99 commit 730f1b8 Copy full SHA for 730f1b8
File tree 1 file changed +4
-2
lines changed
metadata-ingestion/src/datahub/ingestion/source/powerbi
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -305,13 +305,15 @@ class PowerBiDashboardSourceConfig(
305
305
# PowerBi workspace identifier
306
306
workspace_id_pattern : AllowDenyPattern = pydantic .Field (
307
307
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'."
309
310
" Note: This field works in conjunction with 'workspace_type_filter' and both must be considered when filtering workspaces." ,
310
311
)
311
312
# PowerBi workspace name
312
313
workspace_name_pattern : AllowDenyPattern = pydantic .Field (
313
314
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'."
315
317
" Note: This field works in conjunction with 'workspace_type_filter' and both must be considered when filtering workspaces." ,
316
318
)
317
319
You can’t perform that action at this time.
0 commit comments