import { NetAppSnapshotPolicySchedule } from './NetAppSnapshotPolicySchedule';
/** A snapshot policy rule */
export interface NetAppSnapshotPolicyRule {
    /** Number of snapshot copies to keep */
    copies?: number;
    /** Prefix to use for snapshots */
    prefix?: string;
    /** Snapshot policy schedule */
    schedule?: NetAppSnapshotPolicySchedule;
}
//# sourceMappingURL=NetAppSnapshotPolicyRule.d.ts.map