JCLOUDS-282: Add NL to assignable locations for SoftLayer

- zone contained NL, so needed to add it to SoftLayerProviderMetadata's
  iso3166Codes
This commit is contained in:
Aled Sage 2013-09-10 12:19:36 +01:00 committed by Andrew Phillips
parent 404870c705
commit e29cdb142a
2 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ public class SoftLayerProviderMetadata extends BaseProviderMetadata {
.apiMetadata(new SoftLayerApiMetadata())
.homepage(URI.create("http://www.softlayer.com"))
.console(URI.create("https://manage.softlayer.com"))
.iso3166Codes("SG","US-CA","US-TX","US-VA","US-WA","US-TX")
.iso3166Codes("SG","US-CA","US-TX","US-VA","US-WA","US-TX", "NL")
.endpoint("https://api.softlayer.com/rest")
.defaultProperties(SoftLayerProviderMetadata.defaultProperties());
}

View File

@ -210,7 +210,7 @@ public class SoftLayerTemplateBuilderLiveTest extends BaseTemplateBuilderLiveTes
@Override
protected Set<String> getIso3166Codes() {
return ImmutableSet.<String> of("SG", "US-CA", "US-TX", "US-VA", "US-WA");
return ImmutableSet.<String> of("SG", "US-CA", "US-TX", "US-VA", "US-WA", "NL");
}
}