import { ConnexionStateEnum } from './filer/ConnexionStateEnum';
/** vSAN datastore */
export interface VsanDatastore {
    /** Id of Cluster. */
    clusterId: number;
    /** Datastore connection state. */
    connectionState?: ConnexionStateEnum;
    /** Id of the datacenter. */
    datacenterId: number;
    /** Id of the vsan datastore. */
    datastoreId: number;
    /** Name of the datastore. */
    datastoreName: string;
    /** Available space of this datastore, in GB */
    spaceFree?: number;
    /** Provisioned space of this datastore, in GB */
    spaceProvisioned?: number;
    /** Used Space of this datastore, in GB */
    spaceUsed?: number;
    /** Number of virtual machine on the datastore */
    vmTotal?: number;
}
//# sourceMappingURL=VsanDatastore.d.ts.map