blob: 4ec08b29b986caeadc5362d17a6ce5e19d62eaf4 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jclouds.azurecompute.arm.domain;
import java.util.Arrays;
import java.util.Set;
import com.google.common.base.Function;
import com.google.common.base.Preconditions;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Iterables;
/**
* Regions used in Azure.
*
* @see <a href="http://azure.microsoft.com/en-us/regions/">this page</a>
*/
public enum Region {
CENTRAL_US("Central US", "US-IA"),
EAST_US("East US", "US-VA"),
EAST_US_2("East US 2", "US-VA"),
US_GOV_IOWA("US Gov Iowa", "US-IA"),
US_GOV_VIRGINIA("US Gov Virginia", "US-VA"),
NORTH_CENTRAL_US("North Central US", "US-IL"),
SOUTH_CENTRAL_US("South Central US", "US-TX"),
WEST_CENTRAL_US("West Central US", "US-WY"),
WEST_US("West US", "US-CA"),
WEST_US_2("West US 2", "US-WA"),
NORTH_EUROPE("North Europe", "IE"),
UK_SOUTH("UK South", "GB-LND"),
UK_WEST("UK West", "GB-CRF"),
WEST_EUROPE("West Europe", "NL"),
EAST_ASIA("East Asia", "HK"),
SOUTH_EAST_ASIA("Southeast Asia", "SG"),
KOREA_CENTRAL("Korea Central", "KR-11"),
KOREA_SOUTH("Korea South", "KR-26"),
JAPAN_EAST("Japan East", "JP-11"),
JAPAN_WEST("Japan West", "JP-27"),
BRAZIL_SOUTH("Brazil South", "BR"),
AUSTRALIA_EAST("Australia East", "AU-NSW"),
AUSTRALIA_SOUTH_EAST("Australia Southeast", "AU-VIC"),
AUSTRALIA_CENTRAL("Australia Central", "AU-ACT"),
AUSTRALIA_CENTRAL_2("Australia Central 2", "AU-ACT"),
CENTRAL_INDIA("Central India", "IN-GA"),
SOUTH_INDIA("South India", "IN-TN"),
WEST_INDIA("West India", "IN-MH"),
CHINA_EAST("China East", "CN-SH"),
CHINA_EAST_2("China East 2", "CN-SH"),
CHINA_NORTH("China North", "CN-BJ"),
CHINA_NORTH_2("China North 2", "CN-BJ"),
CANADA_CENTRAL("Canada Central", "CA-ON"),
CANADA_EAST("Canada East", "CA-QC"),
FRANCE_CENTRAL("France Central", "FR-IDF"),
FRANCE_SOUTH("France South", "FR-PAC"),
SOUTH_AFRICA_NORTH("South Africa North", "ZA-GT"),
SOUTH_AFRICA_WEST("South Africa West", "ZA-WC"),
UAE_NORTH("UAE North", "AE-DU");
private final String name;
private final String iso3166Code;
Region(final String name, final String iso3166Code) {
this.name = name;
this.iso3166Code = iso3166Code;
}
public String getName() {
return name;
}
public String iso3166Code() {
return iso3166Code;
}
public static Region byName(final String name) {
Preconditions.checkNotNull(name);
for (Region region : values()) {
if (name.equals(region.name)) {
return region;
}
}
return null;
}
public static Set<String> iso3166Codes() {
return ImmutableSet.copyOf(Iterables.transform(Arrays.asList(values()), new Function<Region, String>() {
@Override
public String apply(final Region region) {
return region.iso3166Code;
}
}));
}
}