Interface LoadbalancerAttributes

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

    @Generated("mdsal-binding-generator")
    public interface LoadbalancerAttributes
    extends org.opendaylight.yangtools.yang.binding.DataObject
    LBaaSV2.0 load balancer attributes.

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

     grouping loadbalancer-attributes {
       leaf vip-address {
         type inet:ip-address;
       }
       leaf vip-subnet-id {
         type yang:uuid;
       }
     }
     
    The schema path to identify an instance is neutron-lbaasv2/loadbalancer-attributes
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static @NonNull org.opendaylight.yangtools.yang.common.QName QNAME  
    • Method Summary

      All Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method Description
      org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress getVipAddress()
      Return vipAddress, or null if it is not present.
      org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid getVipSubnetId()
      Return vipSubnetId, or null if it is not present.
      Class<? extends LoadbalancerAttributes> implementedInterface()  
      default @NonNull org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress requireVipAddress()
      Return vipAddress, guaranteed to be non-null.
      default @NonNull org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid requireVipSubnetId()
      Return vipSubnetId, guaranteed to be non-null.
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress getVipAddress()
        Return vipAddress, or null if it is not present.
             
                 The IP address of the VIP.
             
         
        Returns:
        IpAddress vipAddress, or null if it is not present.
      • requireVipAddress

        default @NonNull org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress requireVipAddress()
        Return vipAddress, guaranteed to be non-null.
             
                 The IP address of the VIP.
             
         
        Returns:
        IpAddress vipAddress, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if vipAddress is not present
      • getVipSubnetId

        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid getVipSubnetId()
        Return vipSubnetId, or null if it is not present.
             
                 The ID of the subnet on which to allocate the VIP address.
             
         
        Returns:
        Uuid vipSubnetId, or null if it is not present.
      • requireVipSubnetId

        default @NonNull org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid requireVipSubnetId()
        Return vipSubnetId, guaranteed to be non-null.
             
                 The ID of the subnet on which to allocate the VIP address.
             
         
        Returns:
        Uuid vipSubnetId, guaranteed to be non-null.
        Throws:
        NoSuchElementException - if vipSubnetId is not present