github.com/minio/console@v1.4.1/web-app/src/screens/Console/Configurations/TiersConfiguration/azure-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 azureRegions: SelectorType[] = [
    20    {
    21      label: "Asia",
    22      value: "asia",
    23    },
    24    {
    25      label: "Asia Pacific",
    26      value: "asiapacific",
    27    },
    28    {
    29      label: "Australia",
    30      value: "australia",
    31    },
    32    {
    33      label: "Australia Central",
    34      value: "australiacentral",
    35    },
    36    {
    37      label: "Australia Central 2",
    38      value: "australiacentral2",
    39    },
    40    {
    41      label: "Australia East",
    42      value: "australiaeast",
    43    },
    44    {
    45      label: "Australia Southeast",
    46      value: "australiasoutheast",
    47    },
    48    {
    49      label: "Brazil",
    50      value: "brazil",
    51    },
    52    {
    53      label: "Brazil South",
    54      value: "brazilsouth",
    55    },
    56    {
    57      label: "Brazil Southeast",
    58      value: "brazilsoutheast",
    59    },
    60    {
    61      label: "Canada",
    62      value: "canada",
    63    },
    64    {
    65      label: "Canada Central",
    66      value: "canadacentral",
    67    },
    68    {
    69      label: "Canada East",
    70      value: "canadaeast",
    71    },
    72    {
    73      label: "Central India",
    74      value: "centralindia",
    75    },
    76    {
    77      label: "Central US",
    78      value: "centralus",
    79    },
    80    {
    81      label: "Central US (Stage)",
    82      value: "centralusstage",
    83    },
    84    {
    85      label: "Central US EUAP",
    86      value: "centraluseuap",
    87    },
    88    {
    89      label: "East Asia",
    90      value: "eastasia",
    91    },
    92    {
    93      label: "East Asia (Stage)",
    94      value: "eastasiastage",
    95    },
    96    {
    97      label: "East US",
    98      value: "eastus",
    99    },
   100    {
   101      label: "East US (Stage)",
   102      value: "eastusstage",
   103    },
   104    {
   105      label: "East US 2",
   106      value: "eastus2",
   107    },
   108    {
   109      label: "East US 2 (Stage)",
   110      value: "eastus2stage",
   111    },
   112    {
   113      label: "East US 2 EUAP",
   114      value: "eastus2euap",
   115    },
   116    {
   117      label: "Europe",
   118      value: "europe",
   119    },
   120    {
   121      label: "France",
   122      value: "france",
   123    },
   124    {
   125      label: "France Central",
   126      value: "francecentral",
   127    },
   128    {
   129      label: "France South",
   130      value: "francesouth",
   131    },
   132    {
   133      label: "Germany",
   134      value: "germany",
   135    },
   136    {
   137      label: "Germany North",
   138      value: "germanynorth",
   139    },
   140    {
   141      label: "Germany West Central",
   142      value: "germanywestcentral",
   143    },
   144    {
   145      label: "Global",
   146      value: "global",
   147    },
   148    {
   149      label: "India",
   150      value: "india",
   151    },
   152    {
   153      label: "Japan",
   154      value: "japan",
   155    },
   156    {
   157      label: "Japan East",
   158      value: "japaneast",
   159    },
   160    {
   161      label: "Japan West",
   162      value: "japanwest",
   163    },
   164    {
   165      label: "Jio India Central",
   166      value: "jioindiacentral",
   167    },
   168    {
   169      label: "Jio India West",
   170      value: "jioindiawest",
   171    },
   172    {
   173      label: "Korea",
   174      value: "korea",
   175    },
   176    {
   177      label: "Korea Central",
   178      value: "koreacentral",
   179    },
   180    {
   181      label: "Korea South",
   182      value: "koreasouth",
   183    },
   184    {
   185      label: "North Central US",
   186      value: "northcentralus",
   187    },
   188    {
   189      label: "North Central US (Stage)",
   190      value: "northcentralusstage",
   191    },
   192    {
   193      label: "North Europe",
   194      value: "northeurope",
   195    },
   196    {
   197      label: "Norway",
   198      value: "norway",
   199    },
   200    {
   201      label: "Norway East",
   202      value: "norwayeast",
   203    },
   204    {
   205      label: "Norway West",
   206      value: "norwaywest",
   207    },
   208    {
   209      label: "South Africa",
   210      value: "southafrica",
   211    },
   212    {
   213      label: "South Africa North",
   214      value: "southafricanorth",
   215    },
   216    {
   217      label: "South Africa West",
   218      value: "southafricawest",
   219    },
   220    {
   221      label: "South Central US",
   222      value: "southcentralus",
   223    },
   224    {
   225      label: "South Central US (Stage)",
   226      value: "southcentralusstage",
   227    },
   228    {
   229      label: "South India",
   230      value: "southindia",
   231    },
   232    {
   233      label: "Southeast Asia",
   234      value: "southeastasia",
   235    },
   236    {
   237      label: "Southeast Asia (Stage)",
   238      value: "southeastasiastage",
   239    },
   240    {
   241      label: "Sweden Central",
   242      value: "swedencentral",
   243    },
   244    {
   245      label: "Switzerland",
   246      value: "switzerland",
   247    },
   248    {
   249      label: "Switzerland North",
   250      value: "switzerlandnorth",
   251    },
   252    {
   253      label: "Switzerland West",
   254      value: "switzerlandwest",
   255    },
   256    {
   257      label: "UAE Central",
   258      value: "uaecentral",
   259    },
   260    {
   261      label: "UAE North",
   262      value: "uaenorth",
   263    },
   264    {
   265      label: "UK South",
   266      value: "uksouth",
   267    },
   268    {
   269      label: "UK West",
   270      value: "ukwest",
   271    },
   272    {
   273      label: "United Arab Emirates",
   274      value: "uae",
   275    },
   276    {
   277      label: "United Kingdom",
   278      value: "uk",
   279    },
   280    {
   281      label: "United States",
   282      value: "unitedstates",
   283    },
   284    {
   285      label: "United States EUAP",
   286      value: "unitedstateseuap",
   287    },
   288    {
   289      label: "West Central US",
   290      value: "westcentralus",
   291    },
   292    {
   293      label: "West Europe",
   294      value: "westeurope",
   295    },
   296    {
   297      label: "West India",
   298      value: "westindia",
   299    },
   300    {
   301      label: "West US",
   302      value: "westus",
   303    },
   304    {
   305      label: "West US (Stage)",
   306      value: "westusstage",
   307    },
   308    {
   309      label: "West US 2",
   310      value: "westus2",
   311    },
   312    {
   313      label: "West US 2 (Stage)",
   314      value: "westus2stage",
   315    },
   316    {
   317      label: "West US 3",
   318      value: "westus3",
   319    },
   320  ];
   321  export default azureRegions;