@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
24 lines • 746 B
TypeScript
import { ProtocolEnum } from './ProtocolEnum';
import { NetAppShareStatusEnum } from './NetAppShareStatusEnum';
/** A share */
export interface NetAppShare {
/** Share creation date */
createdAt?: string;
/** Share description */
description?: string;
/** Share ID */
id: 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;
/** Snapshot ID used to create the share */
snapshotID?: string;
/** Share status */
status?: NetAppShareStatusEnum;
}
//# sourceMappingURL=NetAppShare.d.ts.map