code4clouds commented on this pull request.
> + /** + * The private IP address version of the Virtual Machine Scale Set Ip Configuration Properties + */ + @Nullable + public abstract String privateIPAddressVersion(); + + /** + * The load balancer backend address pools of the Virtual Machine Scale Set Ip Configuration Properties + */ + @Nullable + public abstract List<IdReference> loadBalancerBackendAddressPools(); + + /** + * The load balancer inbound nat pools of the Virtual Machine Scale Set Ip Configuration Properties + */ + @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_r147038667
