> +   @SerializedName("Binds")
> +   private final List<String> binds;
> +   @SerializedName("Privileged")
> +   private final boolean privileged;
> +   @SerializedName("PortBindings")
> +   private final Map<String, List<Map<String, String>>> portBindings;
> +   @SerializedName("Links")
> +   private final List<String> links;
> +   @SerializedName("PublishAllPorts")
> +   private final boolean publishAllPorts;
> +
> +   @ConstructorProperties({ "ContainerIDFile", "Binds", "Privileged", 
> "PortBindings", "Links", "Size",
> +           "PublishAllPorts" })
> +   public HostConfig(@Nullable String containerIDFile, @Nullable 
> List<String> binds, @Nullable boolean privileged,
> +                     @Nullable Map<String, List<Map<String, String>>> 
> portBindings, @Nullable List<String> links,
> +                     @Nullable boolean publishAllPorts) {

Can a `HostConfig` object be actually empty, with all properties being null?

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

Reply via email to