9e6bea681f
Añade funciones Go stub para la API de Metabase en dominio infra: auth, CRUD de cards, dashboards y users, execute_query y execute_card. Incluye tipo MetabaseClient y helper HTTP compartido. Todas las funciones son impuras con stubs not-implemented.
1.1 KiB
1.1 KiB
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 | go | infra | 1.0.0 | impure | func MetabaseDeleteDashboard(client MetabaseClient, dashboardID int) error | Elimina permanentemente un dashboard de Metabase. Accion irreversible. Para soft-delete usar MetabaseUpdateDashboard con archived:true. Endpoint: DELETE /api/dashboard/:id. |
|
|
false | error_go_core |
|
false | functions/infra/metabase_delete_dashboard.go |
Ejemplo
// Eliminar permanentemente
err := MetabaseDeleteDashboard(client, 1)
// Preferir soft-delete:
// MetabaseUpdateDashboard(client, 1, map[string]any{"archived": true})
Notas
ATENCION: Esta operacion es irreversible. El dashboard y todas sus dashcards se eliminan permanentemente.
Para un borrado seguro, preferir archivar con MetabaseUpdateDashboard(client, dashboardID, map[string]any{"archived": true}).