code4clouds commented on this pull request.


> +    /**
+     * The name reference of the extension profile
+     */
+    public abstract String name();
+
+    /**
+     * The properties reference of the extension profile
+     */
+    public abstract ExtensionProperties properties();
+
+
+    @SerializedNames({"name", "properties"})
+    public static Extension create(final String name, final 
ExtensionProperties properties) {
+        return new AutoValue_Extension(name, properties);
+    }
+}

fixed...

-- 
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/412#discussion_r146759798

Reply via email to