get_space_assets
Retrieve all assets within a specified SAP Datasphere space, including tables, views, and analytical models. Filter results by type or exposure status for precise asset discovery.
Instructions
List all data assets within a specific SAP Datasphere space.
Use this tool when:
User asks "What assets are in the SAP_CONTENT space?"
Browsing assets within a specific space
Creating a space-specific asset inventory
Filtering assets by type within a space
Validating space contents and available data
Understanding what data is available in a space
What you'll get:
All assets within the specified space
Asset names, descriptions, and types
Exposure status for each asset
Consumption URLs (analytical and relational)
Creation and modification timestamps
Asset counts and pagination info
Required parameters:
space_id: The space to browse (e.g., 'SAP_CONTENT')
Optional parameters:
filter_expression: Filter by asset type or other criteria
top: Maximum results (default 50, max 1000)
skip: Results to skip for pagination
Example queries:
"List all assets in the SAP_CONTENT space"
"Show me analytical models in SALES_ANALYTICS"
"What tables are available in FINANCE_SPACE?"
"List exposed assets in SAP_CONTENT"
Common filters:
By type:
filter_expression="assetType eq 'AnalyticalModel'"Exposed only:
filter_expression="exposedForConsumption eq true"By name pattern:
filter_expression="contains(name, 'Financial')"Combined:
filter_expression="assetType eq 'View' and exposedForConsumption eq true"
Asset types:
AnalyticalModel: Multi-dimensional models with dimensions and measures
View: SQL views combining data from multiple sources
Table: Physical tables with business data
Fact: Fact tables in dimensional models
Dimension: Dimension tables for analysis
Use cases:
Space content discovery
Asset inventory generation
Data availability validation
Finding specific asset types
Understanding space data landscape
Note: This uses the Catalog API: GET /api/v1/datasphere/consumption/catalog/spaces('{spaceId}')/assets
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| space_id | Yes | The space ID in UPPERCASE format (e.g., 'SAP_CONTENT', 'SALES_ANALYTICS'). Must match exactly. | |
| filter_expression | No | OData filter expression (e.g., "assetType eq 'AnalyticalModel'" or "exposedForConsumption eq true"). | |
| top | No | Maximum number of results to return (default: 50, max: 1000). | |
| skip | No | Number of results to skip for pagination (default: 0). |