Skip to content

Commit

Permalink
define conflicted state
Browse files Browse the repository at this point in the history
  • Loading branch information
QiufangMa committed Oct 8, 2024
1 parent 6f4d450 commit f5cc4a6
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions yang/ietf-schedule.yang
Original file line number Diff line number Diff line change
Expand Up @@ -229,26 +229,33 @@ module ietf-schedule {
identity enabled {
base schedule-state;
description
"Indicates a recurrence with an enabled state.";
"Indicates a schedule with an enabled state.";
}

identity finished {
base schedule-state;
description
"Indicates a recurrence with a finished state.
"Indicates a schedule with a finished state.
The finished state indicates that the schedule has ended.";
}

identity disabled {
base schedule-state;
description
"Indicates a recurrence with a disabled state.";
"Indicates a schedule with a disabled state.";
}

identity out-of-date {
base schedule-state;
description
"Indicates a recurrence with an out-of-date state.";
"Indicates a schedule with an out-of-date state.";
}

identity conflicted {
base schedule-state;
description
"Indicates a schedule with a conflicted state with other
schedules.";
}

identity discard-action {
Expand Down

0 comments on commit f5cc4a6

Please sign in to comment.