• 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
  • utils
  • yangutils
  • src
  • test
  • resources
  • ValidRpcStatement.yang
  • Vidyashree Rama's avatar
    YANG rpc, input and output listener · 6a72b795 ...
    6a72b795
    Change-Id: Idd9847175c61d9f033cf80213b46e9c9c949849c
    Vidyashree Rama authored 2016-03-31 14:56:04 +0000
ValidRpcStatement.yang 483 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
module rock {
    namespace "http://example.net/rock";
    prefix "rock";

    rpc rock-the-house {
        description "description";
        status current;
        reference "reference";
        typedef my-type {
           status deprecated;
           type int32;
        }
        input {
            leaf zip-code {
                type string;
            }
        }
        output {
             leaf status {
                 type string;
             }
        }
    }
}