@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
14 lines • 413 B
TypeScript
import { IpBlock } from '../../IpBlock';
import { AclTypeEnum } from '../storage/AclTypeEnum';
/** Define Acl for partition */
export interface Access {
/** the id of the access */
accessId: number;
/** a brief description of the acl */
aclDescription?: string;
/** the ip in root on storage */
ip: IpBlock;
/** ACL type */
type: AclTypeEnum;
}
//# sourceMappingURL=Access.d.ts.map