>
> - public Builder toBuilder() {
> - return new Builder().fromSnapshot(this);
> + @SerializedNames({ "id", "selfLink", "name", "description", "diskSizeGb",
> "status", "sourceDisk", "sourceDiskId" })
> + public static Snapshot create(String id, URI selfLink, String name,
> String description, int sizeGb, String status,
> + URI sourceDisk, String sourceDiskId) {
> + return new AutoValue_Snapshot(id, selfLink, name, description, sizeGb,
> status, sourceDisk, sourceDiskId);
Does `sizeGb` sound like the size of the snapshot, rather than the size of the
disk?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/73/files#r19765576