trevorflanagan commented on this pull request.
> +import org.jclouds.javax.annotation.Nullable;
+import org.jclouds.json.SerializedNames;
+
+@AutoValue
+public abstract class VmTools {
+
+ VmTools() {
+ }
+
+ public abstract String type();
+
+ @Nullable
+ public abstract String versionStatus();
+
+ @Nullable
+ public abstract String runningStatus();
👍 I can add enum for type, runningStatus and versionStatus.
--
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/380#discussion_r110690002