danielestevez commented on this pull request.
> +import org.jclouds.json.SerializedNames;
+
+import com.google.auto.value.AutoValue;
+
+@AutoValue
+public abstract class PublicAddressSKU {
+
+ public static enum PublicIPAddressSkuName {
+ Basic, Standard, Unrecognized;
+
+ public static PublicIPAddressSkuName fromValue(final String text) {
+ return (PublicIPAddressSkuName) GetEnumValue.fromValueOrDefault(text,
PublicIPAddressSkuName.Unrecognized);
+ }
+ }
+
+ @Nullable
Same as before. Will change
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/1264#discussion_r242172648