summaryrefslogtreecommitdiffstats
path: root/netconf/restconf/restconf-nb-bierman02/src/test/resources/notifications/notifi-module.yang
blob: e9c0e4b6675eddb4fc3e1b1afbcd2b30e19b927b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
module notifi-module {
    namespace "notifi:mod";
    prefix notm;

    revision "2016-11-23" {
    }

    notification notifi-leaf {
        leaf lf {
            type string;
        }
    }

    notification notifi-cont {
        container cont {
            leaf lf {
                type string;
            }
        }
    }

    notification notifi-list {
        list lst {
            key lf;
            leaf lf {
                type string;
            }
        }
    }

    notification notifi-grp {
        uses grp;
    }

    grouping grp {
        leaf lf {
            type string;
        }
    }

    notification notifi-augm {
    }

    augment /notifi-augm {
        leaf lf-augm {
            type string;
        }
    }
}