> +import org.jclouds.shipyard.domain.images.ImagePortsInfo;
> +
> +import com.google.auto.value.AutoValue;
> +
> +@AutoValue
> +public abstract class ContainerImageInfo {
> +
> + @Nullable public abstract String name();
> +
> + @Nullable public abstract Map<String, String> environment();
> +
> + @Nullable public abstract List<String> entrypoint();
> +
> + public abstract String hostname();
> +
> + @Nullable public abstract List<ImagePortsInfo> bind_ports();
Prefer a camel-case naming. Change to `bindPorts`. The `@SerializedNames`
annotation should make deserialisation work.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/116/files#r21862193