summaryrefslogtreecommitdiffstats
path: root/sdnr/wt/netconfnode-state-service/model/src/main/yang/config.yang
blob: 82886e63bab9a39ceeb8be03c9e7c7ce45b3fee9 (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
module config {
    yang-version 1.1;
    namespace urn:ietf:params:xml:ns:yang:config;
    prefix config;

    revision 2020-12-08 {
        description "Initial revision";
    }

    container configuration {
        list entry {
            key "setting";

            leaf setting {
                type string;
            }
            leaf value {
                type uint8;
            }
        }

        leaf config1 {
            type string;
        }
        leaf config2 {
            type boolean;
        }
    }
}