danielestevez commented on this pull request.


> +import org.jclouds.json.SerializedNames;
+
+import com.google.auto.value.AutoValue;
+
+@AutoValue
+public abstract class LoadBalancerSKU {
+
+   public static enum LoadBalancerSKUName {
+      Basic, Standard, Unrecognized;
+
+      public static LoadBalancerSKUName fromValue(final String text) {
+         return (LoadBalancerSKUName) GetEnumValue.fromValueOrDefault(text, 
LoadBalancerSKUName.Unrecognized);
+      }
+   }
+
+   @Nullable

You're right, the whole `LoadBalancerSKU` can be null and will default to 
`Basic` but this field is mandatory. 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_r242172550

Reply via email to