> +/**
> + * Represents a url map resource.
> + *
> + * @see <a 
> href="https://developers.google.com/compute/docs/reference/latest/urlMaps"/>
> + * @see <a 
> href="https://developers.google.com/compute/docs/load-balancing/http/url-map"/>
> + */
> +@AutoValue
> +public abstract class UrlMap {
> +
> +   public abstract String id();
> +   public abstract Date creationTimestamp();
> +   public abstract URI selfLink();
> +   public abstract String name();
> +   @Nullable public  abstract String description();
> +   @Nullable public abstract List<HostRule> hostRules();
> +   @Nullable public abstract  List<PathMatcher> pathMatchers();

please do a fuzz check on spacing.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/97/files#r20598283

Reply via email to