Adding TestVNF netconf server
[demo.git] / vnfs / TestVNF / netconftemplates / netconftemplates / acme-system@2007-06-09.yang
1 <rpc-reply xmlns="urn:ietf:params:xml:ns:netconf:base:1.0" message-id="m-1">
2   <data xmlns="urn:ietf:params:xml:ns:yang:ietf-netconf-monitoring">
3 module acme-system {
4     namespace "http://acme.example.com/system";
5     prefix "acme";
6     
7     organization "ACME Inc.";
8     contact "joe@acme.example.com";
9     
10     description
11         "The module for entities implementing the ACME system.";
12
13     revision 2007-06-09 {
14         description "Initial revision.";
15     }
16     
17     container system {
18         leaf host-name {
19             type string;
20             description "Hostname for this system";
21         }
22     
23         leaf-list domain-search {
24             type string;
25             description "List of domain names to search";
26         }
27     
28         container login {
29             leaf message {
30                 type string;
31                 description
32                     "Message given at start of login session";
33             }
34     
35             list user {
36                 key "name";
37                 leaf name {
38                     type string;
39                 }
40     
41                 leaf full-name {
42                     type string;
43                 }
44                 
45                 leaf class {
46                     type string;
47                 }
48             }
49         }
50     }
51 }
52 </data>
53 </rpc-reply>