Interface BandwidthlimitRuleAttributes

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject
    All Known Subinterfaces:
    BandwidthLimitRules

    public interface BandwidthlimitRuleAttributes
    extends org.opendaylight.yangtools.yang.binding.DataObject

    This class represents the following YANG schema fragment defined in module neutron-qos

     grouping bandwidthlimit-rule-attributes {
       leaf max-kbps {
         type uint64;
       }
       leaf max-burst-kbps {
         type uint64;
       }
       leaf direction {
         type identityref {
           base direction-base;
         }
       }
     }
     
    The schema path to identify an instance is neutron-qos/bandwidthlimit-rule-attributes
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
    • Method Detail

      • implementedInterface

        Class<? extends BandwidthlimitRuleAttributes> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getMaxKbps

        org.opendaylight.yangtools.yang.common.Uint64 getMaxKbps()
        The maximum KBPS value
        Returns:
        org.opendaylight.yangtools.yang.common.Uint64 maxKbps, or null if not present
      • getMaxBurstKbps

        org.opendaylight.yangtools.yang.common.Uint64 getMaxBurstKbps()
        The burst over the maximum KBPS value
        Returns:
        org.opendaylight.yangtools.yang.common.Uint64 maxBurstKbps, or null if not present
      • getDirection

        Class<? extends DirectionBase> getDirection()
        The traffic direction
        Returns:
        java.lang.Class direction, or null if not present