• This project
    • Loading...
  • Sign in

홍길동 / onos

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • onos
  • ..
  • groupingNodeSameAsModule
  • portpair.yang
  • VinodKumarS-Huawei's avatar
    [ONOS-4636]YANG Grouping linking bug fix + YANG Code review comment fix · 2ee9e7e8 ...
    2ee9e7e8 Browse Files
    Change-Id: I68ee8dd08266a02593e217cef1a9bb010037d673
    VinodKumarS-Huawei authored 2016-06-01 20:19:19 +0530
portpair.yang 397 Bytes
Raw Blame History Permalink
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 port-pair {

    yang-version 1;

    namespace "sfc.portpair";

    prefix "port-pair";
   
     grouping port-pair {
        container  port-pair {

        	leaf name {
           	    type string;
        	}

        	
        	leaf description {
            	    type string;
        	}

   	}
    }
   
    rpc get-port-pair {
      output {
          uses port-pair;
      }
    }
}