catalog_workspace.
load_declarative_workspace_data_filters
load_declarative_workspace_data_filters(layout_root_path: Path = Path.cwd())
Loads the declarative workspaces layout, which was stored using store_declarative_workspace_data_filters.
Parameters
| name | type | description |
|---|---|---|
| layout_root_path | Optional[Path] | Path to the root of the layout directory. Defaults to Path.cwd(). |
Returns
| type | description |
|---|---|
| CatalogDeclarativeWorkspaceDataFilters | Object containing List of declarative workspace data filters. |
Example
# Load the workspace data filters
declarative_workspace_filters = sdk.catalog_workspace.load_declarative_workspace_data_filters(
layout_root_path=Path.cwd()
)