> + * @param builder the Builder for the provider.
> + */
> + protected CloudNetworksUSProviderMetadata(Builder builder) {
> + super(builder);
> + }
> +
> + /**
> + * @return a {@link Properties} object containing the default provider
> properties.
> + */
> + public static Properties defaultProperties() {
> + Properties properties = new Properties();
> + properties.setProperty(CREDENTIAL_TYPE,
> CloudIdentityCredentialTypes.API_KEY_CREDENTIALS);
> + properties.setProperty(SERVICE_TYPE, "networks");
> +
> + properties.setProperty(PROPERTY_REGIONS, "ORD,DFW,IAD,SYD,HKG");
> + properties.setProperty(PROPERTY_REGIONS, "IAD");
Won't this override the other one?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/169/files#r20176962