UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

13 lines 444 B
import { IpBlock } from '../../../IpBlock'; /** vps.backupftp.access.post */ export interface Post { /** Whether to allow the CIFS (SMB) protocol for this ACL */ cifs: boolean; /** Whether to allow the FTP protocol for this ACL */ ftp: boolean; /** IP CIDR notation (e.g., 192.0.2.0/24) */ ipBlock: IpBlock; /** Whether to allow the NFS protocol for this ACL */ nfs: boolean; } //# sourceMappingURL=Post.d.ts.map