Interface TopologyTunnelProgrammingData

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

    @Generated("mdsal-binding-generator")
    public interface TopologyTunnelProgrammingData
    extends org.opendaylight.yangtools.yang.binding.DataRoot
    This module contains the programming extensions for tunnel topologies. (c)2013 Cisco Systems, Inc. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse 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-programming

     module topology-tunnel-programming {
       yang-version 1;
       namespace urn:opendaylight:params:xml:ns:yang:topology:tunnel:programming;
       prefix ttp;
       import network-topology {
         prefix nt;
         revision-date 2013-10-21;
       }
       import network-topology-programming {
         prefix tp;
         revision-date 2013-11-02;
       }
       revision 2013-09-30 {
       }
       grouping base-tunnel-input {
         uses tp:topology-instruction-input;
         leaf link-id {
           type nt:link-id;
         }
       }
       grouping base-tunnel-output {
         uses tp:topology-instruction-output;
       }
       grouping create-tunnel-input {
         uses tp:topology-instruction-input;
       }
       grouping create-tunnel-output {
         uses base-tunnel-output;
         leaf link-id {
           type nt:link-id;
         }
       }
       grouping destroy-tunnel-input {
         uses base-tunnel-input;
       }
       grouping destroy-tunnel-output {
         uses base-tunnel-output;
       }
       grouping tp-reference {
         leaf node {
           type nt:node-ref;
         }
         leaf tp {
           type nt:tp-ref;
         }
       }
       grouping create-p2p-tunnel-input {
         uses create-tunnel-input;
         container destination {
           uses tp-reference;
         }
         container source {
           uses tp-reference;
         }
       }
       grouping create-p2p-tunnel-output {
         uses create-tunnel-output;
       }
     }