/** Details about BackupCapabilities */
export interface BackupCapabilities {
    /** Customized backup days */
    backupDays: boolean;
    /** Customized Backup report */
    customReport: boolean;
    /** Indicates additional backup proxy for large disk size VM */
    dedicatedProxy: boolean;
    /** Indicates if backup will be encrypted */
    encryption: boolean;
    /** Indicates if customer can add an additional email address for backup report */
    mailAddress: boolean;
    /** Minimum number of full backups */
    minimumFullBackups: number;
    /** Name of offer type */
    offerName: string;
    /** Backup Proxy per host */
    proxyPerHost: boolean;
    /** Backup Replication enabled */
    replication: boolean;
    /** Restore points */
    retention: number;
    /** Scheduled hour of backup start customizable */
    scheduleHour: boolean;
}
//# sourceMappingURL=BackupCapabilities.d.ts.map