> +           GroupNamingConvention.Factory namingConvention, 
> ImageReferenceToImage imageReferenceToImage,
> +           VMSizeToHardware vmSizeToHardware, Map<String, Credentials> 
> credentialStore) {
> +
> +      this.nodeNamingConvention = namingConvention.createWithoutPrefix();
> +      this.locations = checkNotNull(locations, "locations");
> +      this.imageReferenceToImage = imageReferenceToImage;
> +      this.vmSizeToHardware = vmSizeToHardware;
> +      this.credentialStore = credentialStore;
> +      this.api = api;
> +   }
> +
> +   @Override
> +   public NodeMetadata apply(final VMDeployment from) {
> +      final NodeMetadataBuilder builder = new NodeMetadataBuilder();
> +      final Deployment deployment = from.deployment;
> +      builder.id(deployment.name());

This is the "id" jclouds will use as the main id (used to call `getNode`, etc). 
Can this value uniquely identify the node across all locations?

---
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/267/files/bae5d6dfcdb26e31057db4551c5996836666a31b#r63967239

Reply via email to