> @@ -349,14 +356,127 @@ public Builder fromInstance(Instance in) {
>                   .networkInterfaces(in.getNetworkInterfaces())
>                   .disks(in.getDisks())
>                   .metadata(in.getMetadata())
> -                 .serviceAccoutns(in.getServiceAccounts());
> +                 .serviceAccounts(in.getServiceAccounts());
> +      }
> +   }
> +
> +   /**
> +    * Tags for an instance, with their fingerprint.
> +    */
> +   public static class Tags {
> +      private final String fingerprint;
> +      private final Set<String> tags;
> +
> +      @ConstructorProperties({"fingerprint", "items"})
> +      public Tags(String fingerprint, Set<String> tags) {

Mark second argument as `@Nullable`?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/16/files#r5362543

Reply via email to