47fac22230
- .claude/CLAUDE.md - .claude/commands/subagentes.md - .claude/rules/INDEX.md - .mcp.json - bash/functions/cybersecurity/analyze_dns.md - bash/functions/cybersecurity/audit_http_headers.md - bash/functions/cybersecurity/audit_ssh_config.md - bash/functions/cybersecurity/check_firewall.md - bash/functions/cybersecurity/detect_suspicious_users.md - bash/functions/cybersecurity/encrypt_file.md - ... Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1.3 KiB
1.3 KiB
name, kind, lang, domain, version, purity, signature, description, tags, uses_functions, uses_types, returns, returns_optional, error_type, imports, params, output, 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 | params | output | 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 |
|
|
nil si la eliminacion fue exitosa, error en caso contrario | 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}).