code4clouds commented on this pull request.
> + /** + * The linux configuration of the VM + */ + @Nullable + public abstract LinuxConfiguration linuxConfiguration(); + + /** + * The windows configuration of the VM + */ + @Nullable + public abstract WindowsConfiguration windowsConfiguration(); + + /** + * The Secrets configuration of the VM + */ + @Nullable These @Nullable annotations are required to serialized the json response from the service (especially the when the value is not returned as sometimes there are not setup by the users) -- 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_r147038684
