These shortcuts list one kind of item and include the detailed connection
fields used by the matching query functions. They are equivalent to
fabric_items() with a fixed item type and detail = TRUE. Set
detail = FALSE when only names and identifiers are needed.
Usage
fabric_lakehouses(workspace, detail = TRUE, ...)
fabric_warehouses(workspace, detail = TRUE, ...)
fabric_warehouse_snapshots(workspace, detail = TRUE, ...)
fabric_sql_databases(workspace, detail = TRUE, ...)
fabric_semantic_models(workspace, detail = TRUE, ...)
fabric_eventhouses(workspace, detail = TRUE, ...)
fabric_kql_databases(workspace, detail = TRUE, ...)
fabric_notebooks(workspace, detail = TRUE, ...)
fabric_graphql_apis(workspace, detail = TRUE, ...)Arguments
- workspace
Workspace GUID, exact display name, or a workspace record returned by
fabric_workspaces(). A record avoids an extra lookup and, if it containsapiEndpoint, routes workspace calls through that endpoint. A name is often easier for interactive use.- detail
Logical.
FALSEmakes the fewest API calls and is sufficient for names and IDs.TRUEalso retrieves supported workload properties, such as SQL connection strings and Livy or KQL endpoints, but is slower and can require additional permissions. The typed helpers below useTRUE.- ...
Authentication and API arguments forwarded to
fabric_items(). Do not supplytype; each helper sets that value.
Value
A list with one fabric_item object per matching item. Each object
contains common item metadata and applicable connection fields. See
fabric_items() for details.
Choosing a helper
fabric_lakehouses(),fabric_warehouses(), andfabric_warehouse_snapshots()find data stores that can be queried throughfabric_sql_query(); Lakehouses can also be accessed through OneLake and Livy.fabric_sql_databases()finds transactional Fabric SQL databases.fabric_semantic_models()finds the business models queried with DAX viafabric_pbi_dax_query().fabric_eventhouses()andfabric_kql_databases()find real-time data stores queried withfabric_kql_query().fabric_notebooks()finds notebooks that can be run withfabric_job_run().fabric_graphql_apis()finds APIs configured in Fabric for use withfabric_graphql_query().