public function getClusterRepositoryURIFromBinding(AlmanacBinding $binding)
 {
     $protocol = $binding->getAlmanacPropertyValue('protocol');
     if ($protocol === null) {
         $protocol = 'https';
     }
     $iface = $binding->getInterface();
     $address = $iface->renderDisplayAddress();
     $path = $this->getURI();
     return id(new PhutilURI("{$protocol}://{$address}"))->setPath($path);
 }