import { NetAppShareStatusEnum } from './NetAppShareStatusEnum';
import { ProtocolEnum } from './ProtocolEnum';
/** 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