use of com.vmware.vim25.ComputeResourceConfigInfo in project photon-model by vmware.
the class ComputeResourceOverlay method getClusterConfigInfoEx.
private ClusterConfigInfoEx getClusterConfigInfoEx() {
ComputeResourceConfigInfo cfg = ((ComputeResourceConfigInfo) getOrFail(VimPath.res_configurationEx));
ClusterConfigInfoEx info = null;
if (cfg instanceof ClusterConfigInfoEx) {
info = (((ClusterConfigInfoEx) cfg));
}
return info;
}
Aggregations