cloudstack/api/src/com/cloud/org/Cluster.java

24 lines
439 B
Java

/**
*
*/
package com.cloud.org;
import com.cloud.hypervisor.Hypervisor.HypervisorType;
public interface Cluster extends Grouping {
public static enum ClusterType {
CloudManaged,
ExternalManaged;
};
long getId();
String getName();
long getDataCenterId();
long getPodId();
HypervisorType getHypervisorType();
ClusterType getClusterType();
AllocationState getAllocationState();
}