> +
> +import static com.google.common.base.Objects.equal;
> +import static com.google.common.base.Optional.fromNullable;
> +import static com.google.common.base.Preconditions.checkNotNull;
> +
> +/**
> + * @author Andrea Turli
> + */
> +@Beta
> +public class ForwardingRule extends Resource {
> +
> + private final URI region;
> + private final Optional<String> ipAddress;
> + private final Optional<String> ipProtocol;
> + private final Optional<String> portRange;
> + private final URI target;
Add the serialization annotations here, so each field matches the name in the
`@ConstructorProperties` annotation.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/22/files#r15394045