aboutsummaryrefslogtreecommitdiffstats
path: root/tosca/vnfsdk/test_SDC_and_VNFSDK_API_with_hash/Files/Yang_module/mynetconf.yang
blob: a0c094b40e4182a2ad926e85ee25e844e97fe928 (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
module mynetconf {
  yang-version 1.1;
  namespace "urn:mynetconf:test";

  prefix nft;

  organization "mynetconf";
  contact "my netconf address";
  description "yang model for mynetconf";
  revision "2019-03-01"{
    description "initial version";
  }

  container netconflist{
    list netconf{
      key netconf-id;
      leaf netconf-id{ 
        type uint16;
      }
      leaf netconf-param {
        type uint32;
      }
    }

  }
}