Files
fn_registry/python/functions/bigquery/bq_delete_routine.md
T
egutierrez cfdf515228 chore: auto-commit (799 archivos)
- .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>
2026-05-14 00:28:20 +02:00

1.4 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
bq_delete_routine function py infra 1.0.0 impure def bq_delete_routine(client: BQClient, dataset_id: str, routine_id: str) -> None Elimina una routine de un dataset.
bigquery
gcp
routine
udf
delete
google-cloud
python
pendiente-usar
true error_go_core
google-cloud-bigquery
name desc
client instancia autenticada de BQClient
name desc
dataset_id nombre del dataset que contiene la routine
name desc
routine_id nombre/identificador de la routine a eliminar
None; lanza NotFound si la routine no existe false
python/functions/bigquery/routines.py

Ejemplo

from bigquery.client import bq_auth
from bigquery.routines import bq_delete_routine

client = bq_auth("my-project")
bq_delete_routine(client, "analytics", "double_value")
# La routine queda eliminada permanentemente

Notas

Lanza google.api_core.exceptions.NotFound (404) si la routine no existe. La operacion es permanente e irreversible.

Para eliminar y recrear una routine actualizada, combinar con bq_create_routine:

bq_delete_routine(client, "analytics", "double_value")
bq_create_routine(client, "analytics", "double_value", body="x * 3", ...)