From 263e0184ff5126f6afe5ff7559ae47d564e76748 Mon Sep 17 00:00:00 2001 From: Shobhit Singh Date: Sat, 23 Mar 2024 01:54:14 +0000 Subject: [PATCH] feat: support BQ regional endpoints for europe-west9, europe-west3, us-east4, and us-west1 --- bigframes/session/clients.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/bigframes/session/clients.py b/bigframes/session/clients.py index 7574aa4454..d97e53901d 100644 --- a/bigframes/session/clients.py +++ b/bigframes/session/clients.py @@ -38,7 +38,13 @@ _SCOPES = ["https://www.googleapis.com/auth/cloud-platform"] # Regions for which Regional Endpoints (REPs) are supported -_REP_SUPPORTED_REGIONS = {"me-central2"} +_REP_SUPPORTED_REGIONS = { + "me-central2", + "europe-west9", + "europe-west3", + "us-east4", + "us-west1", +} # BigQuery is a REST API, which requires the protocol as part of the URL.