use of com.emc.storageos.model.compute.VcenterClusterParam in project coprhd-controller by CoprHD.
the class CreateVcenterCluster method doExecute.
@Override
public Task<VcenterDataCenterRestRep> doExecute() throws Exception {
VcenterClusterParam clusterParam = new VcenterClusterParam(cluster);
Task<VcenterDataCenterRestRep> task = getClient().vcenterDataCenters().createVcenterCluster(datacenter, clusterParam);
return task;
}
use of com.emc.storageos.model.compute.VcenterClusterParam in project coprhd-controller by CoprHD.
the class UpdateVcenterCluster method doExecute.
@Override
public Task<VcenterDataCenterRestRep> doExecute() throws Exception {
VcenterClusterParam clusterParam = new VcenterClusterParam(cluster);
Task<VcenterDataCenterRestRep> task = getClient().vcenterDataCenters().updateVcenterCluster(datacenter, clusterParam);
return task;
}
Aggregations