wsp-10329 Adding hyper-v replica to HyperV Provider. Enterprise Part 2.

This commit is contained in:
Alexander Trofimov 2015-04-16 22:21:20 +03:00
parent 9685e61e7e
commit 27155ddc5e
8 changed files with 508 additions and 29 deletions

View file

@ -481,6 +481,19 @@ namespace WebsitePanel.EnterpriseServer
return VirtualizationServerController2012.GetCertificates(serviceId, remoteServer);
}
[WebMethod]
public ResultObject SetReplicaServer(int serviceId, string remoteServer, string thumbprint, string storagePath)
{
return VirtualizationServerController2012.SetReplicaServer(serviceId, remoteServer, thumbprint, storagePath);
}
[WebMethod]
public bool IsReplicaServer(int serviceId, string remoteServer)
{
return VirtualizationServerController2012.IsReplicaServer(serviceId, remoteServer);
}
#endregion
}
}