@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
16 lines • 704 B
TypeScript
import { UnitAndValueLong } from '../../complexType/UnitAndValueLong';
import { BackupStorageTypeEnum } from './BackupStorageTypeEnum';
/** Backup Ftp assigned to this server */
export interface BackupFtp {
/** The backup FTP server name */
ftpBackupName: string;
/** The disk space available in gigabytes */
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: BackupStorageTypeEnum;
/** The disk space currently used on your backup FTP in percent */
usage?: UnitAndValueLong;
}
//# sourceMappingURL=BackupFtp.d.ts.map