be5a7b582e
Añade módulo Python con funciones para la API de Metabase en dominio infra. Incluye cliente HTTP, auth, y CRUD de cards, dashboards y users. Proyecto gestionado con uv (pyproject.toml).
812 B
812 B
name, kind, lang, domain, version, purity, signature, description, tags, uses_functions, uses_types, returns, returns_optional, error_type, imports, tested, tests, test_file_path, file_path
| name | kind | lang | domain | version | purity | signature | description | tags | uses_functions | uses_types | returns | returns_optional | error_type | imports | tested | tests | test_file_path | file_path | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| metabase_delete_dashboard | function | py | infra | 1.0.0 | impure | def metabase_delete_dashboard(client: MetabaseClient, dashboard_id: int) -> None | Elimina permanentemente un dashboard. IRREVERSIBLE. Preferir archived=True. Endpoint: DELETE /api/dashboard/:id. |
|
false | error_go_core |
|
false | python/functions/metabase/dashboards.py |
Ejemplo
metabase_delete_dashboard(client, 1)
# Preferir: metabase_update_dashboard(client, 1, archived=True)
Notas
IRREVERSIBLE. Preferir soft-delete con metabase_update_dashboard(archived=True).