@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
15 lines • 613 B
TypeScript
import { UnitAndValueLong } from '../complexType/UnitAndValueLong';
/** Backup Ftp assigned to this VPS */
export interface BackupFtp {
/** The backup FTP server name */
ftpBackupName: string;
/** The disk space available on your backup FTP */
quota?: UnitAndValueLong;
/** If not-null, gives the date since when your account was set in read-only mode because the quota was exceeded */
readOnlyDate?: string;
/** The backup FTP type */
type: string;
/** The disk space currently used on your backup FTP */
usage?: UnitAndValueLong;
}
//# sourceMappingURL=BackupFtp.d.ts.map