geomacy commented on this pull request.
> + return new AutoValue_RouteTableAssociation.Builder();
+ }
+
+ @AutoValue.Builder
+ public abstract static class Builder {
+ public abstract Builder id(String id);
+ public abstract Builder routeTableId(String routeTableId);
+ public abstract Builder subnetId(String subnetId);
+ public abstract Builder main(Boolean main);
+
+ @Nullable abstract String id();
+ @Nullable abstract String routeTableId();
+ @Nullable abstract String subnetId();
+ @Nullable abstract Boolean main();
+
+ abstract RouteTableAssociation autoBuild();
It's needed here for use in `create()`.
--
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/pull/1100#discussion_r117475334