enlarging timeouts
[integration/test.git] / csit / variables / netconf / CRUD / schemas / ncmount-l2fib.yang
1 module ncmount-l2fib {
2
3   namespace "org:opendaylight:coretutorials:ncmount:example:l2fib";
4
5   prefix "l2fib";
6
7   import ietf-yang-types {
8     prefix "yang";
9   }
10
11   description
12     "Sample model used for notification utilization demonstration.
13     This model is not used by XR or any other netconf server.";
14
15   revision "2016-03-07" {
16     description
17       "Initial revision.";
18   }
19
20    container bridge-domains {
21      list bridge-domain {
22
23       key "name";
24       leaf name {
25         type string;
26       }
27
28       list l2-fib {
29         key "phys-address";
30
31           leaf phys-address {
32             type yang:phys-address;
33           }
34
35           leaf action {
36             type enumeration {
37               enum "forward";
38               enum "filter";
39             }
40             mandatory true;
41           }
42       }
43
44     }
45   }
46
47
48 }