/** A snapshot policy schedule */
export interface NetAppSnapshotPolicySchedule {
    /** The days of the month the schedule runs (1 through 31). Empty for all. */
    days?: number[];
    /** The hours of the day the schedule runs (0 through 23). Empty for all. */
    hours?: number[];
    /** The minutes the schedule runs (0 through 59). Required to have at least one value. */
    minutes: number[];
    /** The months of the year the schedule runs (1 through 12). Empty for all. */
    months?: number[];
    /** The days of the week the schedule runs (0 through 6, where 0 is Sunday and 6 is Saturday). Empty for all. */
    weekdays?: number[];
}
//# sourceMappingURL=NetAppSnapshotPolicySchedule.d.ts.map