Interface AllocationPools

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<AllocationPools>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<SubnetAttributes>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, org.opendaylight.yangtools.yang.binding.Identifiable<AllocationPoolsKey>

    public interface AllocationPools
    extends org.opendaylight.yangtools.yang.binding.ChildOf<SubnetAttributes>, org.opendaylight.yangtools.yang.binding.Augmentable<AllocationPools>, org.opendaylight.yangtools.yang.binding.Identifiable<AllocationPoolsKey>
    Sub-ranges of cidr available for dynamic allocation to ports

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

     list allocation-pools {
       key start;
       leaf start {
         type inet:ip-address;
       }
       leaf end {
         type inet:ip-address;
       }
     }
     
    The schema path to identify an instance is neutron-subnets/subnet-attributes/allocation-pools

    To create instances of this class use AllocationPoolsBuilder.

    See Also:
    AllocationPoolsBuilder, AllocationPoolsKey
    • Field Detail

      • QNAME

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

      • implementedInterface

        default Class<AllocationPools> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getStart

        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress getStart()
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress start, or null if not present
      • getEnd

        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress getEnd()
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress end, or null if not present