import { Region } from './backup/Region';
import { UnitAndValueLong } from '../../../complexType/UnitAndValueLong';
import { StatusEnum } from './StatusEnum';
import { BackupTypeEnum } from './BackupTypeEnum';
/** Cloud database backup definition */
export interface Backup {
    /** Date of the creation of the backup */
    createdAt: string;
    /** Description of the backup */
    description: string;
    /** Backup ID */
    id: string;
    /** @deprecated Region where the backup is stored. DEPRECATED: use regions */
    region: string;
    /** Regions where the backup are stored */
    regions: Region[];
    /** Size of the backup */
    size: UnitAndValueLong;
    /** Current status of the backup */
    status: StatusEnum;
    /** Type of backup */
    type: BackupTypeEnum;
}
//# sourceMappingURL=Backup.d.ts.map