> +
> + /**
> + * @return a {@link Properties} object containing the default provider
> properties.
> + * This returns the credential type, service type, and configured regions.
> + */
> + public static Properties defaultProperties() {
> + Properties properties = new Properties();
> + properties.setProperty(CREDENTIAL_TYPE,
> CloudIdentityCredentialTypes.API_KEY_CREDENTIALS);
> + properties.setProperty(SERVICE_TYPE, ServiceType.CDN);
> +
> + properties.setProperty(PROPERTY_REGIONS, "ORD,DFW,IAD,SYD,HKG");
> + properties.setProperty(PROPERTY_REGION + ".ORD." + ISO3166_CODES,
> "US-IL");
> + properties.setProperty(PROPERTY_REGION + ".DFW." + ISO3166_CODES,
> "US-TX");
> + properties.setProperty(PROPERTY_REGION + ".IAD." + ISO3166_CODES,
> "US-VA");
> + properties.setProperty(PROPERTY_REGION + ".SYD." + ISO3166_CODES,
> "AU-NSW");
> + properties.setProperty(PROPERTY_REGION + ".HKG." + ISO3166_CODES,
> "HK");
Should SYD and HKG be here?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/177/files#r23666949