> +import org.jclouds.javax.annotation.Nullable;
> +import org.jclouds.json.SerializedNames;
> +
> +import com.google.auto.value.AutoValue;
> +
> +/** Container for network, IPv4 range and optional gateway, for creation
> caching */
> +@AutoValue
> +public abstract class NetworkAndAddressRange {
> +
> + public abstract String name();
> +
> + public abstract String rangeIPv4();
> +
> + @Nullable public abstract String gateway();
> +
> + @SerializedNames({ "name", "ipV4Range", "gateway" })
Should this be `rangeIPv4` or is the difference deliberate?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/73/files#r19764086