UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

15 lines 526 B
import { ProtocolEnum } from './ProtocolEnum'; /** A share used for share replication creation */ export interface NetAppShareForShareReplication { /** Share description */ description: string; /** User-defined name used to generate human readable access path for the share */ mountPointName: string; /** Share name */ name: string; /** Share protocol */ protocol: ProtocolEnum; /** Share size in Gigabytes */ size: number; } //# sourceMappingURL=NetAppShareForShareReplication.d.ts.map