from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
# Create request body
body = UpdateTagTablesRequest(name="Example")
result = client.datasources.tables.update_descriptions("datasource_id_value", body=body)
print(result)[
{
"table_name": "<string>",
"description": "<string>",
"columns": [
{
"column_name": "<string>",
"type": "<string>",
"description": "<string>"
}
]
}
]from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
# Create request body
body = UpdateTagTablesRequest(name="Example")
result = client.datasources.tables.update_descriptions("datasource_id_value", body=body)
print(result)[
{
"table_name": "<string>",
"description": "<string>",
"columns": [
{
"column_name": "<string>",
"type": "<string>",
"description": "<string>"
}
]
}
]Documentation Index
Fetch the complete documentation index at: https://docs.meibel.ai/llms.txt
Use this file to discover all available pages before exploring further.
Bulk update of table descriptions on a datasource.
One entry per table to update
Show child attributes
Successful Response
Was this page helpful?