code4clouds commented on this pull request.
> +import com.google.auto.value.AutoValue; +import org.jclouds.javax.annotation.Nullable; +import org.jclouds.json.SerializedNames; + +/** + * Virtual Machine Scale Set Network Security Group + */ +@AutoValue +public abstract class VirtualMachineScaleSetNetworkSecurityGroup { + /** + * The id of the Virtual Machine Scale Set Network Security Group + */ + @Nullable + public abstract String id(); + + @SerializedNames({"dnsSettings"}) fixed... -- 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-labs/pull/412#discussion_r146760215