Interface EvpnInstance

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

    @Generated("mdsal-binding-generator")
    public interface EvpnInstance
    extends org.opendaylight.yangtools.yang.binding.DataObject

    This class represents the following YANG schema fragment defined in module neutronvpn

     grouping evpn-instance {
       leaf id {
         type yang:uuid;
       }
       leaf name {
         type string;
       }
       leaf tenant-id {
         type yang:uuid;
       }
       leaf-list route-distinguisher {
         type string;
       }
       leaf-list import-RT {
         type string;
       }
       leaf-list export-RT {
         type string;
       }
     }
     
    The schema path to identify an instance is neutronvpn/evpn-instance
    • 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 
      Modifier and Type Method Description
      @Nullable java.util.List<java.lang.String> getExportRT()
      Return exportRT, or null if it is not present.
      org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid getId()
      Return id, or null if it is not present.
      @Nullable java.util.List<java.lang.String> getImportRT()
      Return importRT, or null if it is not present.
      java.lang.String getName()
      Return name, or null if it is not present.
      @Nullable java.util.List<java.lang.String> getRouteDistinguisher()
      Return routeDistinguisher, or null if it is not present.
      org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid getTenantId()
      Return tenantId, or null if it is not present.
      java.lang.Class<? extends EvpnInstance> implementedInterface()  
    • Field Detail

      • QNAME

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

      • implementedInterface

        java.lang.Class<? extends EvpnInstance> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getId

        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid getId()
        Return id, or null if it is not present.
             
                 evpn-id
             
         
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid id, or null if it is not present.
      • getName

        java.lang.String getName()
        Return name, or null if it is not present.
             
                 EVPN name
             
         
        Returns:
        java.lang.String name, or null if it is not present.
      • getTenantId

        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid getTenantId()
        Return tenantId, or null if it is not present.
             
                 The UUID of the tenant that will own the subnet.
             
         
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid tenantId, or null if it is not present.
      • getRouteDistinguisher

        @Nullable java.util.List<java.lang.String> getRouteDistinguisher()
        Return routeDistinguisher, or null if it is not present.
             
                 configures a route distinguisher (RD) for the EVPN instance. Format is ASN:nn or
                 IP-address:nn.
             
         
        Returns:
        java.util.List routeDistinguisher, or null if it is not present.
      • getImportRT

        @Nullable java.util.List<java.lang.String> getImportRT()
        Return importRT, or null if it is not present.
             
                 configures a list of import route target. Format is ASN:nn or IP-address:nn.
             
         
        Returns:
        java.util.List importRT, or null if it is not present.
      • getExportRT

        @Nullable java.util.List<java.lang.String> getExportRT()
        Return exportRT, or null if it is not present.
             
                 configures a list of export route targets. Format is ASN:nn or IP-address:nn.
             
         
        Returns:
        java.util.List exportRT, or null if it is not present.