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

@Generated("mdsal-binding-generator") public interface BgpPeerRpcData extends org.opendaylight.yangtools.yang.binding.DataRoot
Module contains rpc for route refresh request, which is described in rfc2918. Copyright (c) 2016 Cisco Systems, Inc. All rights reserved. This program and 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 bgp-peer-rpc

 module bgp-peer-rpc {
   namespace urn:opendaylight:params:xml:ns:yang:bgp-peer-rpc;
   prefix bgp-rpc;
   import bgp-multiprotocol {
     prefix bgp-mp;
     revision-date 2018-03-29;
   }
   import bgp-rib {
     prefix rib;
     revision-date 2018-03-29;
   }
   import yang-ext {
     prefix ext;
     revision-date 2013-07-09;
   }
   revision 2018-03-29 {
   }
   revision 2017-12-07 {
   }
   revision 2017-10-27 {
   }
   revision 2016-03-22 {
   }
   identity peer-context {
   }
   typedef peer-ref {
     type instance-identifier;
     ext:context-reference peer-context;
   }
   grouping peer-reference {
     leaf peer-ref {
       type peer-ref;
       ext:context-reference peer-context;
     }
   }
   grouping rr-msg-args {
     uses peer-reference;
     uses bgp-mp:bgp-table-type;
   }
   rpc route-refresh-request {
     input input {
       uses rr-msg-args;
     }
   }
   augment /rib:bgp-rib/rib:rib/rib:peer {
     ext:context-instance peer-context;
   }
   rpc reset-session {
     input input {
       uses peer-reference;
     }
   }
   rpc restart-gracefully {
     input input {
       uses peer-reference;
       leaf selection-deferral-time {
         type uint32;
         units seconds;
       }
     }
   }
 }