• 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
  • ..
  • default
  • DefaultInvalidValueUnionInLeaf.yang
  • Mahesh Poojary S's avatar
    [ONOS-4910, ONOS-4921] Framework: utils validation and defect fix · bbd4849c ...
    bbd4849c
    Change-Id: I821920fa8c88e64406b702c2b8736bdeaf231474
    Mahesh Poojary S authored 2016-07-20 09:27:36 +0000
DefaultInvalidValueUnionInLeaf.yang 268 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
module Test {
    yang-version 1;
    namespace http://huawei.com;
    prefix Ant;

    leaf message {
        type union {
            type int32;
            type enumeration {
                enum "unbounded";
            }
        }
        default "xyz";
    }
}