diff options
author | Timoney, Dan (dt5972) <dtimoney@att.com> | 2018-10-30 09:39:59 -0400 |
---|---|---|
committer | Timoney, Dan (dt5972) <dtimoney@att.com> | 2018-10-30 09:39:59 -0400 |
commit | 609f193862339c50420553b45f3bb56f9711cf95 (patch) | |
tree | 870b81bf6c01b4923986203e9392a4bdd3d0f2f1 /sdnr/model/yang/ltp-path@2017-05-26.yang | |
parent | f39904fbe580301b896ad598e85a135d11c8944b (diff) |
Remove SDNR seed code
Remove SDNR seed code to resolve license issues. Code is not currently
used, so it will be removed for now and a cleaned version resubmitted
for Dublin release.
Change-Id: I37ca0feb458012626bf448739ff2497679fcb357
Issue-ID: CCSDK-641
Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>
Diffstat (limited to 'sdnr/model/yang/ltp-path@2017-05-26.yang')
-rw-r--r-- | sdnr/model/yang/ltp-path@2017-05-26.yang | 138 |
1 files changed, 0 insertions, 138 deletions
diff --git a/sdnr/model/yang/ltp-path@2017-05-26.yang b/sdnr/model/yang/ltp-path@2017-05-26.yang deleted file mode 100644 index e9404d8c..00000000 --- a/sdnr/model/yang/ltp-path@2017-05-26.yang +++ /dev/null @@ -1,138 +0,0 @@ -module ltp-path { - namespace "urn:onf:params:xml:ns:yang:ltp-path"; - prefix ltp-path; - - import core-model { - prefix core-model; - } - - organization - "ONF (Open Networking Foundation) Open Transport Working Group - - Wireless Transport Project"; - contact - "WG Web: <https://www.opennetworking.org/technical-communities/areas/ - specification/1931-optical-transport> - WG List: <mailto:wireless-transport@login.opennetworking.org> - WG Chair: Lyndon Ong - <mailto:lyong@ciena.com> - WG Chair: Giorgio Cazzaniga - <mailto:giorgio.cazzaniga@sm-optics.com> - Editor: Martin Skorupski - <mailto:martin.skorupski@highstreet-technologies.com>"; - description - "This module contains a collection of YANG definitions describing a - telecommunication network path."; - - revision 2017-05-26 { - description "Initial version"; - reference "ltp-path, ONF core-model 1.2"; - } - - typedef layer-protocol-name-enumeration { - type enumeration { - enum ETH { - value 1; - description - "Identifying the layer of Ethernet."; - } - enum PTP { - value 2; - description - "Identifying the layer or the Precision Time Protocol."; - } - } - - description - "The propagation of the layer protocol name."; - } - - container ltp-path { - description - "Listing all the path-identifiers, used by RESTCONF interfaces to - address an entry in the ltp-path-list."; - - leaf-list path-identifier { - type leafref { - path '/ltp-path/ltp-path-list/path-id'; - } - description - "List of reference values for existing path entries."; - } - - list ltp-path-list { - - key "path-id"; - - description - "A list of path found in the network."; - - leaf path-id { - type string; - description - "A unique identifier of a path. It migth be beneficial to use the - format as defined in RFC 4122 - (https://www.ietf.org/rfc/rfc4122.txt)."; - } - - leaf path-name { - type string; - description - "The human readable name of a path. It should include start - and end point."; - } - - leaf forwarding-direction { - type core-model:forwarding-direction; - description - "Defines the directionality of the path."; - } - - leaf layer-protocol-name { - type layer-protocol-name-enumeration; - description - "Defines the layer of the path. Please see ONF CoreModel for - further details."; - } - - list logical-termination-point-list { - - key "ltp-index"; - min-elements 2; - - description - "An ordered list of logical-termination points, defining the path."; - - leaf ltp-index { - type string; - description - "The index of the LTP with in the list. The LTP with the highest - index is the end-point of the path. The LTP with the lowest - index is the start-point of the path."; - } - - leaf ltp-reference { - type leafref { - path '/core-model:network-element/core-model:ltp/core-model:uuid'; - } - description - "The reference value of a network-elements LTP."; - } - - leaf physical-port-reference { - type string; - description - "A text label for the unmodelled physical port associated with - the LTP. In many cases there is no associated physical port."; - } - - leaf node-reference { - type leafref { - path '/core-model:network-element/core-model:uuid'; - } - description - "A reference value identifying a network-element."; - } - } - } - } -} |