Skip to content

Commit

Permalink
feat: support BQ regional endpoints for europe-west9, europe-west3, u…
Browse files Browse the repository at this point in the history
…s-east4, and us-west1 (#504)
  • Loading branch information
shobsi authored Mar 25, 2024
1 parent d6ee994 commit fbada4a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion bigframes/session/clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit fbada4a

Please sign in to comment.