sonu gupta | eff184b | 2016-11-24 12:43:49 +0530 | [diff] [blame] | 1 | module binarytest { |
| 2 | |
| 3 | yang-version 1; |
| 4 | |
| 5 | namespace "ydt.binarytest"; |
| 6 | |
| 7 | prefix "binarytest"; |
| 8 | |
| 9 | organization "ON-LAB"; |
| 10 | |
| 11 | description "This module defines for binarytest classifier."; |
| 12 | |
| 13 | revision "2016-05-24" { |
| 14 | description "Initial revision."; |
| 15 | } |
| 16 | |
| 17 | list binaryList { |
| 18 | config false; |
| 19 | leaf binary { |
| 20 | type binary; |
| 21 | } |
| 22 | leaf binaryWithRange { |
| 23 | type binary { |
| 24 | length "2 .. 10"; |
| 25 | } |
| 26 | } |
| 27 | leaf binaryWithMultiRange { |
| 28 | type binary { |
| 29 | length "min..10 | 20 | 30..max"; |
| 30 | } |
| 31 | } |
| 32 | } |
Vidyashree Rama | 6160be1 | 2016-11-24 13:43:31 +0530 | [diff] [blame] | 33 | |
| 34 | typedef percent { |
| 35 | type binary; |
| 36 | } |
| 37 | |
| 38 | leaf name { |
| 39 | type percent; |
| 40 | } |
| 41 | |
| 42 | grouping greeting { |
| 43 | leaf surname { |
| 44 | type binary; |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | container cont1 { |
| 49 | uses greeting; |
| 50 | } |
| 51 | |
| 52 | augment "/cont1" { |
| 53 | leaf lastname { |
| 54 | type binary; |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | container food { |
| 59 | choice snack { |
| 60 | case sportsarena { |
| 61 | leaf pretzel { |
| 62 | type binary; |
| 63 | } |
| 64 | } |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | leaf middlename { |
| 69 | type union { |
| 70 | type int8; |
| 71 | type binary; |
| 72 | } |
| 73 | } |
sonu gupta | eff184b | 2016-11-24 12:43:49 +0530 | [diff] [blame] | 74 | } |