import { VolumeBackupStatusEnum } from './VolumeBackupStatusEnum';
/** A volume backup */
export interface VolumeBackup {
    /** Creation date of the backup */
    creationDate: string;
    /** Volume backup id */
    id: string;
    /** Volume backup name */
    name: string;
    /** Volume backup region */
    region: string;
    /** Size of the backup in GiB */
    size: number;
    /** Staus of the backup */
    status: VolumeBackupStatusEnum;
    /** ID of the volume used to create the backup */
    volumeId: string;
}
//# sourceMappingURL=VolumeBackup.d.ts.map