> + } > + > + @Nullable > + public abstract String name(); > + > + @Nullable > + public abstract String id(); > + > + @Nullable > + public abstract String etag(); > + > + public abstract String location(); > + > + public abstract VirtualNetworkProperties properties(); > + > + @Nullable
@nacx Correct. But unlike other properties, we actually need to support null `tags` parameters in the actual api `create` method since it can be a null input when we create a new resource. This a consistent theme for all the APIs. I have commented on this in the past, maybe it was missed. It is an [optional property that can be empty](https://msdn.microsoft.com/en-us/library/azure/mt163661.aspx) WDYT? --- 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/262/files/1801c68f227e1f245a30c6fa6ff044e7e2634460#r60811082
