> + return new
> AutoValue_VirtualNetwork_AddressSpace(copyOf(addressPrefixes));
> + }
> + }
> +
> + @AutoValue
> + public abstract static class VirtualNetworkProperties{
> +
> + @Nullable
> + public abstract String provisioningState();
> +
> + @Nullable
> + public abstract String resourceGuid();
> +
> + public abstract AddressSpace addressSpace();
> +
> + @Nullable
@nacx Yes `subnets` here needs to be Nullable as it is an optional property for
the create operation and can be omitted. Please refer to
[this](https://msdn.microsoft.com/en-us/library/azure/mt163661.aspx).
---
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#r60837542