github.com/minio/console@v1.4.1/web-app/src/screens/Console/Configurations/TiersConfiguration/gcs-regions.ts (about) 1 // This file is part of MinIO Console Server 2 // Copyright (c) 2022 MinIO, Inc. 3 // 4 // This program is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU Affero General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // This program is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU Affero General Public License for more details. 13 // 14 // You should have received a copy of the GNU Affero General Public License 15 // along with this program. If not, see <http://www.gnu.org/licenses/>. 16 17 import { SelectorType } from "mds"; 18 19 const gcsRegions: SelectorType[] = [ 20 { label: "Montréal", value: "NORTHAMERICA-NORTHEAST1" }, 21 { label: "Toronto", value: "NORTHAMERICA-NORTHEAST2" }, 22 { label: "Iowa", value: "US-CENTRAL1" }, 23 { label: "South Carolina", value: "US-EAST1" }, 24 { label: "Northern Virginia", value: "US-EAST4" }, 25 { label: "Oregon", value: "US-WEST1" }, 26 { label: "Los Angeles", value: "US-WEST2" }, 27 { label: "Salt Lake City", value: "US-WEST3" }, 28 { label: "Las Vegas", value: "US-WEST4" }, 29 { label: "São Paulo", value: "SOUTHAMERICA-EAST1" }, 30 { label: "Santiago", value: "SOUTHAMERICA-WEST1" }, 31 { label: "Warsaw", value: "EUROPE-CENTRAL2" }, 32 { label: "Finland", value: "EUROPE-NORTH1" }, 33 { label: "Belgium", value: "EUROPE-WEST1" }, 34 { label: "London", value: "EUROPE-WEST2" }, 35 { label: "Frankfurt", value: "EUROPE-WEST3" }, 36 { label: "Netherlands", value: "EUROPE-WEST4" }, 37 { label: "Zürich", value: "EUROPE-WEST6" }, 38 { label: "Taiwan", value: "ASIA-EAST1" }, 39 { label: "Hong Kong", value: "ASIA-EAST2" }, 40 { label: "Tokyo", value: "ASIA-NORTHEAST1" }, 41 { label: "Osaka", value: "ASIA-NORTHEAST2" }, 42 { label: "Seoul", value: "ASIA-NORTHEAST3" }, 43 { label: "Mumbai", value: "ASIA-SOUTH1" }, 44 { label: "Delhi", value: "ASIA-SOUTH2" }, 45 { label: "Singapore", value: "ASIA-SOUTHEAST1" }, 46 { label: "Jakarta", value: "ASIA-SOUTHEAST2" }, 47 { label: "Sydney", value: "AUSTRALIA-SOUTHEAST1" }, 48 { label: "Melbourne", value: "AUSTRALIA-SOUTHEAST2" }, 49 ]; 50 51 export default gcsRegions;