> +
> + public abstract double coresPerProcessor();
> +
> + public abstract double ram();
> +
> + public abstract List<Hdd> hdds();
> +
> + @SerializedNames({"vcore", "cores_per_processor", "ram", "hdds"})
> + public static Hardware create(double vcore, double coresPerProcessor,
> double ram, List<Hdd> hdds) {
> + return new AutoValue_Hardware(vcore, coresPerProcessor, ram, hdds);
> + }
> +
> + @AutoValue
> + public abstract static class CreateHardware {
> +
> + public abstract double vCore();
Just `vcore`, like in the `Hardware` object? Use a consistent naming.
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/275/files/0767d011a984011133c9e34b3389b449ca0756cd#r68666310