mirror of https://github.com/apache/jclouds.git
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:
parent
404870c705
commit
e29cdb142a
|
@ -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());
|
||||
}
|
||||
|
|
|
@ -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");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue