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

@Generated("mdsal-binding-generator") public interface OdlBgpAppPeerBenchmarkData extends org.opendaylight.yangtools.yang.binding.DataRoot
This module contains Yang Data Models for BGP Application Peer Benchmark application. Copyright (c)2016 Cisco Systems, Inc. All rights reserved. This program and the accompanying materials are made available under the terms of 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 odl-bgp-app-peer-benchmark

 module odl-bgp-app-peer-benchmark {
   namespace urn:opendaylight:params:xml:ns:yang:odl-bgp-app-peer-benchmark;
   prefix bgp-app-peer-bm;
   import ietf-inet-types {
     prefix inet;
     revision-date 2013-07-15;
   }
   revision 2020-01-20 {
   }
   revision 2016-03-09 {
   }
   grouping input {
     leaf prefix {
       type inet:ipv4-prefix;
     }
     leaf count {
       type uint32;
     }
     leaf batchsize {
       type uint32;
     }
   }
   grouping output {
     container result {
       leaf count {
         type uint32;
       }
       leaf duration {
         type uint32;
         units seconds;
       }
       leaf rate {
         type uint32;
         units per-second;
       }
     }
   }
   rpc add-prefix {
     input input {
       uses input;
       leaf nexthop {
         type inet:ipv4-address-no-zone;
       }
     }
     output output {
       uses output;
     }
   }
   rpc delete-prefix {
     input input {
       uses input;
     }
     output output {
       uses output;
     }
   }
 }