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

@Generated("mdsal-binding-generator") public interface PcepTopologyStatsRpcData extends org.opendaylight.yangtools.yang.binding.DataRoot
This module contains rpc for fetching PCEP session statistics. Copyright (c) 2019 Lumina Networks, Inc. and others. 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 pcep-topology-stats-rpc

 module pcep-topology-stats-rpc {
   yang-version 1;
   namespace urn:opendaylight:params:xml:ns:yang:pcep:topology:stats:rpc;
   prefix ptsr;
   import network-topology {
     prefix nt;
     revision-date 2013-10-21;
   }
   import pcep-session-stats {
     prefix pss;
     revision-date 2017-11-13;
   }
   revision 2019-03-21 {
   }
   rpc get-stats {
     input input {
       list topology {
         key topology-id;
         leaf topology-id {
           type nt:topology-id;
         }
         list node {
           key node-id;
           leaf node-id {
             type nt:node-id;
           }
         }
       }
     }
     output output {
       list topology {
         key topology-id;
         leaf topology-id {
           type nt:topology-id;
         }
         list node {
           key node-id;
           leaf node-id {
             type nt:node-id;
           }
           uses pss:pcep-session-state-grouping;
         }
       }
     }
   }
 }