Interface TopologyTunnelP2pData

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.DataRoot

    @Generated("mdsal-binding-generator")
    public interface TopologyTunnelP2pData
    extends org.opendaylight.yangtools.yang.binding.DataRoot
    This module contains the point-to-point extensions to the base tunnel topology model. Copyright (c)2013 Cisco Systems, Inc. All rights reserved. This program and the accompanying materials are made available under the terms of the Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html

    This class represents the following YANG schema fragment defined in module topology-tunnel-p2p

     module topology-tunnel-p2p {
       yang-version 1;
       namespace urn:opendaylight:params:xml:ns:yang:topology:tunnel:p2p;
       prefix p2p;
       import network-topology {
         prefix nt;
         revision-date 2013-10-21;
       }
       import topology-tunnel {
         prefix tt;
         revision-date 2013-08-19;
       }
       revision 2013-08-19 {
       }
       grouping tunnel-p2p-type {
         container p2p-tunnel {
           presence "indicates a link is a point-to-point tunnel";
         }
       }
       augment /nt:network-topology/nt:topology/nt:link/tt:tunnel-types {
         uses tunnel-p2p-type;
       }
       grouping tunnel-p2p-path-hops {
         leaf order {
           type uint32;
         }
       }
       grouping tunnel-p2p-path-cfg-attributes {
         list explicit-hops {
           uses tunnel-p2p-path-hops;
           key order;
           leaf loose {
             type boolean;
           }
         }
       }
       grouping tunnel-p2p-path-oper-attributes {
         list reported-hops {
           config false;
           uses tunnel-p2p-path-hops;
           key order;
         }
       }
       augment /nt:network-topology/nt:topology/tt:paths {
         when ../path-types/p2p-tunnel;
         uses tunnel-p2p-path-cfg-attributes;
         uses tunnel-p2p-path-oper-attributes;
       }
     }