@@ -69,28 +69,37 @@ export class BigQueryQueryCtrl extends QueryCtrl {
6969 { text : "ASC" , value : "1" } ,
7070 { text : "DESC" , value : "2" }
7171 ] ;
72+ // GCP Dataset Locations: https://cloud.google.com/bigquery/docs/locations
7273 this . locations = [
74+ // Multi-regional locations
7375 { text : "United States (US)" , value : "US" } ,
7476 { text : "European Union (EU)" , value : "EU" } ,
77+ // Americas
78+ { text : "Las Vegas (us-west4)" , value : "us-west4" } ,
7579 { text : "Los Angeles (us-west2)" , value : "us-west2" } ,
76- {
77- text : "Montréal (northamerica-northeast1)" ,
78- value : "northamerica-northeast1"
79- } ,
80- { text : "South Carolina (us-east1)" , value : "us-east1" } ,
80+ { text : "Montréal (northamerica-northeast1)" , value : "northamerica-northeast1" } ,
8181 { text : "Northern Virginia (us-east4)" , value : "us-east4" } ,
82+ { text : "Oregon (us-west1)" , value : "us-west1" } ,
83+ { text : "Salt Lake City (us-west3)" , value : "us-west3" } ,
8284 { text : "São Paulo (southamerica-east1)" , value : "southamerica-east1" } ,
85+ { text : "South Carolina (us-east1)" , value : "us-east1" } ,
86+ // Europe
87+ { text : "Belgium (europe-west1)" , value : "europe-west1" } ,
8388 { text : "Finland (europe-north1)" , value : "europe-north1" } ,
84- { text : "London (europe-west2)" , value : "europe-west2" } ,
8589 { text : "Frankfurt (europe-west3)" , value : "europe-west3" } ,
90+ { text : "London (europe-west2)" , value : "europe-west2" } ,
91+ { text : "Netherlands (europe-west4)" , value : "europe-west4" } ,
8692 { text : "Zürich (europe-west6)" , value : "europe-west6" } ,
93+ // Asia Pacific
8794 { text : "Hong Kong (asia-east2)" , value : "asia-east2" } ,
95+ { text : "Jakarta (asia-southeast2)" , value : "asia-southeast2" } ,
8896 { text : "Mumbai (asia-south1)" , value : "asia-south1" } ,
8997 { text : "Osaka (asia-northeast2)" , value : "asia-northeast2" } ,
90- { text : "Taiwan (asia-east1)" , value : "asia-east1" } ,
91- { text : "Tokyo (asia-northeast1)" , value : "asia-northeast1" } ,
98+ { text : "Seoul (asia-northeast3)" , value : "asia-northeast3" } ,
9299 { text : "Singapore (asia-southeast1)" , value : "asia-southeast1" } ,
93- { text : "Sydney (australia-southeast1)" , value : "australia-southeast1" }
100+ { text : "Sydney (australia-southeast1)" , value : "australia-southeast1" } ,
101+ { text : "Taiwan (asia-east1)" , value : "asia-east1" } ,
102+ { text : "Tokyo (asia-northeast1)" , value : "asia-northeast1" }
94103 ] ;
95104 if ( ! this . target . rawSql ) {
96105 // special handling when in table panel
0 commit comments