import { AutoScale } from './cluster/AutoScale';
import { ClusterDrsModeEnum } from './cluster/ClusterDrsModeEnum';
import { ClusterConfigsStatusEnum } from './cluster/ClusterConfigsStatusEnum';
/** Cluster */
export interface Cluster {
    /** AutoScale associated to this cluster */
    autoscale?: AutoScale;
    /** Id of the cluster */
    clusterId: number;
    /** Drs mode of the cluster */
    drsMode: ClusterDrsModeEnum;
    /** Drs status of the cluster */
    drsStatus: ClusterConfigsStatusEnum;
    /** Evc mode of the cluster */
    evcMode: string;
    /** High availability status of the cluster */
    haStatus: ClusterConfigsStatusEnum;
    /** Name of the cluster */
    name: string;
    /** The VMware MoRef of the cluster */
    vmwareClusterId: string;
}
//# sourceMappingURL=Cluster.d.ts.map