import { PoolTypeEnum } from './response/PoolTypeEnum';
/** Ceph pool */
export interface Response {
    /** Determine if pool should be backuped */
    backup: boolean;
    /** Minimum active replicas */
    minActiveReplicas: number;
    /** Name of the pool */
    name: string;
    /** Type of pool */
    poolType: PoolTypeEnum;
    /** Number of replica */
    replicaCount: number;
    /** ID of cluster */
    serviceName: string;
}
//# sourceMappingURL=Response.d.ts.map