get_data_source
Retrieve configuration details and metadata for a specific data source by providing its unique identifier to manage database connections and query settings.
Instructions
Get details about a specific data source
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data_source_id | Yes | The ID of the data source |
Input Schema (JSON Schema)
{
"properties": {
"data_source_id": {
"description": "The ID of the data source",
"minimum": 1,
"type": "number"
}
},
"required": [
"data_source_id"
],
"type": "object"
}