Interface StatisticsManagerControlData

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

    @Generated("mdsal-binding-generator")
    public interface StatisticsManagerControlData
    extends org.opendaylight.yangtools.yang.binding.DataRoot
    Statistics manager control API

    This class represents the following YANG schema fragment defined in module statistics-manager-control

     module statistics-manager-control {
       yang-version 1;
       namespace urn:opendaylight:params:xml:ns:yang:openflowplugin:sm:control;
       prefix sm-control;
       revision 2015-08-12 {
       }
       typedef statistics-work-mode {
         type enumeration {
           enum COLLECT_ALL {
           }
           enum FULLY_DISABLED {
           }
         }
       }
       rpc change-statistics-work-mode {
         input input {
           leaf mode {
             type statistics-work-mode;
           }
         }
       }
       rpc get-statistics-work-mode {
         output output {
           leaf mode {
             type statistics-work-mode;
           }
         }
       }
     }